diff --git a/ChangeLog b/ChangeLog index 4fefc794ef..36175990c8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,20 @@ +Sat Jul 17 13:31:40 PDT 1999 Manish Singh + + * Made 1.1.7 release + + * configure.in: version number bump + + * ltconfig + * ltmain.sh: libtool 1.3.3 + + * app/channel_cmds.c + * tools/pdbgen/pdb/channel.pdb: remove opacity_arg alias for channel + new + + * Makefile.am: add pixmaps + + * borderaverage moved into it's own dir again, to avoid gck problems + Thu Jul 15 10:12:44 MEST 1999 Sven Neumann * libgimp/gserialize.c diff --git a/Makefile.am b/Makefile.am index f638f54616..a24d99b3b3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -50,6 +50,9 @@ EXTRA_DIST = \ pixmaps/penedit.xpm \ pixmaps/pennorm.xpm \ pixmaps/penstroke.xpm \ + pixmaps/qmasksel.xpm \ + pixmaps/qmasknosel.xpm \ + pixmaps/topath.xpm \ pixmaps/toselection.xpm \ pixmaps/yes.xpm \ pixmaps/zoom_in.xpm \ diff --git a/app/channel_cmds.c b/app/channel_cmds.c index 4e86839b4c..61f35ea0e6 100644 --- a/app/channel_cmds.c +++ b/app/channel_cmds.c @@ -68,10 +68,9 @@ channel_new_invoker (Argument *args) gint32 width; gint32 height; gchar *name; - gdouble opacity_arg; + gdouble opacity; guchar *color; Channel *channel = NULL; - int opacity; gimage = pdb_id_to_image (args[0].value.pdb_int); if (gimage == NULL) @@ -89,15 +88,15 @@ channel_new_invoker (Argument *args) if (name == NULL) success = FALSE; - opacity_arg = args[4].value.pdb_float; - if (opacity_arg < 0.0 || opacity_arg > 100.0) + opacity = args[4].value.pdb_float; + if (opacity < 0.0 || opacity > 100.0) success = FALSE; color = (guchar *) args[5].value.pdb_pointer; if (success) { - opacity = (int) ((opacity_arg * 255) / 100); + channel_set_opacity (channel, opacity); channel = channel_new (gimage, width, height, name, opacity, color); success = channel != NULL; } @@ -642,7 +641,7 @@ channel_set_opacity_invoker (Argument *args) success = FALSE; if (success) - channel_set_opacity (channel, opacity); + channel->opacity = (int) ((opacity * 255) / 100); return procedural_db_return_args (&channel_set_opacity_proc, success); } @@ -745,7 +744,6 @@ channel_set_color_invoker (Argument *args) gboolean success = TRUE; Channel *channel; guchar *color; - int i; channel = channel_get_ID (args[0].value.pdb_int); if (channel == NULL) diff --git a/configure.in b/configure.in index 6656262eaf..32993a4316 100644 --- a/configure.in +++ b/configure.in @@ -4,7 +4,7 @@ AC_INIT(gimprc.in) dnl Initialize automake stuff GIMP_MAJOR_VERSION=1 GIMP_MINOR_VERSION=1 -GIMP_MICRO_VERSION=6 +GIMP_MICRO_VERSION=7 GIMP_INTERFACE_AGE=0 GIMP_BINARY_AGE=0 GIMP_VERSION=$GIMP_MAJOR_VERSION.$GIMP_MINOR_VERSION.$GIMP_MICRO_VERSION @@ -639,6 +639,7 @@ plug-ins/FractalExplorer/fractalexplorer-examples/Makefile plug-ins/Lighting/Makefile plug-ins/MapObject/Makefile plug-ins/bmp/Makefile +plug-ins/borderaverage/Makefile plug-ins/common/Makefile plug-ins/faxg3/Makefile plug-ins/fits/Makefile diff --git a/ltconfig b/ltconfig index a362c48d31..65ec6f65d0 100755 --- a/ltconfig +++ b/ltconfig @@ -169,8 +169,8 @@ progname=`$echo "X$0" | $Xsed -e 's%^.*/%%'` # Constants: PROGRAM=ltconfig PACKAGE=libtool -VERSION=1.3.2 -TIMESTAMP=" (1.385.2.150 1999/05/26 00:28:32)" +VERSION=1.3.3 +TIMESTAMP=" (1.385.2.181 1999/07/02 15:49:11)" ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.c 1>&5' ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.c $LIBS 1>&5' rm="rm -f" @@ -181,7 +181,8 @@ help="Try \`$progname --help' for more information." default_ofile=libtool can_build_shared=yes enable_shared=yes -# All known linkers require a `.a' archive for static linking. +# All known linkers require a `.a' archive for static linking (except M$VC, +# which needs '.lib'). enable_static=yes enable_fast_install=yes enable_dlopen=unknown @@ -201,6 +202,7 @@ need_locks=yes ac_ext=c objext=o libext=a +exeext= cache_file= old_AR="$AR" @@ -576,7 +578,7 @@ if test "$with_gcc" != yes || test -z "$CC"; then # Now see if the compiler is really GCC. with_gcc=no echo $ac_n "checking whether we are using GNU C... $ac_c" 1>&6 - echo "$progname:579: checking whether we are using GNU C" >&5 + echo "$progname:581: checking whether we are using GNU C" >&5 $rm conftest.c cat > conftest.c <&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then + if { ac_try='${CC-cc} -E conftest.c'; { (eval echo $progname:589: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then with_gcc=yes fi $rm conftest.c @@ -598,8 +600,8 @@ compiler="$2" echo $ac_n "checking for object suffix... $ac_c" 1>&6 $rm conftest* echo 'int i = 1;' > conftest.c -echo "$progname:601: checking for object suffix" >& 5 -if { (eval echo $progname:602: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>conftest.err; }; then +echo "$progname:603: checking for object suffix" >& 5 +if { (eval echo $progname:604: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>conftest.err; }; then # Append any warnings to the config.log. cat conftest.err 1>&5 @@ -617,6 +619,38 @@ fi $rm conftest* echo "$ac_t$objext" 1>&6 +echo $ac_n "checking for executable suffix... $ac_c" 1>&6 +if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + ac_cv_exeext="no" + $rm conftest* + echo 'main () { return 0; }' > conftest.c + echo "$progname:629: checking for executable suffix" >& 5 + if { (eval echo $progname:630: \"$ac_link\") 1>&5; (eval $ac_link) 2>conftest.err; }; then + # Append any warnings to the config.log. + cat conftest.err 1>&5 + + for ac_file in conftest.*; do + case $ac_file in + *.c | *.err | *.$objext ) ;; + *) ac_cv_exeext=.`echo $ac_file | sed -e s/conftest.//` ;; + esac + done + else + cat conftest.err 1>&5 + echo "$progname: failed program was:" >&5 + cat conftest.c >&5 + fi + $rm conftest* +fi +if test "X$ac_cv_exeext" = Xno; then + exeext="" +else + exeext="$ac_cv_exeext" +fi +echo "$ac_t$ac_cv_exeext" 1>&6 + echo $ac_n "checking for $compiler option to produce PIC... $ac_c" 1>&6 pic_flag= special_shlib_compile_flags= @@ -739,8 +773,8 @@ if test -n "$pic_flag"; then echo "int some_variable = 0;" > conftest.c save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $pic_flag -DPIC" - echo "$progname:742: checking if $compiler PIC flag $pic_flag works" >&5 - if { (eval echo $progname:743: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>conftest.err; } && test -s conftest.$objext; then + echo "$progname:776: checking if $compiler PIC flag $pic_flag works" >&5 + if { (eval echo $progname:777: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>conftest.err; } && test -s conftest.$objext; then # Append any warnings to the config.log. cat conftest.err 1>&5 @@ -792,8 +826,8 @@ mkdir out chmod -w . save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -o out/conftest2.o" -echo "$progname:795: checking if $compiler supports -c -o file.o" >&5 -if { (eval echo $progname:796: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.o; then +echo "$progname:829: checking if $compiler supports -c -o file.o" >&5 +if { (eval echo $progname:830: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.o; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings @@ -825,8 +859,8 @@ if test x"$compiler_c_o" = x"yes"; then echo "int some_variable = 0;" > conftest.c save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -c -o conftest.lo" - echo "$progname:828: checking if $compiler supports -c -o file.lo" >&5 -if { (eval echo $progname:829: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>conftest.err; } && test -s conftest.lo; then + echo "$progname:862: checking if $compiler supports -c -o file.lo" >&5 +if { (eval echo $progname:863: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>conftest.err; } && test -s conftest.lo; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings @@ -877,8 +911,8 @@ if test "$with_gcc" = yes; then echo "int some_variable = 0;" > conftest.c save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -fno-rtti -fno-exceptions -c conftest.c" - echo "$progname:880: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 - if { (eval echo $progname:881: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>conftest.err; } && test -s conftest.o; then + echo "$progname:914: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 + if { (eval echo $progname:915: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>conftest.err; } && test -s conftest.o; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings @@ -921,8 +955,8 @@ $rm conftest* echo 'main(){return(0);}' > conftest.c save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $link_static_flag" -echo "$progname:924: checking if $compiler static flag $link_static_flag works" >&5 -if { (eval echo $progname:925: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then +echo "$progname:958: checking if $compiler static flag $link_static_flag works" >&5 +if { (eval echo $progname:959: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then echo "$ac_t$link_static_flag" 1>&6 else echo "$ac_t"none 1>&6 @@ -954,7 +988,7 @@ if test -z "$LD"; then if test "$with_gcc" = yes; then # Check if gcc -print-prog-name=ld gives a path. echo $ac_n "checking for ld used by GCC... $ac_c" 1>&6 - echo "$progname:957: checking for ld used by GCC" >&5 + echo "$progname:991: checking for ld used by GCC" >&5 ac_prog=`($CC -print-prog-name=ld) 2>&5` case "$ac_prog" in # Accept absolute paths. @@ -978,10 +1012,10 @@ if test -z "$LD"; then esac elif test "$with_gnu_ld" = yes; then echo $ac_n "checking for GNU ld... $ac_c" 1>&6 - echo "$progname:981: checking for GNU ld" >&5 + echo "$progname:1015: checking for GNU ld" >&5 else echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6 - echo "$progname:984: checking for non-GNU ld" >&5 + echo "$progname:1018: checking for non-GNU ld" >&5 fi if test -z "$LD"; then @@ -1047,7 +1081,7 @@ hardcode_minus_L=no hardcode_shlibpath_var=unsupported runpath_var= always_export_symbols=no -export_symbols_cmds='$NM $libobjs | $global_symbol_pipe | sed '\''s/.* //'\'' | sort | uniq > $export_symbols' +export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | sed '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms= @@ -1130,10 +1164,9 @@ EOF # Extract the symbol export list from an `--export-all' def file, # then regenerate the def file from the symbol export list, so that # the compiled dll only exports the symbol export list. - export_symbols_cmds='rm -f $objdir/$soname-ltdll.c~ - sed -e "/^# \/\* ltdll\.c starts here \*\//,/^# \/\* ltdll.c ends here \*\// { s/^# //; p; }" -e d < $0 > $objdir/$soname-ltdll.c~ - (cd $objdir && $CC -c $soname-ltdll.c)~ - $DLLTOOL --export-all --exclude-symbols DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12 --output-def $objdir/$soname-def $objdir/$soname-ltdll.$objext $libobjs~ + export_symbols_cmds='test -f $objdir/$soname-ltdll.c || sed -e "/^# \/\* ltdll\.c starts here \*\//,/^# \/\* ltdll.c ends here \*\// { s/^# //; p; }" -e d < $0 > $objdir/$soname-ltdll.c~ + test -f $objdir/$soname-ltdll.$objext || (cd $objdir && $CC -c $soname-ltdll.c)~ + $DLLTOOL --export-all --exclude-symbols DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12 --output-def $objdir/$soname-def $objdir/$soname-ltdll.$objext $libobjs $convenience~ sed -e "1,/EXPORTS/d" -e "s/ @ [0-9]* ; *//" < $objdir/$soname-def > $export_symbols' archive_expsym_cmds='echo EXPORTS > $objdir/$soname-def~ @@ -1142,13 +1175,15 @@ EOF echo " \$symbol @ \$_lt_hint ; " >> $objdir/$soname-def; _lt_hint=`expr 1 + \$_lt_hint`; done~ + test -f $objdir/$soname-ltdll.c || sed -e "/^# \/\* ltdll\.c starts here \*\//,/^# \/\* ltdll.c ends here \*\// { s/^# //; p; }" -e d < $0 > $objdir/$soname-ltdll.c~ + test -f $objdir/$soname-ltdll.$objext || (cd $objdir && $CC -c $soname-ltdll.c)~ $CC -Wl,--base-file,$objdir/$soname-base -Wl,--dll -nostartfiles -Wl,-e,__cygwin_dll_entry@12 -o $lib $objdir/$soname-ltdll.$objext $libobjs $deplibs $linkopts~ $DLLTOOL --as=$AS --dllname $soname --exclude-symbols DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12 --def $objdir/$soname-def --base-file $objdir/$soname-base --output-exp $objdir/$soname-exp~ $CC -Wl,--base-file,$objdir/$soname-base $objdir/$soname-exp -Wl,--dll -nostartfiles -Wl,-e,__cygwin_dll_entry@12 -o $lib $objdir/$soname-ltdll.$objext $libobjs $deplibs $linkopts~ $DLLTOOL --as=$AS --dllname $soname --exclude-symbols DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12 --def $objdir/$soname-def --base-file $objdir/$soname-base --output-exp $objdir/$soname-exp~ $CC $objdir/$soname-exp -Wl,--dll -nostartfiles -Wl,-e,__cygwin_dll_entry@12 -o $lib $objdir/$soname-ltdll.$objext $libobjs $deplibs $linkopts' - old_archive_from_new_cmds='$DLLTOOL --as=$AS --dllname $soname --def $objdir/$soname-def --output-lib $objdir/$libname.a' + old_archive_from_new_cmds='$DLLTOOL --as=$AS --dllname $soname --def $objdir/$soname-def --output-lib $objdir/$libname.a' ;; netbsd*) @@ -1554,11 +1589,11 @@ void nm_test_func(){} main(){nm_test_var='a';nm_test_func();return(0);} EOF - echo "$progname:1557: checking if global_symbol_pipe works" >&5 - if { (eval echo $progname:1558: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; } && test -s conftest.$objext; then + echo "$progname:1592: checking if global_symbol_pipe works" >&5 + if { (eval echo $progname:1593: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; } && test -s conftest.$objext; then # Now try to grab the symbols. nlist=conftest.nm - if { echo "$progname:1561: eval \"$NM conftest.$objext | $global_symbol_pipe > $nlist\"" >&5; eval "$NM conftest.$objext | $global_symbol_pipe > $nlist 2>&5"; } && test -s "$nlist"; then + if { echo "$progname:1596: eval \"$NM conftest.$objext | $global_symbol_pipe > $nlist\"" >&5; eval "$NM conftest.$objext | $global_symbol_pipe > $nlist 2>&5"; } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then @@ -1610,7 +1645,7 @@ EOF save_CFLAGS="$CFLAGS" LIBS="conftstm.$objext" CFLAGS="$CFLAGS$no_builtin_flag" - if { (eval echo $progname:1613: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then + if { (eval echo $progname:1648: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then pipe_works=yes else echo "$progname: failed program was:" >&5 @@ -1756,7 +1791,7 @@ bsdi4*) soname_spec='${libname}.so' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH - deplibs_check_method='file_magic ELF 32-bit LSB shared object' + deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' file_magic_cmd=/usr/bin/file file_magic_test_file=/shlib/libc.so sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" @@ -1768,6 +1803,8 @@ bsdi4*) cygwin* | mingw*) version_type=windows + need_version=no + need_lib_prefix=no if test "$with_gcc" = yes; then library_names_spec='${libname}`echo ${release} | sed -e 's/[.]/-/g'`${versuffix}.dll $libname.a' else @@ -1776,7 +1813,6 @@ cygwin* | mingw*) dynamic_linker='Win32 ld.exe' deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' file_magic_cmd='${OBJDUMP} -f' - need_lib_prefix=no # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH lt_cv_dlopen="LoadLibrary" @@ -1807,11 +1843,22 @@ freebsd*) esac finish_cmds='PATH="\$PATH:/sbin" OBJFORMAT="'"$objformat"'" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH + case "$host_os" in + freebsd2* | freebsd3.[01]*) + shlibpath_overrides_runpath=yes + ;; + *) # from 3.2 on + shlibpath_overrides_runpath=no + ;; + esac ;; gnu*) version_type=linux - library_names_spec='${libname}${release}.so$versuffix ${libname}.so' + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so${major} ${libname}.so' + soname_spec='${libname}${release}.so$major' shlibpath_var=LD_LIBRARY_PATH ;; @@ -2120,7 +2167,7 @@ else if eval "test \"`echo '$''{'lt_cv_dlopen'+set}'`\" != set"; then lt_cv_dlopen=no lt_cv_dlopen_libs= echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6 -echo "$progname:2123: checking for dlopen in -ldl" >&5 +echo "$progname:2170: checking for dlopen in -ldl" >&5 ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -2128,7 +2175,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ldl $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo $progname:2188: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -2157,12 +2204,12 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then else echo "$ac_t""no" 1>&6 echo $ac_n "checking for dlopen""... $ac_c" 1>&6 -echo "$progname:2160: checking for dlopen" >&5 +echo "$progname:2207: checking for dlopen" >&5 if eval "test \"`echo '$''{'ac_cv_func_dlopen'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -2184,7 +2231,7 @@ dlopen(); ; return 0; } EOF -if { (eval echo $progname:2187: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo $progname:2234: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_dlopen=yes" else @@ -2201,7 +2248,7 @@ if eval "test \"`echo '$ac_cv_func_'dlopen`\" = yes"; then else echo "$ac_t""no" 1>&6 echo $ac_n "checking for dld_link in -ldld""... $ac_c" 1>&6 -echo "$progname:2204: checking for dld_link in -ldld" >&5 +echo "$progname:2251: checking for dld_link in -ldld" >&5 ac_lib_var=`echo dld'_'dld_link | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -2209,7 +2256,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ldld $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo $progname:2269: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -2238,12 +2285,12 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then else echo "$ac_t""no" 1>&6 echo $ac_n "checking for shl_load""... $ac_c" 1>&6 -echo "$progname:2241: checking for shl_load" >&5 +echo "$progname:2288: checking for shl_load" >&5 if eval "test \"`echo '$''{'ac_cv_func_shl_load'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -2265,7 +2312,7 @@ shl_load(); ; return 0; } EOF -if { (eval echo $progname:2268: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo $progname:2315: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_shl_load=yes" else @@ -2283,7 +2330,7 @@ if eval "test \"`echo '$ac_cv_func_'shl_load`\" = yes"; then else echo "$ac_t""no" 1>&6 echo $ac_n "checking for shl_load in -ldld""... $ac_c" 1>&6 -echo "$progname:2286: checking for shl_load in -ldld" >&5 +echo "$progname:2333: checking for shl_load in -ldld" >&5 ac_lib_var=`echo dld'_'shl_load | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -2291,7 +2338,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ldld $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo $progname:2352: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -2345,17 +2392,17 @@ fi for ac_hdr in dlfcn.h; do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "$progname:2348: checking for $ac_hdr" >&5 +echo "$progname:2395: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int fnord = 0; EOF ac_try="$ac_compile conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo $progname:2358: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo $progname:2405: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2383,7 +2430,7 @@ done LIBS="$lt_cv_dlopen_libs $LIBS" echo $ac_n "checking whether a program can dlopen itself""... $ac_c" 1>&6 -echo "$progname:2386: checking whether a program can dlopen itself" >&5 +echo "$progname:2433: checking whether a program can dlopen itself" >&5 if test "${lt_cv_dlopen_self+set}" = set; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2391,7 +2438,7 @@ else lt_cv_dlopen_self=cross else cat > conftest.c < @@ -2434,10 +2481,10 @@ else fnord() { int i=42;} main() { void *self, *ptr1, *ptr2; self=dlopen(0,LTDL_GLOBAL|LTDL_LAZY_OR_NOW); if(self) { ptr1=dlsym(self,"fnord"); ptr2=dlsym(self,"_fnord"); - if(ptr1 || ptr2) exit(0); } exit(1); } + if(ptr1 || ptr2) { dlclose(self); exit(0); } } exit(1); } EOF -if { (eval echo $progname:2440: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null +if { (eval echo $progname:2487: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null then lt_cv_dlopen_self=yes else @@ -2456,7 +2503,7 @@ echo "$ac_t""$lt_cv_dlopen_self" 1>&6 if test "$lt_cv_dlopen_self" = yes; then LDFLAGS="$LDFLAGS $link_static_flag" echo $ac_n "checking whether a statically linked program can dlopen itself""... $ac_c" 1>&6 -echo "$progname:2459: checking whether a statically linked program can dlopen itself" >&5 +echo "$progname:2506: checking whether a statically linked program can dlopen itself" >&5 if test "${lt_cv_dlopen_self_static+set}" = set; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2464,7 +2511,7 @@ else lt_cv_dlopen_self_static=cross else cat > conftest.c < @@ -2507,10 +2554,10 @@ else fnord() { int i=42;} main() { void *self, *ptr1, *ptr2; self=dlopen(0,LTDL_GLOBAL|LTDL_LAZY_OR_NOW); if(self) { ptr1=dlsym(self,"fnord"); ptr2=dlsym(self,"_fnord"); - if(ptr1 || ptr2) exit(0); } exit(1); } + if(ptr1 || ptr2) { dlclose(self); exit(0); } } exit(1); } EOF -if { (eval echo $progname:2513: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null +if { (eval echo $progname:2560: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null then lt_cv_dlopen_self_static=yes else @@ -2729,6 +2776,9 @@ objext="$objext" # Old archive suffix (normally "a"). libext="$libext" +# Executable file suffix (normally ""). +exeext="$exeext" + # Additional compiler flags for building library objects. pic_flag=$pic_flag @@ -2897,7 +2947,7 @@ EOF esac # Append the ltmain.sh script. - cat "$ltmain" >> "$ofile" || (rm -f "$ofile"; exit 1) + sed '$q' "$ltmain" >> "$ofile" || (rm -f "$ofile"; exit 1) chmod +x "$ofile" ;; diff --git a/ltmain.sh b/ltmain.sh index 3417294752..ae10cad021 100644 --- a/ltmain.sh +++ b/ltmain.sh @@ -54,8 +54,8 @@ modename="$progname" # Constants. PROGRAM=ltmain.sh PACKAGE=libtool -VERSION=1.3.2 -TIMESTAMP=" (1.385.2.150 1999/05/26 00:28:32)" +VERSION=1.3.3 +TIMESTAMP=" (1.385.2.181 1999/07/02 15:49:11)" default_mode= help="Try \`$progname --help' for more information." @@ -69,7 +69,7 @@ rm="rm -f" Xsed='sed -e 1s/^X//' sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g' SP2NL='tr \040 \012' -NL2SP='tr \012 \040' +NL2SP='tr \015\012 \040\040' # NLS nuisances. # Only set LANG and LC_ALL to C if already set. @@ -638,6 +638,12 @@ compiler." # #undef WIN32_LEAN_AND_MEAN # #include # +# #ifndef __CYGWIN__ +# # ifdef __CYGWIN32__ +# # define __CYGWIN__ __CYGWIN32__ +# # endif +# #endif +# # #ifdef __cplusplus # extern "C" { # #endif @@ -646,8 +652,10 @@ compiler." # } # #endif # +# #ifdef __CYGWIN__ # #include # DECLARE_CYGWIN_DLL( DllMain ); +# #endif # HINSTANCE __hDllInstance_base; # # BOOL APIENTRY @@ -893,6 +901,14 @@ compiler." fi case "$arg" in *.la | *.lo) ;; # We handle these cases below. + force) + if test "$dlself" = no; then + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; self) if test "$prev" = dlprefiles; then dlself=yes @@ -1222,7 +1238,7 @@ compiler." fi if test -n "$dependency_libs"; then - # Extract -R from dependency_libs + # Extract -R and -L from dependency_libs temp_deplibs= for deplib in $dependency_libs; do case "$deplib" in @@ -1234,7 +1250,13 @@ compiler." -L*) case "$compile_command $temp_deplibs " in *" $deplib "*) ;; *) temp_deplibs="$temp_deplibs $deplib";; - esac;; + esac + temp_dir=`$echo "X$deplib" | $Xsed -e 's/^-L//'` + case " $lib_search_path " in + *" $temp_dir "*) ;; + *) lib_search_path="$lib_search_path $temp_dir";; + esac + ;; *) temp_deplibs="$temp_deplibs $deplib";; esac done @@ -2037,51 +2059,6 @@ EOF # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` - if test -n "$whole_archive_flag_spec"; then - if test -n "$convenience"; then - eval libobjs=\"\$libobjs $whole_archive_flag_spec\" - fi - 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 - $show "(cd $xdir && $AR x $xabs)" - $run eval "(cd \$xdir && $AR x \$xabs)" || exit $? - - libobjs="$libobjs "`find $xdir -name \*.o -print -o -name \*.lo -print | $NL2SP` - done - fi - - if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then - eval flag=\"$thread_safe_flag_spec\" - linkopts="$linkopts $flag" - fi - # Prepare the list of exported symbols if test -z "$export_symbols"; then if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then @@ -2109,6 +2086,51 @@ EOF $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"' fi + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec"; then + 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 + $show "(cd $xdir && $AR x $xabs)" + $run eval "(cd \$xdir && $AR x \$xabs)" || exit $? + + libobjs="$libobjs "`find $xdir -name \*.o -print -o -name \*.lo -print | $NL2SP` + done + fi + fi + + if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then + eval flag=\"$thread_safe_flag_spec\" + linkopts="$linkopts $flag" + fi + # Do each of the archive commands. if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval cmds=\"$archive_expsym_cmds\" @@ -2187,8 +2209,58 @@ EOF # Delete the old objects. $run $rm $obj $libobj + # Objects from convenience libraries. This assumes + # single-version convenience libraries. Whenever we create + # different ones for PIC/non-PIC, this we'll have to duplicate + # the extraction. + reload_conv_objs= + gentop= + # reload_cmds runs $LD directly, so let us get rid of + # -Wl from whole_archive_flag_spec + wl= + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec"; then + 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 + $show "(cd $xdir && $AR x $xabs)" + $run eval "(cd \$xdir && $AR x \$xabs)" || exit $? + + reload_conv_objs="$reload_objs "`find $xdir -name \*.o -print -o -name \*.lo -print | $NL2SP` + done + fi + fi + # Create the old-style object. - reload_objs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP` + reload_objs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" output="$obj" eval cmds=\"$reload_cmds\" @@ -2201,9 +2273,21 @@ EOF IFS="$save_ifs" # Exit if we aren't doing a library object file. - test -z "$libobj" && exit 0 + if test -z "$libobj"; then + if test -n "$gentop"; then + $show "${rm}r $gentop" + $run ${rm}r $gentop + fi + + exit 0 + fi if test "$build_libtool_libs" != yes; then + if test -n "$gentop"; then + $show "${rm}r $gentop" + $run ${rm}r $gentop + fi + # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. $show "echo timestamp > $libobj" @@ -2213,7 +2297,7 @@ EOF if test -n "$pic_flag"; then # Only do commands if we really have different PIC objects. - reload_objs="$libobjs" + reload_objs="$libobjs $reload_conv_objs" output="$libobj" eval cmds=\"$reload_cmds\" IFS="${IFS= }"; save_ifs="$IFS"; IFS='~' @@ -2231,6 +2315,11 @@ EOF $run $LN_S $obj $libobj || exit $? fi + if test -n "$gentop"; then + $show "${rm}r $gentop" + $run ${rm}r $gentop + fi + exit 0 ;; @@ -2363,7 +2452,7 @@ EOF fi dlsyms= - if test -n "$dlfiles$dlprefiles" || test "$dlself" = yes; then + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then if test -n "$NM" && test -n "$global_symbol_pipe"; then dlsyms="${outputname}S.c" else @@ -2776,7 +2865,7 @@ else fi" else echo >> $output "\ - program='$outputname' + program='$outputname$exeext' progdir=\"\$thisdir/$objdir\" " fi @@ -3201,13 +3290,11 @@ libdir='$install_libdir'\ # Install the shared library and build the symlinks. $show "$install_prog $dir/$realname $destdir/$realname" $run eval "$install_prog $dir/$realname $destdir/$realname" || exit $? - test "X$dlname" = "X$realname" && dlname= if test $# -gt 0; then # Delete the old symlinks, and create new ones. for linkname do - test "X$dlname" = "X$linkname" && dlname= if test "$linkname" != "$realname"; then $show "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)" $run eval "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)" @@ -3215,12 +3302,6 @@ libdir='$install_libdir'\ done fi - if test -n "$dlname"; then - # Install the dynamically-loadable library. - $show "$install_prog $dir/$dlname $destdir/$dlname" - $run eval "$install_prog $dir/$dlname $destdir/$dlname" || exit $? - fi - # Do each command in the postinstall commands. lib="$destdir/$realname" eval cmds=\"$postinstall_cmds\" @@ -3652,9 +3733,7 @@ libdir='$install_libdir'\ # Delete the libtool libraries and symlinks. for n in $library_names; do rmfiles="$rmfiles $dir/$n" - test "X$n" = "X$dlname" && dlname= done - test -n "$dlname" && rmfiles="$rmfiles $dir/$dlname" test -n "$old_library" && rmfiles="$rmfiles $dir/$old_library" $show "$rm $rmfiles" diff --git a/plug-ins/Makefile.am b/plug-ins/Makefile.am index dfcce7137c..b226aa56bd 100644 --- a/plug-ins/Makefile.am +++ b/plug-ins/Makefile.am @@ -16,6 +16,7 @@ SUBDIRS = \ Lighting \ MapObject \ bmp \ + borderaverage \ faxg3 \ fits \ flame \ diff --git a/plug-ins/borderaverage/.cvsignore b/plug-ins/borderaverage/.cvsignore new file mode 100644 index 0000000000..54a5383253 --- /dev/null +++ b/plug-ins/borderaverage/.cvsignore @@ -0,0 +1,6 @@ +Makefile.in +Makefile +.deps +_libs +.libs +borderaverage diff --git a/plug-ins/borderaverage/Makefile.am b/plug-ins/borderaverage/Makefile.am new file mode 100644 index 0000000000..063203275b --- /dev/null +++ b/plug-ins/borderaverage/Makefile.am @@ -0,0 +1,31 @@ +## Process this file with automake to produce Makefile.in + +libexecdir = $(gimpplugindir)/plug-ins + +libexec_PROGRAMS = borderaverage + +borderaverage_SOURCES = \ + borderaverage.c + +INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/plug-ins/libgck \ + $(GTK_CFLAGS) \ + -I$(includedir) + +AM_CPPFLAGS = \ + -DLOCALEDIR=\""$(localedir)"\" + +LDADD = \ + $(top_builddir)/plug-ins/megawidget/libmegawidget.a \ + $(top_builddir)/libgimp/libgimp.la \ + $(top_builddir)/plug-ins/libgck/gck/libgck.la \ + $(GTK_LIBS) \ + $(INTLLIBS) + +.PHONY: files + +files: + @files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \ + echo $$p; \ + done diff --git a/plug-ins/common/borderaverage.c-28877 b/plug-ins/borderaverage/borderaverage.c similarity index 99% rename from plug-ins/common/borderaverage.c-28877 rename to plug-ins/borderaverage/borderaverage.c index 9844cf46e0..717759881f 100644 --- a/plug-ins/common/borderaverage.c-28877 +++ b/plug-ins/borderaverage/borderaverage.c @@ -21,7 +21,7 @@ #include #include #include -#include +#include #include #include "config.h" diff --git a/plug-ins/common/Makefile.am b/plug-ins/common/Makefile.am index b4d27a3c5b..5ac5ad82f4 100644 --- a/plug-ins/common/Makefile.am +++ b/plug-ins/common/Makefile.am @@ -24,7 +24,6 @@ libexec_PROGRAMS = \ autostretch_hsv \ blinds \ blur \ - borderaverage \ bumpmap \ bz2 \ c_astretch \ @@ -32,6 +31,7 @@ libexec_PROGRAMS = \ colorify \ compose \ convmatrix \ + csource \ cubism \ decompose \ deinterlace \ @@ -62,7 +62,6 @@ libexec_PROGRAMS = \ guillotine \ gz \ header \ - csource \ hot \ hrz \ illusion \ @@ -235,16 +234,6 @@ blur_LDADD = \ $(GTK_LIBS) \ $(INTLLIBS) -borderaverage_SOURCES = \ - borderaverage.c - -borderaverage_LDADD = \ - $(top_builddir)/plug-ins/megawidget/libmegawidget.a \ - $(top_builddir)/plug-ins/libgck/gck/libgck.la \ - $(top_builddir)/libgimp/libgimp.la \ - $(GTK_LIBS) \ - $(INTLLIBS) - bumpmap_SOURCES = \ bumpmap.c @@ -303,6 +292,14 @@ convmatrix_LDADD = \ $(GTK_LIBS) \ $(INTLLIBS) +csource_SOURCES = \ + csource.c + +csource_LDADD = \ + $(top_builddir)/libgimp/libgimp.la \ + $(GTK_LIBS) \ + $(INTLLIBS) + cubism_SOURCES = \ cubism.c @@ -547,14 +544,6 @@ header_LDADD = \ $(GLIB_LIBS) \ $(INTLLIBS) -csource_SOURCES = \ - csource.c - -csource_LDADD = \ - $(top_builddir)/libgimp/libgimp.la \ - $(GTK_LIBS) \ - $(INTLLIBS) - hot_SOURCES = \ hot.c diff --git a/plug-ins/common/borderaverage.c b/plug-ins/common/borderaverage.c new file mode 100644 index 0000000000..717759881f --- /dev/null +++ b/plug-ins/common/borderaverage.c @@ -0,0 +1,363 @@ +/* borderaverage 0.01 - image processing plug-in for the Gimp 1.0 API + * + * Copyright (C) 1998 Philipp Klaus (webmaster@access.ch) + * + * + * 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. + */ + +#include +#include +#include +#include +#include + +#include "config.h" +#include "libgimp/stdplugins-intl.h" + + +/* Declare local functions. + */ +static void query (void); +static void run (char *name, + int nparams, + GParam *param, + int *nreturn_vals, + GParam **return_vals); + +static void borderaverage(GDrawable *drawable, guchar *res_r, guchar *res_g, guchar *res_b); + +static gint borderaverage_dialog(void); + +static void add_new_color (gint bytes, guchar* buffer, gint* cube, gint bucket_expo); + +void menu_callback(GtkWidget *widget, gpointer client_data); + +GPlugInInfo PLUG_IN_INFO = +{ + NULL, /* init_proc */ + NULL, /* quit_proc */ + query, /* query_proc */ + run, /* run_proc */ +}; + +static gint borderaverage_thickness = 3; +static gint borderaverage_bucket_exponent = 4; + +struct borderaverage_data { + gint thickness; + gint bucket_exponent; + } borderaverage_data = { 3, 4 }; + +gchar * menu_labels[] = + { + "1 (nonsens?)", "2", "4", "8", "16", "32", "64", "128", "256 (nonsens?)" + }; + +MAIN () + +static void +query () +{ + static GParamDef args[] = + { + { PARAM_INT32, "run_mode", "Interactive, non-interactive" }, + { PARAM_IMAGE, "image", "Input image (unused)" }, + { PARAM_DRAWABLE, "drawable", "Input drawable" }, + { PARAM_INT32, "thickness", "Border size to take in count" }, + { PARAM_INT32, "bucket_exponent", "Bits for bucket size (default=4: 16 Levels)" }, + }; + static GParamDef return_vals[] = + { + { PARAM_INT32, "num_channels", "Number of color channels returned (always 3)" }, + { PARAM_INT8ARRAY, "color_vals", "The average color of the specified border"}, + }; + static int nargs = sizeof (args) / sizeof (args[0]); + static int nreturn_vals = sizeof (return_vals) / sizeof (return_vals[0]); + + INIT_I18N(); + + gimp_install_procedure ("plug_in_borderaverage", + "Borderaverage", + "", + "Philipp Klaus", + "Internet Access AG", + "1998", + _("/Filters/Colors/Border Average"), + "RGB*", + PROC_PLUG_IN, + nargs, nreturn_vals, + args, return_vals); +} + +static void +run (char *name, + int nparams, + GParam *param, + int *nreturn_vals, + GParam **return_vals) +{ + static GParam values[3]; + GDrawable *drawable; + GRunModeType run_mode; + GStatusType status = STATUS_SUCCESS; + gint8 *result_color; + + INIT_I18N(); + + run_mode = param[0].data.d_int32; + + /* get the return memory */ + result_color = (gint8 *) g_new(gint8, 3); + + /* Get the specified drawable */ + drawable = gimp_drawable_get (param[2].data.d_drawable); + + switch (run_mode) { + case RUN_INTERACTIVE: + gimp_get_data("plug_in_borderaverage", &borderaverage_data); + borderaverage_thickness = borderaverage_data.thickness; + borderaverage_bucket_exponent = borderaverage_data.bucket_exponent; + if (! borderaverage_dialog()) + status = STATUS_EXECUTION_ERROR; + break; + + case RUN_NONINTERACTIVE: + if (nparams != 5) + status = STATUS_CALLING_ERROR; + if (status == STATUS_SUCCESS) + borderaverage_thickness = param[3].data.d_int32; + borderaverage_bucket_exponent = param[4].data.d_int32; + + break; + + case RUN_WITH_LAST_VALS: + gimp_get_data("plug_in_borderaverage", &borderaverage_data); + borderaverage_thickness = borderaverage_data.thickness; + borderaverage_bucket_exponent = borderaverage_data.bucket_exponent; + break; + + default: + break; + } + + if (status == STATUS_SUCCESS) { + /* Make sure that the drawable is RGB color */ + if (gimp_drawable_color (drawable->id)) { + gimp_progress_init ("borderaverage"); + borderaverage (drawable, &result_color[0], &result_color[1], &result_color[2]); + + if (run_mode != RUN_NONINTERACTIVE) { + gimp_palette_set_foreground(result_color[0],result_color[1],result_color[2]); + gimp_displays_flush (); + } + if (run_mode == RUN_INTERACTIVE) + borderaverage_data.thickness = borderaverage_thickness; + borderaverage_data.bucket_exponent = borderaverage_bucket_exponent; + gimp_set_data("plug_in_borderaverage", &borderaverage_data, sizeof(borderaverage_data)); + } else { + status = STATUS_EXECUTION_ERROR; + } + } + *nreturn_vals = 3; + *return_vals = values; + + values[0].type = PARAM_STATUS; + values[0].data.d_status = status; + + values[1].type = PARAM_INT32; + values[1].data.d_int32 = 3; + + values[2].type = PARAM_INT8ARRAY; + values[2].data.d_int8array = result_color; + + gimp_drawable_detach (drawable); +} + +static void +borderaverage (GDrawable *drawable, guchar *res_r, guchar *res_g, guchar *res_b) { + gint width; + gint height; + gint x1, x2, y1, y2; + gint bytes; + gint max; + + guchar r, g, b; + + guchar *buffer; + gint bucket_num, bucket_expo, bucket_rexpo; + + gint* cube; + + gint row, col, i,j,k; /* index variables */ + + GPixelRgn myPR; + + + /* allocate and clear the cube before */ + bucket_expo = borderaverage_bucket_exponent; + bucket_rexpo = 8 - bucket_expo; + cube = (gint*) malloc( (1 << (bucket_rexpo * 3)) * sizeof(gint) ); + bucket_num = 1 << bucket_rexpo; + + for (i = 0; i < bucket_num; i++) { + for (j = 0; j < bucket_num; j++) { + for (k = 0; k < bucket_num; k++) { + cube[(i << (bucket_rexpo << 1)) + (j << bucket_rexpo) + k] = 0; + } + } + } + + + /* Get the input area. This is the bounding box of the selection in + * the image (or the entire image if there is no selection). Only + * operating on the input area is simply an optimization. It doesn't + * need to be done for correct operation. (It simply makes it go + * faster, since fewer pixels need to be operated on). + */ + + gimp_drawable_mask_bounds (drawable->id, &x1, &y1, &x2, &y2); + + /* Get the size of the input image. (This will/must be the same + * as the size of the output image. + */ + width = drawable->width; + height = drawable->height; + bytes = drawable->bpp; + + /* allocate row buffer */ + buffer = (guchar *) malloc ((x2 - x1) * bytes); + + /* initialize the pixel regions */ + gimp_pixel_rgn_init (&myPR, drawable, 0, 0, width, height, FALSE, FALSE); + + /* loop through the rows, performing our magic*/ + for (row = y1; row < y2; row++) { + + gimp_pixel_rgn_get_row (&myPR, buffer, x1, row, (x2-x1)); + + if (row < y1 + borderaverage_thickness || + row >= y2 - borderaverage_thickness) { + /* add the whole row */ + for (col = 0; col < ((x2 - x1) * bytes); col += bytes) { + add_new_color(bytes, &buffer[col], cube, bucket_expo); + } + } else { + /* add the left border */ + for (col = 0; col < (borderaverage_thickness * bytes); col += bytes) { + add_new_color(bytes, &buffer[col], cube, bucket_expo); + } + /* add the right border */ + for (col = ((x2 - x1 - borderaverage_thickness) * bytes); + col < ((x2 - x1) * bytes); col += bytes) { + add_new_color(bytes, &buffer[col], cube, bucket_expo); + } + } + + + if ((row % 5) == 0) + gimp_progress_update ((double) row / (double) (y2 - y1)); + } + + max = 0; r = 0; g = 0; b = 0; + + /* get max of cube */ + for (i = 0; i < bucket_num; i++) { + for (j = 0; j < bucket_num; j++) { + for (k = 0; k < bucket_num; k++) { + if (cube[(i << (bucket_rexpo << 1)) + (j << bucket_rexpo) + k] > max) { + max = cube[(i << (bucket_rexpo << 1)) + (j << bucket_rexpo) + k]; + r = (i<>bucket_expo; + if (bytes > 1) { + g = buffer[1] >>bucket_expo; + } else { + g = 0; + } + if (bytes > 2) { + b = buffer[2] >>bucket_expo; + } else { + b = 0; + } + cube[(r << (bucket_rexpo << 1)) + (g << bucket_rexpo) + b]++; +} + +static gint borderaverage_dialog() { + GtkWidget *dlg, *frame, *vbox2; + GtkWidget *vbox, *menu; + gint runp; + gchar **argv; + gint argc; + + /* Set args */ + argc = 1; + argv = g_new(gchar *, 1); + argv[0] = g_strdup("borderaverage"); + gtk_init(&argc, &argv); + gtk_rc_parse(gimp_gtkrc()); + + dlg = mw_app_new("plug_in_borderaverage", "Borderaverage", &runp); + + vbox = gtk_vbox_new(FALSE, 0); + gtk_container_border_width(GTK_CONTAINER(vbox), 5); + gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dlg)->vbox), vbox, TRUE, TRUE, 0); + gtk_widget_show(vbox); + + mw_ientry_new(vbox, _("Border Size"), _("Thickness"), &borderaverage_thickness); + + + frame=gck_frame_new(_("Number of colors"),vbox,GTK_SHADOW_ETCHED_IN,FALSE,FALSE,0,2); + vbox2=gck_vbox_new(frame,FALSE,TRUE,TRUE,5,0,5); + + menu=gck_option_menu_new(_("Bucket Size:"),vbox2,TRUE,TRUE,0, + menu_labels,(GtkSignalFunc)menu_callback, NULL); + gtk_option_menu_set_history(GTK_OPTION_MENU(menu),borderaverage_bucket_exponent); + gtk_widget_show(menu); + + gtk_widget_show(dlg); + gtk_main(); + gdk_flush(); + + if (runp) + return 1; + else + return 0; +} + + +void menu_callback(GtkWidget *widget, gpointer client_data) { + borderaverage_bucket_exponent=(gint)gtk_object_get_data(GTK_OBJECT(widget),"_GckOptionMenuItemID"); +} diff --git a/plug-ins/common/mkgen.pl b/plug-ins/common/mkgen.pl index 94b3cb6aba..edf53409cf 100755 --- a/plug-ins/common/mkgen.pl +++ b/plug-ins/common/mkgen.pl @@ -24,6 +24,10 @@ foreach ($bins, $opts) { s/ \\\n$//s } print MK < { libdep => 'glib' }, 'blinds' => { libdep => 'gtk' }, 'blur' => { libdep => 'gtk', libsupp => 'gpc' }, - 'borderaverage' => { libdep => 'gtk', libsupp => 'gck:megawidget' }, 'bumpmap' => { libdep => 'gtk', ui => 1 }, 'bz2' => { libdep => 'glib' }, 'c_astretch' => { libdep => 'glib' }, @@ -18,6 +17,7 @@ 'colorify' => { libdep => 'gtk' }, 'compose' => { libdep => 'gtk', ui => 1 }, 'convmatrix' => { libdep => 'gtk' }, + 'csource' => { libdep => 'gtk' }, 'cubism' => { libdep => 'gtk' }, 'decompose' => { libdep => 'gtk' }, 'deinterlace' => { libdep => 'gtk', libsupp => 'megawidget' }, diff --git a/plug-ins/gap/Makefile.am b/plug-ins/gap/Makefile.am index 9d8498e76c..4a6b0329e9 100644 --- a/plug-ins/gap/Makefile.am +++ b/plug-ins/gap/Makefile.am @@ -79,7 +79,7 @@ EXTRA_DIST = \ iter_ALT/old/plug_in_CentralReflection_iter_ALT.inc \ iter_ALT/old/plug_in_anamorphose_iter_ALT.inc \ iter_ALT/old/plug_in_blur2_iter_ALT.inc \ - iter_ALT/old/plug-in_colorify_iter_ALT.inc \ + iter_ALT/old/plug_in_colorify_iter_ALT.inc \ iter_ALT/old/plug_in_encript_iter_ALT.inc \ iter_ALT/old/plug_in_figures_iter_ALT.inc \ iter_ALT/old/plug_in_gflare_iter_ALT.inc \ diff --git a/po-plug-ins/POTFILES.in b/po-plug-ins/POTFILES.in index 342b80ce73..f595d2215c 100644 --- a/po-plug-ins/POTFILES.in +++ b/po-plug-ins/POTFILES.in @@ -11,7 +11,7 @@ plug-ins/common/blur.c plug-ins/bmp/bmp.c plug-ins/bmp/bmpread.c plug-ins/bmp/bmpwrite.c -plug-ins/common/borderaverage.c +plug-ins/borderaverage/borderaverage.c plug-ins/common/bumpmap.c plug-ins/common/bz2.c plug-ins/common/checkerboard.c diff --git a/po-plug-ins/de.po b/po-plug-ins/de.po index 4336c06aab..456dd3c23c 100644 --- a/po-plug-ins/de.po +++ b/po-plug-ins/de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 1999-06-05 14:12-0700\n" +"POT-Creation-Date: 1999-07-17 11:11-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,236 +14,230 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: plug-ins/CML_explorer/CML_explorer.c:226 +#: plug-ins/common/CML_explorer.c:226 msgid "Keep image's values" msgstr "Keep image's values" -#: plug-ins/CML_explorer/CML_explorer.c:228 +#: plug-ins/common/CML_explorer.c:228 msgid "Keep the first value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:230 +#: plug-ins/common/CML_explorer.c:230 msgid "Fill with parameter k" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:232 +#: plug-ins/common/CML_explorer.c:232 msgid "k{x(1-x)}^p" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:234 +#: plug-ins/common/CML_explorer.c:234 msgid "k{x(1-x)}^p stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:236 +#: plug-ins/common/CML_explorer.c:236 msgid "kx^p" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:238 +#: plug-ins/common/CML_explorer.c:238 msgid "kx^p stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:240 +#: plug-ins/common/CML_explorer.c:240 msgid "k(1 - x^p)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:242 +#: plug-ins/common/CML_explorer.c:242 msgid "k(1 - x^p) stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:244 +#: plug-ins/common/CML_explorer.c:244 msgid "Delta function" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:246 +#: plug-ins/common/CML_explorer.c:246 msgid "Delta function stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:248 +#: plug-ins/common/CML_explorer.c:248 msgid "sin^p-based function" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:250 +#: plug-ins/common/CML_explorer.c:250 msgid "sin^p, stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:256 +#: plug-ins/common/CML_explorer.c:256 msgid "None" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:258 +#: plug-ins/common/CML_explorer.c:258 msgid "Max (x, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:260 +#: plug-ins/common/CML_explorer.c:260 msgid "Max (x+d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:262 +#: plug-ins/common/CML_explorer.c:262 msgid "Max (x-d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:264 -msgid "Mix (x, -)" +#: plug-ins/common/CML_explorer.c:264 +msgid "Min (x, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:266 +#: plug-ins/common/CML_explorer.c:266 msgid "Min (x+d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:268 +#: plug-ins/common/CML_explorer.c:268 msgid "Min (x-d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:270 +#: plug-ins/common/CML_explorer.c:270 msgid "Max (x+d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:272 +#: plug-ins/common/CML_explorer.c:272 msgid "Max (x+d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:274 +#: plug-ins/common/CML_explorer.c:274 msgid "Max (x-d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:276 +#: plug-ins/common/CML_explorer.c:276 msgid "Max (x-d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:278 +#: plug-ins/common/CML_explorer.c:278 msgid "Min (x+d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:280 +#: plug-ins/common/CML_explorer.c:280 msgid "Min (x+d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:282 +#: plug-ins/common/CML_explorer.c:282 msgid "Min (x-d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:284 +#: plug-ins/common/CML_explorer.c:284 msgid "Min (x-d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:290 +#: plug-ins/common/CML_explorer.c:290 msgid "Standard" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:292 +#: plug-ins/common/CML_explorer.c:292 msgid "Use average value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:294 +#: plug-ins/common/CML_explorer.c:294 msgid "Use reverse value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:296 +#: plug-ins/common/CML_explorer.c:296 msgid "With random power (0,10)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:298 +#: plug-ins/common/CML_explorer.c:298 msgid "With random power (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:300 +#: plug-ins/common/CML_explorer.c:300 msgid "With gradient power (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:302 +#: plug-ins/common/CML_explorer.c:302 msgid "Multiply rand. value (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:304 +#: plug-ins/common/CML_explorer.c:304 msgid "Multiply rand. value (0,2)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:306 +#: plug-ins/common/CML_explorer.c:306 msgid "Multiply gradient (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:308 +#: plug-ins/common/CML_explorer.c:308 msgid "With p and random (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:313 +#: plug-ins/common/CML_explorer.c:313 msgid "All black" msgstr "" #. 0 -#: plug-ins/CML_explorer/CML_explorer.c:314 +#: plug-ins/common/CML_explorer.c:314 msgid "All gray" msgstr "" #. 1 -#: plug-ins/CML_explorer/CML_explorer.c:315 +#: plug-ins/common/CML_explorer.c:315 msgid "All white" msgstr "" #. 2 -#: plug-ins/CML_explorer/CML_explorer.c:316 +#: plug-ins/common/CML_explorer.c:316 msgid "The first row of the image" msgstr "" #. 3 -#: plug-ins/CML_explorer/CML_explorer.c:317 +#: plug-ins/common/CML_explorer.c:317 msgid "Continuous gradient" msgstr "" #. 4 -#: plug-ins/CML_explorer/CML_explorer.c:318 +#: plug-ins/common/CML_explorer.c:318 msgid "Continuous grad. w/o gap" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:320 +#: plug-ins/common/CML_explorer.c:320 msgid "Random, ch. independent" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:322 +#: plug-ins/common/CML_explorer.c:322 msgid "Random shared" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:324 +#: plug-ins/common/CML_explorer.c:324 msgid "Randoms from seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:326 +#: plug-ins/common/CML_explorer.c:326 msgid "Randoms from seed (shared)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:380 -#: plug-ins/CML_explorer/CML_explorer.c:388 -#: plug-ins/CML_explorer/CML_explorer.c:1431 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:135 +#: plug-ins/common/CML_explorer.c:380 plug-ins/common/CML_explorer.c:388 +#: plug-ins/common/CML_explorer.c:1431 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:135 msgid "Hue" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:381 -#: plug-ins/CML_explorer/CML_explorer.c:389 -#: plug-ins/CML_explorer/CML_explorer.c:1435 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:136 +#: plug-ins/common/CML_explorer.c:381 plug-ins/common/CML_explorer.c:389 +#: plug-ins/common/CML_explorer.c:1435 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:136 msgid "Saturation" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:382 -#: plug-ins/CML_explorer/CML_explorer.c:390 -#: plug-ins/CML_explorer/CML_explorer.c:1439 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:137 +#: plug-ins/common/CML_explorer.c:382 plug-ins/common/CML_explorer.c:390 +#: plug-ins/common/CML_explorer.c:1439 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:137 msgid "Value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:387 +#: plug-ins/common/CML_explorer.c:387 msgid "NULL" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:494 +#: plug-ins/common/CML_explorer.c:494 msgid "Make an image of Coupled-Map Lattice" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:495 +#: plug-ins/common/CML_explorer.c:495 msgid "" "Make an image of Coupled-Map Lattice (CML). CML is a kind of Cellula " "Automata on continuous (value) domain. In RUN_NONINTERACTIVE, the name of a " @@ -251,87 +245,87 @@ msgid "" "parameter file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1327 +#: plug-ins/common/CML_explorer.c:1327 msgid "Coupled-Map-Lattice Explorer" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1344 plug-ins/ps/ps.c:2423 +#: plug-ins/common/CML_explorer.c:1344 plug-ins/common/ps.c:2448 msgid "Preview" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1385 +#: plug-ins/common/CML_explorer.c:1385 msgid "New seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1391 +#: plug-ins/common/CML_explorer.c:1391 msgid "Fix seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1397 +#: plug-ins/common/CML_explorer.c:1397 msgid "Random seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1409 +#: plug-ins/common/CML_explorer.c:1409 msgid "Load" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1412 +#: plug-ins/common/CML_explorer.c:1412 msgid "Save" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1429 +#: plug-ins/common/CML_explorer.c:1429 msgid "Hue settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1433 +#: plug-ins/common/CML_explorer.c:1433 msgid "Saturation settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1437 +#: plug-ins/common/CML_explorer.c:1437 msgid "Value (grayimage) settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1441 +#: plug-ins/common/CML_explorer.c:1441 msgid "Advanced settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1443 +#: plug-ins/common/CML_explorer.c:1443 msgid "Advanced" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1455 +#: plug-ins/common/CML_explorer.c:1455 msgid "Other parameter settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1459 +#: plug-ins/common/CML_explorer.c:1459 msgid "Channel independed parameters" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1463 +#: plug-ins/common/CML_explorer.c:1463 msgid "Initial value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1469 +#: plug-ins/common/CML_explorer.c:1469 msgid "Zoom scale" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1474 +#: plug-ins/common/CML_explorer.c:1474 msgid "Start offset" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1494 +#: plug-ins/common/CML_explorer.c:1494 msgid "Seed of random (only for \"from seed\" modes)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1498 +#: plug-ins/common/CML_explorer.c:1498 msgid "Seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1508 +#: plug-ins/common/CML_explorer.c:1508 msgid "Switch to \"from seed\" with the last seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1515 +#: plug-ins/common/CML_explorer.c:1515 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 " @@ -339,202 +333,199 @@ msgid "" "(2) all mutation rates equal to zero." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1532 +#: plug-ins/common/CML_explorer.c:1532 msgid "Others" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1539 +#: plug-ins/common/CML_explorer.c:1539 msgid "Misc operations" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1544 +#: plug-ins/common/CML_explorer.c:1544 msgid "Copy settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1548 +#: plug-ins/common/CML_explorer.c:1548 msgid "Source ch." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1554 -#: plug-ins/CML_explorer/CML_explorer.c:1588 +#: plug-ins/common/CML_explorer.c:1554 plug-ins/common/CML_explorer.c:1588 msgid "Destination ch." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1560 +#: plug-ins/common/CML_explorer.c:1560 msgid "Do copy parameters" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1578 +#: plug-ins/common/CML_explorer.c:1578 msgid "Selective load settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1582 +#: plug-ins/common/CML_explorer.c:1582 msgid "Source ch. in file" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1608 +#: plug-ins/common/CML_explorer.c:1608 msgid "Misc ops." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1644 +#: plug-ins/common/CML_explorer.c:1644 msgid "Function type" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1651 +#: plug-ins/common/CML_explorer.c:1651 msgid "Composition" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1658 +#: plug-ins/common/CML_explorer.c:1658 msgid "Misc arrange" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1665 +#: plug-ins/common/CML_explorer.c:1665 msgid "Use cyclic range" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1670 +#: plug-ins/common/CML_explorer.c:1670 msgid "Mod. rate" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1677 +#: plug-ins/common/CML_explorer.c:1677 msgid "Env. sensitivity" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1684 +#: plug-ins/common/CML_explorer.c:1684 msgid "Diffusion dist." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1691 +#: plug-ins/common/CML_explorer.c:1691 msgid "# of subranges" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1698 +#: plug-ins/common/CML_explorer.c:1698 msgid "P(ower factor)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1705 +#: plug-ins/common/CML_explorer.c:1705 msgid "Parameter k" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1712 +#: plug-ins/common/CML_explorer.c:1712 msgid "Range low" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1719 +#: plug-ins/common/CML_explorer.c:1719 msgid "Range high" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1738 +#: plug-ins/common/CML_explorer.c:1738 msgid "Plot the graph of the settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1772 +#: plug-ins/common/CML_explorer.c:1772 msgid "Ch. sensitivity" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1779 +#: plug-ins/common/CML_explorer.c:1779 msgid "Mutation rate" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1786 +#: plug-ins/common/CML_explorer.c:1786 msgid "Mutation dist." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1815 +#: plug-ins/common/CML_explorer.c:1815 msgid "Graph of the current settings" msgstr "" #. Action Area -#: plug-ins/CML_explorer/CML_explorer.c:1820 -#: plug-ins/CML_explorer/CML_explorer.c:2681 -#: plug-ins/CML_explorer/CML_explorer.c:2777 -#: plug-ins/apply_lens/apply_lens.c:420 plug-ins/blur/blur.c:619 -#: plug-ins/bmp/bmpwrite.c:428 plug-ins/bumpmap/bumpmap.c:970 -#: plug-ins/checkerboard/checkerboard.c:381 plug-ins/compose/compose.c:816 -#: plug-ins/convmatrix/convmatrix.c:706 plug-ins/cubism/cubism.c:338 -#: plug-ins/decompose/decompose.c:914 plug-ins/depthmerge/depthmerge.c:746 -#: plug-ins/destripe/destripe.c:695 plug-ins/gif/gif.c:1263 -#: plug-ins/jpeg/jpeg.c:1000 plug-ins/mail/mail.c:491 -#: plug-ins/oilify/oilify.c:460 plug-ins/png/png.c:1180 -#: plug-ins/print/print.c:1279 plug-ins/ps/ps.c:1998 plug-ins/ps/ps.c:2265 -#: plug-ins/xbm/xbm.c:959 plug-ins/xpm/xpm.c:763 +#: plug-ins/bmp/bmpwrite.c:428 plug-ins/common/CML_explorer.c:1820 +#: plug-ins/common/CML_explorer.c:2681 plug-ins/common/CML_explorer.c:2777 +#: plug-ins/common/apply_lens.c:420 plug-ins/common/blur.c:619 +#: plug-ins/common/bumpmap.c:970 plug-ins/common/checkerboard.c:381 +#: plug-ins/common/compose.c:816 plug-ins/common/convmatrix.c:706 +#: plug-ins/common/cubism.c:338 plug-ins/common/decompose.c:914 +#: plug-ins/common/depthmerge.c:746 plug-ins/common/destripe.c:695 +#: plug-ins/common/gif.c:1263 plug-ins/common/jpeg.c:1000 +#: plug-ins/common/mail.c:491 plug-ins/common/oilify.c:460 +#: plug-ins/common/png.c:827 plug-ins/common/ps.c:2023 +#: plug-ins/common/ps.c:2290 plug-ins/common/xbm.c:959 +#: plug-ins/common/xpm.c:763 plug-ins/print/print.c:1104 msgid "OK" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1830 +#: plug-ins/common/CML_explorer.c:1830 msgid "The Graph" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1922 +#: plug-ins/common/CML_explorer.c:1922 msgid "Warning: the source and the destination are the same channel." msgstr "" #. Action Area -#: plug-ins/CML_explorer/CML_explorer.c:2010 +#: plug-ins/common/CML_explorer.c:2010 msgid "Execute" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2019 +#: plug-ins/common/CML_explorer.c:2019 msgid "Execute and Exit" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2027 +#: plug-ins/common/CML_explorer.c:2027 msgid "Exit" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2045 +#: plug-ins/common/CML_explorer.c:2045 msgid "Save parameters to" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2108 -#: plug-ins/CML_explorer/CML_explorer.c:2301 +#: plug-ins/common/CML_explorer.c:2108 plug-ins/common/CML_explorer.c:2301 #, c-format msgid "Error: could not open \"%s\"" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2173 +#: plug-ins/common/CML_explorer.c:2173 msgid "CML file operation warning" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2180 +#: plug-ins/common/CML_explorer.c:2180 #, c-format msgid "%s exists, overwrite?" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2223 +#: plug-ins/common/CML_explorer.c:2223 msgid "Load parameters from" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2225 +#: plug-ins/common/CML_explorer.c:2225 msgid "Selective load from" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2324 +#: plug-ins/common/CML_explorer.c:2324 msgid "Error: it's not CML parameter file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2331 +#: plug-ins/common/CML_explorer.c:2331 msgid "Warning: it's an old format file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2333 +#: plug-ins/common/CML_explorer.c:2333 msgid "Warning: Hmmm, it's a parameter file for newer CML_explorer than me." msgstr "" #. cancel button -#: plug-ins/CML_explorer/CML_explorer.c:2690 -#: plug-ins/Lighting/lighting_ui.c:1062 plug-ins/apply_lens/apply_lens.c:430 -#: plug-ins/blur/blur.c:621 plug-ins/bmp/bmpwrite.c:437 -#: plug-ins/bumpmap/bumpmap.c:979 plug-ins/checkerboard/checkerboard.c:390 -#: plug-ins/colorify/colorify.c:319 plug-ins/compose/compose.c:825 -#: plug-ins/convmatrix/convmatrix.c:723 plug-ins/cubism/cubism.c:347 -#: plug-ins/decompose/decompose.c:924 plug-ins/depthmerge/depthmerge.c:756 -#: plug-ins/destripe/destripe.c:704 plug-ins/gif/gif.c:1172 -#: plug-ins/jpeg/jpeg.c:1009 plug-ins/mail/mail.c:502 -#: plug-ins/oilify/oilify.c:469 plug-ins/png/png.c:1189 -#: plug-ins/print/print.c:1166 plug-ins/print/print.c:1272 -#: plug-ins/ps/ps.c:2008 plug-ins/ps/ps.c:2275 plug-ins/xbm/xbm.c:707 -#: plug-ins/xbm/xbm.c:969 plug-ins/xpm/xpm.c:772 +#: plug-ins/Lighting/lighting_ui.c:1062 plug-ins/bmp/bmpwrite.c:437 +#: plug-ins/common/CML_explorer.c:2690 plug-ins/common/apply_lens.c:430 +#: plug-ins/common/blur.c:621 plug-ins/common/bumpmap.c:979 +#: plug-ins/common/checkerboard.c:390 plug-ins/common/colorify.c:323 +#: plug-ins/common/compose.c:825 plug-ins/common/convmatrix.c:723 +#: plug-ins/common/cubism.c:347 plug-ins/common/decompose.c:924 +#: plug-ins/common/depthmerge.c:756 plug-ins/common/destripe.c:704 +#: plug-ins/common/gif.c:1172 plug-ins/common/jpeg.c:1009 +#: plug-ins/common/mail.c:502 plug-ins/common/oilify.c:469 +#: plug-ins/common/png.c:836 plug-ins/common/ps.c:2033 +#: plug-ins/common/ps.c:2300 plug-ins/common/xbm.c:707 +#: plug-ins/common/xbm.c:969 plug-ins/common/xpm.c:772 +#: plug-ins/print/print.c:991 plug-ins/print/print.c:1097 msgid "Cancel" msgstr "" @@ -867,23 +858,23 @@ msgstr "" msgid "Zoom out (make image smaller)" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:136 +#: plug-ins/common/apply_lens.c:136 msgid "Apply a lens effect" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:137 +#: plug-ins/common/apply_lens.c:137 msgid "This plug-in uses Snell's law to draw an ellipsoid lens over the image" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:141 +#: plug-ins/common/apply_lens.c:141 msgid "/Filters/Glass Effects/Apply Lens" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:200 +#: plug-ins/common/apply_lens.c:200 msgid "Applying lens..." msgstr "" -#: plug-ins/apply_lens/apply_lens.c:414 +#: plug-ins/common/apply_lens.c:414 msgid "Lens effect" msgstr "" @@ -892,40 +883,40 @@ msgstr "" #. * #. * First set up the basic containers, label them, etc. #. -#: plug-ins/apply_lens/apply_lens.c:439 plug-ins/blur/blur.c:607 -#: plug-ins/checkerboard/checkerboard.c:399 plug-ins/cubism/cubism.c:356 -#: plug-ins/jpeg/jpeg.c:1018 plug-ins/oilify/oilify.c:478 -#: plug-ins/png/png.c:1200 plug-ins/xpm/xpm.c:781 +#: plug-ins/common/apply_lens.c:439 plug-ins/common/blur.c:607 +#: plug-ins/common/checkerboard.c:399 plug-ins/common/cubism.c:356 +#: plug-ins/common/jpeg.c:1018 plug-ins/common/oilify.c:478 +#: plug-ins/common/png.c:847 plug-ins/common/xpm.c:781 msgid "Parameter Settings" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:448 +#: plug-ins/common/apply_lens.c:448 msgid "Keep original surroundings" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:461 +#: plug-ins/common/apply_lens.c:461 msgid "Set surroundings to index 0" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:462 +#: plug-ins/common/apply_lens.c:462 msgid "Set surroundings to background color" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:475 +#: plug-ins/common/apply_lens.c:475 msgid "Make surroundings transparent" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:490 +#: plug-ins/common/apply_lens.c:490 msgid "Lens refraction index: " msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:82 +#: plug-ins/common/autostretch_hsv.c:82 msgid "" "Automatically stretch the contrast of the specified drawable to cover all " "possible ranges." msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:83 +#: plug-ins/common/autostretch_hsv.c:83 msgid "" "This simple plug-in does an automatic contrast stretch. For each channel in " "the image, it finds the minimum and maximum values... it uses those values " @@ -935,52 +926,52 @@ msgid "" "space, and preserves hue." msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:87 +#: plug-ins/common/autostretch_hsv.c:87 msgid "/Image/Colors/Auto-Stretch HSV" msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:119 +#: plug-ins/common/autostretch_hsv.c:119 msgid "Auto-Stretching HSV..." msgstr "" -#: plug-ins/blur/blur.c:194 +#: plug-ins/common/blur.c:194 msgid "Apply a 3x3 blurring convolution kernel to the specified drawable." msgstr "" -#: plug-ins/blur/blur.c:195 +#: plug-ins/common/blur.c:195 msgid "" "This plug-in randomly blurs the specified drawable, using a 3x3 blur. You " "control the percentage of the pixels that are blurred and the number of " "times blurring is applied. Indexed images are not supported." msgstr "" -#: plug-ins/blur/blur.c:208 +#: plug-ins/common/blur.c:208 msgid "/Filters/Blur/Blur" msgstr "" -#: plug-ins/blur/blur.c:620 +#: plug-ins/common/blur.c:620 msgid "Accept settings and apply filter to image" msgstr "" -#: plug-ins/blur/blur.c:622 +#: plug-ins/common/blur.c:622 msgid "Close plug-in without making any changes" msgstr "" #. #. * Randomization seed initialization controls #. -#: plug-ins/blur/blur.c:626 +#: plug-ins/common/blur.c:626 msgid "Randomization Seed:" msgstr "" #. #. * Time button #. -#: plug-ins/blur/blur.c:637 +#: plug-ins/common/blur.c:637 msgid "Current Time" msgstr "" -#: plug-ins/blur/blur.c:638 +#: plug-ins/common/blur.c:638 msgid "" "Seed random number generator from the current time - this guarantees a " "reasonable randomization" @@ -989,39 +980,39 @@ msgstr "" #. #. * User button #. -#: plug-ins/blur/blur.c:648 +#: plug-ins/common/blur.c:648 msgid "Other Value" msgstr "" -#: plug-ins/blur/blur.c:649 +#: plug-ins/common/blur.c:649 msgid "" "Enable user-entered value for random number generator seed - this allows you " "to repeat a given \"random\" operation" msgstr "" -#: plug-ins/blur/blur.c:661 +#: plug-ins/common/blur.c:661 msgid "Value for seeding the random number generator" msgstr "" #. #. * Randomization percentage label & scale (1 to 100) #. -#: plug-ins/blur/blur.c:666 +#: plug-ins/common/blur.c:666 msgid "Randomization %:" msgstr "" -#: plug-ins/blur/blur.c:669 +#: plug-ins/common/blur.c:669 msgid "Percentage of pixels to be filtered" msgstr "" #. #. * Repeat count label & scale (1 to 100) #. -#: plug-ins/blur/blur.c:674 +#: plug-ins/common/blur.c:674 msgid "Repeat:" msgstr "" -#: plug-ins/blur/blur.c:677 +#: plug-ins/common/blur.c:677 msgid "Number of times to apply filter" msgstr "" @@ -1033,9 +1024,10 @@ msgstr "" msgid "Saves files in Windows BMP file format" msgstr "" -#: plug-ins/bmp/bmpread.c:27 plug-ins/gifload/gifload.c:287 -#: plug-ins/jpeg/jpeg.c:494 plug-ins/png/png.c:700 plug-ins/png/png.c:702 -#: plug-ins/xbm/xbm.c:523 plug-ins/xpm/xpm.c:300 +#: plug-ins/bmp/bmpread.c:27 plug-ins/common/gifload.c:287 +#: plug-ins/common/jpeg.c:494 plug-ins/common/png.c:345 +#: plug-ins/common/png.c:347 plug-ins/common/xbm.c:523 +#: plug-ins/common/xpm.c:300 #, c-format msgid "Loading %s:" msgstr "" @@ -1074,9 +1066,10 @@ msgstr "" #. * Create the "background" layer to hold the image... #. #: plug-ins/bmp/bmpread.c:210 plug-ins/bmp/bmpread.c:218 -#: plug-ins/bmp/bmpread.c:224 plug-ins/compose/compose.c:562 -#: plug-ins/decompose/decompose.c:472 plug-ins/gifload/gifload.c:828 -#: plug-ins/jpeg/jpeg.c:611 plug-ins/png/png.c:810 plug-ins/xbm/xbm.c:612 +#: plug-ins/bmp/bmpread.c:224 plug-ins/common/compose.c:562 +#: plug-ins/common/decompose.c:472 plug-ins/common/gifload.c:828 +#: plug-ins/common/jpeg.c:611 plug-ins/common/png.c:455 +#: plug-ins/common/xbm.c:612 msgid "Background" msgstr "" @@ -1089,9 +1082,10 @@ msgstr "" msgid "can't open %s\n" msgstr "" -#: plug-ins/bmp/bmpwrite.c:154 plug-ins/jpeg/jpeg.c:759 plug-ins/png/png.c:950 -#: plug-ins/png/png.c:952 plug-ins/ps/ps.c:680 plug-ins/xbm/xbm.c:777 -#: plug-ins/xpm/xpm.c:611 plug-ins/xwd/xwd.c:503 +#: plug-ins/bmp/bmpwrite.c:154 plug-ins/common/jpeg.c:759 +#: plug-ins/common/png.c:595 plug-ins/common/png.c:597 +#: plug-ins/common/ps.c:673 plug-ins/common/xbm.c:777 +#: plug-ins/common/xpm.c:611 plug-ins/common/xwd.c:507 #, c-format msgid "Saving %s:" msgstr "" @@ -1129,310 +1123,310 @@ msgstr "" msgid "Bucket Size:" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:298 +#: plug-ins/common/bumpmap.c:298 msgid "Linear map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:299 +#: plug-ins/common/bumpmap.c:299 msgid "Spherical map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:300 +#: plug-ins/common/bumpmap.c:300 msgid "Sinusoidal map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:346 +#: plug-ins/common/bumpmap.c:346 msgid "Create an embossing effect using an image as a bump map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:354 +#: plug-ins/common/bumpmap.c:354 msgid "/Filters/Map/Bump Map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:500 +#: plug-ins/common/bumpmap.c:500 msgid "Bump-mapping..." msgstr "" #. Bump map menu -#: plug-ins/bumpmap/bumpmap.c:830 plug-ins/bumpmap/bumpmap.c:939 +#: plug-ins/common/bumpmap.c:830 plug-ins/common/bumpmap.c:939 msgid "Bump map" msgstr "" #. Compensate darkening -#: plug-ins/bumpmap/bumpmap.c:884 +#: plug-ins/common/bumpmap.c:884 msgid "Compensate for darkening" msgstr "" #. Invert bumpmap -#: plug-ins/bumpmap/bumpmap.c:895 +#: plug-ins/common/bumpmap.c:895 msgid "Invert bumpmap" msgstr "" #. Controls -#: plug-ins/bumpmap/bumpmap.c:958 +#: plug-ins/common/bumpmap.c:958 msgid "Azimuth" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:959 +#: plug-ins/common/bumpmap.c:959 msgid "Elevation" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:960 +#: plug-ins/common/bumpmap.c:960 msgid "Depth" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:961 +#: plug-ins/common/bumpmap.c:961 msgid "X offset" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:962 +#: plug-ins/common/bumpmap.c:962 msgid "Y offset" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:963 +#: plug-ins/common/bumpmap.c:963 msgid "Waterlevel" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:964 +#: plug-ins/common/bumpmap.c:964 msgid "Ambient" msgstr "" -#: plug-ins/bz2/bz2.c:293 plug-ins/bz2/bz2.c:358 +#: plug-ins/common/bz2.c:293 plug-ins/common/bz2.c:358 #, c-format msgid "bz2: fork failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:300 plug-ins/bz2/bz2.c:365 +#: plug-ins/common/bz2.c:300 plug-ins/common/bz2.c:365 #, c-format msgid "bz2: fopen failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:306 plug-ins/bz2/bz2.c:371 +#: plug-ins/common/bz2.c:306 plug-ins/common/bz2.c:371 #, c-format msgid "bz2: dup2 failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:310 +#: plug-ins/common/bz2.c:310 #, c-format msgid "bz2: exec failed: bzip2: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:324 plug-ins/bz2/bz2.c:389 +#: plug-ins/common/bz2.c:324 plug-ins/common/bz2.c:389 #, c-format msgid "bz2: bzip2 exited abnormally on file %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:375 +#: plug-ins/common/bz2.c:375 #, c-format msgid "bz2: exec failed: bunzip2: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:443 +#: plug-ins/common/bz2.c:443 msgid "bz2: can't open bzip2ed file without a sensible extension\n" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:97 +#: plug-ins/common/checkerboard.c:97 msgid "Adds a checkerboard pattern to an image" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:102 +#: plug-ins/common/checkerboard.c:102 msgid "/Filters/Render/Checkerboard" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:164 +#: plug-ins/common/checkerboard.c:164 msgid "Adding Checkerboard..." msgstr "" -#: plug-ins/checkerboard/checkerboard.c:374 +#: plug-ins/common/checkerboard.c:374 msgid "Checkerboard" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:407 +#: plug-ins/common/checkerboard.c:407 msgid "Psychobilly" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:415 +#: plug-ins/common/checkerboard.c:415 msgid "Check Size" msgstr "" -#: plug-ins/colorify/colorify.c:122 +#: plug-ins/common/colorify.c:122 msgid "Similar to the \"Color\" mode for layers." msgstr "" -#: plug-ins/colorify/colorify.c:123 +#: plug-ins/common/colorify.c:123 msgid "Makes an average of the RGB channels and uses it to set the color" msgstr "" -#: plug-ins/colorify/colorify.c:126 +#: plug-ins/common/colorify.c:126 msgid "/Filters/Colors/Colorify" msgstr "" -#: plug-ins/colorify/colorify.c:194 +#: plug-ins/common/colorify.c:194 msgid "Colorifying..." msgstr "" -#: plug-ins/colorify/colorify.c:304 +#: plug-ins/common/colorify.c:308 msgid "Colorify" msgstr "" -#: plug-ins/colorify/colorify.c:310 +#: plug-ins/common/colorify.c:314 msgid "Ok" msgstr "" -#: plug-ins/colorify/colorify.c:327 plug-ins/print/print.c:1023 -#: plug-ins/xpm/xpm.c:406 +#: plug-ins/common/colorify.c:331 plug-ins/common/xpm.c:406 +#: plug-ins/print/print.c:848 msgid "Color" msgstr "" -#: plug-ins/colorify/colorify.c:340 +#: plug-ins/common/colorify.c:344 msgid "Custom Color: " msgstr "" -#: plug-ins/colorify/colorify.c:430 +#: plug-ins/common/colorify.c:434 msgid "Colorify Custom Color" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/decompose/decompose.c:129 +#: plug-ins/common/compose.c:125 plug-ins/common/decompose.c:129 msgid "RGB" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Red:" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Green: " msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Blue:" msgstr "" -#: plug-ins/compose/compose.c:126 +#: plug-ins/common/compose.c:126 msgid "rgb-compose" msgstr "" -#: plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:127 msgid "RGBA" msgstr "" -#: plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:127 msgid "Alpha:" msgstr "" -#: plug-ins/compose/compose.c:128 +#: plug-ins/common/compose.c:128 msgid "rgba-compose" msgstr "" -#: plug-ins/compose/compose.c:129 plug-ins/decompose/decompose.c:133 +#: plug-ins/common/compose.c:129 plug-ins/common/decompose.c:133 msgid "HSV" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Hue:" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Saturation:" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Value:" msgstr "" -#: plug-ins/compose/compose.c:130 +#: plug-ins/common/compose.c:130 msgid "hsv-compose" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/decompose/decompose.c:138 +#: plug-ins/common/compose.c:131 plug-ins/common/decompose.c:138 msgid "CMY" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Cyan:" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Magenta: " msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Yellow:" msgstr "" -#: plug-ins/compose/compose.c:132 +#: plug-ins/common/compose.c:132 msgid "cmy-compose" msgstr "" -#: plug-ins/compose/compose.c:133 plug-ins/decompose/decompose.c:143 +#: plug-ins/common/compose.c:133 plug-ins/common/decompose.c:143 msgid "CMYK" msgstr "" -#: plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:133 msgid "Black:" msgstr "" -#: plug-ins/compose/compose.c:134 +#: plug-ins/common/compose.c:134 msgid "cmyk-compose" msgstr "" -#: plug-ins/compose/compose.c:228 +#: plug-ins/common/compose.c:228 msgid "Compose an image from multiple gray images" msgstr "" -#: plug-ins/compose/compose.c:229 +#: plug-ins/common/compose.c:229 msgid "This function creates a new image from multiple gray images" msgstr "" -#: plug-ins/compose/compose.c:234 +#: plug-ins/common/compose.c:234 msgid "/Image/Channel Ops/Compose" msgstr "" -#: plug-ins/compose/compose.c:241 +#: plug-ins/common/compose.c:241 msgid "Compose an image from multiple drawables of gray images" msgstr "" -#: plug-ins/compose/compose.c:242 +#: plug-ins/common/compose.c:242 msgid "" "This function creates a new image from multiple drawables of gray images" msgstr "" -#: plug-ins/compose/compose.c:305 +#: plug-ins/common/compose.c:305 #, c-format msgid "compose: Could not get layers for image %d" msgstr "" -#: plug-ins/compose/compose.c:354 +#: plug-ins/common/compose.c:354 msgid "Composing..." msgstr "" -#: plug-ins/compose/compose.c:421 +#: plug-ins/common/compose.c:421 msgid "compose: drawables have different size" msgstr "" -#: plug-ins/compose/compose.c:438 +#: plug-ins/common/compose.c:438 msgid "compose: images have different size" msgstr "" -#: plug-ins/compose/compose.c:451 +#: plug-ins/common/compose.c:451 msgid "compose: error in getting layer IDs" msgstr "" -#: plug-ins/compose/compose.c:468 +#: plug-ins/common/compose.c:468 #, c-format msgid "compose: image is not a gray image (bpp=%d)" msgstr "" -#: plug-ins/compose/compose.c:483 plug-ins/compose/compose.c:498 +#: plug-ins/common/compose.c:483 plug-ins/common/compose.c:498 msgid "compose: not enough memory" msgstr "" -#: plug-ins/compose/compose.c:809 +#: plug-ins/common/compose.c:809 msgid "Compose" msgstr "" #. The left frame keeps the compose type toggles -#: plug-ins/compose/compose.c:841 +#: plug-ins/common/compose.c:841 msgid "Compose channels:" msgstr "" @@ -1440,324 +1434,324 @@ msgstr "" #. 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/compose/compose.c:855 +#: plug-ins/common/compose.c:855 msgid "Channel representations:" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 +#: plug-ins/common/convmatrix.c:76 msgid "Grey" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:130 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:130 msgid "Red" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:131 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:131 msgid "Green" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:132 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:132 msgid "Blue" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:148 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:148 msgid "Alpha" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:80 +#: plug-ins/common/convmatrix.c:80 msgid "Extend" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:80 +#: plug-ins/common/convmatrix.c:80 msgid "Wrap" msgstr "" #. Action area -#: plug-ins/convmatrix/convmatrix.c:80 plug-ins/gif/gif.c:1163 +#: plug-ins/common/convmatrix.c:80 plug-ins/common/gif.c:1163 msgid "Crop" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:173 +#: plug-ins/common/convmatrix.c:173 msgid "A generic 5x5 convolution matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:178 +#: plug-ins/common/convmatrix.c:178 msgid "/Filters/Generic/Convolution Matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:239 +#: plug-ins/common/convmatrix.c:239 msgid "Applying convolution" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:700 +#: plug-ins/common/convmatrix.c:700 msgid "Convolution Matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:715 +#: plug-ins/common/convmatrix.c:715 msgid "Defaults" msgstr "" #. Outbox:YABox:Frame -#: plug-ins/convmatrix/convmatrix.c:741 +#: plug-ins/common/convmatrix.c:741 msgid "Matrix" msgstr "" #. divisor -#: plug-ins/convmatrix/convmatrix.c:788 +#: plug-ins/common/convmatrix.c:788 msgid "Divisor" msgstr "" #. Offset -#: plug-ins/convmatrix/convmatrix.c:803 plug-ins/depthmerge/depthmerge.c:728 +#: plug-ins/common/convmatrix.c:803 plug-ins/common/depthmerge.c:728 msgid "Offset" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:823 +#: plug-ins/common/convmatrix.c:823 msgid "Automatic" msgstr "" #. Alpha-weighting -#: plug-ins/convmatrix/convmatrix.c:832 +#: plug-ins/common/convmatrix.c:832 msgid "Alpha-weighting" msgstr "" #. Wrap-modes #. OutBox:Inbox:Frame -#: plug-ins/convmatrix/convmatrix.c:847 +#: plug-ins/common/convmatrix.c:847 msgid "Border" msgstr "" #. OutBox:Inbox:Frame -#: plug-ins/convmatrix/convmatrix.c:875 +#: plug-ins/common/convmatrix.c:875 msgid "Channels" msgstr "" -#: plug-ins/cubism/cubism.c:181 +#: plug-ins/common/cubism.c:181 msgid "Convert the input drawable into a collection of rotated squares" msgstr "" -#: plug-ins/cubism/cubism.c:186 +#: plug-ins/common/cubism.c:186 msgid "/Filters/Artistic/Cubism" msgstr "" -#: plug-ins/cubism/cubism.c:298 +#: plug-ins/common/cubism.c:298 msgid "Cubistic Transformation" msgstr "" -#: plug-ins/cubism/cubism.c:331 +#: plug-ins/common/cubism.c:331 msgid "Cubism" msgstr "" -#: plug-ins/cubism/cubism.c:364 +#: plug-ins/common/cubism.c:364 msgid "Use Background Color" msgstr "" -#: plug-ins/cubism/cubism.c:372 +#: plug-ins/common/cubism.c:372 msgid "Tile Size" msgstr "" -#: plug-ins/cubism/cubism.c:388 +#: plug-ins/common/cubism.c:388 msgid "Tile Saturation" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:130 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:130 msgid "red" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:131 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:131 msgid "green" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:132 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:132 msgid "blue" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:135 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:135 msgid "hue" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:136 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:136 msgid "saturation" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:137 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:137 msgid "value" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:140 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:140 msgid "cyan" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:141 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:141 msgid "magenta" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:142 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:142 msgid "yellow" msgstr "" -#: plug-ins/decompose/decompose.c:140 +#: plug-ins/common/decompose.c:140 msgid "Cyan" msgstr "" -#: plug-ins/decompose/decompose.c:141 +#: plug-ins/common/decompose.c:141 msgid "Magenta" msgstr "" -#: plug-ins/decompose/decompose.c:142 +#: plug-ins/common/decompose.c:142 msgid "Yellow" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:145 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:145 msgid "cyan_k" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:146 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:146 msgid "magenta_k" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:147 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:147 msgid "yellow_k" msgstr "" -#: plug-ins/decompose/decompose.c:144 +#: plug-ins/common/decompose.c:144 msgid "black" msgstr "" -#: plug-ins/decompose/decompose.c:145 +#: plug-ins/common/decompose.c:145 msgid "Cyan_K" msgstr "" -#: plug-ins/decompose/decompose.c:146 +#: plug-ins/common/decompose.c:146 msgid "Magenta_K" msgstr "" -#: plug-ins/decompose/decompose.c:147 +#: plug-ins/common/decompose.c:147 msgid "Yellow_K" msgstr "" -#: plug-ins/decompose/decompose.c:148 +#: plug-ins/common/decompose.c:148 msgid "alpha" msgstr "" -#: plug-ins/decompose/decompose.c:216 +#: plug-ins/common/decompose.c:216 msgid "Decompose an image into different types of channels" msgstr "" -#: plug-ins/decompose/decompose.c:217 +#: plug-ins/common/decompose.c:217 msgid "" "This function creates new gray images with different channel information in " "each of them" msgstr "" -#: plug-ins/decompose/decompose.c:222 +#: plug-ins/common/decompose.c:222 msgid "/Image/Channel Ops/Decompose" msgstr "" -#: plug-ins/decompose/decompose.c:303 +#: plug-ins/common/decompose.c:303 msgid "plug_in_decompose: Can only work on RGB*_IMAGE" msgstr "" -#: plug-ins/decompose/decompose.c:309 +#: plug-ins/common/decompose.c:309 msgid "Decomposing..." msgstr "" -#: plug-ins/decompose/decompose.c:374 +#: plug-ins/common/decompose.c:374 msgid "decompose: not an RGB image" msgstr "" -#: plug-ins/decompose/decompose.c:380 +#: plug-ins/common/decompose.c:380 msgid "decompose: No alpha channel available" msgstr "" -#: plug-ins/decompose/decompose.c:409 +#: plug-ins/common/decompose.c:409 msgid "decompose: out of memory" msgstr "" -#: plug-ins/decompose/decompose.c:901 plug-ins/decompose/decompose.c:907 +#: plug-ins/common/decompose.c:901 plug-ins/common/decompose.c:907 msgid "Decompose" msgstr "" #. parameter settings -#: plug-ins/decompose/decompose.c:934 +#: plug-ins/common/decompose.c:934 msgid "Extract channels:" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:194 +#: plug-ins/common/depthmerge.c:194 msgid "Combine two images using corresponding depth maps (z-buffers)" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:195 +#: plug-ins/common/depthmerge.c:195 msgid "" "Taking as input two full-colour, full-alpha images and two corresponding " "grayscale depth maps, this plug-in combines the images based on which is " "closer (has a lower depth map value) at each point." msgstr "" -#: plug-ins/depthmerge/depthmerge.c:202 +#: plug-ins/common/depthmerge.c:202 msgid "/Filters/Combine/Depth Merge" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:369 +#: plug-ins/common/depthmerge.c:369 msgid "Depth-merging..." msgstr "" -#: plug-ins/depthmerge/depthmerge.c:609 +#: plug-ins/common/depthmerge.c:609 msgid "Depth Merge" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:647 +#: plug-ins/common/depthmerge.c:647 msgid "Source 1" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:664 plug-ins/depthmerge/depthmerge.c:698 +#: plug-ins/common/depthmerge.c:664 plug-ins/common/depthmerge.c:698 msgid "Depth Map" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:681 +#: plug-ins/common/depthmerge.c:681 msgid "Source 2" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:723 +#: plug-ins/common/depthmerge.c:723 msgid "Overlap" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:733 +#: plug-ins/common/depthmerge.c:733 msgid "Scale 1" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:738 +#: plug-ins/common/depthmerge.c:738 msgid "Scale 2" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:1181 +#: plug-ins/common/depthmerge.c:1181 msgid "" "Warning: I don't _like_ this color space. This is a suggestion, not a " "threat.\n" msgstr "" -#: plug-ins/destripe/destripe.c:151 +#: plug-ins/common/destripe.c:151 msgid "" "Destripe filter, used to remove vertical stripes caused by cheap scanners." msgstr "" -#: plug-ins/destripe/destripe.c:152 +#: plug-ins/common/destripe.c:152 msgid "This plug-in tries to remove vertical stripes from an image." msgstr "" -#: plug-ins/destripe/destripe.c:155 +#: plug-ins/common/destripe.c:155 msgid "/Filters/Enhance/Destripe" msgstr "" -#: plug-ins/destripe/destripe.c:358 +#: plug-ins/common/destripe.c:358 msgid "Destriping..." msgstr "" -#: plug-ins/destripe/destripe.c:589 +#: plug-ins/common/destripe.c:589 msgid "Destripe" msgstr "" -#: plug-ins/destripe/destripe.c:663 +#: plug-ins/common/destripe.c:663 msgid "Histogram" msgstr "" @@ -1773,36 +1767,36 @@ msgstr "" #. #. * Box size (radius) control... #. -#: plug-ins/destripe/destripe.c:687 +#: plug-ins/common/destripe.c:687 msgid "Width" msgstr "" -#: plug-ins/gif/gif.c:408 +#: plug-ins/common/gif.c:408 msgid "saves files in Compuserve GIF file format" msgstr "" -#: plug-ins/gif/gif.c:682 +#: plug-ins/common/gif.c:682 msgid "GIF: Couldn't simply reduce colours further. Saving as opaque.\n" msgstr "" -#: plug-ins/gif/gif.c:938 +#: plug-ins/common/gif.c:938 msgid "" "GIF: Sorry, can't save RGB images as GIFs - convert to INDEXED\n" "or GRAY first.\n" msgstr "" -#: plug-ins/gif/gif.c:957 +#: plug-ins/common/gif.c:957 #, c-format msgid "GIF: can't open %s\n" msgstr "" -#: plug-ins/gif/gif.c:1064 +#: plug-ins/common/gif.c:1064 msgid "" "Transparent colour *might* be incorrect on viewers which don't support " "transparency." msgstr "" -#: plug-ins/gif/gif.c:1196 +#: plug-ins/common/gif.c:1196 msgid "" "The image which you are trying to save as a GIF\n" "contains layers which extend beyond the actual\n" @@ -1813,339 +1807,339 @@ msgid "" "the image borders, or cancel this save." msgstr "" -#: plug-ins/gif/gif.c:1252 +#: plug-ins/common/gif.c:1252 msgid "Save as GIF" msgstr "" #. regular gif parameter settings -#: plug-ins/gif/gif.c:1286 +#: plug-ins/common/gif.c:1286 msgid "GIF Options" msgstr "" -#: plug-ins/gif/gif.c:1294 plug-ins/png/png.c:1209 +#: plug-ins/common/gif.c:1294 plug-ins/common/png.c:856 msgid "Interlace" msgstr "" -#: plug-ins/gif/gif.c:1306 +#: plug-ins/common/gif.c:1306 msgid "GIF Comment: " msgstr "" -#: plug-ins/gif/gif.c:1339 plug-ins/gif/gif.c:1340 +#: plug-ins/common/gif.c:1339 plug-ins/common/gif.c:1340 msgid "Made with GIMP" msgstr "" #. additional animated gif parameter settings -#: plug-ins/gif/gif.c:1365 +#: plug-ins/common/gif.c:1365 msgid "Animated GIF Options" msgstr "" -#: plug-ins/gif/gif.c:1373 +#: plug-ins/common/gif.c:1373 msgid "Loop forever" msgstr "" -#: plug-ins/gif/gif.c:1386 +#: plug-ins/common/gif.c:1386 msgid "Delay between frames where unspecified: " msgstr "" -#: plug-ins/gif/gif.c:1400 +#: plug-ins/common/gif.c:1400 msgid " milliseconds" msgstr "" -#: plug-ins/gif/gif.c:1411 +#: plug-ins/common/gif.c:1411 msgid "Frame disposal where unspecified: " msgstr "" -#: plug-ins/gif/gif.c:1421 +#: plug-ins/common/gif.c:1421 msgid "I don't care" msgstr "" -#: plug-ins/gif/gif.c:1427 +#: plug-ins/common/gif.c:1427 msgid "Cumulative layers (combine)" msgstr "" -#: plug-ins/gif/gif.c:1433 +#: plug-ins/common/gif.c:1433 msgid "One frame per layer (replace)" msgstr "" -#: plug-ins/gif/gif.c:1491 +#: plug-ins/common/gif.c:1491 #, c-format msgid "GIF: colorstobpp - Eep! too many colours: %d\n" msgstr "" -#: plug-ins/gif/gif.c:1507 +#: plug-ins/common/gif.c:1507 #, c-format msgid "GIF: bpptocolors - Eep! bpp==%d !\n" msgstr "" -#: plug-ins/gifload/gifload.c:134 +#: plug-ins/common/gifload.c:134 msgid "loads files of Compuserve GIF file format" msgstr "" -#: plug-ins/gifload/gifload.c:279 +#: plug-ins/common/gifload.c:279 #, c-format msgid "GIF: can't open \"%s\"\n" msgstr "" -#: plug-ins/gifload/gifload.c:294 +#: plug-ins/common/gifload.c:294 msgid "GIF: error reading magic number\n" msgstr "" -#: plug-ins/gifload/gifload.c:300 +#: plug-ins/common/gifload.c:300 msgid "GIF: not a GIF file\n" msgstr "" -#: plug-ins/gifload/gifload.c:309 +#: plug-ins/common/gifload.c:309 msgid "GIF: bad version number, not '87a' or '89a'\n" msgstr "" -#: plug-ins/gifload/gifload.c:315 +#: plug-ins/common/gifload.c:315 msgid "GIF: failed to read screen descriptor\n" msgstr "" -#: plug-ins/gifload/gifload.c:331 +#: plug-ins/common/gifload.c:331 msgid "GIF: error reading global colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:338 +#: plug-ins/common/gifload.c:338 msgid "GIF: warning - non-square pixels\n" msgstr "" -#: plug-ins/gifload/gifload.c:349 plug-ins/gifload/gifload.c:803 +#: plug-ins/common/gifload.c:349 plug-ins/common/gifload.c:803 msgid "GIF: EOF / read error on image data\n" msgstr "" -#: plug-ins/gifload/gifload.c:364 +#: plug-ins/common/gifload.c:364 msgid "GIF: OF / read error on extension function code\n" msgstr "" #. Not a valid start character -#: plug-ins/gifload/gifload.c:374 +#: plug-ins/common/gifload.c:374 #, c-format msgid "GIF: bogus character 0x%02x, ignoring\n" msgstr "" -#: plug-ins/gifload/gifload.c:382 +#: plug-ins/common/gifload.c:382 msgid "GIF: couldn't read left/top/width/height\n" msgstr "" -#: plug-ins/gifload/gifload.c:394 +#: plug-ins/common/gifload.c:394 msgid "GIF: error reading local colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:452 +#: plug-ins/common/gifload.c:452 msgid "GIF: bad colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:568 +#: plug-ins/common/gifload.c:568 msgid "GIF: error in getting DataBlock size\n" msgstr "" -#: plug-ins/gifload/gifload.c:576 +#: plug-ins/common/gifload.c:576 msgid "GIF: error in reading DataBlock\n" msgstr "" -#: plug-ins/gifload/gifload.c:607 +#: plug-ins/common/gifload.c:607 msgid "GIF: ran off the end of by bits\n" msgstr "" -#: plug-ins/gifload/gifload.c:718 +#: plug-ins/common/gifload.c:718 msgid "GIF: missing EOD in data stream (common occurence)" msgstr "" -#: plug-ins/gifload/gifload.c:735 +#: plug-ins/common/gifload.c:735 msgid "GIF: circular table entry BIG ERROR\n" msgstr "" -#: plug-ins/gifload/gifload.c:809 +#: plug-ins/common/gifload.c:809 msgid "GIF: error while reading\n" msgstr "" -#: plug-ins/gifload/gifload.c:830 +#: plug-ins/common/gifload.c:830 #, c-format msgid "Background (%dms)" msgstr "" -#: plug-ins/gifload/gifload.c:877 +#: plug-ins/common/gifload.c:877 #, c-format msgid "Frame %d" msgstr "" -#: plug-ins/gifload/gifload.c:879 +#: plug-ins/common/gifload.c:879 #, c-format msgid "Frame %d (%dms)" msgstr "" #. 'don't care' -#: plug-ins/gifload/gifload.c:885 plug-ins/gifload/gifload.c:887 +#: plug-ins/common/gifload.c:885 plug-ins/common/gifload.c:887 msgid " (combine)" msgstr "" -#: plug-ins/gifload/gifload.c:886 +#: plug-ins/common/gifload.c:886 msgid " (replace)" msgstr "" -#: plug-ins/gifload/gifload.c:892 +#: plug-ins/common/gifload.c:892 msgid " (unknown disposal)" msgstr "" -#: plug-ins/gifload/gifload.c:893 +#: plug-ins/common/gifload.c:893 msgid "" "GIF: Hmm... please forward this GIF to the GIF plugin author!\n" " (adam@foxbox.org)\n" msgstr "" -#: plug-ins/gifload/gifload.c:896 +#: plug-ins/common/gifload.c:896 msgid "GIF: Something got corrupted.\n" msgstr "" -#: plug-ins/gifload/gifload.c:925 +#: plug-ins/common/gifload.c:925 #, c-format msgid "GIF: reading %d by %d%s GIF image, ncols=%d\n" msgstr "" -#: plug-ins/gifload/gifload.c:926 +#: plug-ins/common/gifload.c:926 msgid " interlaced" msgstr "" -#: plug-ins/gifload/gifload.c:930 +#: plug-ins/common/gifload.c:930 msgid "" "GIF: Ouchie! Can't handle non-alpha RGB frames.\n" " Please mail the plugin author. (adam@gimp.org)\n" msgstr "" -#: plug-ins/gifload/gifload.c:1022 +#: plug-ins/common/gifload.c:1022 msgid "GIF: too much input data, ignoring extra...\n" msgstr "" -#: plug-ins/jpeg/jpeg.c:176 +#: plug-ins/common/jpeg.c:176 msgid "loads files of the jpeg file format" msgstr "" -#: plug-ins/jpeg/jpeg.c:487 +#: plug-ins/common/jpeg.c:487 #, c-format msgid "can't open \"%s\"\n" msgstr "" -#: plug-ins/jpeg/jpeg.c:603 +#: plug-ins/common/jpeg.c:603 #, c-format msgid "" "don't know how to load JPEGs\n" "with %d color channels" msgstr "" -#: plug-ins/jpeg/jpeg.c:648 +#: plug-ins/common/jpeg.c:648 #, c-format msgid "" "unknown density unit %d\n" "assuming dots per inch" msgstr "" -#: plug-ins/jpeg/jpeg.c:993 +#: plug-ins/common/jpeg.c:993 msgid "Save as Jpeg" msgstr "" -#: plug-ins/jpeg/jpeg.c:1026 +#: plug-ins/common/jpeg.c:1026 msgid "Quality" msgstr "" -#: plug-ins/jpeg/jpeg.c:1042 +#: plug-ins/common/jpeg.c:1042 msgid "Smoothing" msgstr "" -#: plug-ins/jpeg/jpeg.c:1058 +#: plug-ins/common/jpeg.c:1058 msgid "Optimize" msgstr "" -#: plug-ins/jpeg/jpeg.c:1066 +#: plug-ins/common/jpeg.c:1066 msgid "Progressive" msgstr "" -#: plug-ins/jpeg/jpeg.c:1079 +#: plug-ins/common/jpeg.c:1079 msgid "Image Comments" msgstr "" -#: plug-ins/mail/mail.c:212 +#: plug-ins/common/mail.c:212 msgid "pipe files to uuencode then mail them" msgstr "" -#: plug-ins/mail/mail.c:213 +#: plug-ins/common/mail.c:213 msgid "You need to have uuencode and mail installed" msgstr "" -#: plug-ins/mail/mail.c:217 +#: plug-ins/common/mail.c:217 msgid "/File/Mail image" msgstr "" -#: plug-ins/mail/mail.c:486 +#: plug-ins/common/mail.c:486 msgid "Send to mail" msgstr "" #. filename label -#: plug-ins/mail/mail.c:620 +#: plug-ins/common/mail.c:620 msgid "Filename:" msgstr "" #. Encapsulation label -#: plug-ins/mail/mail.c:674 +#: plug-ins/common/mail.c:674 msgid "Encapsulation:" msgstr "" #. Encapsulation radiobutton -#: plug-ins/mail/mail.c:683 +#: plug-ins/common/mail.c:683 msgid "Uuencode" msgstr "" -#: plug-ins/mail/mail.c:685 +#: plug-ins/common/mail.c:685 msgid "MIME" msgstr "" -#: plug-ins/mail/mail.c:799 +#: plug-ins/common/mail.c:799 msgid "mail: some sort of error with the file extension or lack thereof \n" msgstr "" -#: plug-ins/oilify/oilify.c:122 +#: plug-ins/common/oilify.c:122 msgid "Modify the specified drawable to resemble an oil painting" msgstr "" -#: plug-ins/oilify/oilify.c:123 +#: plug-ins/common/oilify.c:123 msgid "" "This function performs the well-known oil-paint effect on the specified " "drawable. The size of the input mask is specified by 'mask_size'." msgstr "" -#: plug-ins/oilify/oilify.c:127 +#: plug-ins/common/oilify.c:127 msgid "/Filters/Artistic/Oilify" msgstr "" -#: plug-ins/oilify/oilify.c:198 +#: plug-ins/common/oilify.c:198 msgid "Oil Painting..." msgstr "" -#: plug-ins/oilify/oilify.c:453 +#: plug-ins/common/oilify.c:453 msgid "Oilify" msgstr "" -#: plug-ins/oilify/oilify.c:486 +#: plug-ins/common/oilify.c:486 msgid "Use intensity algorithm" msgstr "" -#: plug-ins/oilify/oilify.c:494 +#: plug-ins/common/oilify.c:494 msgid "Mask Size" msgstr "" -#: plug-ins/png/png.c:504 +#: plug-ins/common/png.c:149 msgid "Loads files in PNG file format" msgstr "" -#: plug-ins/png/png.c:505 +#: plug-ins/common/png.c:150 msgid "This plug-in loads Portable Network Graphics (PNG) files." msgstr "" -#: plug-ins/png/png.c:1171 +#: plug-ins/common/png.c:818 msgid "PNG Options" msgstr "" -#: plug-ins/png/png.c:1216 +#: plug-ins/common/png.c:863 msgid "Compression level" msgstr "" @@ -2243,135 +2237,135 @@ msgstr "" msgid "600 DPI" msgstr "" -#: plug-ins/print/print.c:406 +#: plug-ins/print/print.c:229 msgid "PostScript Level 1" msgstr "" -#: plug-ins/print/print.c:408 +#: plug-ins/print/print.c:231 msgid "PostScript Level 2" msgstr "" -#: plug-ins/print/print.c:410 +#: plug-ins/print/print.c:233 msgid "HP DeskJet 500, 520" msgstr "" -#: plug-ins/print/print.c:412 +#: plug-ins/print/print.c:235 msgid "HP DeskJet 500C, 540C" msgstr "" -#: plug-ins/print/print.c:414 +#: plug-ins/print/print.c:237 msgid "HP DeskJet 550C, 560C" msgstr "" -#: plug-ins/print/print.c:416 +#: plug-ins/print/print.c:239 msgid "HP DeskJet 600 series" msgstr "" -#: plug-ins/print/print.c:418 +#: plug-ins/print/print.c:241 msgid "HP DeskJet 800 series" msgstr "" -#: plug-ins/print/print.c:420 +#: plug-ins/print/print.c:243 msgid "HP DeskJet 1100C, 1120C" msgstr "" -#: plug-ins/print/print.c:422 +#: plug-ins/print/print.c:245 msgid "HP DeskJet 1200C, 1600C" msgstr "" -#: plug-ins/print/print.c:424 +#: plug-ins/print/print.c:247 msgid "HP LaserJet II series" msgstr "" -#: plug-ins/print/print.c:426 +#: plug-ins/print/print.c:249 msgid "HP LaserJet III series" msgstr "" -#: plug-ins/print/print.c:428 +#: plug-ins/print/print.c:251 msgid "HP LaserJet 4 series" msgstr "" -#: plug-ins/print/print.c:430 +#: plug-ins/print/print.c:253 msgid "HP LaserJet 4V, 4Si" msgstr "" -#: plug-ins/print/print.c:432 +#: plug-ins/print/print.c:255 msgid "HP LaserJet 5 series" msgstr "" -#: plug-ins/print/print.c:434 +#: plug-ins/print/print.c:257 msgid "HP LaserJet 5Si" msgstr "" -#: plug-ins/print/print.c:436 +#: plug-ins/print/print.c:259 msgid "HP LaserJet 6 series" msgstr "" -#: plug-ins/print/print.c:438 +#: plug-ins/print/print.c:261 msgid "EPSON Stylus Color" msgstr "" -#: plug-ins/print/print.c:440 +#: plug-ins/print/print.c:263 msgid "EPSON Stylus Color Pro" msgstr "" -#: plug-ins/print/print.c:442 +#: plug-ins/print/print.c:265 msgid "EPSON Stylus Color Pro XL" msgstr "" -#: plug-ins/print/print.c:444 +#: plug-ins/print/print.c:267 msgid "EPSON Stylus Color 1500" msgstr "" -#: plug-ins/print/print.c:446 +#: plug-ins/print/print.c:269 msgid "EPSON Stylus Color 400" msgstr "" -#: plug-ins/print/print.c:448 +#: plug-ins/print/print.c:271 msgid "EPSON Stylus Color 500" msgstr "" -#: plug-ins/print/print.c:450 +#: plug-ins/print/print.c:273 msgid "EPSON Stylus Color 600" msgstr "" -#: plug-ins/print/print.c:452 +#: plug-ins/print/print.c:275 msgid "EPSON Stylus Color 800" msgstr "" -#: plug-ins/print/print.c:454 +#: plug-ins/print/print.c:277 msgid "EPSON Stylus Color 1520" msgstr "" -#: plug-ins/print/print.c:456 +#: plug-ins/print/print.c:279 msgid "EPSON Stylus Color 3000" msgstr "" -#: plug-ins/print/print.c:509 +#: plug-ins/print/print.c:332 msgid "This plug-in prints images from The GIMP." msgstr "" -#: plug-ins/print/print.c:510 +#: plug-ins/print/print.c:333 msgid "Prints images to PostScript, PCL, or ESC/P2 printers." msgstr "" -#: plug-ins/print/print.c:514 +#: plug-ins/print/print.c:337 msgid "/File/Print" msgstr "" -#: plug-ins/print/print.c:827 +#: plug-ins/print/print.c:650 msgid "Auto" msgstr "" -#: plug-ins/print/print.c:828 +#: plug-ins/print/print.c:651 msgid "Portrait" msgstr "" -#: plug-ins/print/print.c:829 +#: plug-ins/print/print.c:652 msgid "Landscape" msgstr "" -#: plug-ins/print/print.c:860 +#: plug-ins/print/print.c:685 #, c-format msgid "Print v%s" msgstr "" @@ -2379,354 +2373,351 @@ msgstr "" #. #. * Media size option menu... #. -#: plug-ins/print/print.c:910 +#: plug-ins/print/print.c:735 msgid "Media Size:" msgstr "" #. #. * Media type option menu... #. -#: plug-ins/print/print.c:926 +#: plug-ins/print/print.c:751 msgid "Media Type:" msgstr "" #. #. * Media source option menu... #. -#: plug-ins/print/print.c:942 +#: plug-ins/print/print.c:767 msgid "Media Source:" msgstr "" #. #. * Orientation option menu... #. -#: plug-ins/print/print.c:958 +#: plug-ins/print/print.c:783 msgid "Orientation:" msgstr "" #. #. * Resolution option menu... #. -#: plug-ins/print/print.c:988 plug-ins/ps/ps.c:1974 +#: plug-ins/common/ps.c:1999 plug-ins/print/print.c:813 msgid "Resolution:" msgstr "" #. #. * Output type toggles... #. -#: plug-ins/print/print.c:1004 +#: plug-ins/print/print.c:829 msgid "Output Type:" msgstr "" -#: plug-ins/print/print.c:1013 +#: plug-ins/print/print.c:838 msgid "B&W" msgstr "" #. #. * Scaling... #. -#: plug-ins/print/print.c:1036 +#: plug-ins/print/print.c:861 msgid "Scaling:" msgstr "" -#: plug-ins/print/print.c:1071 +#: plug-ins/print/print.c:896 msgid "Percent" msgstr "" -#: plug-ins/print/print.c:1080 +#: plug-ins/print/print.c:905 msgid "PPI" msgstr "" #. #. * Brightness slider... #. -#: plug-ins/print/print.c:1092 +#: plug-ins/print/print.c:917 msgid "Brightness:" msgstr "" #. #. * Printer option menu... #. -#: plug-ins/print/print.c:1127 +#: plug-ins/print/print.c:952 msgid "Printer:" msgstr "" -#: plug-ins/print/print.c:1153 plug-ins/print/print.c:1186 +#: plug-ins/print/print.c:978 plug-ins/print/print.c:1011 msgid "Setup" msgstr "" -#: plug-ins/print/print.c:1173 +#: plug-ins/print/print.c:998 msgid "Print" msgstr "" #. #. * Printer driver option menu... #. -#: plug-ins/print/print.c:1208 +#: plug-ins/print/print.c:1033 msgid "Driver:" msgstr "" #. #. * PPD file... #. -#: plug-ins/print/print.c:1233 +#: plug-ins/print/print.c:1058 msgid "PPD File:" msgstr "" -#: plug-ins/print/print.c:1246 +#: plug-ins/print/print.c:1071 msgid "Browse" msgstr "" #. #. * Print command... #. -#: plug-ins/print/print.c:1256 +#: plug-ins/print/print.c:1081 msgid "Command:" msgstr "" #. #. * Output file selection dialog... #. -#: plug-ins/print/print.c:1291 +#: plug-ins/print/print.c:1116 msgid "Print To File?" msgstr "" #. #. * PPD file selection dialog... #. -#: plug-ins/print/print.c:1301 +#: plug-ins/print/print.c:1126 msgid "PPD File?" msgstr "" -#: plug-ins/print/print.c:2287 +#: plug-ins/print/print.c:2112 msgid "File" msgstr "" -#: plug-ins/ps/ps.c:319 plug-ins/ps/ps.c:320 +#: plug-ins/common/ps.c:320 plug-ins/common/ps.c:321 msgid "load file of PostScript/PDF file format" msgstr "" -#: plug-ins/ps/ps.c:343 +#: plug-ins/common/ps.c:344 msgid "save file in PostScript file format" msgstr "" -#: plug-ins/ps/ps.c:344 +#: plug-ins/common/ps.c:345 msgid "" "PostScript saving handles all image types except those with alpha channels." msgstr "" -#: plug-ins/ps/ps.c:549 +#: plug-ins/common/ps.c:550 msgid "PS: can't open file for reading" msgstr "" -#: plug-ins/ps/ps.c:556 +#: plug-ins/common/ps.c:557 #, c-format msgid "Interpreting and Loading %s:" msgstr "" -#: plug-ins/ps/ps.c:566 +#: plug-ins/common/ps.c:565 msgid "PS: can't interprete file" msgstr "" -#: plug-ins/ps/ps.c:573 -msgid "PS: out of memory" -msgstr "" - -#: plug-ins/ps/ps.c:653 +#: plug-ins/common/ps.c:647 msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: plug-ins/ps/ps.c:664 +#: plug-ins/common/ps.c:658 msgid "PS: cannot operate on unknown image types" msgstr "" -#: plug-ins/ps/ps.c:673 +#: plug-ins/common/ps.c:667 msgid "PS: can't open file for writing" msgstr "" -#: plug-ins/ps/ps.c:1947 +#: plug-ins/common/ps.c:1713 plug-ins/common/ps.c:1810 +#: plug-ins/common/ps.c:1903 plug-ins/common/ps.c:1972 msgid "write error occured" msgstr "" -#: plug-ins/ps/ps.c:1974 plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:1999 plug-ins/common/ps.c:2264 msgid "Width:" msgstr "" -#: plug-ins/ps/ps.c:1974 plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:1999 plug-ins/common/ps.c:2264 msgid "Height:" msgstr "" -#: plug-ins/ps/ps.c:1974 +#: plug-ins/common/ps.c:1999 msgid "Pages:" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "b/w" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "gray" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "colour" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "automatic" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "none" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "weak" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "strong" msgstr "" -#: plug-ins/ps/ps.c:1991 +#: plug-ins/common/ps.c:2016 msgid "Load PostScript" msgstr "" #. Rendering -#: plug-ins/ps/ps.c:2024 +#: plug-ins/common/ps.c:2049 msgid "Rendering" msgstr "" -#: plug-ins/ps/ps.c:2064 +#: plug-ins/common/ps.c:2089 msgid "try BoundingBox" msgstr "" #. Colouring -#: plug-ins/ps/ps.c:2077 +#: plug-ins/common/ps.c:2102 msgid "Colouring" msgstr "" -#: plug-ins/ps/ps.c:2113 +#: plug-ins/common/ps.c:2138 msgid "Graphic antialiasing" msgstr "" -#: plug-ins/ps/ps.c:2114 +#: plug-ins/common/ps.c:2139 msgid "Text antialiasing" msgstr "" -#: plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:2264 msgid "X-offset:" msgstr "" -#: plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:2264 msgid "Y-offset:" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "0" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "90" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "180" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "270" msgstr "" -#: plug-ins/ps/ps.c:2243 +#: plug-ins/common/ps.c:2268 msgid "Inch" msgstr "" -#: plug-ins/ps/ps.c:2243 +#: plug-ins/common/ps.c:2268 msgid "Millimeter" msgstr "" -#: plug-ins/ps/ps.c:2258 +#: plug-ins/common/ps.c:2283 msgid "Save PostScript" msgstr "" #. Image Size -#: plug-ins/ps/ps.c:2299 +#: plug-ins/common/ps.c:2324 msgid "Image Size" msgstr "" -#: plug-ins/ps/ps.c:2338 +#: plug-ins/common/ps.c:2363 msgid "keep aspect ratio" msgstr "" #. Unit -#: plug-ins/ps/ps.c:2348 +#: plug-ins/common/ps.c:2373 msgid "Unit" msgstr "" #. Rotation -#: plug-ins/ps/ps.c:2379 +#: plug-ins/common/ps.c:2404 msgid "Rotation" msgstr "" #. Format -#: plug-ins/ps/ps.c:2406 +#: plug-ins/common/ps.c:2431 msgid "Output" msgstr "" -#: plug-ins/ps/ps.c:2414 +#: plug-ins/common/ps.c:2439 msgid "Encapsulated PostScript" msgstr "" -#: plug-ins/ps/ps.c:2440 +#: plug-ins/common/ps.c:2465 msgid "Preview size" msgstr "" -#: plug-ins/xbm/xbm.c:163 +#: plug-ins/common/xbm.c:163 msgid "Load a file in X10 or X11 bitmap (XBM) file format" msgstr "" -#: plug-ins/xbm/xbm.c:164 +#: plug-ins/common/xbm.c:164 msgid "" "Load a file in X10 or X11 bitmap (XBM) file format. XBM is a lossless " "format for flat black-and-white (two color indexed) images." msgstr "" -#: plug-ins/xbm/xbm.c:230 +#: plug-ins/common/xbm.c:230 msgid "Made with Gimp" msgstr "" -#: plug-ins/xbm/xbm.c:518 +#: plug-ins/common/xbm.c:518 #, c-format msgid "XBM: cannot open \"%s\"\n" msgstr "" -#: plug-ins/xbm/xbm.c:583 +#: plug-ins/common/xbm.c:583 #, c-format msgid "XBM: cannot read header (ftell == %ld)\n" msgstr "" -#: plug-ins/xbm/xbm.c:589 +#: plug-ins/common/xbm.c:589 msgid "XBM: no image width specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:595 +#: plug-ins/common/xbm.c:595 msgid "XBM: no image height specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:601 +#: plug-ins/common/xbm.c:601 msgid "XBM: no image data type specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:692 +#: plug-ins/common/xbm.c:692 msgid "XBM: can only save two color indexed images\n" msgstr "" -#: plug-ins/xbm/xbm.c:697 +#: plug-ins/common/xbm.c:697 msgid "XBM Warning" msgstr "" -#: plug-ins/xbm/xbm.c:727 +#: plug-ins/common/xbm.c:727 msgid "" "The image which you are trying to save as\n" "an XBM contains more than two colors.\n" @@ -2735,82 +2726,82 @@ msgid "" "(1-bit) indexed image and try again." msgstr "" -#: plug-ins/xbm/xbm.c:799 +#: plug-ins/common/xbm.c:799 #, c-format msgid "XBM: cannot create \"%s\"\n" msgstr "" -#: plug-ins/xbm/xbm.c:949 +#: plug-ins/common/xbm.c:949 msgid "Save as XBM" msgstr "" #. parameter settings -#: plug-ins/xbm/xbm.c:980 +#: plug-ins/common/xbm.c:980 msgid "XBM Options" msgstr "" -#: plug-ins/xbm/xbm.c:995 +#: plug-ins/common/xbm.c:995 msgid "Description: " msgstr "" #. X10 format -#: plug-ins/xbm/xbm.c:1011 +#: plug-ins/common/xbm.c:1011 msgid "X10 format bitmap" msgstr "" -#: plug-ins/xbm/xbm.c:1024 +#: plug-ins/common/xbm.c:1024 msgid "Identifier prefix: " msgstr "" -#: plug-ins/xpm/xpm.c:170 +#: plug-ins/common/xpm.c:170 msgid "loads files of the xpm file format" msgstr "" -#: plug-ins/xpm/xpm.c:182 +#: plug-ins/common/xpm.c:182 msgid "saves files in the xpm file format (if you're on a 16 bit display...)" msgstr "" -#: plug-ins/xpm/xpm.c:756 +#: plug-ins/common/xpm.c:756 msgid "Save as Xpm" msgstr "" -#: plug-ins/xpm/xpm.c:790 +#: plug-ins/common/xpm.c:790 msgid "Alpha Threshold" msgstr "" -#: plug-ins/xwd/xwd.c:222 plug-ins/xwd/xwd.c:223 +#: plug-ins/common/xwd.c:226 plug-ins/common/xwd.c:227 msgid "load file of the XWD file format" msgstr "" -#: plug-ins/xwd/xwd.c:234 +#: plug-ins/common/xwd.c:238 msgid "saves files in the XWD file format" msgstr "" -#: plug-ins/xwd/xwd.c:235 +#: plug-ins/common/xwd.c:239 msgid "XWD saving handles all image types except those with alpha channels." msgstr "" -#: plug-ins/xwd/xwd.c:331 +#: plug-ins/common/xwd.c:335 msgid "can't open file for reading" msgstr "" -#: plug-ins/xwd/xwd.c:347 +#: plug-ins/common/xwd.c:351 msgid "can't open file as XWD file" msgstr "" -#: plug-ins/xwd/xwd.c:362 +#: plug-ins/common/xwd.c:366 msgid "can't get memory for colormap" msgstr "" -#: plug-ins/xwd/xwd.c:380 +#: plug-ins/common/xwd.c:384 msgid "can't read color entries" msgstr "" -#: plug-ins/xwd/xwd.c:444 +#: plug-ins/common/xwd.c:448 msgid "this image depth/format is not supported" msgstr "" -#: plug-ins/xwd/xwd.c:448 +#: plug-ins/common/xwd.c:452 #, c-format msgid "" "load_image (xwd): XWD-file %s has format %d, depth %d\n" @@ -2818,35 +2809,35 @@ msgid "" "Currently this is not supported.\n" msgstr "" -#: plug-ins/xwd/xwd.c:476 +#: plug-ins/common/xwd.c:480 msgid "XWD save cannot handle images with alpha channels" msgstr "" -#: plug-ins/xwd/xwd.c:487 +#: plug-ins/common/xwd.c:491 msgid "cannot operate on unknown image types" msgstr "" -#: plug-ins/xwd/xwd.c:496 +#: plug-ins/common/xwd.c:500 msgid "can't open file for writing" msgstr "" -#: plug-ins/xwd/xwd.c:1148 +#: plug-ins/common/xwd.c:1152 msgid "EOF encountered on " msgstr "" -#: plug-ins/xwd/xwd.c:1246 plug-ins/xwd/xwd.c:1408 plug-ins/xwd/xwd.c:1605 -#: plug-ins/xwd/xwd.c:1854 +#: plug-ins/common/xwd.c:1250 plug-ins/common/xwd.c:1412 +#: plug-ins/common/xwd.c:1609 plug-ins/common/xwd.c:1858 msgid "EOF encountered on reading" msgstr "" -#: plug-ins/xwd/xwd.c:1294 +#: plug-ins/common/xwd.c:1298 msgid "No memory for mapping colors" msgstr "" -#: plug-ins/xwd/xwd.c:1978 +#: plug-ins/common/xwd.c:1982 msgid "Error during writing indexed/grey image" msgstr "" -#: plug-ins/xwd/xwd.c:2067 +#: plug-ins/common/xwd.c:2071 msgid "Error during writing rgb image" msgstr "" diff --git a/po-plug-ins/fi.po b/po-plug-ins/fi.po index 4336c06aab..456dd3c23c 100644 --- a/po-plug-ins/fi.po +++ b/po-plug-ins/fi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 1999-06-05 14:12-0700\n" +"POT-Creation-Date: 1999-07-17 11:11-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,236 +14,230 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: plug-ins/CML_explorer/CML_explorer.c:226 +#: plug-ins/common/CML_explorer.c:226 msgid "Keep image's values" msgstr "Keep image's values" -#: plug-ins/CML_explorer/CML_explorer.c:228 +#: plug-ins/common/CML_explorer.c:228 msgid "Keep the first value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:230 +#: plug-ins/common/CML_explorer.c:230 msgid "Fill with parameter k" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:232 +#: plug-ins/common/CML_explorer.c:232 msgid "k{x(1-x)}^p" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:234 +#: plug-ins/common/CML_explorer.c:234 msgid "k{x(1-x)}^p stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:236 +#: plug-ins/common/CML_explorer.c:236 msgid "kx^p" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:238 +#: plug-ins/common/CML_explorer.c:238 msgid "kx^p stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:240 +#: plug-ins/common/CML_explorer.c:240 msgid "k(1 - x^p)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:242 +#: plug-ins/common/CML_explorer.c:242 msgid "k(1 - x^p) stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:244 +#: plug-ins/common/CML_explorer.c:244 msgid "Delta function" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:246 +#: plug-ins/common/CML_explorer.c:246 msgid "Delta function stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:248 +#: plug-ins/common/CML_explorer.c:248 msgid "sin^p-based function" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:250 +#: plug-ins/common/CML_explorer.c:250 msgid "sin^p, stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:256 +#: plug-ins/common/CML_explorer.c:256 msgid "None" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:258 +#: plug-ins/common/CML_explorer.c:258 msgid "Max (x, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:260 +#: plug-ins/common/CML_explorer.c:260 msgid "Max (x+d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:262 +#: plug-ins/common/CML_explorer.c:262 msgid "Max (x-d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:264 -msgid "Mix (x, -)" +#: plug-ins/common/CML_explorer.c:264 +msgid "Min (x, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:266 +#: plug-ins/common/CML_explorer.c:266 msgid "Min (x+d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:268 +#: plug-ins/common/CML_explorer.c:268 msgid "Min (x-d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:270 +#: plug-ins/common/CML_explorer.c:270 msgid "Max (x+d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:272 +#: plug-ins/common/CML_explorer.c:272 msgid "Max (x+d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:274 +#: plug-ins/common/CML_explorer.c:274 msgid "Max (x-d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:276 +#: plug-ins/common/CML_explorer.c:276 msgid "Max (x-d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:278 +#: plug-ins/common/CML_explorer.c:278 msgid "Min (x+d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:280 +#: plug-ins/common/CML_explorer.c:280 msgid "Min (x+d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:282 +#: plug-ins/common/CML_explorer.c:282 msgid "Min (x-d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:284 +#: plug-ins/common/CML_explorer.c:284 msgid "Min (x-d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:290 +#: plug-ins/common/CML_explorer.c:290 msgid "Standard" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:292 +#: plug-ins/common/CML_explorer.c:292 msgid "Use average value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:294 +#: plug-ins/common/CML_explorer.c:294 msgid "Use reverse value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:296 +#: plug-ins/common/CML_explorer.c:296 msgid "With random power (0,10)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:298 +#: plug-ins/common/CML_explorer.c:298 msgid "With random power (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:300 +#: plug-ins/common/CML_explorer.c:300 msgid "With gradient power (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:302 +#: plug-ins/common/CML_explorer.c:302 msgid "Multiply rand. value (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:304 +#: plug-ins/common/CML_explorer.c:304 msgid "Multiply rand. value (0,2)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:306 +#: plug-ins/common/CML_explorer.c:306 msgid "Multiply gradient (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:308 +#: plug-ins/common/CML_explorer.c:308 msgid "With p and random (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:313 +#: plug-ins/common/CML_explorer.c:313 msgid "All black" msgstr "" #. 0 -#: plug-ins/CML_explorer/CML_explorer.c:314 +#: plug-ins/common/CML_explorer.c:314 msgid "All gray" msgstr "" #. 1 -#: plug-ins/CML_explorer/CML_explorer.c:315 +#: plug-ins/common/CML_explorer.c:315 msgid "All white" msgstr "" #. 2 -#: plug-ins/CML_explorer/CML_explorer.c:316 +#: plug-ins/common/CML_explorer.c:316 msgid "The first row of the image" msgstr "" #. 3 -#: plug-ins/CML_explorer/CML_explorer.c:317 +#: plug-ins/common/CML_explorer.c:317 msgid "Continuous gradient" msgstr "" #. 4 -#: plug-ins/CML_explorer/CML_explorer.c:318 +#: plug-ins/common/CML_explorer.c:318 msgid "Continuous grad. w/o gap" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:320 +#: plug-ins/common/CML_explorer.c:320 msgid "Random, ch. independent" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:322 +#: plug-ins/common/CML_explorer.c:322 msgid "Random shared" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:324 +#: plug-ins/common/CML_explorer.c:324 msgid "Randoms from seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:326 +#: plug-ins/common/CML_explorer.c:326 msgid "Randoms from seed (shared)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:380 -#: plug-ins/CML_explorer/CML_explorer.c:388 -#: plug-ins/CML_explorer/CML_explorer.c:1431 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:135 +#: plug-ins/common/CML_explorer.c:380 plug-ins/common/CML_explorer.c:388 +#: plug-ins/common/CML_explorer.c:1431 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:135 msgid "Hue" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:381 -#: plug-ins/CML_explorer/CML_explorer.c:389 -#: plug-ins/CML_explorer/CML_explorer.c:1435 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:136 +#: plug-ins/common/CML_explorer.c:381 plug-ins/common/CML_explorer.c:389 +#: plug-ins/common/CML_explorer.c:1435 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:136 msgid "Saturation" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:382 -#: plug-ins/CML_explorer/CML_explorer.c:390 -#: plug-ins/CML_explorer/CML_explorer.c:1439 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:137 +#: plug-ins/common/CML_explorer.c:382 plug-ins/common/CML_explorer.c:390 +#: plug-ins/common/CML_explorer.c:1439 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:137 msgid "Value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:387 +#: plug-ins/common/CML_explorer.c:387 msgid "NULL" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:494 +#: plug-ins/common/CML_explorer.c:494 msgid "Make an image of Coupled-Map Lattice" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:495 +#: plug-ins/common/CML_explorer.c:495 msgid "" "Make an image of Coupled-Map Lattice (CML). CML is a kind of Cellula " "Automata on continuous (value) domain. In RUN_NONINTERACTIVE, the name of a " @@ -251,87 +245,87 @@ msgid "" "parameter file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1327 +#: plug-ins/common/CML_explorer.c:1327 msgid "Coupled-Map-Lattice Explorer" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1344 plug-ins/ps/ps.c:2423 +#: plug-ins/common/CML_explorer.c:1344 plug-ins/common/ps.c:2448 msgid "Preview" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1385 +#: plug-ins/common/CML_explorer.c:1385 msgid "New seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1391 +#: plug-ins/common/CML_explorer.c:1391 msgid "Fix seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1397 +#: plug-ins/common/CML_explorer.c:1397 msgid "Random seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1409 +#: plug-ins/common/CML_explorer.c:1409 msgid "Load" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1412 +#: plug-ins/common/CML_explorer.c:1412 msgid "Save" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1429 +#: plug-ins/common/CML_explorer.c:1429 msgid "Hue settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1433 +#: plug-ins/common/CML_explorer.c:1433 msgid "Saturation settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1437 +#: plug-ins/common/CML_explorer.c:1437 msgid "Value (grayimage) settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1441 +#: plug-ins/common/CML_explorer.c:1441 msgid "Advanced settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1443 +#: plug-ins/common/CML_explorer.c:1443 msgid "Advanced" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1455 +#: plug-ins/common/CML_explorer.c:1455 msgid "Other parameter settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1459 +#: plug-ins/common/CML_explorer.c:1459 msgid "Channel independed parameters" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1463 +#: plug-ins/common/CML_explorer.c:1463 msgid "Initial value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1469 +#: plug-ins/common/CML_explorer.c:1469 msgid "Zoom scale" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1474 +#: plug-ins/common/CML_explorer.c:1474 msgid "Start offset" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1494 +#: plug-ins/common/CML_explorer.c:1494 msgid "Seed of random (only for \"from seed\" modes)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1498 +#: plug-ins/common/CML_explorer.c:1498 msgid "Seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1508 +#: plug-ins/common/CML_explorer.c:1508 msgid "Switch to \"from seed\" with the last seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1515 +#: plug-ins/common/CML_explorer.c:1515 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 " @@ -339,202 +333,199 @@ msgid "" "(2) all mutation rates equal to zero." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1532 +#: plug-ins/common/CML_explorer.c:1532 msgid "Others" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1539 +#: plug-ins/common/CML_explorer.c:1539 msgid "Misc operations" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1544 +#: plug-ins/common/CML_explorer.c:1544 msgid "Copy settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1548 +#: plug-ins/common/CML_explorer.c:1548 msgid "Source ch." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1554 -#: plug-ins/CML_explorer/CML_explorer.c:1588 +#: plug-ins/common/CML_explorer.c:1554 plug-ins/common/CML_explorer.c:1588 msgid "Destination ch." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1560 +#: plug-ins/common/CML_explorer.c:1560 msgid "Do copy parameters" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1578 +#: plug-ins/common/CML_explorer.c:1578 msgid "Selective load settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1582 +#: plug-ins/common/CML_explorer.c:1582 msgid "Source ch. in file" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1608 +#: plug-ins/common/CML_explorer.c:1608 msgid "Misc ops." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1644 +#: plug-ins/common/CML_explorer.c:1644 msgid "Function type" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1651 +#: plug-ins/common/CML_explorer.c:1651 msgid "Composition" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1658 +#: plug-ins/common/CML_explorer.c:1658 msgid "Misc arrange" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1665 +#: plug-ins/common/CML_explorer.c:1665 msgid "Use cyclic range" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1670 +#: plug-ins/common/CML_explorer.c:1670 msgid "Mod. rate" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1677 +#: plug-ins/common/CML_explorer.c:1677 msgid "Env. sensitivity" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1684 +#: plug-ins/common/CML_explorer.c:1684 msgid "Diffusion dist." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1691 +#: plug-ins/common/CML_explorer.c:1691 msgid "# of subranges" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1698 +#: plug-ins/common/CML_explorer.c:1698 msgid "P(ower factor)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1705 +#: plug-ins/common/CML_explorer.c:1705 msgid "Parameter k" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1712 +#: plug-ins/common/CML_explorer.c:1712 msgid "Range low" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1719 +#: plug-ins/common/CML_explorer.c:1719 msgid "Range high" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1738 +#: plug-ins/common/CML_explorer.c:1738 msgid "Plot the graph of the settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1772 +#: plug-ins/common/CML_explorer.c:1772 msgid "Ch. sensitivity" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1779 +#: plug-ins/common/CML_explorer.c:1779 msgid "Mutation rate" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1786 +#: plug-ins/common/CML_explorer.c:1786 msgid "Mutation dist." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1815 +#: plug-ins/common/CML_explorer.c:1815 msgid "Graph of the current settings" msgstr "" #. Action Area -#: plug-ins/CML_explorer/CML_explorer.c:1820 -#: plug-ins/CML_explorer/CML_explorer.c:2681 -#: plug-ins/CML_explorer/CML_explorer.c:2777 -#: plug-ins/apply_lens/apply_lens.c:420 plug-ins/blur/blur.c:619 -#: plug-ins/bmp/bmpwrite.c:428 plug-ins/bumpmap/bumpmap.c:970 -#: plug-ins/checkerboard/checkerboard.c:381 plug-ins/compose/compose.c:816 -#: plug-ins/convmatrix/convmatrix.c:706 plug-ins/cubism/cubism.c:338 -#: plug-ins/decompose/decompose.c:914 plug-ins/depthmerge/depthmerge.c:746 -#: plug-ins/destripe/destripe.c:695 plug-ins/gif/gif.c:1263 -#: plug-ins/jpeg/jpeg.c:1000 plug-ins/mail/mail.c:491 -#: plug-ins/oilify/oilify.c:460 plug-ins/png/png.c:1180 -#: plug-ins/print/print.c:1279 plug-ins/ps/ps.c:1998 plug-ins/ps/ps.c:2265 -#: plug-ins/xbm/xbm.c:959 plug-ins/xpm/xpm.c:763 +#: plug-ins/bmp/bmpwrite.c:428 plug-ins/common/CML_explorer.c:1820 +#: plug-ins/common/CML_explorer.c:2681 plug-ins/common/CML_explorer.c:2777 +#: plug-ins/common/apply_lens.c:420 plug-ins/common/blur.c:619 +#: plug-ins/common/bumpmap.c:970 plug-ins/common/checkerboard.c:381 +#: plug-ins/common/compose.c:816 plug-ins/common/convmatrix.c:706 +#: plug-ins/common/cubism.c:338 plug-ins/common/decompose.c:914 +#: plug-ins/common/depthmerge.c:746 plug-ins/common/destripe.c:695 +#: plug-ins/common/gif.c:1263 plug-ins/common/jpeg.c:1000 +#: plug-ins/common/mail.c:491 plug-ins/common/oilify.c:460 +#: plug-ins/common/png.c:827 plug-ins/common/ps.c:2023 +#: plug-ins/common/ps.c:2290 plug-ins/common/xbm.c:959 +#: plug-ins/common/xpm.c:763 plug-ins/print/print.c:1104 msgid "OK" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1830 +#: plug-ins/common/CML_explorer.c:1830 msgid "The Graph" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1922 +#: plug-ins/common/CML_explorer.c:1922 msgid "Warning: the source and the destination are the same channel." msgstr "" #. Action Area -#: plug-ins/CML_explorer/CML_explorer.c:2010 +#: plug-ins/common/CML_explorer.c:2010 msgid "Execute" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2019 +#: plug-ins/common/CML_explorer.c:2019 msgid "Execute and Exit" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2027 +#: plug-ins/common/CML_explorer.c:2027 msgid "Exit" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2045 +#: plug-ins/common/CML_explorer.c:2045 msgid "Save parameters to" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2108 -#: plug-ins/CML_explorer/CML_explorer.c:2301 +#: plug-ins/common/CML_explorer.c:2108 plug-ins/common/CML_explorer.c:2301 #, c-format msgid "Error: could not open \"%s\"" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2173 +#: plug-ins/common/CML_explorer.c:2173 msgid "CML file operation warning" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2180 +#: plug-ins/common/CML_explorer.c:2180 #, c-format msgid "%s exists, overwrite?" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2223 +#: plug-ins/common/CML_explorer.c:2223 msgid "Load parameters from" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2225 +#: plug-ins/common/CML_explorer.c:2225 msgid "Selective load from" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2324 +#: plug-ins/common/CML_explorer.c:2324 msgid "Error: it's not CML parameter file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2331 +#: plug-ins/common/CML_explorer.c:2331 msgid "Warning: it's an old format file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2333 +#: plug-ins/common/CML_explorer.c:2333 msgid "Warning: Hmmm, it's a parameter file for newer CML_explorer than me." msgstr "" #. cancel button -#: plug-ins/CML_explorer/CML_explorer.c:2690 -#: plug-ins/Lighting/lighting_ui.c:1062 plug-ins/apply_lens/apply_lens.c:430 -#: plug-ins/blur/blur.c:621 plug-ins/bmp/bmpwrite.c:437 -#: plug-ins/bumpmap/bumpmap.c:979 plug-ins/checkerboard/checkerboard.c:390 -#: plug-ins/colorify/colorify.c:319 plug-ins/compose/compose.c:825 -#: plug-ins/convmatrix/convmatrix.c:723 plug-ins/cubism/cubism.c:347 -#: plug-ins/decompose/decompose.c:924 plug-ins/depthmerge/depthmerge.c:756 -#: plug-ins/destripe/destripe.c:704 plug-ins/gif/gif.c:1172 -#: plug-ins/jpeg/jpeg.c:1009 plug-ins/mail/mail.c:502 -#: plug-ins/oilify/oilify.c:469 plug-ins/png/png.c:1189 -#: plug-ins/print/print.c:1166 plug-ins/print/print.c:1272 -#: plug-ins/ps/ps.c:2008 plug-ins/ps/ps.c:2275 plug-ins/xbm/xbm.c:707 -#: plug-ins/xbm/xbm.c:969 plug-ins/xpm/xpm.c:772 +#: plug-ins/Lighting/lighting_ui.c:1062 plug-ins/bmp/bmpwrite.c:437 +#: plug-ins/common/CML_explorer.c:2690 plug-ins/common/apply_lens.c:430 +#: plug-ins/common/blur.c:621 plug-ins/common/bumpmap.c:979 +#: plug-ins/common/checkerboard.c:390 plug-ins/common/colorify.c:323 +#: plug-ins/common/compose.c:825 plug-ins/common/convmatrix.c:723 +#: plug-ins/common/cubism.c:347 plug-ins/common/decompose.c:924 +#: plug-ins/common/depthmerge.c:756 plug-ins/common/destripe.c:704 +#: plug-ins/common/gif.c:1172 plug-ins/common/jpeg.c:1009 +#: plug-ins/common/mail.c:502 plug-ins/common/oilify.c:469 +#: plug-ins/common/png.c:836 plug-ins/common/ps.c:2033 +#: plug-ins/common/ps.c:2300 plug-ins/common/xbm.c:707 +#: plug-ins/common/xbm.c:969 plug-ins/common/xpm.c:772 +#: plug-ins/print/print.c:991 plug-ins/print/print.c:1097 msgid "Cancel" msgstr "" @@ -867,23 +858,23 @@ msgstr "" msgid "Zoom out (make image smaller)" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:136 +#: plug-ins/common/apply_lens.c:136 msgid "Apply a lens effect" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:137 +#: plug-ins/common/apply_lens.c:137 msgid "This plug-in uses Snell's law to draw an ellipsoid lens over the image" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:141 +#: plug-ins/common/apply_lens.c:141 msgid "/Filters/Glass Effects/Apply Lens" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:200 +#: plug-ins/common/apply_lens.c:200 msgid "Applying lens..." msgstr "" -#: plug-ins/apply_lens/apply_lens.c:414 +#: plug-ins/common/apply_lens.c:414 msgid "Lens effect" msgstr "" @@ -892,40 +883,40 @@ msgstr "" #. * #. * First set up the basic containers, label them, etc. #. -#: plug-ins/apply_lens/apply_lens.c:439 plug-ins/blur/blur.c:607 -#: plug-ins/checkerboard/checkerboard.c:399 plug-ins/cubism/cubism.c:356 -#: plug-ins/jpeg/jpeg.c:1018 plug-ins/oilify/oilify.c:478 -#: plug-ins/png/png.c:1200 plug-ins/xpm/xpm.c:781 +#: plug-ins/common/apply_lens.c:439 plug-ins/common/blur.c:607 +#: plug-ins/common/checkerboard.c:399 plug-ins/common/cubism.c:356 +#: plug-ins/common/jpeg.c:1018 plug-ins/common/oilify.c:478 +#: plug-ins/common/png.c:847 plug-ins/common/xpm.c:781 msgid "Parameter Settings" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:448 +#: plug-ins/common/apply_lens.c:448 msgid "Keep original surroundings" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:461 +#: plug-ins/common/apply_lens.c:461 msgid "Set surroundings to index 0" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:462 +#: plug-ins/common/apply_lens.c:462 msgid "Set surroundings to background color" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:475 +#: plug-ins/common/apply_lens.c:475 msgid "Make surroundings transparent" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:490 +#: plug-ins/common/apply_lens.c:490 msgid "Lens refraction index: " msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:82 +#: plug-ins/common/autostretch_hsv.c:82 msgid "" "Automatically stretch the contrast of the specified drawable to cover all " "possible ranges." msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:83 +#: plug-ins/common/autostretch_hsv.c:83 msgid "" "This simple plug-in does an automatic contrast stretch. For each channel in " "the image, it finds the minimum and maximum values... it uses those values " @@ -935,52 +926,52 @@ msgid "" "space, and preserves hue." msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:87 +#: plug-ins/common/autostretch_hsv.c:87 msgid "/Image/Colors/Auto-Stretch HSV" msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:119 +#: plug-ins/common/autostretch_hsv.c:119 msgid "Auto-Stretching HSV..." msgstr "" -#: plug-ins/blur/blur.c:194 +#: plug-ins/common/blur.c:194 msgid "Apply a 3x3 blurring convolution kernel to the specified drawable." msgstr "" -#: plug-ins/blur/blur.c:195 +#: plug-ins/common/blur.c:195 msgid "" "This plug-in randomly blurs the specified drawable, using a 3x3 blur. You " "control the percentage of the pixels that are blurred and the number of " "times blurring is applied. Indexed images are not supported." msgstr "" -#: plug-ins/blur/blur.c:208 +#: plug-ins/common/blur.c:208 msgid "/Filters/Blur/Blur" msgstr "" -#: plug-ins/blur/blur.c:620 +#: plug-ins/common/blur.c:620 msgid "Accept settings and apply filter to image" msgstr "" -#: plug-ins/blur/blur.c:622 +#: plug-ins/common/blur.c:622 msgid "Close plug-in without making any changes" msgstr "" #. #. * Randomization seed initialization controls #. -#: plug-ins/blur/blur.c:626 +#: plug-ins/common/blur.c:626 msgid "Randomization Seed:" msgstr "" #. #. * Time button #. -#: plug-ins/blur/blur.c:637 +#: plug-ins/common/blur.c:637 msgid "Current Time" msgstr "" -#: plug-ins/blur/blur.c:638 +#: plug-ins/common/blur.c:638 msgid "" "Seed random number generator from the current time - this guarantees a " "reasonable randomization" @@ -989,39 +980,39 @@ msgstr "" #. #. * User button #. -#: plug-ins/blur/blur.c:648 +#: plug-ins/common/blur.c:648 msgid "Other Value" msgstr "" -#: plug-ins/blur/blur.c:649 +#: plug-ins/common/blur.c:649 msgid "" "Enable user-entered value for random number generator seed - this allows you " "to repeat a given \"random\" operation" msgstr "" -#: plug-ins/blur/blur.c:661 +#: plug-ins/common/blur.c:661 msgid "Value for seeding the random number generator" msgstr "" #. #. * Randomization percentage label & scale (1 to 100) #. -#: plug-ins/blur/blur.c:666 +#: plug-ins/common/blur.c:666 msgid "Randomization %:" msgstr "" -#: plug-ins/blur/blur.c:669 +#: plug-ins/common/blur.c:669 msgid "Percentage of pixels to be filtered" msgstr "" #. #. * Repeat count label & scale (1 to 100) #. -#: plug-ins/blur/blur.c:674 +#: plug-ins/common/blur.c:674 msgid "Repeat:" msgstr "" -#: plug-ins/blur/blur.c:677 +#: plug-ins/common/blur.c:677 msgid "Number of times to apply filter" msgstr "" @@ -1033,9 +1024,10 @@ msgstr "" msgid "Saves files in Windows BMP file format" msgstr "" -#: plug-ins/bmp/bmpread.c:27 plug-ins/gifload/gifload.c:287 -#: plug-ins/jpeg/jpeg.c:494 plug-ins/png/png.c:700 plug-ins/png/png.c:702 -#: plug-ins/xbm/xbm.c:523 plug-ins/xpm/xpm.c:300 +#: plug-ins/bmp/bmpread.c:27 plug-ins/common/gifload.c:287 +#: plug-ins/common/jpeg.c:494 plug-ins/common/png.c:345 +#: plug-ins/common/png.c:347 plug-ins/common/xbm.c:523 +#: plug-ins/common/xpm.c:300 #, c-format msgid "Loading %s:" msgstr "" @@ -1074,9 +1066,10 @@ msgstr "" #. * Create the "background" layer to hold the image... #. #: plug-ins/bmp/bmpread.c:210 plug-ins/bmp/bmpread.c:218 -#: plug-ins/bmp/bmpread.c:224 plug-ins/compose/compose.c:562 -#: plug-ins/decompose/decompose.c:472 plug-ins/gifload/gifload.c:828 -#: plug-ins/jpeg/jpeg.c:611 plug-ins/png/png.c:810 plug-ins/xbm/xbm.c:612 +#: plug-ins/bmp/bmpread.c:224 plug-ins/common/compose.c:562 +#: plug-ins/common/decompose.c:472 plug-ins/common/gifload.c:828 +#: plug-ins/common/jpeg.c:611 plug-ins/common/png.c:455 +#: plug-ins/common/xbm.c:612 msgid "Background" msgstr "" @@ -1089,9 +1082,10 @@ msgstr "" msgid "can't open %s\n" msgstr "" -#: plug-ins/bmp/bmpwrite.c:154 plug-ins/jpeg/jpeg.c:759 plug-ins/png/png.c:950 -#: plug-ins/png/png.c:952 plug-ins/ps/ps.c:680 plug-ins/xbm/xbm.c:777 -#: plug-ins/xpm/xpm.c:611 plug-ins/xwd/xwd.c:503 +#: plug-ins/bmp/bmpwrite.c:154 plug-ins/common/jpeg.c:759 +#: plug-ins/common/png.c:595 plug-ins/common/png.c:597 +#: plug-ins/common/ps.c:673 plug-ins/common/xbm.c:777 +#: plug-ins/common/xpm.c:611 plug-ins/common/xwd.c:507 #, c-format msgid "Saving %s:" msgstr "" @@ -1129,310 +1123,310 @@ msgstr "" msgid "Bucket Size:" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:298 +#: plug-ins/common/bumpmap.c:298 msgid "Linear map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:299 +#: plug-ins/common/bumpmap.c:299 msgid "Spherical map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:300 +#: plug-ins/common/bumpmap.c:300 msgid "Sinusoidal map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:346 +#: plug-ins/common/bumpmap.c:346 msgid "Create an embossing effect using an image as a bump map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:354 +#: plug-ins/common/bumpmap.c:354 msgid "/Filters/Map/Bump Map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:500 +#: plug-ins/common/bumpmap.c:500 msgid "Bump-mapping..." msgstr "" #. Bump map menu -#: plug-ins/bumpmap/bumpmap.c:830 plug-ins/bumpmap/bumpmap.c:939 +#: plug-ins/common/bumpmap.c:830 plug-ins/common/bumpmap.c:939 msgid "Bump map" msgstr "" #. Compensate darkening -#: plug-ins/bumpmap/bumpmap.c:884 +#: plug-ins/common/bumpmap.c:884 msgid "Compensate for darkening" msgstr "" #. Invert bumpmap -#: plug-ins/bumpmap/bumpmap.c:895 +#: plug-ins/common/bumpmap.c:895 msgid "Invert bumpmap" msgstr "" #. Controls -#: plug-ins/bumpmap/bumpmap.c:958 +#: plug-ins/common/bumpmap.c:958 msgid "Azimuth" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:959 +#: plug-ins/common/bumpmap.c:959 msgid "Elevation" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:960 +#: plug-ins/common/bumpmap.c:960 msgid "Depth" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:961 +#: plug-ins/common/bumpmap.c:961 msgid "X offset" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:962 +#: plug-ins/common/bumpmap.c:962 msgid "Y offset" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:963 +#: plug-ins/common/bumpmap.c:963 msgid "Waterlevel" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:964 +#: plug-ins/common/bumpmap.c:964 msgid "Ambient" msgstr "" -#: plug-ins/bz2/bz2.c:293 plug-ins/bz2/bz2.c:358 +#: plug-ins/common/bz2.c:293 plug-ins/common/bz2.c:358 #, c-format msgid "bz2: fork failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:300 plug-ins/bz2/bz2.c:365 +#: plug-ins/common/bz2.c:300 plug-ins/common/bz2.c:365 #, c-format msgid "bz2: fopen failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:306 plug-ins/bz2/bz2.c:371 +#: plug-ins/common/bz2.c:306 plug-ins/common/bz2.c:371 #, c-format msgid "bz2: dup2 failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:310 +#: plug-ins/common/bz2.c:310 #, c-format msgid "bz2: exec failed: bzip2: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:324 plug-ins/bz2/bz2.c:389 +#: plug-ins/common/bz2.c:324 plug-ins/common/bz2.c:389 #, c-format msgid "bz2: bzip2 exited abnormally on file %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:375 +#: plug-ins/common/bz2.c:375 #, c-format msgid "bz2: exec failed: bunzip2: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:443 +#: plug-ins/common/bz2.c:443 msgid "bz2: can't open bzip2ed file without a sensible extension\n" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:97 +#: plug-ins/common/checkerboard.c:97 msgid "Adds a checkerboard pattern to an image" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:102 +#: plug-ins/common/checkerboard.c:102 msgid "/Filters/Render/Checkerboard" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:164 +#: plug-ins/common/checkerboard.c:164 msgid "Adding Checkerboard..." msgstr "" -#: plug-ins/checkerboard/checkerboard.c:374 +#: plug-ins/common/checkerboard.c:374 msgid "Checkerboard" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:407 +#: plug-ins/common/checkerboard.c:407 msgid "Psychobilly" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:415 +#: plug-ins/common/checkerboard.c:415 msgid "Check Size" msgstr "" -#: plug-ins/colorify/colorify.c:122 +#: plug-ins/common/colorify.c:122 msgid "Similar to the \"Color\" mode for layers." msgstr "" -#: plug-ins/colorify/colorify.c:123 +#: plug-ins/common/colorify.c:123 msgid "Makes an average of the RGB channels and uses it to set the color" msgstr "" -#: plug-ins/colorify/colorify.c:126 +#: plug-ins/common/colorify.c:126 msgid "/Filters/Colors/Colorify" msgstr "" -#: plug-ins/colorify/colorify.c:194 +#: plug-ins/common/colorify.c:194 msgid "Colorifying..." msgstr "" -#: plug-ins/colorify/colorify.c:304 +#: plug-ins/common/colorify.c:308 msgid "Colorify" msgstr "" -#: plug-ins/colorify/colorify.c:310 +#: plug-ins/common/colorify.c:314 msgid "Ok" msgstr "" -#: plug-ins/colorify/colorify.c:327 plug-ins/print/print.c:1023 -#: plug-ins/xpm/xpm.c:406 +#: plug-ins/common/colorify.c:331 plug-ins/common/xpm.c:406 +#: plug-ins/print/print.c:848 msgid "Color" msgstr "" -#: plug-ins/colorify/colorify.c:340 +#: plug-ins/common/colorify.c:344 msgid "Custom Color: " msgstr "" -#: plug-ins/colorify/colorify.c:430 +#: plug-ins/common/colorify.c:434 msgid "Colorify Custom Color" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/decompose/decompose.c:129 +#: plug-ins/common/compose.c:125 plug-ins/common/decompose.c:129 msgid "RGB" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Red:" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Green: " msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Blue:" msgstr "" -#: plug-ins/compose/compose.c:126 +#: plug-ins/common/compose.c:126 msgid "rgb-compose" msgstr "" -#: plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:127 msgid "RGBA" msgstr "" -#: plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:127 msgid "Alpha:" msgstr "" -#: plug-ins/compose/compose.c:128 +#: plug-ins/common/compose.c:128 msgid "rgba-compose" msgstr "" -#: plug-ins/compose/compose.c:129 plug-ins/decompose/decompose.c:133 +#: plug-ins/common/compose.c:129 plug-ins/common/decompose.c:133 msgid "HSV" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Hue:" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Saturation:" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Value:" msgstr "" -#: plug-ins/compose/compose.c:130 +#: plug-ins/common/compose.c:130 msgid "hsv-compose" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/decompose/decompose.c:138 +#: plug-ins/common/compose.c:131 plug-ins/common/decompose.c:138 msgid "CMY" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Cyan:" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Magenta: " msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Yellow:" msgstr "" -#: plug-ins/compose/compose.c:132 +#: plug-ins/common/compose.c:132 msgid "cmy-compose" msgstr "" -#: plug-ins/compose/compose.c:133 plug-ins/decompose/decompose.c:143 +#: plug-ins/common/compose.c:133 plug-ins/common/decompose.c:143 msgid "CMYK" msgstr "" -#: plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:133 msgid "Black:" msgstr "" -#: plug-ins/compose/compose.c:134 +#: plug-ins/common/compose.c:134 msgid "cmyk-compose" msgstr "" -#: plug-ins/compose/compose.c:228 +#: plug-ins/common/compose.c:228 msgid "Compose an image from multiple gray images" msgstr "" -#: plug-ins/compose/compose.c:229 +#: plug-ins/common/compose.c:229 msgid "This function creates a new image from multiple gray images" msgstr "" -#: plug-ins/compose/compose.c:234 +#: plug-ins/common/compose.c:234 msgid "/Image/Channel Ops/Compose" msgstr "" -#: plug-ins/compose/compose.c:241 +#: plug-ins/common/compose.c:241 msgid "Compose an image from multiple drawables of gray images" msgstr "" -#: plug-ins/compose/compose.c:242 +#: plug-ins/common/compose.c:242 msgid "" "This function creates a new image from multiple drawables of gray images" msgstr "" -#: plug-ins/compose/compose.c:305 +#: plug-ins/common/compose.c:305 #, c-format msgid "compose: Could not get layers for image %d" msgstr "" -#: plug-ins/compose/compose.c:354 +#: plug-ins/common/compose.c:354 msgid "Composing..." msgstr "" -#: plug-ins/compose/compose.c:421 +#: plug-ins/common/compose.c:421 msgid "compose: drawables have different size" msgstr "" -#: plug-ins/compose/compose.c:438 +#: plug-ins/common/compose.c:438 msgid "compose: images have different size" msgstr "" -#: plug-ins/compose/compose.c:451 +#: plug-ins/common/compose.c:451 msgid "compose: error in getting layer IDs" msgstr "" -#: plug-ins/compose/compose.c:468 +#: plug-ins/common/compose.c:468 #, c-format msgid "compose: image is not a gray image (bpp=%d)" msgstr "" -#: plug-ins/compose/compose.c:483 plug-ins/compose/compose.c:498 +#: plug-ins/common/compose.c:483 plug-ins/common/compose.c:498 msgid "compose: not enough memory" msgstr "" -#: plug-ins/compose/compose.c:809 +#: plug-ins/common/compose.c:809 msgid "Compose" msgstr "" #. The left frame keeps the compose type toggles -#: plug-ins/compose/compose.c:841 +#: plug-ins/common/compose.c:841 msgid "Compose channels:" msgstr "" @@ -1440,324 +1434,324 @@ msgstr "" #. 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/compose/compose.c:855 +#: plug-ins/common/compose.c:855 msgid "Channel representations:" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 +#: plug-ins/common/convmatrix.c:76 msgid "Grey" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:130 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:130 msgid "Red" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:131 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:131 msgid "Green" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:132 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:132 msgid "Blue" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:148 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:148 msgid "Alpha" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:80 +#: plug-ins/common/convmatrix.c:80 msgid "Extend" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:80 +#: plug-ins/common/convmatrix.c:80 msgid "Wrap" msgstr "" #. Action area -#: plug-ins/convmatrix/convmatrix.c:80 plug-ins/gif/gif.c:1163 +#: plug-ins/common/convmatrix.c:80 plug-ins/common/gif.c:1163 msgid "Crop" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:173 +#: plug-ins/common/convmatrix.c:173 msgid "A generic 5x5 convolution matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:178 +#: plug-ins/common/convmatrix.c:178 msgid "/Filters/Generic/Convolution Matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:239 +#: plug-ins/common/convmatrix.c:239 msgid "Applying convolution" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:700 +#: plug-ins/common/convmatrix.c:700 msgid "Convolution Matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:715 +#: plug-ins/common/convmatrix.c:715 msgid "Defaults" msgstr "" #. Outbox:YABox:Frame -#: plug-ins/convmatrix/convmatrix.c:741 +#: plug-ins/common/convmatrix.c:741 msgid "Matrix" msgstr "" #. divisor -#: plug-ins/convmatrix/convmatrix.c:788 +#: plug-ins/common/convmatrix.c:788 msgid "Divisor" msgstr "" #. Offset -#: plug-ins/convmatrix/convmatrix.c:803 plug-ins/depthmerge/depthmerge.c:728 +#: plug-ins/common/convmatrix.c:803 plug-ins/common/depthmerge.c:728 msgid "Offset" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:823 +#: plug-ins/common/convmatrix.c:823 msgid "Automatic" msgstr "" #. Alpha-weighting -#: plug-ins/convmatrix/convmatrix.c:832 +#: plug-ins/common/convmatrix.c:832 msgid "Alpha-weighting" msgstr "" #. Wrap-modes #. OutBox:Inbox:Frame -#: plug-ins/convmatrix/convmatrix.c:847 +#: plug-ins/common/convmatrix.c:847 msgid "Border" msgstr "" #. OutBox:Inbox:Frame -#: plug-ins/convmatrix/convmatrix.c:875 +#: plug-ins/common/convmatrix.c:875 msgid "Channels" msgstr "" -#: plug-ins/cubism/cubism.c:181 +#: plug-ins/common/cubism.c:181 msgid "Convert the input drawable into a collection of rotated squares" msgstr "" -#: plug-ins/cubism/cubism.c:186 +#: plug-ins/common/cubism.c:186 msgid "/Filters/Artistic/Cubism" msgstr "" -#: plug-ins/cubism/cubism.c:298 +#: plug-ins/common/cubism.c:298 msgid "Cubistic Transformation" msgstr "" -#: plug-ins/cubism/cubism.c:331 +#: plug-ins/common/cubism.c:331 msgid "Cubism" msgstr "" -#: plug-ins/cubism/cubism.c:364 +#: plug-ins/common/cubism.c:364 msgid "Use Background Color" msgstr "" -#: plug-ins/cubism/cubism.c:372 +#: plug-ins/common/cubism.c:372 msgid "Tile Size" msgstr "" -#: plug-ins/cubism/cubism.c:388 +#: plug-ins/common/cubism.c:388 msgid "Tile Saturation" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:130 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:130 msgid "red" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:131 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:131 msgid "green" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:132 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:132 msgid "blue" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:135 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:135 msgid "hue" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:136 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:136 msgid "saturation" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:137 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:137 msgid "value" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:140 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:140 msgid "cyan" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:141 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:141 msgid "magenta" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:142 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:142 msgid "yellow" msgstr "" -#: plug-ins/decompose/decompose.c:140 +#: plug-ins/common/decompose.c:140 msgid "Cyan" msgstr "" -#: plug-ins/decompose/decompose.c:141 +#: plug-ins/common/decompose.c:141 msgid "Magenta" msgstr "" -#: plug-ins/decompose/decompose.c:142 +#: plug-ins/common/decompose.c:142 msgid "Yellow" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:145 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:145 msgid "cyan_k" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:146 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:146 msgid "magenta_k" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:147 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:147 msgid "yellow_k" msgstr "" -#: plug-ins/decompose/decompose.c:144 +#: plug-ins/common/decompose.c:144 msgid "black" msgstr "" -#: plug-ins/decompose/decompose.c:145 +#: plug-ins/common/decompose.c:145 msgid "Cyan_K" msgstr "" -#: plug-ins/decompose/decompose.c:146 +#: plug-ins/common/decompose.c:146 msgid "Magenta_K" msgstr "" -#: plug-ins/decompose/decompose.c:147 +#: plug-ins/common/decompose.c:147 msgid "Yellow_K" msgstr "" -#: plug-ins/decompose/decompose.c:148 +#: plug-ins/common/decompose.c:148 msgid "alpha" msgstr "" -#: plug-ins/decompose/decompose.c:216 +#: plug-ins/common/decompose.c:216 msgid "Decompose an image into different types of channels" msgstr "" -#: plug-ins/decompose/decompose.c:217 +#: plug-ins/common/decompose.c:217 msgid "" "This function creates new gray images with different channel information in " "each of them" msgstr "" -#: plug-ins/decompose/decompose.c:222 +#: plug-ins/common/decompose.c:222 msgid "/Image/Channel Ops/Decompose" msgstr "" -#: plug-ins/decompose/decompose.c:303 +#: plug-ins/common/decompose.c:303 msgid "plug_in_decompose: Can only work on RGB*_IMAGE" msgstr "" -#: plug-ins/decompose/decompose.c:309 +#: plug-ins/common/decompose.c:309 msgid "Decomposing..." msgstr "" -#: plug-ins/decompose/decompose.c:374 +#: plug-ins/common/decompose.c:374 msgid "decompose: not an RGB image" msgstr "" -#: plug-ins/decompose/decompose.c:380 +#: plug-ins/common/decompose.c:380 msgid "decompose: No alpha channel available" msgstr "" -#: plug-ins/decompose/decompose.c:409 +#: plug-ins/common/decompose.c:409 msgid "decompose: out of memory" msgstr "" -#: plug-ins/decompose/decompose.c:901 plug-ins/decompose/decompose.c:907 +#: plug-ins/common/decompose.c:901 plug-ins/common/decompose.c:907 msgid "Decompose" msgstr "" #. parameter settings -#: plug-ins/decompose/decompose.c:934 +#: plug-ins/common/decompose.c:934 msgid "Extract channels:" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:194 +#: plug-ins/common/depthmerge.c:194 msgid "Combine two images using corresponding depth maps (z-buffers)" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:195 +#: plug-ins/common/depthmerge.c:195 msgid "" "Taking as input two full-colour, full-alpha images and two corresponding " "grayscale depth maps, this plug-in combines the images based on which is " "closer (has a lower depth map value) at each point." msgstr "" -#: plug-ins/depthmerge/depthmerge.c:202 +#: plug-ins/common/depthmerge.c:202 msgid "/Filters/Combine/Depth Merge" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:369 +#: plug-ins/common/depthmerge.c:369 msgid "Depth-merging..." msgstr "" -#: plug-ins/depthmerge/depthmerge.c:609 +#: plug-ins/common/depthmerge.c:609 msgid "Depth Merge" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:647 +#: plug-ins/common/depthmerge.c:647 msgid "Source 1" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:664 plug-ins/depthmerge/depthmerge.c:698 +#: plug-ins/common/depthmerge.c:664 plug-ins/common/depthmerge.c:698 msgid "Depth Map" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:681 +#: plug-ins/common/depthmerge.c:681 msgid "Source 2" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:723 +#: plug-ins/common/depthmerge.c:723 msgid "Overlap" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:733 +#: plug-ins/common/depthmerge.c:733 msgid "Scale 1" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:738 +#: plug-ins/common/depthmerge.c:738 msgid "Scale 2" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:1181 +#: plug-ins/common/depthmerge.c:1181 msgid "" "Warning: I don't _like_ this color space. This is a suggestion, not a " "threat.\n" msgstr "" -#: plug-ins/destripe/destripe.c:151 +#: plug-ins/common/destripe.c:151 msgid "" "Destripe filter, used to remove vertical stripes caused by cheap scanners." msgstr "" -#: plug-ins/destripe/destripe.c:152 +#: plug-ins/common/destripe.c:152 msgid "This plug-in tries to remove vertical stripes from an image." msgstr "" -#: plug-ins/destripe/destripe.c:155 +#: plug-ins/common/destripe.c:155 msgid "/Filters/Enhance/Destripe" msgstr "" -#: plug-ins/destripe/destripe.c:358 +#: plug-ins/common/destripe.c:358 msgid "Destriping..." msgstr "" -#: plug-ins/destripe/destripe.c:589 +#: plug-ins/common/destripe.c:589 msgid "Destripe" msgstr "" -#: plug-ins/destripe/destripe.c:663 +#: plug-ins/common/destripe.c:663 msgid "Histogram" msgstr "" @@ -1773,36 +1767,36 @@ msgstr "" #. #. * Box size (radius) control... #. -#: plug-ins/destripe/destripe.c:687 +#: plug-ins/common/destripe.c:687 msgid "Width" msgstr "" -#: plug-ins/gif/gif.c:408 +#: plug-ins/common/gif.c:408 msgid "saves files in Compuserve GIF file format" msgstr "" -#: plug-ins/gif/gif.c:682 +#: plug-ins/common/gif.c:682 msgid "GIF: Couldn't simply reduce colours further. Saving as opaque.\n" msgstr "" -#: plug-ins/gif/gif.c:938 +#: plug-ins/common/gif.c:938 msgid "" "GIF: Sorry, can't save RGB images as GIFs - convert to INDEXED\n" "or GRAY first.\n" msgstr "" -#: plug-ins/gif/gif.c:957 +#: plug-ins/common/gif.c:957 #, c-format msgid "GIF: can't open %s\n" msgstr "" -#: plug-ins/gif/gif.c:1064 +#: plug-ins/common/gif.c:1064 msgid "" "Transparent colour *might* be incorrect on viewers which don't support " "transparency." msgstr "" -#: plug-ins/gif/gif.c:1196 +#: plug-ins/common/gif.c:1196 msgid "" "The image which you are trying to save as a GIF\n" "contains layers which extend beyond the actual\n" @@ -1813,339 +1807,339 @@ msgid "" "the image borders, or cancel this save." msgstr "" -#: plug-ins/gif/gif.c:1252 +#: plug-ins/common/gif.c:1252 msgid "Save as GIF" msgstr "" #. regular gif parameter settings -#: plug-ins/gif/gif.c:1286 +#: plug-ins/common/gif.c:1286 msgid "GIF Options" msgstr "" -#: plug-ins/gif/gif.c:1294 plug-ins/png/png.c:1209 +#: plug-ins/common/gif.c:1294 plug-ins/common/png.c:856 msgid "Interlace" msgstr "" -#: plug-ins/gif/gif.c:1306 +#: plug-ins/common/gif.c:1306 msgid "GIF Comment: " msgstr "" -#: plug-ins/gif/gif.c:1339 plug-ins/gif/gif.c:1340 +#: plug-ins/common/gif.c:1339 plug-ins/common/gif.c:1340 msgid "Made with GIMP" msgstr "" #. additional animated gif parameter settings -#: plug-ins/gif/gif.c:1365 +#: plug-ins/common/gif.c:1365 msgid "Animated GIF Options" msgstr "" -#: plug-ins/gif/gif.c:1373 +#: plug-ins/common/gif.c:1373 msgid "Loop forever" msgstr "" -#: plug-ins/gif/gif.c:1386 +#: plug-ins/common/gif.c:1386 msgid "Delay between frames where unspecified: " msgstr "" -#: plug-ins/gif/gif.c:1400 +#: plug-ins/common/gif.c:1400 msgid " milliseconds" msgstr "" -#: plug-ins/gif/gif.c:1411 +#: plug-ins/common/gif.c:1411 msgid "Frame disposal where unspecified: " msgstr "" -#: plug-ins/gif/gif.c:1421 +#: plug-ins/common/gif.c:1421 msgid "I don't care" msgstr "" -#: plug-ins/gif/gif.c:1427 +#: plug-ins/common/gif.c:1427 msgid "Cumulative layers (combine)" msgstr "" -#: plug-ins/gif/gif.c:1433 +#: plug-ins/common/gif.c:1433 msgid "One frame per layer (replace)" msgstr "" -#: plug-ins/gif/gif.c:1491 +#: plug-ins/common/gif.c:1491 #, c-format msgid "GIF: colorstobpp - Eep! too many colours: %d\n" msgstr "" -#: plug-ins/gif/gif.c:1507 +#: plug-ins/common/gif.c:1507 #, c-format msgid "GIF: bpptocolors - Eep! bpp==%d !\n" msgstr "" -#: plug-ins/gifload/gifload.c:134 +#: plug-ins/common/gifload.c:134 msgid "loads files of Compuserve GIF file format" msgstr "" -#: plug-ins/gifload/gifload.c:279 +#: plug-ins/common/gifload.c:279 #, c-format msgid "GIF: can't open \"%s\"\n" msgstr "" -#: plug-ins/gifload/gifload.c:294 +#: plug-ins/common/gifload.c:294 msgid "GIF: error reading magic number\n" msgstr "" -#: plug-ins/gifload/gifload.c:300 +#: plug-ins/common/gifload.c:300 msgid "GIF: not a GIF file\n" msgstr "" -#: plug-ins/gifload/gifload.c:309 +#: plug-ins/common/gifload.c:309 msgid "GIF: bad version number, not '87a' or '89a'\n" msgstr "" -#: plug-ins/gifload/gifload.c:315 +#: plug-ins/common/gifload.c:315 msgid "GIF: failed to read screen descriptor\n" msgstr "" -#: plug-ins/gifload/gifload.c:331 +#: plug-ins/common/gifload.c:331 msgid "GIF: error reading global colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:338 +#: plug-ins/common/gifload.c:338 msgid "GIF: warning - non-square pixels\n" msgstr "" -#: plug-ins/gifload/gifload.c:349 plug-ins/gifload/gifload.c:803 +#: plug-ins/common/gifload.c:349 plug-ins/common/gifload.c:803 msgid "GIF: EOF / read error on image data\n" msgstr "" -#: plug-ins/gifload/gifload.c:364 +#: plug-ins/common/gifload.c:364 msgid "GIF: OF / read error on extension function code\n" msgstr "" #. Not a valid start character -#: plug-ins/gifload/gifload.c:374 +#: plug-ins/common/gifload.c:374 #, c-format msgid "GIF: bogus character 0x%02x, ignoring\n" msgstr "" -#: plug-ins/gifload/gifload.c:382 +#: plug-ins/common/gifload.c:382 msgid "GIF: couldn't read left/top/width/height\n" msgstr "" -#: plug-ins/gifload/gifload.c:394 +#: plug-ins/common/gifload.c:394 msgid "GIF: error reading local colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:452 +#: plug-ins/common/gifload.c:452 msgid "GIF: bad colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:568 +#: plug-ins/common/gifload.c:568 msgid "GIF: error in getting DataBlock size\n" msgstr "" -#: plug-ins/gifload/gifload.c:576 +#: plug-ins/common/gifload.c:576 msgid "GIF: error in reading DataBlock\n" msgstr "" -#: plug-ins/gifload/gifload.c:607 +#: plug-ins/common/gifload.c:607 msgid "GIF: ran off the end of by bits\n" msgstr "" -#: plug-ins/gifload/gifload.c:718 +#: plug-ins/common/gifload.c:718 msgid "GIF: missing EOD in data stream (common occurence)" msgstr "" -#: plug-ins/gifload/gifload.c:735 +#: plug-ins/common/gifload.c:735 msgid "GIF: circular table entry BIG ERROR\n" msgstr "" -#: plug-ins/gifload/gifload.c:809 +#: plug-ins/common/gifload.c:809 msgid "GIF: error while reading\n" msgstr "" -#: plug-ins/gifload/gifload.c:830 +#: plug-ins/common/gifload.c:830 #, c-format msgid "Background (%dms)" msgstr "" -#: plug-ins/gifload/gifload.c:877 +#: plug-ins/common/gifload.c:877 #, c-format msgid "Frame %d" msgstr "" -#: plug-ins/gifload/gifload.c:879 +#: plug-ins/common/gifload.c:879 #, c-format msgid "Frame %d (%dms)" msgstr "" #. 'don't care' -#: plug-ins/gifload/gifload.c:885 plug-ins/gifload/gifload.c:887 +#: plug-ins/common/gifload.c:885 plug-ins/common/gifload.c:887 msgid " (combine)" msgstr "" -#: plug-ins/gifload/gifload.c:886 +#: plug-ins/common/gifload.c:886 msgid " (replace)" msgstr "" -#: plug-ins/gifload/gifload.c:892 +#: plug-ins/common/gifload.c:892 msgid " (unknown disposal)" msgstr "" -#: plug-ins/gifload/gifload.c:893 +#: plug-ins/common/gifload.c:893 msgid "" "GIF: Hmm... please forward this GIF to the GIF plugin author!\n" " (adam@foxbox.org)\n" msgstr "" -#: plug-ins/gifload/gifload.c:896 +#: plug-ins/common/gifload.c:896 msgid "GIF: Something got corrupted.\n" msgstr "" -#: plug-ins/gifload/gifload.c:925 +#: plug-ins/common/gifload.c:925 #, c-format msgid "GIF: reading %d by %d%s GIF image, ncols=%d\n" msgstr "" -#: plug-ins/gifload/gifload.c:926 +#: plug-ins/common/gifload.c:926 msgid " interlaced" msgstr "" -#: plug-ins/gifload/gifload.c:930 +#: plug-ins/common/gifload.c:930 msgid "" "GIF: Ouchie! Can't handle non-alpha RGB frames.\n" " Please mail the plugin author. (adam@gimp.org)\n" msgstr "" -#: plug-ins/gifload/gifload.c:1022 +#: plug-ins/common/gifload.c:1022 msgid "GIF: too much input data, ignoring extra...\n" msgstr "" -#: plug-ins/jpeg/jpeg.c:176 +#: plug-ins/common/jpeg.c:176 msgid "loads files of the jpeg file format" msgstr "" -#: plug-ins/jpeg/jpeg.c:487 +#: plug-ins/common/jpeg.c:487 #, c-format msgid "can't open \"%s\"\n" msgstr "" -#: plug-ins/jpeg/jpeg.c:603 +#: plug-ins/common/jpeg.c:603 #, c-format msgid "" "don't know how to load JPEGs\n" "with %d color channels" msgstr "" -#: plug-ins/jpeg/jpeg.c:648 +#: plug-ins/common/jpeg.c:648 #, c-format msgid "" "unknown density unit %d\n" "assuming dots per inch" msgstr "" -#: plug-ins/jpeg/jpeg.c:993 +#: plug-ins/common/jpeg.c:993 msgid "Save as Jpeg" msgstr "" -#: plug-ins/jpeg/jpeg.c:1026 +#: plug-ins/common/jpeg.c:1026 msgid "Quality" msgstr "" -#: plug-ins/jpeg/jpeg.c:1042 +#: plug-ins/common/jpeg.c:1042 msgid "Smoothing" msgstr "" -#: plug-ins/jpeg/jpeg.c:1058 +#: plug-ins/common/jpeg.c:1058 msgid "Optimize" msgstr "" -#: plug-ins/jpeg/jpeg.c:1066 +#: plug-ins/common/jpeg.c:1066 msgid "Progressive" msgstr "" -#: plug-ins/jpeg/jpeg.c:1079 +#: plug-ins/common/jpeg.c:1079 msgid "Image Comments" msgstr "" -#: plug-ins/mail/mail.c:212 +#: plug-ins/common/mail.c:212 msgid "pipe files to uuencode then mail them" msgstr "" -#: plug-ins/mail/mail.c:213 +#: plug-ins/common/mail.c:213 msgid "You need to have uuencode and mail installed" msgstr "" -#: plug-ins/mail/mail.c:217 +#: plug-ins/common/mail.c:217 msgid "/File/Mail image" msgstr "" -#: plug-ins/mail/mail.c:486 +#: plug-ins/common/mail.c:486 msgid "Send to mail" msgstr "" #. filename label -#: plug-ins/mail/mail.c:620 +#: plug-ins/common/mail.c:620 msgid "Filename:" msgstr "" #. Encapsulation label -#: plug-ins/mail/mail.c:674 +#: plug-ins/common/mail.c:674 msgid "Encapsulation:" msgstr "" #. Encapsulation radiobutton -#: plug-ins/mail/mail.c:683 +#: plug-ins/common/mail.c:683 msgid "Uuencode" msgstr "" -#: plug-ins/mail/mail.c:685 +#: plug-ins/common/mail.c:685 msgid "MIME" msgstr "" -#: plug-ins/mail/mail.c:799 +#: plug-ins/common/mail.c:799 msgid "mail: some sort of error with the file extension or lack thereof \n" msgstr "" -#: plug-ins/oilify/oilify.c:122 +#: plug-ins/common/oilify.c:122 msgid "Modify the specified drawable to resemble an oil painting" msgstr "" -#: plug-ins/oilify/oilify.c:123 +#: plug-ins/common/oilify.c:123 msgid "" "This function performs the well-known oil-paint effect on the specified " "drawable. The size of the input mask is specified by 'mask_size'." msgstr "" -#: plug-ins/oilify/oilify.c:127 +#: plug-ins/common/oilify.c:127 msgid "/Filters/Artistic/Oilify" msgstr "" -#: plug-ins/oilify/oilify.c:198 +#: plug-ins/common/oilify.c:198 msgid "Oil Painting..." msgstr "" -#: plug-ins/oilify/oilify.c:453 +#: plug-ins/common/oilify.c:453 msgid "Oilify" msgstr "" -#: plug-ins/oilify/oilify.c:486 +#: plug-ins/common/oilify.c:486 msgid "Use intensity algorithm" msgstr "" -#: plug-ins/oilify/oilify.c:494 +#: plug-ins/common/oilify.c:494 msgid "Mask Size" msgstr "" -#: plug-ins/png/png.c:504 +#: plug-ins/common/png.c:149 msgid "Loads files in PNG file format" msgstr "" -#: plug-ins/png/png.c:505 +#: plug-ins/common/png.c:150 msgid "This plug-in loads Portable Network Graphics (PNG) files." msgstr "" -#: plug-ins/png/png.c:1171 +#: plug-ins/common/png.c:818 msgid "PNG Options" msgstr "" -#: plug-ins/png/png.c:1216 +#: plug-ins/common/png.c:863 msgid "Compression level" msgstr "" @@ -2243,135 +2237,135 @@ msgstr "" msgid "600 DPI" msgstr "" -#: plug-ins/print/print.c:406 +#: plug-ins/print/print.c:229 msgid "PostScript Level 1" msgstr "" -#: plug-ins/print/print.c:408 +#: plug-ins/print/print.c:231 msgid "PostScript Level 2" msgstr "" -#: plug-ins/print/print.c:410 +#: plug-ins/print/print.c:233 msgid "HP DeskJet 500, 520" msgstr "" -#: plug-ins/print/print.c:412 +#: plug-ins/print/print.c:235 msgid "HP DeskJet 500C, 540C" msgstr "" -#: plug-ins/print/print.c:414 +#: plug-ins/print/print.c:237 msgid "HP DeskJet 550C, 560C" msgstr "" -#: plug-ins/print/print.c:416 +#: plug-ins/print/print.c:239 msgid "HP DeskJet 600 series" msgstr "" -#: plug-ins/print/print.c:418 +#: plug-ins/print/print.c:241 msgid "HP DeskJet 800 series" msgstr "" -#: plug-ins/print/print.c:420 +#: plug-ins/print/print.c:243 msgid "HP DeskJet 1100C, 1120C" msgstr "" -#: plug-ins/print/print.c:422 +#: plug-ins/print/print.c:245 msgid "HP DeskJet 1200C, 1600C" msgstr "" -#: plug-ins/print/print.c:424 +#: plug-ins/print/print.c:247 msgid "HP LaserJet II series" msgstr "" -#: plug-ins/print/print.c:426 +#: plug-ins/print/print.c:249 msgid "HP LaserJet III series" msgstr "" -#: plug-ins/print/print.c:428 +#: plug-ins/print/print.c:251 msgid "HP LaserJet 4 series" msgstr "" -#: plug-ins/print/print.c:430 +#: plug-ins/print/print.c:253 msgid "HP LaserJet 4V, 4Si" msgstr "" -#: plug-ins/print/print.c:432 +#: plug-ins/print/print.c:255 msgid "HP LaserJet 5 series" msgstr "" -#: plug-ins/print/print.c:434 +#: plug-ins/print/print.c:257 msgid "HP LaserJet 5Si" msgstr "" -#: plug-ins/print/print.c:436 +#: plug-ins/print/print.c:259 msgid "HP LaserJet 6 series" msgstr "" -#: plug-ins/print/print.c:438 +#: plug-ins/print/print.c:261 msgid "EPSON Stylus Color" msgstr "" -#: plug-ins/print/print.c:440 +#: plug-ins/print/print.c:263 msgid "EPSON Stylus Color Pro" msgstr "" -#: plug-ins/print/print.c:442 +#: plug-ins/print/print.c:265 msgid "EPSON Stylus Color Pro XL" msgstr "" -#: plug-ins/print/print.c:444 +#: plug-ins/print/print.c:267 msgid "EPSON Stylus Color 1500" msgstr "" -#: plug-ins/print/print.c:446 +#: plug-ins/print/print.c:269 msgid "EPSON Stylus Color 400" msgstr "" -#: plug-ins/print/print.c:448 +#: plug-ins/print/print.c:271 msgid "EPSON Stylus Color 500" msgstr "" -#: plug-ins/print/print.c:450 +#: plug-ins/print/print.c:273 msgid "EPSON Stylus Color 600" msgstr "" -#: plug-ins/print/print.c:452 +#: plug-ins/print/print.c:275 msgid "EPSON Stylus Color 800" msgstr "" -#: plug-ins/print/print.c:454 +#: plug-ins/print/print.c:277 msgid "EPSON Stylus Color 1520" msgstr "" -#: plug-ins/print/print.c:456 +#: plug-ins/print/print.c:279 msgid "EPSON Stylus Color 3000" msgstr "" -#: plug-ins/print/print.c:509 +#: plug-ins/print/print.c:332 msgid "This plug-in prints images from The GIMP." msgstr "" -#: plug-ins/print/print.c:510 +#: plug-ins/print/print.c:333 msgid "Prints images to PostScript, PCL, or ESC/P2 printers." msgstr "" -#: plug-ins/print/print.c:514 +#: plug-ins/print/print.c:337 msgid "/File/Print" msgstr "" -#: plug-ins/print/print.c:827 +#: plug-ins/print/print.c:650 msgid "Auto" msgstr "" -#: plug-ins/print/print.c:828 +#: plug-ins/print/print.c:651 msgid "Portrait" msgstr "" -#: plug-ins/print/print.c:829 +#: plug-ins/print/print.c:652 msgid "Landscape" msgstr "" -#: plug-ins/print/print.c:860 +#: plug-ins/print/print.c:685 #, c-format msgid "Print v%s" msgstr "" @@ -2379,354 +2373,351 @@ msgstr "" #. #. * Media size option menu... #. -#: plug-ins/print/print.c:910 +#: plug-ins/print/print.c:735 msgid "Media Size:" msgstr "" #. #. * Media type option menu... #. -#: plug-ins/print/print.c:926 +#: plug-ins/print/print.c:751 msgid "Media Type:" msgstr "" #. #. * Media source option menu... #. -#: plug-ins/print/print.c:942 +#: plug-ins/print/print.c:767 msgid "Media Source:" msgstr "" #. #. * Orientation option menu... #. -#: plug-ins/print/print.c:958 +#: plug-ins/print/print.c:783 msgid "Orientation:" msgstr "" #. #. * Resolution option menu... #. -#: plug-ins/print/print.c:988 plug-ins/ps/ps.c:1974 +#: plug-ins/common/ps.c:1999 plug-ins/print/print.c:813 msgid "Resolution:" msgstr "" #. #. * Output type toggles... #. -#: plug-ins/print/print.c:1004 +#: plug-ins/print/print.c:829 msgid "Output Type:" msgstr "" -#: plug-ins/print/print.c:1013 +#: plug-ins/print/print.c:838 msgid "B&W" msgstr "" #. #. * Scaling... #. -#: plug-ins/print/print.c:1036 +#: plug-ins/print/print.c:861 msgid "Scaling:" msgstr "" -#: plug-ins/print/print.c:1071 +#: plug-ins/print/print.c:896 msgid "Percent" msgstr "" -#: plug-ins/print/print.c:1080 +#: plug-ins/print/print.c:905 msgid "PPI" msgstr "" #. #. * Brightness slider... #. -#: plug-ins/print/print.c:1092 +#: plug-ins/print/print.c:917 msgid "Brightness:" msgstr "" #. #. * Printer option menu... #. -#: plug-ins/print/print.c:1127 +#: plug-ins/print/print.c:952 msgid "Printer:" msgstr "" -#: plug-ins/print/print.c:1153 plug-ins/print/print.c:1186 +#: plug-ins/print/print.c:978 plug-ins/print/print.c:1011 msgid "Setup" msgstr "" -#: plug-ins/print/print.c:1173 +#: plug-ins/print/print.c:998 msgid "Print" msgstr "" #. #. * Printer driver option menu... #. -#: plug-ins/print/print.c:1208 +#: plug-ins/print/print.c:1033 msgid "Driver:" msgstr "" #. #. * PPD file... #. -#: plug-ins/print/print.c:1233 +#: plug-ins/print/print.c:1058 msgid "PPD File:" msgstr "" -#: plug-ins/print/print.c:1246 +#: plug-ins/print/print.c:1071 msgid "Browse" msgstr "" #. #. * Print command... #. -#: plug-ins/print/print.c:1256 +#: plug-ins/print/print.c:1081 msgid "Command:" msgstr "" #. #. * Output file selection dialog... #. -#: plug-ins/print/print.c:1291 +#: plug-ins/print/print.c:1116 msgid "Print To File?" msgstr "" #. #. * PPD file selection dialog... #. -#: plug-ins/print/print.c:1301 +#: plug-ins/print/print.c:1126 msgid "PPD File?" msgstr "" -#: plug-ins/print/print.c:2287 +#: plug-ins/print/print.c:2112 msgid "File" msgstr "" -#: plug-ins/ps/ps.c:319 plug-ins/ps/ps.c:320 +#: plug-ins/common/ps.c:320 plug-ins/common/ps.c:321 msgid "load file of PostScript/PDF file format" msgstr "" -#: plug-ins/ps/ps.c:343 +#: plug-ins/common/ps.c:344 msgid "save file in PostScript file format" msgstr "" -#: plug-ins/ps/ps.c:344 +#: plug-ins/common/ps.c:345 msgid "" "PostScript saving handles all image types except those with alpha channels." msgstr "" -#: plug-ins/ps/ps.c:549 +#: plug-ins/common/ps.c:550 msgid "PS: can't open file for reading" msgstr "" -#: plug-ins/ps/ps.c:556 +#: plug-ins/common/ps.c:557 #, c-format msgid "Interpreting and Loading %s:" msgstr "" -#: plug-ins/ps/ps.c:566 +#: plug-ins/common/ps.c:565 msgid "PS: can't interprete file" msgstr "" -#: plug-ins/ps/ps.c:573 -msgid "PS: out of memory" -msgstr "" - -#: plug-ins/ps/ps.c:653 +#: plug-ins/common/ps.c:647 msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: plug-ins/ps/ps.c:664 +#: plug-ins/common/ps.c:658 msgid "PS: cannot operate on unknown image types" msgstr "" -#: plug-ins/ps/ps.c:673 +#: plug-ins/common/ps.c:667 msgid "PS: can't open file for writing" msgstr "" -#: plug-ins/ps/ps.c:1947 +#: plug-ins/common/ps.c:1713 plug-ins/common/ps.c:1810 +#: plug-ins/common/ps.c:1903 plug-ins/common/ps.c:1972 msgid "write error occured" msgstr "" -#: plug-ins/ps/ps.c:1974 plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:1999 plug-ins/common/ps.c:2264 msgid "Width:" msgstr "" -#: plug-ins/ps/ps.c:1974 plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:1999 plug-ins/common/ps.c:2264 msgid "Height:" msgstr "" -#: plug-ins/ps/ps.c:1974 +#: plug-ins/common/ps.c:1999 msgid "Pages:" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "b/w" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "gray" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "colour" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "automatic" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "none" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "weak" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "strong" msgstr "" -#: plug-ins/ps/ps.c:1991 +#: plug-ins/common/ps.c:2016 msgid "Load PostScript" msgstr "" #. Rendering -#: plug-ins/ps/ps.c:2024 +#: plug-ins/common/ps.c:2049 msgid "Rendering" msgstr "" -#: plug-ins/ps/ps.c:2064 +#: plug-ins/common/ps.c:2089 msgid "try BoundingBox" msgstr "" #. Colouring -#: plug-ins/ps/ps.c:2077 +#: plug-ins/common/ps.c:2102 msgid "Colouring" msgstr "" -#: plug-ins/ps/ps.c:2113 +#: plug-ins/common/ps.c:2138 msgid "Graphic antialiasing" msgstr "" -#: plug-ins/ps/ps.c:2114 +#: plug-ins/common/ps.c:2139 msgid "Text antialiasing" msgstr "" -#: plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:2264 msgid "X-offset:" msgstr "" -#: plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:2264 msgid "Y-offset:" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "0" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "90" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "180" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "270" msgstr "" -#: plug-ins/ps/ps.c:2243 +#: plug-ins/common/ps.c:2268 msgid "Inch" msgstr "" -#: plug-ins/ps/ps.c:2243 +#: plug-ins/common/ps.c:2268 msgid "Millimeter" msgstr "" -#: plug-ins/ps/ps.c:2258 +#: plug-ins/common/ps.c:2283 msgid "Save PostScript" msgstr "" #. Image Size -#: plug-ins/ps/ps.c:2299 +#: plug-ins/common/ps.c:2324 msgid "Image Size" msgstr "" -#: plug-ins/ps/ps.c:2338 +#: plug-ins/common/ps.c:2363 msgid "keep aspect ratio" msgstr "" #. Unit -#: plug-ins/ps/ps.c:2348 +#: plug-ins/common/ps.c:2373 msgid "Unit" msgstr "" #. Rotation -#: plug-ins/ps/ps.c:2379 +#: plug-ins/common/ps.c:2404 msgid "Rotation" msgstr "" #. Format -#: plug-ins/ps/ps.c:2406 +#: plug-ins/common/ps.c:2431 msgid "Output" msgstr "" -#: plug-ins/ps/ps.c:2414 +#: plug-ins/common/ps.c:2439 msgid "Encapsulated PostScript" msgstr "" -#: plug-ins/ps/ps.c:2440 +#: plug-ins/common/ps.c:2465 msgid "Preview size" msgstr "" -#: plug-ins/xbm/xbm.c:163 +#: plug-ins/common/xbm.c:163 msgid "Load a file in X10 or X11 bitmap (XBM) file format" msgstr "" -#: plug-ins/xbm/xbm.c:164 +#: plug-ins/common/xbm.c:164 msgid "" "Load a file in X10 or X11 bitmap (XBM) file format. XBM is a lossless " "format for flat black-and-white (two color indexed) images." msgstr "" -#: plug-ins/xbm/xbm.c:230 +#: plug-ins/common/xbm.c:230 msgid "Made with Gimp" msgstr "" -#: plug-ins/xbm/xbm.c:518 +#: plug-ins/common/xbm.c:518 #, c-format msgid "XBM: cannot open \"%s\"\n" msgstr "" -#: plug-ins/xbm/xbm.c:583 +#: plug-ins/common/xbm.c:583 #, c-format msgid "XBM: cannot read header (ftell == %ld)\n" msgstr "" -#: plug-ins/xbm/xbm.c:589 +#: plug-ins/common/xbm.c:589 msgid "XBM: no image width specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:595 +#: plug-ins/common/xbm.c:595 msgid "XBM: no image height specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:601 +#: plug-ins/common/xbm.c:601 msgid "XBM: no image data type specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:692 +#: plug-ins/common/xbm.c:692 msgid "XBM: can only save two color indexed images\n" msgstr "" -#: plug-ins/xbm/xbm.c:697 +#: plug-ins/common/xbm.c:697 msgid "XBM Warning" msgstr "" -#: plug-ins/xbm/xbm.c:727 +#: plug-ins/common/xbm.c:727 msgid "" "The image which you are trying to save as\n" "an XBM contains more than two colors.\n" @@ -2735,82 +2726,82 @@ msgid "" "(1-bit) indexed image and try again." msgstr "" -#: plug-ins/xbm/xbm.c:799 +#: plug-ins/common/xbm.c:799 #, c-format msgid "XBM: cannot create \"%s\"\n" msgstr "" -#: plug-ins/xbm/xbm.c:949 +#: plug-ins/common/xbm.c:949 msgid "Save as XBM" msgstr "" #. parameter settings -#: plug-ins/xbm/xbm.c:980 +#: plug-ins/common/xbm.c:980 msgid "XBM Options" msgstr "" -#: plug-ins/xbm/xbm.c:995 +#: plug-ins/common/xbm.c:995 msgid "Description: " msgstr "" #. X10 format -#: plug-ins/xbm/xbm.c:1011 +#: plug-ins/common/xbm.c:1011 msgid "X10 format bitmap" msgstr "" -#: plug-ins/xbm/xbm.c:1024 +#: plug-ins/common/xbm.c:1024 msgid "Identifier prefix: " msgstr "" -#: plug-ins/xpm/xpm.c:170 +#: plug-ins/common/xpm.c:170 msgid "loads files of the xpm file format" msgstr "" -#: plug-ins/xpm/xpm.c:182 +#: plug-ins/common/xpm.c:182 msgid "saves files in the xpm file format (if you're on a 16 bit display...)" msgstr "" -#: plug-ins/xpm/xpm.c:756 +#: plug-ins/common/xpm.c:756 msgid "Save as Xpm" msgstr "" -#: plug-ins/xpm/xpm.c:790 +#: plug-ins/common/xpm.c:790 msgid "Alpha Threshold" msgstr "" -#: plug-ins/xwd/xwd.c:222 plug-ins/xwd/xwd.c:223 +#: plug-ins/common/xwd.c:226 plug-ins/common/xwd.c:227 msgid "load file of the XWD file format" msgstr "" -#: plug-ins/xwd/xwd.c:234 +#: plug-ins/common/xwd.c:238 msgid "saves files in the XWD file format" msgstr "" -#: plug-ins/xwd/xwd.c:235 +#: plug-ins/common/xwd.c:239 msgid "XWD saving handles all image types except those with alpha channels." msgstr "" -#: plug-ins/xwd/xwd.c:331 +#: plug-ins/common/xwd.c:335 msgid "can't open file for reading" msgstr "" -#: plug-ins/xwd/xwd.c:347 +#: plug-ins/common/xwd.c:351 msgid "can't open file as XWD file" msgstr "" -#: plug-ins/xwd/xwd.c:362 +#: plug-ins/common/xwd.c:366 msgid "can't get memory for colormap" msgstr "" -#: plug-ins/xwd/xwd.c:380 +#: plug-ins/common/xwd.c:384 msgid "can't read color entries" msgstr "" -#: plug-ins/xwd/xwd.c:444 +#: plug-ins/common/xwd.c:448 msgid "this image depth/format is not supported" msgstr "" -#: plug-ins/xwd/xwd.c:448 +#: plug-ins/common/xwd.c:452 #, c-format msgid "" "load_image (xwd): XWD-file %s has format %d, depth %d\n" @@ -2818,35 +2809,35 @@ msgid "" "Currently this is not supported.\n" msgstr "" -#: plug-ins/xwd/xwd.c:476 +#: plug-ins/common/xwd.c:480 msgid "XWD save cannot handle images with alpha channels" msgstr "" -#: plug-ins/xwd/xwd.c:487 +#: plug-ins/common/xwd.c:491 msgid "cannot operate on unknown image types" msgstr "" -#: plug-ins/xwd/xwd.c:496 +#: plug-ins/common/xwd.c:500 msgid "can't open file for writing" msgstr "" -#: plug-ins/xwd/xwd.c:1148 +#: plug-ins/common/xwd.c:1152 msgid "EOF encountered on " msgstr "" -#: plug-ins/xwd/xwd.c:1246 plug-ins/xwd/xwd.c:1408 plug-ins/xwd/xwd.c:1605 -#: plug-ins/xwd/xwd.c:1854 +#: plug-ins/common/xwd.c:1250 plug-ins/common/xwd.c:1412 +#: plug-ins/common/xwd.c:1609 plug-ins/common/xwd.c:1858 msgid "EOF encountered on reading" msgstr "" -#: plug-ins/xwd/xwd.c:1294 +#: plug-ins/common/xwd.c:1298 msgid "No memory for mapping colors" msgstr "" -#: plug-ins/xwd/xwd.c:1978 +#: plug-ins/common/xwd.c:1982 msgid "Error during writing indexed/grey image" msgstr "" -#: plug-ins/xwd/xwd.c:2067 +#: plug-ins/common/xwd.c:2071 msgid "Error during writing rgb image" msgstr "" diff --git a/po-plug-ins/fr.po b/po-plug-ins/fr.po index fdd77987a7..4bd9c3af78 100644 --- a/po-plug-ins/fr.po +++ b/po-plug-ins/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gimp VERSION\n" -"POT-Creation-Date: 1999-06-24 13:13+0200\n" +"POT-Creation-Date: 1999-07-17 11:11-0700\n" "PO-Revision-Date: 1999-03-18 19:00+0100\n" "Last-Translator: Vincent Renardias \n" "Language-Team: Vincent Renardias \n" @@ -458,9 +458,9 @@ msgstr "Graphe des r #: plug-ins/common/depthmerge.c:746 plug-ins/common/destripe.c:695 #: plug-ins/common/gif.c:1263 plug-ins/common/jpeg.c:1000 #: plug-ins/common/mail.c:491 plug-ins/common/oilify.c:460 -#: plug-ins/common/png.c:1180 plug-ins/common/ps.c:2023 +#: plug-ins/common/png.c:827 plug-ins/common/ps.c:2023 #: plug-ins/common/ps.c:2290 plug-ins/common/xbm.c:959 -#: plug-ins/common/xpm.c:763 plug-ins/print/print.c:1279 +#: plug-ins/common/xpm.c:763 plug-ins/print/print.c:1104 msgid "OK" msgstr "OK" @@ -528,16 +528,16 @@ msgstr "" #: plug-ins/Lighting/lighting_ui.c:1062 plug-ins/bmp/bmpwrite.c:437 #: plug-ins/common/CML_explorer.c:2690 plug-ins/common/apply_lens.c:430 #: plug-ins/common/blur.c:621 plug-ins/common/bumpmap.c:979 -#: plug-ins/common/checkerboard.c:390 plug-ins/common/colorify.c:319 +#: plug-ins/common/checkerboard.c:390 plug-ins/common/colorify.c:323 #: plug-ins/common/compose.c:825 plug-ins/common/convmatrix.c:723 #: plug-ins/common/cubism.c:347 plug-ins/common/decompose.c:924 #: plug-ins/common/depthmerge.c:756 plug-ins/common/destripe.c:704 #: plug-ins/common/gif.c:1172 plug-ins/common/jpeg.c:1009 #: plug-ins/common/mail.c:502 plug-ins/common/oilify.c:469 -#: plug-ins/common/png.c:1189 plug-ins/common/ps.c:2033 +#: plug-ins/common/png.c:836 plug-ins/common/ps.c:2033 #: plug-ins/common/ps.c:2300 plug-ins/common/xbm.c:707 #: plug-ins/common/xbm.c:969 plug-ins/common/xpm.c:772 -#: plug-ins/print/print.c:1166 plug-ins/print/print.c:1272 +#: plug-ins/print/print.c:991 plug-ins/print/print.c:1097 msgid "Cancel" msgstr "Annuler" @@ -912,7 +912,7 @@ msgstr "Effet de lentille optique" #: plug-ins/common/apply_lens.c:439 plug-ins/common/blur.c:607 #: plug-ins/common/checkerboard.c:399 plug-ins/common/cubism.c:356 #: plug-ins/common/jpeg.c:1018 plug-ins/common/oilify.c:478 -#: plug-ins/common/png.c:1200 plug-ins/common/xpm.c:781 +#: plug-ins/common/png.c:847 plug-ins/common/xpm.c:781 msgid "Parameter Settings" msgstr "RИglage des paramХtres" @@ -1067,8 +1067,8 @@ msgid "Saves files in Windows BMP file format" msgstr "Enregistre le fichier au format Windows BMP" #: plug-ins/bmp/bmpread.c:27 plug-ins/common/gifload.c:287 -#: plug-ins/common/jpeg.c:494 plug-ins/common/png.c:700 -#: plug-ins/common/png.c:702 plug-ins/common/xbm.c:523 +#: plug-ins/common/jpeg.c:494 plug-ins/common/png.c:345 +#: plug-ins/common/png.c:347 plug-ins/common/xbm.c:523 #: plug-ins/common/xpm.c:300 #, c-format msgid "Loading %s:" @@ -1110,7 +1110,7 @@ msgstr "%s: mauvaise palette de couleurs\n" #: plug-ins/bmp/bmpread.c:210 plug-ins/bmp/bmpread.c:218 #: plug-ins/bmp/bmpread.c:224 plug-ins/common/compose.c:562 #: plug-ins/common/decompose.c:472 plug-ins/common/gifload.c:828 -#: plug-ins/common/jpeg.c:611 plug-ins/common/png.c:810 +#: plug-ins/common/jpeg.c:611 plug-ins/common/png.c:455 #: plug-ins/common/xbm.c:612 msgid "Background" msgstr "Fond" @@ -1126,9 +1126,9 @@ msgid "can't open %s\n" msgstr "impossible d'ouvrir %s\n" #: plug-ins/bmp/bmpwrite.c:154 plug-ins/common/jpeg.c:759 -#: plug-ins/common/png.c:950 plug-ins/common/png.c:952 +#: plug-ins/common/png.c:595 plug-ins/common/png.c:597 #: plug-ins/common/ps.c:673 plug-ins/common/xbm.c:777 -#: plug-ins/common/xpm.c:611 plug-ins/common/xwd.c:503 +#: plug-ins/common/xpm.c:611 plug-ins/common/xwd.c:507 #, c-format msgid "Saving %s:" msgstr "Enregistrement de %s:" @@ -1146,23 +1146,23 @@ msgstr "Options d'enregistrement" msgid "RLE encoded" msgstr "Compression RLE" -#: plug-ins/common/borderaverage.c:98 +#: plug-ins/borderaverage/borderaverage.c:98 msgid "/Filters/Colors/Border Average" msgstr "/Fichier/Couleurs/Moyenne de contour" -#: plug-ins/common/borderaverage.c:339 +#: plug-ins/borderaverage/borderaverage.c:339 msgid "Border Size" msgstr "Taille du bord" -#: plug-ins/common/borderaverage.c:339 +#: plug-ins/borderaverage/borderaverage.c:339 msgid "Thickness" msgstr "иpaisseur" -#: plug-ins/common/borderaverage.c:342 +#: plug-ins/borderaverage/borderaverage.c:342 msgid "Number of colors" msgstr "Nombre de couleurs" -#: plug-ins/common/borderaverage.c:345 +#: plug-ins/borderaverage/borderaverage.c:345 msgid "Bucket Size:" msgstr "Taille des Cases:" @@ -1313,24 +1313,24 @@ msgstr "/Fichier/Couleurs/Coloriser" msgid "Colorifying..." msgstr "Colorisation..." -#: plug-ins/common/colorify.c:304 +#: plug-ins/common/colorify.c:308 msgid "Colorify" msgstr "Coloriser" -#: plug-ins/common/colorify.c:310 +#: plug-ins/common/colorify.c:314 msgid "Ok" msgstr "Ok" -#: plug-ins/common/colorify.c:327 plug-ins/common/xpm.c:406 -#: plug-ins/print/print.c:1023 +#: plug-ins/common/colorify.c:331 plug-ins/common/xpm.c:406 +#: plug-ins/print/print.c:848 msgid "Color" msgstr "Couleur" -#: plug-ins/common/colorify.c:340 +#: plug-ins/common/colorify.c:344 msgid "Custom Color: " msgstr "Couleur PersonnalisИe: " -#: plug-ins/common/colorify.c:430 +#: plug-ins/common/colorify.c:434 msgid "Colorify Custom Color" msgstr "Coloriser, couleur personnalisИe" @@ -1425,7 +1425,8 @@ msgstr "Composer une image #: plug-ins/common/compose.c:229 msgid "This function creates a new image from multiple gray images" msgstr "" -"Cette fonction crИe une nouvelle image Ю partir de plusieurs images en tons de gris." +"Cette fonction crИe une nouvelle image Ю partir de plusieurs images en tons " +"de gris." #: plug-ins/common/compose.c:234 msgid "/Image/Channel Ops/Compose" @@ -1694,7 +1695,8 @@ msgid "" "This function creates new gray images with different channel information in " "each of them" msgstr "" -"Cette fonction crИe de nouvelles images en tons de gris avec des informations de canaux pour chacune d'entre elles" +"Cette fonction crИe de nouvelles images en tons de gris avec des " +"informations de canaux pour chacune d'entre elles" #: plug-ins/common/decompose.c:222 msgid "/Image/Channel Ops/Decompose" @@ -1890,7 +1892,7 @@ msgstr "Enregistrer en GIF" msgid "GIF Options" msgstr "Options GIF" -#: plug-ins/common/gif.c:1294 plug-ins/common/png.c:1209 +#: plug-ins/common/gif.c:1294 plug-ins/common/png.c:856 msgid "Interlace" msgstr "Entrelacement" @@ -2214,19 +2216,19 @@ msgstr "Utiliser l'algorithme par intensit msgid "Mask Size" msgstr "Taille du masque" -#: plug-ins/common/png.c:504 +#: plug-ins/common/png.c:149 msgid "Loads files in PNG file format" msgstr "Charge les fichiers enregistrИs au format PNG" -#: plug-ins/common/png.c:505 +#: plug-ins/common/png.c:150 msgid "This plug-in loads Portable Network Graphics (PNG) files." msgstr "Cet appendice charge les fichiers Portable Network Graphics (PNG)." -#: plug-ins/common/png.c:1171 +#: plug-ins/common/png.c:818 msgid "PNG Options" msgstr "Options PNG" -#: plug-ins/common/png.c:1216 +#: plug-ins/common/png.c:863 msgid "Compression level" msgstr "Niveau de compression" @@ -2324,135 +2326,135 @@ msgstr "300 PPP" msgid "600 DPI" msgstr "600 PPP" -#: plug-ins/print/print.c:406 +#: plug-ins/print/print.c:229 msgid "PostScript Level 1" msgstr "PostScript Level 1" -#: plug-ins/print/print.c:408 +#: plug-ins/print/print.c:231 msgid "PostScript Level 2" msgstr "PostScript Level 2" -#: plug-ins/print/print.c:410 +#: plug-ins/print/print.c:233 msgid "HP DeskJet 500, 520" msgstr "HP DeskJet 500, 520" -#: plug-ins/print/print.c:412 +#: plug-ins/print/print.c:235 msgid "HP DeskJet 500C, 540C" msgstr "HP DeskJet 500C, 540C" -#: plug-ins/print/print.c:414 +#: plug-ins/print/print.c:237 msgid "HP DeskJet 550C, 560C" msgstr "HP DeskJet 550C, 560C" -#: plug-ins/print/print.c:416 +#: plug-ins/print/print.c:239 msgid "HP DeskJet 600 series" msgstr "HP DeskJet 600 series" -#: plug-ins/print/print.c:418 +#: plug-ins/print/print.c:241 msgid "HP DeskJet 800 series" msgstr "HP DeskJet 800 series" -#: plug-ins/print/print.c:420 +#: plug-ins/print/print.c:243 msgid "HP DeskJet 1100C, 1120C" msgstr "HP DeskJet 1100C, 1120C" -#: plug-ins/print/print.c:422 +#: plug-ins/print/print.c:245 msgid "HP DeskJet 1200C, 1600C" msgstr "HP DeskJet 1200C, 1600C" -#: plug-ins/print/print.c:424 +#: plug-ins/print/print.c:247 msgid "HP LaserJet II series" msgstr "HP LaserJet II series" -#: plug-ins/print/print.c:426 +#: plug-ins/print/print.c:249 msgid "HP LaserJet III series" msgstr "HP LaserJet III series" -#: plug-ins/print/print.c:428 +#: plug-ins/print/print.c:251 msgid "HP LaserJet 4 series" msgstr "HP LaserJet 4 series" -#: plug-ins/print/print.c:430 +#: plug-ins/print/print.c:253 msgid "HP LaserJet 4V, 4Si" msgstr "HP LaserJet 4V, 4Si" -#: plug-ins/print/print.c:432 +#: plug-ins/print/print.c:255 msgid "HP LaserJet 5 series" msgstr "HP LaserJet 5 series" -#: plug-ins/print/print.c:434 +#: plug-ins/print/print.c:257 msgid "HP LaserJet 5Si" msgstr "HP LaserJet 5Si" -#: plug-ins/print/print.c:436 +#: plug-ins/print/print.c:259 msgid "HP LaserJet 6 series" msgstr "HP LaserJet 6 series" -#: plug-ins/print/print.c:438 +#: plug-ins/print/print.c:261 msgid "EPSON Stylus Color" msgstr "EPSON Stylus Color" -#: plug-ins/print/print.c:440 +#: plug-ins/print/print.c:263 msgid "EPSON Stylus Color Pro" msgstr "EPSON Stylus Color Pro" -#: plug-ins/print/print.c:442 +#: plug-ins/print/print.c:265 msgid "EPSON Stylus Color Pro XL" msgstr "EPSON Stylus Color Pro XL" -#: plug-ins/print/print.c:444 +#: plug-ins/print/print.c:267 msgid "EPSON Stylus Color 1500" msgstr "EPSON Stylus Color 1500" -#: plug-ins/print/print.c:446 +#: plug-ins/print/print.c:269 msgid "EPSON Stylus Color 400" msgstr "EPSON Stylus Color 400" -#: plug-ins/print/print.c:448 +#: plug-ins/print/print.c:271 msgid "EPSON Stylus Color 500" msgstr "EPSON Stylus Color 500" -#: plug-ins/print/print.c:450 +#: plug-ins/print/print.c:273 msgid "EPSON Stylus Color 600" msgstr "EPSON Stylus Color 600" -#: plug-ins/print/print.c:452 +#: plug-ins/print/print.c:275 msgid "EPSON Stylus Color 800" msgstr "EPSON Stylus Color 800" -#: plug-ins/print/print.c:454 +#: plug-ins/print/print.c:277 msgid "EPSON Stylus Color 1520" msgstr "EPSON Stylus Color 1520" -#: plug-ins/print/print.c:456 +#: plug-ins/print/print.c:279 msgid "EPSON Stylus Color 3000" msgstr "EPSON Stylus Color 3000" -#: plug-ins/print/print.c:509 +#: plug-ins/print/print.c:332 msgid "This plug-in prints images from The GIMP." msgstr "Cet appendice imprime des images depuis Gimp." -#: plug-ins/print/print.c:510 +#: plug-ins/print/print.c:333 msgid "Prints images to PostScript, PCL, or ESC/P2 printers." msgstr "Imprime des images vers des imprimantes PostScript, PCL ou ESC/P2." -#: plug-ins/print/print.c:514 +#: plug-ins/print/print.c:337 msgid "/File/Print" msgstr "/Fichier/Imprimer" -#: plug-ins/print/print.c:827 +#: plug-ins/print/print.c:650 msgid "Auto" msgstr "Auto" -#: plug-ins/print/print.c:828 +#: plug-ins/print/print.c:651 msgid "Portrait" msgstr "Portrait" -#: plug-ins/print/print.c:829 +#: plug-ins/print/print.c:652 msgid "Landscape" msgstr "Paysage" -#: plug-ins/print/print.c:860 +#: plug-ins/print/print.c:685 #, c-format msgid "Print v%s" msgstr "Impression Gimp v%s" @@ -2460,126 +2462,126 @@ msgstr "Impression Gimp v%s" #. #. * Media size option menu... #. -#: plug-ins/print/print.c:910 +#: plug-ins/print/print.c:735 msgid "Media Size:" msgstr "Taille du support:" #. #. * Media type option menu... #. -#: plug-ins/print/print.c:926 +#: plug-ins/print/print.c:751 msgid "Media Type:" msgstr "Type de support:" #. #. * Media source option menu... #. -#: plug-ins/print/print.c:942 +#: plug-ins/print/print.c:767 msgid "Media Source:" msgstr "Alimentation:" #. #. * Orientation option menu... #. -#: plug-ins/print/print.c:958 +#: plug-ins/print/print.c:783 msgid "Orientation:" msgstr "Orientation:" #. #. * Resolution option menu... #. -#: plug-ins/common/ps.c:1999 plug-ins/print/print.c:988 +#: plug-ins/common/ps.c:1999 plug-ins/print/print.c:813 msgid "Resolution:" msgstr "RИsolution:" #. #. * Output type toggles... #. -#: plug-ins/print/print.c:1004 +#: plug-ins/print/print.c:829 msgid "Output Type:" msgstr "Type de Sortie:" -#: plug-ins/print/print.c:1013 +#: plug-ins/print/print.c:838 msgid "B&W" msgstr "N&B" #. #. * Scaling... #. -#: plug-ins/print/print.c:1036 +#: plug-ins/print/print.c:861 msgid "Scaling:" msgstr "иchelle:" -#: plug-ins/print/print.c:1071 +#: plug-ins/print/print.c:896 msgid "Percent" msgstr "Pourcent" -#: plug-ins/print/print.c:1080 +#: plug-ins/print/print.c:905 msgid "PPI" msgstr "PPP" #. #. * Brightness slider... #. -#: plug-ins/print/print.c:1092 +#: plug-ins/print/print.c:917 msgid "Brightness:" msgstr "LuminositИ:" #. #. * Printer option menu... #. -#: plug-ins/print/print.c:1127 +#: plug-ins/print/print.c:952 msgid "Printer:" msgstr "Imprimante:" -#: plug-ins/print/print.c:1153 plug-ins/print/print.c:1186 +#: plug-ins/print/print.c:978 plug-ins/print/print.c:1011 msgid "Setup" msgstr "Configuration" -#: plug-ins/print/print.c:1173 +#: plug-ins/print/print.c:998 msgid "Print" msgstr "Impression" #. #. * Printer driver option menu... #. -#: plug-ins/print/print.c:1208 +#: plug-ins/print/print.c:1033 msgid "Driver:" msgstr "Pilote:" #. #. * PPD file... #. -#: plug-ins/print/print.c:1233 +#: plug-ins/print/print.c:1058 msgid "PPD File:" msgstr "Fichier PPD:" -#: plug-ins/print/print.c:1246 +#: plug-ins/print/print.c:1071 msgid "Browse" msgstr "Parcourir" #. #. * Print command... #. -#: plug-ins/print/print.c:1256 +#: plug-ins/print/print.c:1081 msgid "Command:" msgstr "Commande:" #. #. * Output file selection dialog... #. -#: plug-ins/print/print.c:1291 +#: plug-ins/print/print.c:1116 msgid "Print To File?" msgstr "Imprimer dans un fichier?" #. #. * PPD file selection dialog... #. -#: plug-ins/print/print.c:1301 +#: plug-ins/print/print.c:1126 msgid "PPD File?" msgstr "Fichier PPD?" -#: plug-ins/print/print.c:2287 +#: plug-ins/print/print.c:2112 msgid "File" msgstr "Fichier" @@ -2867,41 +2869,41 @@ msgstr "Enregistrer en Xpm" msgid "Alpha Threshold" msgstr "Seuil alpha" -#: plug-ins/common/xwd.c:222 plug-ins/common/xwd.c:223 +#: plug-ins/common/xwd.c:226 plug-ins/common/xwd.c:227 msgid "load file of the XWD file format" msgstr "charge un fichier enregistrИ au format XWD" -#: plug-ins/common/xwd.c:234 +#: plug-ins/common/xwd.c:238 msgid "saves files in the XWD file format" msgstr "enregistre le fichier au format XWD" -#: plug-ins/common/xwd.c:235 +#: plug-ins/common/xwd.c:239 msgid "XWD saving handles all image types except those with alpha channels." msgstr "" "La sauvegarde au format XWD gХre tous les types d'images, sauf ceux avec des " "canaux alpha." -#: plug-ins/common/xwd.c:331 +#: plug-ins/common/xwd.c:335 msgid "can't open file for reading" msgstr "impossible d'ouvrir le fichier en lecture" -#: plug-ins/common/xwd.c:347 +#: plug-ins/common/xwd.c:351 msgid "can't open file as XWD file" msgstr "impossible d'ouvrir comme fichier XWD" -#: plug-ins/common/xwd.c:362 +#: plug-ins/common/xwd.c:366 msgid "can't get memory for colormap" msgstr "Pas assez de mИmoire pour la palette." -#: plug-ins/common/xwd.c:380 +#: plug-ins/common/xwd.c:384 msgid "can't read color entries" msgstr "Je ne peux lire les entrИes de couleurs." -#: plug-ins/common/xwd.c:444 +#: plug-ins/common/xwd.c:448 msgid "this image depth/format is not supported" msgstr "Ce format d'image ou cette profondeur ne sont pas gИrИs." -#: plug-ins/common/xwd.c:448 +#: plug-ins/common/xwd.c:452 #, c-format msgid "" "load_image (xwd): XWD-file %s has format %d, depth %d\n" @@ -2912,37 +2914,36 @@ msgstr "" "profondeur %d et bits par pixel %d.\n" "De tels fichiers ne sont pas gИrИs actuellement.\n" -#: plug-ins/common/xwd.c:476 +#: plug-ins/common/xwd.c:480 msgid "XWD save cannot handle images with alpha channels" msgstr "" "Il est impossible de sauver des images avec canaux alpha au format XWD." -#: plug-ins/common/xwd.c:487 +#: plug-ins/common/xwd.c:491 msgid "cannot operate on unknown image types" msgstr "Impossible d'opИrer sur un type d'image inconnu." -#: plug-ins/common/xwd.c:496 +#: plug-ins/common/xwd.c:500 msgid "can't open file for writing" msgstr "impossible d'ouvrir le fichier en Иcriture" -#: plug-ins/common/xwd.c:1148 +#: plug-ins/common/xwd.c:1152 msgid "EOF encountered on " msgstr "Fin de fichier lors de " -#: plug-ins/common/xwd.c:1246 plug-ins/common/xwd.c:1408 -#: plug-ins/common/xwd.c:1605 plug-ins/common/xwd.c:1854 +#: plug-ins/common/xwd.c:1250 plug-ins/common/xwd.c:1412 +#: plug-ins/common/xwd.c:1609 plug-ins/common/xwd.c:1858 msgid "EOF encountered on reading" msgstr "Fin de fichier lors de la lecture" -#: plug-ins/common/xwd.c:1294 +#: plug-ins/common/xwd.c:1298 msgid "No memory for mapping colors" msgstr "Pas de mИmoire pour associer les couleurs" -#: plug-ins/common/xwd.c:1978 +#: plug-ins/common/xwd.c:1982 msgid "Error during writing indexed/grey image" msgstr "Erreur durant l'Иcriture d'une image indexИe ou tons de gris" -#: plug-ins/common/xwd.c:2067 +#: plug-ins/common/xwd.c:2071 msgid "Error during writing rgb image" msgstr "Erreur durant l'Иcriture de l'image rgb" - diff --git a/po-plug-ins/hu.po b/po-plug-ins/hu.po index 4336c06aab..456dd3c23c 100644 --- a/po-plug-ins/hu.po +++ b/po-plug-ins/hu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 1999-06-05 14:12-0700\n" +"POT-Creation-Date: 1999-07-17 11:11-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,236 +14,230 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: plug-ins/CML_explorer/CML_explorer.c:226 +#: plug-ins/common/CML_explorer.c:226 msgid "Keep image's values" msgstr "Keep image's values" -#: plug-ins/CML_explorer/CML_explorer.c:228 +#: plug-ins/common/CML_explorer.c:228 msgid "Keep the first value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:230 +#: plug-ins/common/CML_explorer.c:230 msgid "Fill with parameter k" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:232 +#: plug-ins/common/CML_explorer.c:232 msgid "k{x(1-x)}^p" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:234 +#: plug-ins/common/CML_explorer.c:234 msgid "k{x(1-x)}^p stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:236 +#: plug-ins/common/CML_explorer.c:236 msgid "kx^p" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:238 +#: plug-ins/common/CML_explorer.c:238 msgid "kx^p stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:240 +#: plug-ins/common/CML_explorer.c:240 msgid "k(1 - x^p)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:242 +#: plug-ins/common/CML_explorer.c:242 msgid "k(1 - x^p) stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:244 +#: plug-ins/common/CML_explorer.c:244 msgid "Delta function" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:246 +#: plug-ins/common/CML_explorer.c:246 msgid "Delta function stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:248 +#: plug-ins/common/CML_explorer.c:248 msgid "sin^p-based function" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:250 +#: plug-ins/common/CML_explorer.c:250 msgid "sin^p, stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:256 +#: plug-ins/common/CML_explorer.c:256 msgid "None" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:258 +#: plug-ins/common/CML_explorer.c:258 msgid "Max (x, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:260 +#: plug-ins/common/CML_explorer.c:260 msgid "Max (x+d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:262 +#: plug-ins/common/CML_explorer.c:262 msgid "Max (x-d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:264 -msgid "Mix (x, -)" +#: plug-ins/common/CML_explorer.c:264 +msgid "Min (x, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:266 +#: plug-ins/common/CML_explorer.c:266 msgid "Min (x+d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:268 +#: plug-ins/common/CML_explorer.c:268 msgid "Min (x-d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:270 +#: plug-ins/common/CML_explorer.c:270 msgid "Max (x+d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:272 +#: plug-ins/common/CML_explorer.c:272 msgid "Max (x+d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:274 +#: plug-ins/common/CML_explorer.c:274 msgid "Max (x-d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:276 +#: plug-ins/common/CML_explorer.c:276 msgid "Max (x-d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:278 +#: plug-ins/common/CML_explorer.c:278 msgid "Min (x+d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:280 +#: plug-ins/common/CML_explorer.c:280 msgid "Min (x+d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:282 +#: plug-ins/common/CML_explorer.c:282 msgid "Min (x-d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:284 +#: plug-ins/common/CML_explorer.c:284 msgid "Min (x-d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:290 +#: plug-ins/common/CML_explorer.c:290 msgid "Standard" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:292 +#: plug-ins/common/CML_explorer.c:292 msgid "Use average value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:294 +#: plug-ins/common/CML_explorer.c:294 msgid "Use reverse value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:296 +#: plug-ins/common/CML_explorer.c:296 msgid "With random power (0,10)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:298 +#: plug-ins/common/CML_explorer.c:298 msgid "With random power (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:300 +#: plug-ins/common/CML_explorer.c:300 msgid "With gradient power (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:302 +#: plug-ins/common/CML_explorer.c:302 msgid "Multiply rand. value (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:304 +#: plug-ins/common/CML_explorer.c:304 msgid "Multiply rand. value (0,2)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:306 +#: plug-ins/common/CML_explorer.c:306 msgid "Multiply gradient (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:308 +#: plug-ins/common/CML_explorer.c:308 msgid "With p and random (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:313 +#: plug-ins/common/CML_explorer.c:313 msgid "All black" msgstr "" #. 0 -#: plug-ins/CML_explorer/CML_explorer.c:314 +#: plug-ins/common/CML_explorer.c:314 msgid "All gray" msgstr "" #. 1 -#: plug-ins/CML_explorer/CML_explorer.c:315 +#: plug-ins/common/CML_explorer.c:315 msgid "All white" msgstr "" #. 2 -#: plug-ins/CML_explorer/CML_explorer.c:316 +#: plug-ins/common/CML_explorer.c:316 msgid "The first row of the image" msgstr "" #. 3 -#: plug-ins/CML_explorer/CML_explorer.c:317 +#: plug-ins/common/CML_explorer.c:317 msgid "Continuous gradient" msgstr "" #. 4 -#: plug-ins/CML_explorer/CML_explorer.c:318 +#: plug-ins/common/CML_explorer.c:318 msgid "Continuous grad. w/o gap" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:320 +#: plug-ins/common/CML_explorer.c:320 msgid "Random, ch. independent" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:322 +#: plug-ins/common/CML_explorer.c:322 msgid "Random shared" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:324 +#: plug-ins/common/CML_explorer.c:324 msgid "Randoms from seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:326 +#: plug-ins/common/CML_explorer.c:326 msgid "Randoms from seed (shared)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:380 -#: plug-ins/CML_explorer/CML_explorer.c:388 -#: plug-ins/CML_explorer/CML_explorer.c:1431 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:135 +#: plug-ins/common/CML_explorer.c:380 plug-ins/common/CML_explorer.c:388 +#: plug-ins/common/CML_explorer.c:1431 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:135 msgid "Hue" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:381 -#: plug-ins/CML_explorer/CML_explorer.c:389 -#: plug-ins/CML_explorer/CML_explorer.c:1435 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:136 +#: plug-ins/common/CML_explorer.c:381 plug-ins/common/CML_explorer.c:389 +#: plug-ins/common/CML_explorer.c:1435 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:136 msgid "Saturation" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:382 -#: plug-ins/CML_explorer/CML_explorer.c:390 -#: plug-ins/CML_explorer/CML_explorer.c:1439 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:137 +#: plug-ins/common/CML_explorer.c:382 plug-ins/common/CML_explorer.c:390 +#: plug-ins/common/CML_explorer.c:1439 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:137 msgid "Value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:387 +#: plug-ins/common/CML_explorer.c:387 msgid "NULL" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:494 +#: plug-ins/common/CML_explorer.c:494 msgid "Make an image of Coupled-Map Lattice" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:495 +#: plug-ins/common/CML_explorer.c:495 msgid "" "Make an image of Coupled-Map Lattice (CML). CML is a kind of Cellula " "Automata on continuous (value) domain. In RUN_NONINTERACTIVE, the name of a " @@ -251,87 +245,87 @@ msgid "" "parameter file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1327 +#: plug-ins/common/CML_explorer.c:1327 msgid "Coupled-Map-Lattice Explorer" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1344 plug-ins/ps/ps.c:2423 +#: plug-ins/common/CML_explorer.c:1344 plug-ins/common/ps.c:2448 msgid "Preview" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1385 +#: plug-ins/common/CML_explorer.c:1385 msgid "New seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1391 +#: plug-ins/common/CML_explorer.c:1391 msgid "Fix seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1397 +#: plug-ins/common/CML_explorer.c:1397 msgid "Random seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1409 +#: plug-ins/common/CML_explorer.c:1409 msgid "Load" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1412 +#: plug-ins/common/CML_explorer.c:1412 msgid "Save" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1429 +#: plug-ins/common/CML_explorer.c:1429 msgid "Hue settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1433 +#: plug-ins/common/CML_explorer.c:1433 msgid "Saturation settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1437 +#: plug-ins/common/CML_explorer.c:1437 msgid "Value (grayimage) settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1441 +#: plug-ins/common/CML_explorer.c:1441 msgid "Advanced settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1443 +#: plug-ins/common/CML_explorer.c:1443 msgid "Advanced" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1455 +#: plug-ins/common/CML_explorer.c:1455 msgid "Other parameter settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1459 +#: plug-ins/common/CML_explorer.c:1459 msgid "Channel independed parameters" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1463 +#: plug-ins/common/CML_explorer.c:1463 msgid "Initial value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1469 +#: plug-ins/common/CML_explorer.c:1469 msgid "Zoom scale" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1474 +#: plug-ins/common/CML_explorer.c:1474 msgid "Start offset" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1494 +#: plug-ins/common/CML_explorer.c:1494 msgid "Seed of random (only for \"from seed\" modes)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1498 +#: plug-ins/common/CML_explorer.c:1498 msgid "Seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1508 +#: plug-ins/common/CML_explorer.c:1508 msgid "Switch to \"from seed\" with the last seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1515 +#: plug-ins/common/CML_explorer.c:1515 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 " @@ -339,202 +333,199 @@ msgid "" "(2) all mutation rates equal to zero." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1532 +#: plug-ins/common/CML_explorer.c:1532 msgid "Others" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1539 +#: plug-ins/common/CML_explorer.c:1539 msgid "Misc operations" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1544 +#: plug-ins/common/CML_explorer.c:1544 msgid "Copy settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1548 +#: plug-ins/common/CML_explorer.c:1548 msgid "Source ch." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1554 -#: plug-ins/CML_explorer/CML_explorer.c:1588 +#: plug-ins/common/CML_explorer.c:1554 plug-ins/common/CML_explorer.c:1588 msgid "Destination ch." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1560 +#: plug-ins/common/CML_explorer.c:1560 msgid "Do copy parameters" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1578 +#: plug-ins/common/CML_explorer.c:1578 msgid "Selective load settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1582 +#: plug-ins/common/CML_explorer.c:1582 msgid "Source ch. in file" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1608 +#: plug-ins/common/CML_explorer.c:1608 msgid "Misc ops." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1644 +#: plug-ins/common/CML_explorer.c:1644 msgid "Function type" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1651 +#: plug-ins/common/CML_explorer.c:1651 msgid "Composition" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1658 +#: plug-ins/common/CML_explorer.c:1658 msgid "Misc arrange" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1665 +#: plug-ins/common/CML_explorer.c:1665 msgid "Use cyclic range" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1670 +#: plug-ins/common/CML_explorer.c:1670 msgid "Mod. rate" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1677 +#: plug-ins/common/CML_explorer.c:1677 msgid "Env. sensitivity" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1684 +#: plug-ins/common/CML_explorer.c:1684 msgid "Diffusion dist." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1691 +#: plug-ins/common/CML_explorer.c:1691 msgid "# of subranges" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1698 +#: plug-ins/common/CML_explorer.c:1698 msgid "P(ower factor)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1705 +#: plug-ins/common/CML_explorer.c:1705 msgid "Parameter k" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1712 +#: plug-ins/common/CML_explorer.c:1712 msgid "Range low" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1719 +#: plug-ins/common/CML_explorer.c:1719 msgid "Range high" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1738 +#: plug-ins/common/CML_explorer.c:1738 msgid "Plot the graph of the settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1772 +#: plug-ins/common/CML_explorer.c:1772 msgid "Ch. sensitivity" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1779 +#: plug-ins/common/CML_explorer.c:1779 msgid "Mutation rate" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1786 +#: plug-ins/common/CML_explorer.c:1786 msgid "Mutation dist." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1815 +#: plug-ins/common/CML_explorer.c:1815 msgid "Graph of the current settings" msgstr "" #. Action Area -#: plug-ins/CML_explorer/CML_explorer.c:1820 -#: plug-ins/CML_explorer/CML_explorer.c:2681 -#: plug-ins/CML_explorer/CML_explorer.c:2777 -#: plug-ins/apply_lens/apply_lens.c:420 plug-ins/blur/blur.c:619 -#: plug-ins/bmp/bmpwrite.c:428 plug-ins/bumpmap/bumpmap.c:970 -#: plug-ins/checkerboard/checkerboard.c:381 plug-ins/compose/compose.c:816 -#: plug-ins/convmatrix/convmatrix.c:706 plug-ins/cubism/cubism.c:338 -#: plug-ins/decompose/decompose.c:914 plug-ins/depthmerge/depthmerge.c:746 -#: plug-ins/destripe/destripe.c:695 plug-ins/gif/gif.c:1263 -#: plug-ins/jpeg/jpeg.c:1000 plug-ins/mail/mail.c:491 -#: plug-ins/oilify/oilify.c:460 plug-ins/png/png.c:1180 -#: plug-ins/print/print.c:1279 plug-ins/ps/ps.c:1998 plug-ins/ps/ps.c:2265 -#: plug-ins/xbm/xbm.c:959 plug-ins/xpm/xpm.c:763 +#: plug-ins/bmp/bmpwrite.c:428 plug-ins/common/CML_explorer.c:1820 +#: plug-ins/common/CML_explorer.c:2681 plug-ins/common/CML_explorer.c:2777 +#: plug-ins/common/apply_lens.c:420 plug-ins/common/blur.c:619 +#: plug-ins/common/bumpmap.c:970 plug-ins/common/checkerboard.c:381 +#: plug-ins/common/compose.c:816 plug-ins/common/convmatrix.c:706 +#: plug-ins/common/cubism.c:338 plug-ins/common/decompose.c:914 +#: plug-ins/common/depthmerge.c:746 plug-ins/common/destripe.c:695 +#: plug-ins/common/gif.c:1263 plug-ins/common/jpeg.c:1000 +#: plug-ins/common/mail.c:491 plug-ins/common/oilify.c:460 +#: plug-ins/common/png.c:827 plug-ins/common/ps.c:2023 +#: plug-ins/common/ps.c:2290 plug-ins/common/xbm.c:959 +#: plug-ins/common/xpm.c:763 plug-ins/print/print.c:1104 msgid "OK" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1830 +#: plug-ins/common/CML_explorer.c:1830 msgid "The Graph" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1922 +#: plug-ins/common/CML_explorer.c:1922 msgid "Warning: the source and the destination are the same channel." msgstr "" #. Action Area -#: plug-ins/CML_explorer/CML_explorer.c:2010 +#: plug-ins/common/CML_explorer.c:2010 msgid "Execute" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2019 +#: plug-ins/common/CML_explorer.c:2019 msgid "Execute and Exit" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2027 +#: plug-ins/common/CML_explorer.c:2027 msgid "Exit" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2045 +#: plug-ins/common/CML_explorer.c:2045 msgid "Save parameters to" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2108 -#: plug-ins/CML_explorer/CML_explorer.c:2301 +#: plug-ins/common/CML_explorer.c:2108 plug-ins/common/CML_explorer.c:2301 #, c-format msgid "Error: could not open \"%s\"" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2173 +#: plug-ins/common/CML_explorer.c:2173 msgid "CML file operation warning" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2180 +#: plug-ins/common/CML_explorer.c:2180 #, c-format msgid "%s exists, overwrite?" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2223 +#: plug-ins/common/CML_explorer.c:2223 msgid "Load parameters from" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2225 +#: plug-ins/common/CML_explorer.c:2225 msgid "Selective load from" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2324 +#: plug-ins/common/CML_explorer.c:2324 msgid "Error: it's not CML parameter file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2331 +#: plug-ins/common/CML_explorer.c:2331 msgid "Warning: it's an old format file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2333 +#: plug-ins/common/CML_explorer.c:2333 msgid "Warning: Hmmm, it's a parameter file for newer CML_explorer than me." msgstr "" #. cancel button -#: plug-ins/CML_explorer/CML_explorer.c:2690 -#: plug-ins/Lighting/lighting_ui.c:1062 plug-ins/apply_lens/apply_lens.c:430 -#: plug-ins/blur/blur.c:621 plug-ins/bmp/bmpwrite.c:437 -#: plug-ins/bumpmap/bumpmap.c:979 plug-ins/checkerboard/checkerboard.c:390 -#: plug-ins/colorify/colorify.c:319 plug-ins/compose/compose.c:825 -#: plug-ins/convmatrix/convmatrix.c:723 plug-ins/cubism/cubism.c:347 -#: plug-ins/decompose/decompose.c:924 plug-ins/depthmerge/depthmerge.c:756 -#: plug-ins/destripe/destripe.c:704 plug-ins/gif/gif.c:1172 -#: plug-ins/jpeg/jpeg.c:1009 plug-ins/mail/mail.c:502 -#: plug-ins/oilify/oilify.c:469 plug-ins/png/png.c:1189 -#: plug-ins/print/print.c:1166 plug-ins/print/print.c:1272 -#: plug-ins/ps/ps.c:2008 plug-ins/ps/ps.c:2275 plug-ins/xbm/xbm.c:707 -#: plug-ins/xbm/xbm.c:969 plug-ins/xpm/xpm.c:772 +#: plug-ins/Lighting/lighting_ui.c:1062 plug-ins/bmp/bmpwrite.c:437 +#: plug-ins/common/CML_explorer.c:2690 plug-ins/common/apply_lens.c:430 +#: plug-ins/common/blur.c:621 plug-ins/common/bumpmap.c:979 +#: plug-ins/common/checkerboard.c:390 plug-ins/common/colorify.c:323 +#: plug-ins/common/compose.c:825 plug-ins/common/convmatrix.c:723 +#: plug-ins/common/cubism.c:347 plug-ins/common/decompose.c:924 +#: plug-ins/common/depthmerge.c:756 plug-ins/common/destripe.c:704 +#: plug-ins/common/gif.c:1172 plug-ins/common/jpeg.c:1009 +#: plug-ins/common/mail.c:502 plug-ins/common/oilify.c:469 +#: plug-ins/common/png.c:836 plug-ins/common/ps.c:2033 +#: plug-ins/common/ps.c:2300 plug-ins/common/xbm.c:707 +#: plug-ins/common/xbm.c:969 plug-ins/common/xpm.c:772 +#: plug-ins/print/print.c:991 plug-ins/print/print.c:1097 msgid "Cancel" msgstr "" @@ -867,23 +858,23 @@ msgstr "" msgid "Zoom out (make image smaller)" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:136 +#: plug-ins/common/apply_lens.c:136 msgid "Apply a lens effect" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:137 +#: plug-ins/common/apply_lens.c:137 msgid "This plug-in uses Snell's law to draw an ellipsoid lens over the image" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:141 +#: plug-ins/common/apply_lens.c:141 msgid "/Filters/Glass Effects/Apply Lens" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:200 +#: plug-ins/common/apply_lens.c:200 msgid "Applying lens..." msgstr "" -#: plug-ins/apply_lens/apply_lens.c:414 +#: plug-ins/common/apply_lens.c:414 msgid "Lens effect" msgstr "" @@ -892,40 +883,40 @@ msgstr "" #. * #. * First set up the basic containers, label them, etc. #. -#: plug-ins/apply_lens/apply_lens.c:439 plug-ins/blur/blur.c:607 -#: plug-ins/checkerboard/checkerboard.c:399 plug-ins/cubism/cubism.c:356 -#: plug-ins/jpeg/jpeg.c:1018 plug-ins/oilify/oilify.c:478 -#: plug-ins/png/png.c:1200 plug-ins/xpm/xpm.c:781 +#: plug-ins/common/apply_lens.c:439 plug-ins/common/blur.c:607 +#: plug-ins/common/checkerboard.c:399 plug-ins/common/cubism.c:356 +#: plug-ins/common/jpeg.c:1018 plug-ins/common/oilify.c:478 +#: plug-ins/common/png.c:847 plug-ins/common/xpm.c:781 msgid "Parameter Settings" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:448 +#: plug-ins/common/apply_lens.c:448 msgid "Keep original surroundings" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:461 +#: plug-ins/common/apply_lens.c:461 msgid "Set surroundings to index 0" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:462 +#: plug-ins/common/apply_lens.c:462 msgid "Set surroundings to background color" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:475 +#: plug-ins/common/apply_lens.c:475 msgid "Make surroundings transparent" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:490 +#: plug-ins/common/apply_lens.c:490 msgid "Lens refraction index: " msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:82 +#: plug-ins/common/autostretch_hsv.c:82 msgid "" "Automatically stretch the contrast of the specified drawable to cover all " "possible ranges." msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:83 +#: plug-ins/common/autostretch_hsv.c:83 msgid "" "This simple plug-in does an automatic contrast stretch. For each channel in " "the image, it finds the minimum and maximum values... it uses those values " @@ -935,52 +926,52 @@ msgid "" "space, and preserves hue." msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:87 +#: plug-ins/common/autostretch_hsv.c:87 msgid "/Image/Colors/Auto-Stretch HSV" msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:119 +#: plug-ins/common/autostretch_hsv.c:119 msgid "Auto-Stretching HSV..." msgstr "" -#: plug-ins/blur/blur.c:194 +#: plug-ins/common/blur.c:194 msgid "Apply a 3x3 blurring convolution kernel to the specified drawable." msgstr "" -#: plug-ins/blur/blur.c:195 +#: plug-ins/common/blur.c:195 msgid "" "This plug-in randomly blurs the specified drawable, using a 3x3 blur. You " "control the percentage of the pixels that are blurred and the number of " "times blurring is applied. Indexed images are not supported." msgstr "" -#: plug-ins/blur/blur.c:208 +#: plug-ins/common/blur.c:208 msgid "/Filters/Blur/Blur" msgstr "" -#: plug-ins/blur/blur.c:620 +#: plug-ins/common/blur.c:620 msgid "Accept settings and apply filter to image" msgstr "" -#: plug-ins/blur/blur.c:622 +#: plug-ins/common/blur.c:622 msgid "Close plug-in without making any changes" msgstr "" #. #. * Randomization seed initialization controls #. -#: plug-ins/blur/blur.c:626 +#: plug-ins/common/blur.c:626 msgid "Randomization Seed:" msgstr "" #. #. * Time button #. -#: plug-ins/blur/blur.c:637 +#: plug-ins/common/blur.c:637 msgid "Current Time" msgstr "" -#: plug-ins/blur/blur.c:638 +#: plug-ins/common/blur.c:638 msgid "" "Seed random number generator from the current time - this guarantees a " "reasonable randomization" @@ -989,39 +980,39 @@ msgstr "" #. #. * User button #. -#: plug-ins/blur/blur.c:648 +#: plug-ins/common/blur.c:648 msgid "Other Value" msgstr "" -#: plug-ins/blur/blur.c:649 +#: plug-ins/common/blur.c:649 msgid "" "Enable user-entered value for random number generator seed - this allows you " "to repeat a given \"random\" operation" msgstr "" -#: plug-ins/blur/blur.c:661 +#: plug-ins/common/blur.c:661 msgid "Value for seeding the random number generator" msgstr "" #. #. * Randomization percentage label & scale (1 to 100) #. -#: plug-ins/blur/blur.c:666 +#: plug-ins/common/blur.c:666 msgid "Randomization %:" msgstr "" -#: plug-ins/blur/blur.c:669 +#: plug-ins/common/blur.c:669 msgid "Percentage of pixels to be filtered" msgstr "" #. #. * Repeat count label & scale (1 to 100) #. -#: plug-ins/blur/blur.c:674 +#: plug-ins/common/blur.c:674 msgid "Repeat:" msgstr "" -#: plug-ins/blur/blur.c:677 +#: plug-ins/common/blur.c:677 msgid "Number of times to apply filter" msgstr "" @@ -1033,9 +1024,10 @@ msgstr "" msgid "Saves files in Windows BMP file format" msgstr "" -#: plug-ins/bmp/bmpread.c:27 plug-ins/gifload/gifload.c:287 -#: plug-ins/jpeg/jpeg.c:494 plug-ins/png/png.c:700 plug-ins/png/png.c:702 -#: plug-ins/xbm/xbm.c:523 plug-ins/xpm/xpm.c:300 +#: plug-ins/bmp/bmpread.c:27 plug-ins/common/gifload.c:287 +#: plug-ins/common/jpeg.c:494 plug-ins/common/png.c:345 +#: plug-ins/common/png.c:347 plug-ins/common/xbm.c:523 +#: plug-ins/common/xpm.c:300 #, c-format msgid "Loading %s:" msgstr "" @@ -1074,9 +1066,10 @@ msgstr "" #. * Create the "background" layer to hold the image... #. #: plug-ins/bmp/bmpread.c:210 plug-ins/bmp/bmpread.c:218 -#: plug-ins/bmp/bmpread.c:224 plug-ins/compose/compose.c:562 -#: plug-ins/decompose/decompose.c:472 plug-ins/gifload/gifload.c:828 -#: plug-ins/jpeg/jpeg.c:611 plug-ins/png/png.c:810 plug-ins/xbm/xbm.c:612 +#: plug-ins/bmp/bmpread.c:224 plug-ins/common/compose.c:562 +#: plug-ins/common/decompose.c:472 plug-ins/common/gifload.c:828 +#: plug-ins/common/jpeg.c:611 plug-ins/common/png.c:455 +#: plug-ins/common/xbm.c:612 msgid "Background" msgstr "" @@ -1089,9 +1082,10 @@ msgstr "" msgid "can't open %s\n" msgstr "" -#: plug-ins/bmp/bmpwrite.c:154 plug-ins/jpeg/jpeg.c:759 plug-ins/png/png.c:950 -#: plug-ins/png/png.c:952 plug-ins/ps/ps.c:680 plug-ins/xbm/xbm.c:777 -#: plug-ins/xpm/xpm.c:611 plug-ins/xwd/xwd.c:503 +#: plug-ins/bmp/bmpwrite.c:154 plug-ins/common/jpeg.c:759 +#: plug-ins/common/png.c:595 plug-ins/common/png.c:597 +#: plug-ins/common/ps.c:673 plug-ins/common/xbm.c:777 +#: plug-ins/common/xpm.c:611 plug-ins/common/xwd.c:507 #, c-format msgid "Saving %s:" msgstr "" @@ -1129,310 +1123,310 @@ msgstr "" msgid "Bucket Size:" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:298 +#: plug-ins/common/bumpmap.c:298 msgid "Linear map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:299 +#: plug-ins/common/bumpmap.c:299 msgid "Spherical map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:300 +#: plug-ins/common/bumpmap.c:300 msgid "Sinusoidal map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:346 +#: plug-ins/common/bumpmap.c:346 msgid "Create an embossing effect using an image as a bump map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:354 +#: plug-ins/common/bumpmap.c:354 msgid "/Filters/Map/Bump Map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:500 +#: plug-ins/common/bumpmap.c:500 msgid "Bump-mapping..." msgstr "" #. Bump map menu -#: plug-ins/bumpmap/bumpmap.c:830 plug-ins/bumpmap/bumpmap.c:939 +#: plug-ins/common/bumpmap.c:830 plug-ins/common/bumpmap.c:939 msgid "Bump map" msgstr "" #. Compensate darkening -#: plug-ins/bumpmap/bumpmap.c:884 +#: plug-ins/common/bumpmap.c:884 msgid "Compensate for darkening" msgstr "" #. Invert bumpmap -#: plug-ins/bumpmap/bumpmap.c:895 +#: plug-ins/common/bumpmap.c:895 msgid "Invert bumpmap" msgstr "" #. Controls -#: plug-ins/bumpmap/bumpmap.c:958 +#: plug-ins/common/bumpmap.c:958 msgid "Azimuth" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:959 +#: plug-ins/common/bumpmap.c:959 msgid "Elevation" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:960 +#: plug-ins/common/bumpmap.c:960 msgid "Depth" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:961 +#: plug-ins/common/bumpmap.c:961 msgid "X offset" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:962 +#: plug-ins/common/bumpmap.c:962 msgid "Y offset" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:963 +#: plug-ins/common/bumpmap.c:963 msgid "Waterlevel" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:964 +#: plug-ins/common/bumpmap.c:964 msgid "Ambient" msgstr "" -#: plug-ins/bz2/bz2.c:293 plug-ins/bz2/bz2.c:358 +#: plug-ins/common/bz2.c:293 plug-ins/common/bz2.c:358 #, c-format msgid "bz2: fork failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:300 plug-ins/bz2/bz2.c:365 +#: plug-ins/common/bz2.c:300 plug-ins/common/bz2.c:365 #, c-format msgid "bz2: fopen failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:306 plug-ins/bz2/bz2.c:371 +#: plug-ins/common/bz2.c:306 plug-ins/common/bz2.c:371 #, c-format msgid "bz2: dup2 failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:310 +#: plug-ins/common/bz2.c:310 #, c-format msgid "bz2: exec failed: bzip2: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:324 plug-ins/bz2/bz2.c:389 +#: plug-ins/common/bz2.c:324 plug-ins/common/bz2.c:389 #, c-format msgid "bz2: bzip2 exited abnormally on file %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:375 +#: plug-ins/common/bz2.c:375 #, c-format msgid "bz2: exec failed: bunzip2: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:443 +#: plug-ins/common/bz2.c:443 msgid "bz2: can't open bzip2ed file without a sensible extension\n" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:97 +#: plug-ins/common/checkerboard.c:97 msgid "Adds a checkerboard pattern to an image" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:102 +#: plug-ins/common/checkerboard.c:102 msgid "/Filters/Render/Checkerboard" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:164 +#: plug-ins/common/checkerboard.c:164 msgid "Adding Checkerboard..." msgstr "" -#: plug-ins/checkerboard/checkerboard.c:374 +#: plug-ins/common/checkerboard.c:374 msgid "Checkerboard" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:407 +#: plug-ins/common/checkerboard.c:407 msgid "Psychobilly" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:415 +#: plug-ins/common/checkerboard.c:415 msgid "Check Size" msgstr "" -#: plug-ins/colorify/colorify.c:122 +#: plug-ins/common/colorify.c:122 msgid "Similar to the \"Color\" mode for layers." msgstr "" -#: plug-ins/colorify/colorify.c:123 +#: plug-ins/common/colorify.c:123 msgid "Makes an average of the RGB channels and uses it to set the color" msgstr "" -#: plug-ins/colorify/colorify.c:126 +#: plug-ins/common/colorify.c:126 msgid "/Filters/Colors/Colorify" msgstr "" -#: plug-ins/colorify/colorify.c:194 +#: plug-ins/common/colorify.c:194 msgid "Colorifying..." msgstr "" -#: plug-ins/colorify/colorify.c:304 +#: plug-ins/common/colorify.c:308 msgid "Colorify" msgstr "" -#: plug-ins/colorify/colorify.c:310 +#: plug-ins/common/colorify.c:314 msgid "Ok" msgstr "" -#: plug-ins/colorify/colorify.c:327 plug-ins/print/print.c:1023 -#: plug-ins/xpm/xpm.c:406 +#: plug-ins/common/colorify.c:331 plug-ins/common/xpm.c:406 +#: plug-ins/print/print.c:848 msgid "Color" msgstr "" -#: plug-ins/colorify/colorify.c:340 +#: plug-ins/common/colorify.c:344 msgid "Custom Color: " msgstr "" -#: plug-ins/colorify/colorify.c:430 +#: plug-ins/common/colorify.c:434 msgid "Colorify Custom Color" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/decompose/decompose.c:129 +#: plug-ins/common/compose.c:125 plug-ins/common/decompose.c:129 msgid "RGB" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Red:" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Green: " msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Blue:" msgstr "" -#: plug-ins/compose/compose.c:126 +#: plug-ins/common/compose.c:126 msgid "rgb-compose" msgstr "" -#: plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:127 msgid "RGBA" msgstr "" -#: plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:127 msgid "Alpha:" msgstr "" -#: plug-ins/compose/compose.c:128 +#: plug-ins/common/compose.c:128 msgid "rgba-compose" msgstr "" -#: plug-ins/compose/compose.c:129 plug-ins/decompose/decompose.c:133 +#: plug-ins/common/compose.c:129 plug-ins/common/decompose.c:133 msgid "HSV" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Hue:" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Saturation:" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Value:" msgstr "" -#: plug-ins/compose/compose.c:130 +#: plug-ins/common/compose.c:130 msgid "hsv-compose" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/decompose/decompose.c:138 +#: plug-ins/common/compose.c:131 plug-ins/common/decompose.c:138 msgid "CMY" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Cyan:" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Magenta: " msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Yellow:" msgstr "" -#: plug-ins/compose/compose.c:132 +#: plug-ins/common/compose.c:132 msgid "cmy-compose" msgstr "" -#: plug-ins/compose/compose.c:133 plug-ins/decompose/decompose.c:143 +#: plug-ins/common/compose.c:133 plug-ins/common/decompose.c:143 msgid "CMYK" msgstr "" -#: plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:133 msgid "Black:" msgstr "" -#: plug-ins/compose/compose.c:134 +#: plug-ins/common/compose.c:134 msgid "cmyk-compose" msgstr "" -#: plug-ins/compose/compose.c:228 +#: plug-ins/common/compose.c:228 msgid "Compose an image from multiple gray images" msgstr "" -#: plug-ins/compose/compose.c:229 +#: plug-ins/common/compose.c:229 msgid "This function creates a new image from multiple gray images" msgstr "" -#: plug-ins/compose/compose.c:234 +#: plug-ins/common/compose.c:234 msgid "/Image/Channel Ops/Compose" msgstr "" -#: plug-ins/compose/compose.c:241 +#: plug-ins/common/compose.c:241 msgid "Compose an image from multiple drawables of gray images" msgstr "" -#: plug-ins/compose/compose.c:242 +#: plug-ins/common/compose.c:242 msgid "" "This function creates a new image from multiple drawables of gray images" msgstr "" -#: plug-ins/compose/compose.c:305 +#: plug-ins/common/compose.c:305 #, c-format msgid "compose: Could not get layers for image %d" msgstr "" -#: plug-ins/compose/compose.c:354 +#: plug-ins/common/compose.c:354 msgid "Composing..." msgstr "" -#: plug-ins/compose/compose.c:421 +#: plug-ins/common/compose.c:421 msgid "compose: drawables have different size" msgstr "" -#: plug-ins/compose/compose.c:438 +#: plug-ins/common/compose.c:438 msgid "compose: images have different size" msgstr "" -#: plug-ins/compose/compose.c:451 +#: plug-ins/common/compose.c:451 msgid "compose: error in getting layer IDs" msgstr "" -#: plug-ins/compose/compose.c:468 +#: plug-ins/common/compose.c:468 #, c-format msgid "compose: image is not a gray image (bpp=%d)" msgstr "" -#: plug-ins/compose/compose.c:483 plug-ins/compose/compose.c:498 +#: plug-ins/common/compose.c:483 plug-ins/common/compose.c:498 msgid "compose: not enough memory" msgstr "" -#: plug-ins/compose/compose.c:809 +#: plug-ins/common/compose.c:809 msgid "Compose" msgstr "" #. The left frame keeps the compose type toggles -#: plug-ins/compose/compose.c:841 +#: plug-ins/common/compose.c:841 msgid "Compose channels:" msgstr "" @@ -1440,324 +1434,324 @@ msgstr "" #. 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/compose/compose.c:855 +#: plug-ins/common/compose.c:855 msgid "Channel representations:" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 +#: plug-ins/common/convmatrix.c:76 msgid "Grey" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:130 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:130 msgid "Red" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:131 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:131 msgid "Green" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:132 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:132 msgid "Blue" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:148 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:148 msgid "Alpha" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:80 +#: plug-ins/common/convmatrix.c:80 msgid "Extend" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:80 +#: plug-ins/common/convmatrix.c:80 msgid "Wrap" msgstr "" #. Action area -#: plug-ins/convmatrix/convmatrix.c:80 plug-ins/gif/gif.c:1163 +#: plug-ins/common/convmatrix.c:80 plug-ins/common/gif.c:1163 msgid "Crop" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:173 +#: plug-ins/common/convmatrix.c:173 msgid "A generic 5x5 convolution matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:178 +#: plug-ins/common/convmatrix.c:178 msgid "/Filters/Generic/Convolution Matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:239 +#: plug-ins/common/convmatrix.c:239 msgid "Applying convolution" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:700 +#: plug-ins/common/convmatrix.c:700 msgid "Convolution Matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:715 +#: plug-ins/common/convmatrix.c:715 msgid "Defaults" msgstr "" #. Outbox:YABox:Frame -#: plug-ins/convmatrix/convmatrix.c:741 +#: plug-ins/common/convmatrix.c:741 msgid "Matrix" msgstr "" #. divisor -#: plug-ins/convmatrix/convmatrix.c:788 +#: plug-ins/common/convmatrix.c:788 msgid "Divisor" msgstr "" #. Offset -#: plug-ins/convmatrix/convmatrix.c:803 plug-ins/depthmerge/depthmerge.c:728 +#: plug-ins/common/convmatrix.c:803 plug-ins/common/depthmerge.c:728 msgid "Offset" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:823 +#: plug-ins/common/convmatrix.c:823 msgid "Automatic" msgstr "" #. Alpha-weighting -#: plug-ins/convmatrix/convmatrix.c:832 +#: plug-ins/common/convmatrix.c:832 msgid "Alpha-weighting" msgstr "" #. Wrap-modes #. OutBox:Inbox:Frame -#: plug-ins/convmatrix/convmatrix.c:847 +#: plug-ins/common/convmatrix.c:847 msgid "Border" msgstr "" #. OutBox:Inbox:Frame -#: plug-ins/convmatrix/convmatrix.c:875 +#: plug-ins/common/convmatrix.c:875 msgid "Channels" msgstr "" -#: plug-ins/cubism/cubism.c:181 +#: plug-ins/common/cubism.c:181 msgid "Convert the input drawable into a collection of rotated squares" msgstr "" -#: plug-ins/cubism/cubism.c:186 +#: plug-ins/common/cubism.c:186 msgid "/Filters/Artistic/Cubism" msgstr "" -#: plug-ins/cubism/cubism.c:298 +#: plug-ins/common/cubism.c:298 msgid "Cubistic Transformation" msgstr "" -#: plug-ins/cubism/cubism.c:331 +#: plug-ins/common/cubism.c:331 msgid "Cubism" msgstr "" -#: plug-ins/cubism/cubism.c:364 +#: plug-ins/common/cubism.c:364 msgid "Use Background Color" msgstr "" -#: plug-ins/cubism/cubism.c:372 +#: plug-ins/common/cubism.c:372 msgid "Tile Size" msgstr "" -#: plug-ins/cubism/cubism.c:388 +#: plug-ins/common/cubism.c:388 msgid "Tile Saturation" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:130 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:130 msgid "red" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:131 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:131 msgid "green" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:132 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:132 msgid "blue" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:135 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:135 msgid "hue" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:136 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:136 msgid "saturation" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:137 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:137 msgid "value" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:140 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:140 msgid "cyan" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:141 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:141 msgid "magenta" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:142 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:142 msgid "yellow" msgstr "" -#: plug-ins/decompose/decompose.c:140 +#: plug-ins/common/decompose.c:140 msgid "Cyan" msgstr "" -#: plug-ins/decompose/decompose.c:141 +#: plug-ins/common/decompose.c:141 msgid "Magenta" msgstr "" -#: plug-ins/decompose/decompose.c:142 +#: plug-ins/common/decompose.c:142 msgid "Yellow" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:145 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:145 msgid "cyan_k" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:146 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:146 msgid "magenta_k" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:147 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:147 msgid "yellow_k" msgstr "" -#: plug-ins/decompose/decompose.c:144 +#: plug-ins/common/decompose.c:144 msgid "black" msgstr "" -#: plug-ins/decompose/decompose.c:145 +#: plug-ins/common/decompose.c:145 msgid "Cyan_K" msgstr "" -#: plug-ins/decompose/decompose.c:146 +#: plug-ins/common/decompose.c:146 msgid "Magenta_K" msgstr "" -#: plug-ins/decompose/decompose.c:147 +#: plug-ins/common/decompose.c:147 msgid "Yellow_K" msgstr "" -#: plug-ins/decompose/decompose.c:148 +#: plug-ins/common/decompose.c:148 msgid "alpha" msgstr "" -#: plug-ins/decompose/decompose.c:216 +#: plug-ins/common/decompose.c:216 msgid "Decompose an image into different types of channels" msgstr "" -#: plug-ins/decompose/decompose.c:217 +#: plug-ins/common/decompose.c:217 msgid "" "This function creates new gray images with different channel information in " "each of them" msgstr "" -#: plug-ins/decompose/decompose.c:222 +#: plug-ins/common/decompose.c:222 msgid "/Image/Channel Ops/Decompose" msgstr "" -#: plug-ins/decompose/decompose.c:303 +#: plug-ins/common/decompose.c:303 msgid "plug_in_decompose: Can only work on RGB*_IMAGE" msgstr "" -#: plug-ins/decompose/decompose.c:309 +#: plug-ins/common/decompose.c:309 msgid "Decomposing..." msgstr "" -#: plug-ins/decompose/decompose.c:374 +#: plug-ins/common/decompose.c:374 msgid "decompose: not an RGB image" msgstr "" -#: plug-ins/decompose/decompose.c:380 +#: plug-ins/common/decompose.c:380 msgid "decompose: No alpha channel available" msgstr "" -#: plug-ins/decompose/decompose.c:409 +#: plug-ins/common/decompose.c:409 msgid "decompose: out of memory" msgstr "" -#: plug-ins/decompose/decompose.c:901 plug-ins/decompose/decompose.c:907 +#: plug-ins/common/decompose.c:901 plug-ins/common/decompose.c:907 msgid "Decompose" msgstr "" #. parameter settings -#: plug-ins/decompose/decompose.c:934 +#: plug-ins/common/decompose.c:934 msgid "Extract channels:" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:194 +#: plug-ins/common/depthmerge.c:194 msgid "Combine two images using corresponding depth maps (z-buffers)" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:195 +#: plug-ins/common/depthmerge.c:195 msgid "" "Taking as input two full-colour, full-alpha images and two corresponding " "grayscale depth maps, this plug-in combines the images based on which is " "closer (has a lower depth map value) at each point." msgstr "" -#: plug-ins/depthmerge/depthmerge.c:202 +#: plug-ins/common/depthmerge.c:202 msgid "/Filters/Combine/Depth Merge" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:369 +#: plug-ins/common/depthmerge.c:369 msgid "Depth-merging..." msgstr "" -#: plug-ins/depthmerge/depthmerge.c:609 +#: plug-ins/common/depthmerge.c:609 msgid "Depth Merge" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:647 +#: plug-ins/common/depthmerge.c:647 msgid "Source 1" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:664 plug-ins/depthmerge/depthmerge.c:698 +#: plug-ins/common/depthmerge.c:664 plug-ins/common/depthmerge.c:698 msgid "Depth Map" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:681 +#: plug-ins/common/depthmerge.c:681 msgid "Source 2" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:723 +#: plug-ins/common/depthmerge.c:723 msgid "Overlap" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:733 +#: plug-ins/common/depthmerge.c:733 msgid "Scale 1" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:738 +#: plug-ins/common/depthmerge.c:738 msgid "Scale 2" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:1181 +#: plug-ins/common/depthmerge.c:1181 msgid "" "Warning: I don't _like_ this color space. This is a suggestion, not a " "threat.\n" msgstr "" -#: plug-ins/destripe/destripe.c:151 +#: plug-ins/common/destripe.c:151 msgid "" "Destripe filter, used to remove vertical stripes caused by cheap scanners." msgstr "" -#: plug-ins/destripe/destripe.c:152 +#: plug-ins/common/destripe.c:152 msgid "This plug-in tries to remove vertical stripes from an image." msgstr "" -#: plug-ins/destripe/destripe.c:155 +#: plug-ins/common/destripe.c:155 msgid "/Filters/Enhance/Destripe" msgstr "" -#: plug-ins/destripe/destripe.c:358 +#: plug-ins/common/destripe.c:358 msgid "Destriping..." msgstr "" -#: plug-ins/destripe/destripe.c:589 +#: plug-ins/common/destripe.c:589 msgid "Destripe" msgstr "" -#: plug-ins/destripe/destripe.c:663 +#: plug-ins/common/destripe.c:663 msgid "Histogram" msgstr "" @@ -1773,36 +1767,36 @@ msgstr "" #. #. * Box size (radius) control... #. -#: plug-ins/destripe/destripe.c:687 +#: plug-ins/common/destripe.c:687 msgid "Width" msgstr "" -#: plug-ins/gif/gif.c:408 +#: plug-ins/common/gif.c:408 msgid "saves files in Compuserve GIF file format" msgstr "" -#: plug-ins/gif/gif.c:682 +#: plug-ins/common/gif.c:682 msgid "GIF: Couldn't simply reduce colours further. Saving as opaque.\n" msgstr "" -#: plug-ins/gif/gif.c:938 +#: plug-ins/common/gif.c:938 msgid "" "GIF: Sorry, can't save RGB images as GIFs - convert to INDEXED\n" "or GRAY first.\n" msgstr "" -#: plug-ins/gif/gif.c:957 +#: plug-ins/common/gif.c:957 #, c-format msgid "GIF: can't open %s\n" msgstr "" -#: plug-ins/gif/gif.c:1064 +#: plug-ins/common/gif.c:1064 msgid "" "Transparent colour *might* be incorrect on viewers which don't support " "transparency." msgstr "" -#: plug-ins/gif/gif.c:1196 +#: plug-ins/common/gif.c:1196 msgid "" "The image which you are trying to save as a GIF\n" "contains layers which extend beyond the actual\n" @@ -1813,339 +1807,339 @@ msgid "" "the image borders, or cancel this save." msgstr "" -#: plug-ins/gif/gif.c:1252 +#: plug-ins/common/gif.c:1252 msgid "Save as GIF" msgstr "" #. regular gif parameter settings -#: plug-ins/gif/gif.c:1286 +#: plug-ins/common/gif.c:1286 msgid "GIF Options" msgstr "" -#: plug-ins/gif/gif.c:1294 plug-ins/png/png.c:1209 +#: plug-ins/common/gif.c:1294 plug-ins/common/png.c:856 msgid "Interlace" msgstr "" -#: plug-ins/gif/gif.c:1306 +#: plug-ins/common/gif.c:1306 msgid "GIF Comment: " msgstr "" -#: plug-ins/gif/gif.c:1339 plug-ins/gif/gif.c:1340 +#: plug-ins/common/gif.c:1339 plug-ins/common/gif.c:1340 msgid "Made with GIMP" msgstr "" #. additional animated gif parameter settings -#: plug-ins/gif/gif.c:1365 +#: plug-ins/common/gif.c:1365 msgid "Animated GIF Options" msgstr "" -#: plug-ins/gif/gif.c:1373 +#: plug-ins/common/gif.c:1373 msgid "Loop forever" msgstr "" -#: plug-ins/gif/gif.c:1386 +#: plug-ins/common/gif.c:1386 msgid "Delay between frames where unspecified: " msgstr "" -#: plug-ins/gif/gif.c:1400 +#: plug-ins/common/gif.c:1400 msgid " milliseconds" msgstr "" -#: plug-ins/gif/gif.c:1411 +#: plug-ins/common/gif.c:1411 msgid "Frame disposal where unspecified: " msgstr "" -#: plug-ins/gif/gif.c:1421 +#: plug-ins/common/gif.c:1421 msgid "I don't care" msgstr "" -#: plug-ins/gif/gif.c:1427 +#: plug-ins/common/gif.c:1427 msgid "Cumulative layers (combine)" msgstr "" -#: plug-ins/gif/gif.c:1433 +#: plug-ins/common/gif.c:1433 msgid "One frame per layer (replace)" msgstr "" -#: plug-ins/gif/gif.c:1491 +#: plug-ins/common/gif.c:1491 #, c-format msgid "GIF: colorstobpp - Eep! too many colours: %d\n" msgstr "" -#: plug-ins/gif/gif.c:1507 +#: plug-ins/common/gif.c:1507 #, c-format msgid "GIF: bpptocolors - Eep! bpp==%d !\n" msgstr "" -#: plug-ins/gifload/gifload.c:134 +#: plug-ins/common/gifload.c:134 msgid "loads files of Compuserve GIF file format" msgstr "" -#: plug-ins/gifload/gifload.c:279 +#: plug-ins/common/gifload.c:279 #, c-format msgid "GIF: can't open \"%s\"\n" msgstr "" -#: plug-ins/gifload/gifload.c:294 +#: plug-ins/common/gifload.c:294 msgid "GIF: error reading magic number\n" msgstr "" -#: plug-ins/gifload/gifload.c:300 +#: plug-ins/common/gifload.c:300 msgid "GIF: not a GIF file\n" msgstr "" -#: plug-ins/gifload/gifload.c:309 +#: plug-ins/common/gifload.c:309 msgid "GIF: bad version number, not '87a' or '89a'\n" msgstr "" -#: plug-ins/gifload/gifload.c:315 +#: plug-ins/common/gifload.c:315 msgid "GIF: failed to read screen descriptor\n" msgstr "" -#: plug-ins/gifload/gifload.c:331 +#: plug-ins/common/gifload.c:331 msgid "GIF: error reading global colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:338 +#: plug-ins/common/gifload.c:338 msgid "GIF: warning - non-square pixels\n" msgstr "" -#: plug-ins/gifload/gifload.c:349 plug-ins/gifload/gifload.c:803 +#: plug-ins/common/gifload.c:349 plug-ins/common/gifload.c:803 msgid "GIF: EOF / read error on image data\n" msgstr "" -#: plug-ins/gifload/gifload.c:364 +#: plug-ins/common/gifload.c:364 msgid "GIF: OF / read error on extension function code\n" msgstr "" #. Not a valid start character -#: plug-ins/gifload/gifload.c:374 +#: plug-ins/common/gifload.c:374 #, c-format msgid "GIF: bogus character 0x%02x, ignoring\n" msgstr "" -#: plug-ins/gifload/gifload.c:382 +#: plug-ins/common/gifload.c:382 msgid "GIF: couldn't read left/top/width/height\n" msgstr "" -#: plug-ins/gifload/gifload.c:394 +#: plug-ins/common/gifload.c:394 msgid "GIF: error reading local colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:452 +#: plug-ins/common/gifload.c:452 msgid "GIF: bad colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:568 +#: plug-ins/common/gifload.c:568 msgid "GIF: error in getting DataBlock size\n" msgstr "" -#: plug-ins/gifload/gifload.c:576 +#: plug-ins/common/gifload.c:576 msgid "GIF: error in reading DataBlock\n" msgstr "" -#: plug-ins/gifload/gifload.c:607 +#: plug-ins/common/gifload.c:607 msgid "GIF: ran off the end of by bits\n" msgstr "" -#: plug-ins/gifload/gifload.c:718 +#: plug-ins/common/gifload.c:718 msgid "GIF: missing EOD in data stream (common occurence)" msgstr "" -#: plug-ins/gifload/gifload.c:735 +#: plug-ins/common/gifload.c:735 msgid "GIF: circular table entry BIG ERROR\n" msgstr "" -#: plug-ins/gifload/gifload.c:809 +#: plug-ins/common/gifload.c:809 msgid "GIF: error while reading\n" msgstr "" -#: plug-ins/gifload/gifload.c:830 +#: plug-ins/common/gifload.c:830 #, c-format msgid "Background (%dms)" msgstr "" -#: plug-ins/gifload/gifload.c:877 +#: plug-ins/common/gifload.c:877 #, c-format msgid "Frame %d" msgstr "" -#: plug-ins/gifload/gifload.c:879 +#: plug-ins/common/gifload.c:879 #, c-format msgid "Frame %d (%dms)" msgstr "" #. 'don't care' -#: plug-ins/gifload/gifload.c:885 plug-ins/gifload/gifload.c:887 +#: plug-ins/common/gifload.c:885 plug-ins/common/gifload.c:887 msgid " (combine)" msgstr "" -#: plug-ins/gifload/gifload.c:886 +#: plug-ins/common/gifload.c:886 msgid " (replace)" msgstr "" -#: plug-ins/gifload/gifload.c:892 +#: plug-ins/common/gifload.c:892 msgid " (unknown disposal)" msgstr "" -#: plug-ins/gifload/gifload.c:893 +#: plug-ins/common/gifload.c:893 msgid "" "GIF: Hmm... please forward this GIF to the GIF plugin author!\n" " (adam@foxbox.org)\n" msgstr "" -#: plug-ins/gifload/gifload.c:896 +#: plug-ins/common/gifload.c:896 msgid "GIF: Something got corrupted.\n" msgstr "" -#: plug-ins/gifload/gifload.c:925 +#: plug-ins/common/gifload.c:925 #, c-format msgid "GIF: reading %d by %d%s GIF image, ncols=%d\n" msgstr "" -#: plug-ins/gifload/gifload.c:926 +#: plug-ins/common/gifload.c:926 msgid " interlaced" msgstr "" -#: plug-ins/gifload/gifload.c:930 +#: plug-ins/common/gifload.c:930 msgid "" "GIF: Ouchie! Can't handle non-alpha RGB frames.\n" " Please mail the plugin author. (adam@gimp.org)\n" msgstr "" -#: plug-ins/gifload/gifload.c:1022 +#: plug-ins/common/gifload.c:1022 msgid "GIF: too much input data, ignoring extra...\n" msgstr "" -#: plug-ins/jpeg/jpeg.c:176 +#: plug-ins/common/jpeg.c:176 msgid "loads files of the jpeg file format" msgstr "" -#: plug-ins/jpeg/jpeg.c:487 +#: plug-ins/common/jpeg.c:487 #, c-format msgid "can't open \"%s\"\n" msgstr "" -#: plug-ins/jpeg/jpeg.c:603 +#: plug-ins/common/jpeg.c:603 #, c-format msgid "" "don't know how to load JPEGs\n" "with %d color channels" msgstr "" -#: plug-ins/jpeg/jpeg.c:648 +#: plug-ins/common/jpeg.c:648 #, c-format msgid "" "unknown density unit %d\n" "assuming dots per inch" msgstr "" -#: plug-ins/jpeg/jpeg.c:993 +#: plug-ins/common/jpeg.c:993 msgid "Save as Jpeg" msgstr "" -#: plug-ins/jpeg/jpeg.c:1026 +#: plug-ins/common/jpeg.c:1026 msgid "Quality" msgstr "" -#: plug-ins/jpeg/jpeg.c:1042 +#: plug-ins/common/jpeg.c:1042 msgid "Smoothing" msgstr "" -#: plug-ins/jpeg/jpeg.c:1058 +#: plug-ins/common/jpeg.c:1058 msgid "Optimize" msgstr "" -#: plug-ins/jpeg/jpeg.c:1066 +#: plug-ins/common/jpeg.c:1066 msgid "Progressive" msgstr "" -#: plug-ins/jpeg/jpeg.c:1079 +#: plug-ins/common/jpeg.c:1079 msgid "Image Comments" msgstr "" -#: plug-ins/mail/mail.c:212 +#: plug-ins/common/mail.c:212 msgid "pipe files to uuencode then mail them" msgstr "" -#: plug-ins/mail/mail.c:213 +#: plug-ins/common/mail.c:213 msgid "You need to have uuencode and mail installed" msgstr "" -#: plug-ins/mail/mail.c:217 +#: plug-ins/common/mail.c:217 msgid "/File/Mail image" msgstr "" -#: plug-ins/mail/mail.c:486 +#: plug-ins/common/mail.c:486 msgid "Send to mail" msgstr "" #. filename label -#: plug-ins/mail/mail.c:620 +#: plug-ins/common/mail.c:620 msgid "Filename:" msgstr "" #. Encapsulation label -#: plug-ins/mail/mail.c:674 +#: plug-ins/common/mail.c:674 msgid "Encapsulation:" msgstr "" #. Encapsulation radiobutton -#: plug-ins/mail/mail.c:683 +#: plug-ins/common/mail.c:683 msgid "Uuencode" msgstr "" -#: plug-ins/mail/mail.c:685 +#: plug-ins/common/mail.c:685 msgid "MIME" msgstr "" -#: plug-ins/mail/mail.c:799 +#: plug-ins/common/mail.c:799 msgid "mail: some sort of error with the file extension or lack thereof \n" msgstr "" -#: plug-ins/oilify/oilify.c:122 +#: plug-ins/common/oilify.c:122 msgid "Modify the specified drawable to resemble an oil painting" msgstr "" -#: plug-ins/oilify/oilify.c:123 +#: plug-ins/common/oilify.c:123 msgid "" "This function performs the well-known oil-paint effect on the specified " "drawable. The size of the input mask is specified by 'mask_size'." msgstr "" -#: plug-ins/oilify/oilify.c:127 +#: plug-ins/common/oilify.c:127 msgid "/Filters/Artistic/Oilify" msgstr "" -#: plug-ins/oilify/oilify.c:198 +#: plug-ins/common/oilify.c:198 msgid "Oil Painting..." msgstr "" -#: plug-ins/oilify/oilify.c:453 +#: plug-ins/common/oilify.c:453 msgid "Oilify" msgstr "" -#: plug-ins/oilify/oilify.c:486 +#: plug-ins/common/oilify.c:486 msgid "Use intensity algorithm" msgstr "" -#: plug-ins/oilify/oilify.c:494 +#: plug-ins/common/oilify.c:494 msgid "Mask Size" msgstr "" -#: plug-ins/png/png.c:504 +#: plug-ins/common/png.c:149 msgid "Loads files in PNG file format" msgstr "" -#: plug-ins/png/png.c:505 +#: plug-ins/common/png.c:150 msgid "This plug-in loads Portable Network Graphics (PNG) files." msgstr "" -#: plug-ins/png/png.c:1171 +#: plug-ins/common/png.c:818 msgid "PNG Options" msgstr "" -#: plug-ins/png/png.c:1216 +#: plug-ins/common/png.c:863 msgid "Compression level" msgstr "" @@ -2243,135 +2237,135 @@ msgstr "" msgid "600 DPI" msgstr "" -#: plug-ins/print/print.c:406 +#: plug-ins/print/print.c:229 msgid "PostScript Level 1" msgstr "" -#: plug-ins/print/print.c:408 +#: plug-ins/print/print.c:231 msgid "PostScript Level 2" msgstr "" -#: plug-ins/print/print.c:410 +#: plug-ins/print/print.c:233 msgid "HP DeskJet 500, 520" msgstr "" -#: plug-ins/print/print.c:412 +#: plug-ins/print/print.c:235 msgid "HP DeskJet 500C, 540C" msgstr "" -#: plug-ins/print/print.c:414 +#: plug-ins/print/print.c:237 msgid "HP DeskJet 550C, 560C" msgstr "" -#: plug-ins/print/print.c:416 +#: plug-ins/print/print.c:239 msgid "HP DeskJet 600 series" msgstr "" -#: plug-ins/print/print.c:418 +#: plug-ins/print/print.c:241 msgid "HP DeskJet 800 series" msgstr "" -#: plug-ins/print/print.c:420 +#: plug-ins/print/print.c:243 msgid "HP DeskJet 1100C, 1120C" msgstr "" -#: plug-ins/print/print.c:422 +#: plug-ins/print/print.c:245 msgid "HP DeskJet 1200C, 1600C" msgstr "" -#: plug-ins/print/print.c:424 +#: plug-ins/print/print.c:247 msgid "HP LaserJet II series" msgstr "" -#: plug-ins/print/print.c:426 +#: plug-ins/print/print.c:249 msgid "HP LaserJet III series" msgstr "" -#: plug-ins/print/print.c:428 +#: plug-ins/print/print.c:251 msgid "HP LaserJet 4 series" msgstr "" -#: plug-ins/print/print.c:430 +#: plug-ins/print/print.c:253 msgid "HP LaserJet 4V, 4Si" msgstr "" -#: plug-ins/print/print.c:432 +#: plug-ins/print/print.c:255 msgid "HP LaserJet 5 series" msgstr "" -#: plug-ins/print/print.c:434 +#: plug-ins/print/print.c:257 msgid "HP LaserJet 5Si" msgstr "" -#: plug-ins/print/print.c:436 +#: plug-ins/print/print.c:259 msgid "HP LaserJet 6 series" msgstr "" -#: plug-ins/print/print.c:438 +#: plug-ins/print/print.c:261 msgid "EPSON Stylus Color" msgstr "" -#: plug-ins/print/print.c:440 +#: plug-ins/print/print.c:263 msgid "EPSON Stylus Color Pro" msgstr "" -#: plug-ins/print/print.c:442 +#: plug-ins/print/print.c:265 msgid "EPSON Stylus Color Pro XL" msgstr "" -#: plug-ins/print/print.c:444 +#: plug-ins/print/print.c:267 msgid "EPSON Stylus Color 1500" msgstr "" -#: plug-ins/print/print.c:446 +#: plug-ins/print/print.c:269 msgid "EPSON Stylus Color 400" msgstr "" -#: plug-ins/print/print.c:448 +#: plug-ins/print/print.c:271 msgid "EPSON Stylus Color 500" msgstr "" -#: plug-ins/print/print.c:450 +#: plug-ins/print/print.c:273 msgid "EPSON Stylus Color 600" msgstr "" -#: plug-ins/print/print.c:452 +#: plug-ins/print/print.c:275 msgid "EPSON Stylus Color 800" msgstr "" -#: plug-ins/print/print.c:454 +#: plug-ins/print/print.c:277 msgid "EPSON Stylus Color 1520" msgstr "" -#: plug-ins/print/print.c:456 +#: plug-ins/print/print.c:279 msgid "EPSON Stylus Color 3000" msgstr "" -#: plug-ins/print/print.c:509 +#: plug-ins/print/print.c:332 msgid "This plug-in prints images from The GIMP." msgstr "" -#: plug-ins/print/print.c:510 +#: plug-ins/print/print.c:333 msgid "Prints images to PostScript, PCL, or ESC/P2 printers." msgstr "" -#: plug-ins/print/print.c:514 +#: plug-ins/print/print.c:337 msgid "/File/Print" msgstr "" -#: plug-ins/print/print.c:827 +#: plug-ins/print/print.c:650 msgid "Auto" msgstr "" -#: plug-ins/print/print.c:828 +#: plug-ins/print/print.c:651 msgid "Portrait" msgstr "" -#: plug-ins/print/print.c:829 +#: plug-ins/print/print.c:652 msgid "Landscape" msgstr "" -#: plug-ins/print/print.c:860 +#: plug-ins/print/print.c:685 #, c-format msgid "Print v%s" msgstr "" @@ -2379,354 +2373,351 @@ msgstr "" #. #. * Media size option menu... #. -#: plug-ins/print/print.c:910 +#: plug-ins/print/print.c:735 msgid "Media Size:" msgstr "" #. #. * Media type option menu... #. -#: plug-ins/print/print.c:926 +#: plug-ins/print/print.c:751 msgid "Media Type:" msgstr "" #. #. * Media source option menu... #. -#: plug-ins/print/print.c:942 +#: plug-ins/print/print.c:767 msgid "Media Source:" msgstr "" #. #. * Orientation option menu... #. -#: plug-ins/print/print.c:958 +#: plug-ins/print/print.c:783 msgid "Orientation:" msgstr "" #. #. * Resolution option menu... #. -#: plug-ins/print/print.c:988 plug-ins/ps/ps.c:1974 +#: plug-ins/common/ps.c:1999 plug-ins/print/print.c:813 msgid "Resolution:" msgstr "" #. #. * Output type toggles... #. -#: plug-ins/print/print.c:1004 +#: plug-ins/print/print.c:829 msgid "Output Type:" msgstr "" -#: plug-ins/print/print.c:1013 +#: plug-ins/print/print.c:838 msgid "B&W" msgstr "" #. #. * Scaling... #. -#: plug-ins/print/print.c:1036 +#: plug-ins/print/print.c:861 msgid "Scaling:" msgstr "" -#: plug-ins/print/print.c:1071 +#: plug-ins/print/print.c:896 msgid "Percent" msgstr "" -#: plug-ins/print/print.c:1080 +#: plug-ins/print/print.c:905 msgid "PPI" msgstr "" #. #. * Brightness slider... #. -#: plug-ins/print/print.c:1092 +#: plug-ins/print/print.c:917 msgid "Brightness:" msgstr "" #. #. * Printer option menu... #. -#: plug-ins/print/print.c:1127 +#: plug-ins/print/print.c:952 msgid "Printer:" msgstr "" -#: plug-ins/print/print.c:1153 plug-ins/print/print.c:1186 +#: plug-ins/print/print.c:978 plug-ins/print/print.c:1011 msgid "Setup" msgstr "" -#: plug-ins/print/print.c:1173 +#: plug-ins/print/print.c:998 msgid "Print" msgstr "" #. #. * Printer driver option menu... #. -#: plug-ins/print/print.c:1208 +#: plug-ins/print/print.c:1033 msgid "Driver:" msgstr "" #. #. * PPD file... #. -#: plug-ins/print/print.c:1233 +#: plug-ins/print/print.c:1058 msgid "PPD File:" msgstr "" -#: plug-ins/print/print.c:1246 +#: plug-ins/print/print.c:1071 msgid "Browse" msgstr "" #. #. * Print command... #. -#: plug-ins/print/print.c:1256 +#: plug-ins/print/print.c:1081 msgid "Command:" msgstr "" #. #. * Output file selection dialog... #. -#: plug-ins/print/print.c:1291 +#: plug-ins/print/print.c:1116 msgid "Print To File?" msgstr "" #. #. * PPD file selection dialog... #. -#: plug-ins/print/print.c:1301 +#: plug-ins/print/print.c:1126 msgid "PPD File?" msgstr "" -#: plug-ins/print/print.c:2287 +#: plug-ins/print/print.c:2112 msgid "File" msgstr "" -#: plug-ins/ps/ps.c:319 plug-ins/ps/ps.c:320 +#: plug-ins/common/ps.c:320 plug-ins/common/ps.c:321 msgid "load file of PostScript/PDF file format" msgstr "" -#: plug-ins/ps/ps.c:343 +#: plug-ins/common/ps.c:344 msgid "save file in PostScript file format" msgstr "" -#: plug-ins/ps/ps.c:344 +#: plug-ins/common/ps.c:345 msgid "" "PostScript saving handles all image types except those with alpha channels." msgstr "" -#: plug-ins/ps/ps.c:549 +#: plug-ins/common/ps.c:550 msgid "PS: can't open file for reading" msgstr "" -#: plug-ins/ps/ps.c:556 +#: plug-ins/common/ps.c:557 #, c-format msgid "Interpreting and Loading %s:" msgstr "" -#: plug-ins/ps/ps.c:566 +#: plug-ins/common/ps.c:565 msgid "PS: can't interprete file" msgstr "" -#: plug-ins/ps/ps.c:573 -msgid "PS: out of memory" -msgstr "" - -#: plug-ins/ps/ps.c:653 +#: plug-ins/common/ps.c:647 msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: plug-ins/ps/ps.c:664 +#: plug-ins/common/ps.c:658 msgid "PS: cannot operate on unknown image types" msgstr "" -#: plug-ins/ps/ps.c:673 +#: plug-ins/common/ps.c:667 msgid "PS: can't open file for writing" msgstr "" -#: plug-ins/ps/ps.c:1947 +#: plug-ins/common/ps.c:1713 plug-ins/common/ps.c:1810 +#: plug-ins/common/ps.c:1903 plug-ins/common/ps.c:1972 msgid "write error occured" msgstr "" -#: plug-ins/ps/ps.c:1974 plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:1999 plug-ins/common/ps.c:2264 msgid "Width:" msgstr "" -#: plug-ins/ps/ps.c:1974 plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:1999 plug-ins/common/ps.c:2264 msgid "Height:" msgstr "" -#: plug-ins/ps/ps.c:1974 +#: plug-ins/common/ps.c:1999 msgid "Pages:" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "b/w" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "gray" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "colour" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "automatic" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "none" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "weak" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "strong" msgstr "" -#: plug-ins/ps/ps.c:1991 +#: plug-ins/common/ps.c:2016 msgid "Load PostScript" msgstr "" #. Rendering -#: plug-ins/ps/ps.c:2024 +#: plug-ins/common/ps.c:2049 msgid "Rendering" msgstr "" -#: plug-ins/ps/ps.c:2064 +#: plug-ins/common/ps.c:2089 msgid "try BoundingBox" msgstr "" #. Colouring -#: plug-ins/ps/ps.c:2077 +#: plug-ins/common/ps.c:2102 msgid "Colouring" msgstr "" -#: plug-ins/ps/ps.c:2113 +#: plug-ins/common/ps.c:2138 msgid "Graphic antialiasing" msgstr "" -#: plug-ins/ps/ps.c:2114 +#: plug-ins/common/ps.c:2139 msgid "Text antialiasing" msgstr "" -#: plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:2264 msgid "X-offset:" msgstr "" -#: plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:2264 msgid "Y-offset:" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "0" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "90" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "180" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "270" msgstr "" -#: plug-ins/ps/ps.c:2243 +#: plug-ins/common/ps.c:2268 msgid "Inch" msgstr "" -#: plug-ins/ps/ps.c:2243 +#: plug-ins/common/ps.c:2268 msgid "Millimeter" msgstr "" -#: plug-ins/ps/ps.c:2258 +#: plug-ins/common/ps.c:2283 msgid "Save PostScript" msgstr "" #. Image Size -#: plug-ins/ps/ps.c:2299 +#: plug-ins/common/ps.c:2324 msgid "Image Size" msgstr "" -#: plug-ins/ps/ps.c:2338 +#: plug-ins/common/ps.c:2363 msgid "keep aspect ratio" msgstr "" #. Unit -#: plug-ins/ps/ps.c:2348 +#: plug-ins/common/ps.c:2373 msgid "Unit" msgstr "" #. Rotation -#: plug-ins/ps/ps.c:2379 +#: plug-ins/common/ps.c:2404 msgid "Rotation" msgstr "" #. Format -#: plug-ins/ps/ps.c:2406 +#: plug-ins/common/ps.c:2431 msgid "Output" msgstr "" -#: plug-ins/ps/ps.c:2414 +#: plug-ins/common/ps.c:2439 msgid "Encapsulated PostScript" msgstr "" -#: plug-ins/ps/ps.c:2440 +#: plug-ins/common/ps.c:2465 msgid "Preview size" msgstr "" -#: plug-ins/xbm/xbm.c:163 +#: plug-ins/common/xbm.c:163 msgid "Load a file in X10 or X11 bitmap (XBM) file format" msgstr "" -#: plug-ins/xbm/xbm.c:164 +#: plug-ins/common/xbm.c:164 msgid "" "Load a file in X10 or X11 bitmap (XBM) file format. XBM is a lossless " "format for flat black-and-white (two color indexed) images." msgstr "" -#: plug-ins/xbm/xbm.c:230 +#: plug-ins/common/xbm.c:230 msgid "Made with Gimp" msgstr "" -#: plug-ins/xbm/xbm.c:518 +#: plug-ins/common/xbm.c:518 #, c-format msgid "XBM: cannot open \"%s\"\n" msgstr "" -#: plug-ins/xbm/xbm.c:583 +#: plug-ins/common/xbm.c:583 #, c-format msgid "XBM: cannot read header (ftell == %ld)\n" msgstr "" -#: plug-ins/xbm/xbm.c:589 +#: plug-ins/common/xbm.c:589 msgid "XBM: no image width specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:595 +#: plug-ins/common/xbm.c:595 msgid "XBM: no image height specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:601 +#: plug-ins/common/xbm.c:601 msgid "XBM: no image data type specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:692 +#: plug-ins/common/xbm.c:692 msgid "XBM: can only save two color indexed images\n" msgstr "" -#: plug-ins/xbm/xbm.c:697 +#: plug-ins/common/xbm.c:697 msgid "XBM Warning" msgstr "" -#: plug-ins/xbm/xbm.c:727 +#: plug-ins/common/xbm.c:727 msgid "" "The image which you are trying to save as\n" "an XBM contains more than two colors.\n" @@ -2735,82 +2726,82 @@ msgid "" "(1-bit) indexed image and try again." msgstr "" -#: plug-ins/xbm/xbm.c:799 +#: plug-ins/common/xbm.c:799 #, c-format msgid "XBM: cannot create \"%s\"\n" msgstr "" -#: plug-ins/xbm/xbm.c:949 +#: plug-ins/common/xbm.c:949 msgid "Save as XBM" msgstr "" #. parameter settings -#: plug-ins/xbm/xbm.c:980 +#: plug-ins/common/xbm.c:980 msgid "XBM Options" msgstr "" -#: plug-ins/xbm/xbm.c:995 +#: plug-ins/common/xbm.c:995 msgid "Description: " msgstr "" #. X10 format -#: plug-ins/xbm/xbm.c:1011 +#: plug-ins/common/xbm.c:1011 msgid "X10 format bitmap" msgstr "" -#: plug-ins/xbm/xbm.c:1024 +#: plug-ins/common/xbm.c:1024 msgid "Identifier prefix: " msgstr "" -#: plug-ins/xpm/xpm.c:170 +#: plug-ins/common/xpm.c:170 msgid "loads files of the xpm file format" msgstr "" -#: plug-ins/xpm/xpm.c:182 +#: plug-ins/common/xpm.c:182 msgid "saves files in the xpm file format (if you're on a 16 bit display...)" msgstr "" -#: plug-ins/xpm/xpm.c:756 +#: plug-ins/common/xpm.c:756 msgid "Save as Xpm" msgstr "" -#: plug-ins/xpm/xpm.c:790 +#: plug-ins/common/xpm.c:790 msgid "Alpha Threshold" msgstr "" -#: plug-ins/xwd/xwd.c:222 plug-ins/xwd/xwd.c:223 +#: plug-ins/common/xwd.c:226 plug-ins/common/xwd.c:227 msgid "load file of the XWD file format" msgstr "" -#: plug-ins/xwd/xwd.c:234 +#: plug-ins/common/xwd.c:238 msgid "saves files in the XWD file format" msgstr "" -#: plug-ins/xwd/xwd.c:235 +#: plug-ins/common/xwd.c:239 msgid "XWD saving handles all image types except those with alpha channels." msgstr "" -#: plug-ins/xwd/xwd.c:331 +#: plug-ins/common/xwd.c:335 msgid "can't open file for reading" msgstr "" -#: plug-ins/xwd/xwd.c:347 +#: plug-ins/common/xwd.c:351 msgid "can't open file as XWD file" msgstr "" -#: plug-ins/xwd/xwd.c:362 +#: plug-ins/common/xwd.c:366 msgid "can't get memory for colormap" msgstr "" -#: plug-ins/xwd/xwd.c:380 +#: plug-ins/common/xwd.c:384 msgid "can't read color entries" msgstr "" -#: plug-ins/xwd/xwd.c:444 +#: plug-ins/common/xwd.c:448 msgid "this image depth/format is not supported" msgstr "" -#: plug-ins/xwd/xwd.c:448 +#: plug-ins/common/xwd.c:452 #, c-format msgid "" "load_image (xwd): XWD-file %s has format %d, depth %d\n" @@ -2818,35 +2809,35 @@ msgid "" "Currently this is not supported.\n" msgstr "" -#: plug-ins/xwd/xwd.c:476 +#: plug-ins/common/xwd.c:480 msgid "XWD save cannot handle images with alpha channels" msgstr "" -#: plug-ins/xwd/xwd.c:487 +#: plug-ins/common/xwd.c:491 msgid "cannot operate on unknown image types" msgstr "" -#: plug-ins/xwd/xwd.c:496 +#: plug-ins/common/xwd.c:500 msgid "can't open file for writing" msgstr "" -#: plug-ins/xwd/xwd.c:1148 +#: plug-ins/common/xwd.c:1152 msgid "EOF encountered on " msgstr "" -#: plug-ins/xwd/xwd.c:1246 plug-ins/xwd/xwd.c:1408 plug-ins/xwd/xwd.c:1605 -#: plug-ins/xwd/xwd.c:1854 +#: plug-ins/common/xwd.c:1250 plug-ins/common/xwd.c:1412 +#: plug-ins/common/xwd.c:1609 plug-ins/common/xwd.c:1858 msgid "EOF encountered on reading" msgstr "" -#: plug-ins/xwd/xwd.c:1294 +#: plug-ins/common/xwd.c:1298 msgid "No memory for mapping colors" msgstr "" -#: plug-ins/xwd/xwd.c:1978 +#: plug-ins/common/xwd.c:1982 msgid "Error during writing indexed/grey image" msgstr "" -#: plug-ins/xwd/xwd.c:2067 +#: plug-ins/common/xwd.c:2071 msgid "Error during writing rgb image" msgstr "" diff --git a/po-plug-ins/it.po b/po-plug-ins/it.po index 4336c06aab..456dd3c23c 100644 --- a/po-plug-ins/it.po +++ b/po-plug-ins/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 1999-06-05 14:12-0700\n" +"POT-Creation-Date: 1999-07-17 11:11-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,236 +14,230 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: plug-ins/CML_explorer/CML_explorer.c:226 +#: plug-ins/common/CML_explorer.c:226 msgid "Keep image's values" msgstr "Keep image's values" -#: plug-ins/CML_explorer/CML_explorer.c:228 +#: plug-ins/common/CML_explorer.c:228 msgid "Keep the first value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:230 +#: plug-ins/common/CML_explorer.c:230 msgid "Fill with parameter k" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:232 +#: plug-ins/common/CML_explorer.c:232 msgid "k{x(1-x)}^p" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:234 +#: plug-ins/common/CML_explorer.c:234 msgid "k{x(1-x)}^p stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:236 +#: plug-ins/common/CML_explorer.c:236 msgid "kx^p" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:238 +#: plug-ins/common/CML_explorer.c:238 msgid "kx^p stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:240 +#: plug-ins/common/CML_explorer.c:240 msgid "k(1 - x^p)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:242 +#: plug-ins/common/CML_explorer.c:242 msgid "k(1 - x^p) stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:244 +#: plug-ins/common/CML_explorer.c:244 msgid "Delta function" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:246 +#: plug-ins/common/CML_explorer.c:246 msgid "Delta function stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:248 +#: plug-ins/common/CML_explorer.c:248 msgid "sin^p-based function" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:250 +#: plug-ins/common/CML_explorer.c:250 msgid "sin^p, stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:256 +#: plug-ins/common/CML_explorer.c:256 msgid "None" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:258 +#: plug-ins/common/CML_explorer.c:258 msgid "Max (x, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:260 +#: plug-ins/common/CML_explorer.c:260 msgid "Max (x+d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:262 +#: plug-ins/common/CML_explorer.c:262 msgid "Max (x-d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:264 -msgid "Mix (x, -)" +#: plug-ins/common/CML_explorer.c:264 +msgid "Min (x, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:266 +#: plug-ins/common/CML_explorer.c:266 msgid "Min (x+d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:268 +#: plug-ins/common/CML_explorer.c:268 msgid "Min (x-d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:270 +#: plug-ins/common/CML_explorer.c:270 msgid "Max (x+d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:272 +#: plug-ins/common/CML_explorer.c:272 msgid "Max (x+d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:274 +#: plug-ins/common/CML_explorer.c:274 msgid "Max (x-d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:276 +#: plug-ins/common/CML_explorer.c:276 msgid "Max (x-d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:278 +#: plug-ins/common/CML_explorer.c:278 msgid "Min (x+d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:280 +#: plug-ins/common/CML_explorer.c:280 msgid "Min (x+d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:282 +#: plug-ins/common/CML_explorer.c:282 msgid "Min (x-d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:284 +#: plug-ins/common/CML_explorer.c:284 msgid "Min (x-d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:290 +#: plug-ins/common/CML_explorer.c:290 msgid "Standard" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:292 +#: plug-ins/common/CML_explorer.c:292 msgid "Use average value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:294 +#: plug-ins/common/CML_explorer.c:294 msgid "Use reverse value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:296 +#: plug-ins/common/CML_explorer.c:296 msgid "With random power (0,10)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:298 +#: plug-ins/common/CML_explorer.c:298 msgid "With random power (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:300 +#: plug-ins/common/CML_explorer.c:300 msgid "With gradient power (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:302 +#: plug-ins/common/CML_explorer.c:302 msgid "Multiply rand. value (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:304 +#: plug-ins/common/CML_explorer.c:304 msgid "Multiply rand. value (0,2)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:306 +#: plug-ins/common/CML_explorer.c:306 msgid "Multiply gradient (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:308 +#: plug-ins/common/CML_explorer.c:308 msgid "With p and random (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:313 +#: plug-ins/common/CML_explorer.c:313 msgid "All black" msgstr "" #. 0 -#: plug-ins/CML_explorer/CML_explorer.c:314 +#: plug-ins/common/CML_explorer.c:314 msgid "All gray" msgstr "" #. 1 -#: plug-ins/CML_explorer/CML_explorer.c:315 +#: plug-ins/common/CML_explorer.c:315 msgid "All white" msgstr "" #. 2 -#: plug-ins/CML_explorer/CML_explorer.c:316 +#: plug-ins/common/CML_explorer.c:316 msgid "The first row of the image" msgstr "" #. 3 -#: plug-ins/CML_explorer/CML_explorer.c:317 +#: plug-ins/common/CML_explorer.c:317 msgid "Continuous gradient" msgstr "" #. 4 -#: plug-ins/CML_explorer/CML_explorer.c:318 +#: plug-ins/common/CML_explorer.c:318 msgid "Continuous grad. w/o gap" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:320 +#: plug-ins/common/CML_explorer.c:320 msgid "Random, ch. independent" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:322 +#: plug-ins/common/CML_explorer.c:322 msgid "Random shared" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:324 +#: plug-ins/common/CML_explorer.c:324 msgid "Randoms from seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:326 +#: plug-ins/common/CML_explorer.c:326 msgid "Randoms from seed (shared)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:380 -#: plug-ins/CML_explorer/CML_explorer.c:388 -#: plug-ins/CML_explorer/CML_explorer.c:1431 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:135 +#: plug-ins/common/CML_explorer.c:380 plug-ins/common/CML_explorer.c:388 +#: plug-ins/common/CML_explorer.c:1431 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:135 msgid "Hue" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:381 -#: plug-ins/CML_explorer/CML_explorer.c:389 -#: plug-ins/CML_explorer/CML_explorer.c:1435 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:136 +#: plug-ins/common/CML_explorer.c:381 plug-ins/common/CML_explorer.c:389 +#: plug-ins/common/CML_explorer.c:1435 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:136 msgid "Saturation" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:382 -#: plug-ins/CML_explorer/CML_explorer.c:390 -#: plug-ins/CML_explorer/CML_explorer.c:1439 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:137 +#: plug-ins/common/CML_explorer.c:382 plug-ins/common/CML_explorer.c:390 +#: plug-ins/common/CML_explorer.c:1439 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:137 msgid "Value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:387 +#: plug-ins/common/CML_explorer.c:387 msgid "NULL" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:494 +#: plug-ins/common/CML_explorer.c:494 msgid "Make an image of Coupled-Map Lattice" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:495 +#: plug-ins/common/CML_explorer.c:495 msgid "" "Make an image of Coupled-Map Lattice (CML). CML is a kind of Cellula " "Automata on continuous (value) domain. In RUN_NONINTERACTIVE, the name of a " @@ -251,87 +245,87 @@ msgid "" "parameter file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1327 +#: plug-ins/common/CML_explorer.c:1327 msgid "Coupled-Map-Lattice Explorer" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1344 plug-ins/ps/ps.c:2423 +#: plug-ins/common/CML_explorer.c:1344 plug-ins/common/ps.c:2448 msgid "Preview" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1385 +#: plug-ins/common/CML_explorer.c:1385 msgid "New seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1391 +#: plug-ins/common/CML_explorer.c:1391 msgid "Fix seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1397 +#: plug-ins/common/CML_explorer.c:1397 msgid "Random seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1409 +#: plug-ins/common/CML_explorer.c:1409 msgid "Load" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1412 +#: plug-ins/common/CML_explorer.c:1412 msgid "Save" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1429 +#: plug-ins/common/CML_explorer.c:1429 msgid "Hue settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1433 +#: plug-ins/common/CML_explorer.c:1433 msgid "Saturation settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1437 +#: plug-ins/common/CML_explorer.c:1437 msgid "Value (grayimage) settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1441 +#: plug-ins/common/CML_explorer.c:1441 msgid "Advanced settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1443 +#: plug-ins/common/CML_explorer.c:1443 msgid "Advanced" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1455 +#: plug-ins/common/CML_explorer.c:1455 msgid "Other parameter settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1459 +#: plug-ins/common/CML_explorer.c:1459 msgid "Channel independed parameters" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1463 +#: plug-ins/common/CML_explorer.c:1463 msgid "Initial value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1469 +#: plug-ins/common/CML_explorer.c:1469 msgid "Zoom scale" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1474 +#: plug-ins/common/CML_explorer.c:1474 msgid "Start offset" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1494 +#: plug-ins/common/CML_explorer.c:1494 msgid "Seed of random (only for \"from seed\" modes)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1498 +#: plug-ins/common/CML_explorer.c:1498 msgid "Seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1508 +#: plug-ins/common/CML_explorer.c:1508 msgid "Switch to \"from seed\" with the last seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1515 +#: plug-ins/common/CML_explorer.c:1515 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 " @@ -339,202 +333,199 @@ msgid "" "(2) all mutation rates equal to zero." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1532 +#: plug-ins/common/CML_explorer.c:1532 msgid "Others" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1539 +#: plug-ins/common/CML_explorer.c:1539 msgid "Misc operations" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1544 +#: plug-ins/common/CML_explorer.c:1544 msgid "Copy settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1548 +#: plug-ins/common/CML_explorer.c:1548 msgid "Source ch." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1554 -#: plug-ins/CML_explorer/CML_explorer.c:1588 +#: plug-ins/common/CML_explorer.c:1554 plug-ins/common/CML_explorer.c:1588 msgid "Destination ch." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1560 +#: plug-ins/common/CML_explorer.c:1560 msgid "Do copy parameters" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1578 +#: plug-ins/common/CML_explorer.c:1578 msgid "Selective load settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1582 +#: plug-ins/common/CML_explorer.c:1582 msgid "Source ch. in file" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1608 +#: plug-ins/common/CML_explorer.c:1608 msgid "Misc ops." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1644 +#: plug-ins/common/CML_explorer.c:1644 msgid "Function type" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1651 +#: plug-ins/common/CML_explorer.c:1651 msgid "Composition" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1658 +#: plug-ins/common/CML_explorer.c:1658 msgid "Misc arrange" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1665 +#: plug-ins/common/CML_explorer.c:1665 msgid "Use cyclic range" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1670 +#: plug-ins/common/CML_explorer.c:1670 msgid "Mod. rate" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1677 +#: plug-ins/common/CML_explorer.c:1677 msgid "Env. sensitivity" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1684 +#: plug-ins/common/CML_explorer.c:1684 msgid "Diffusion dist." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1691 +#: plug-ins/common/CML_explorer.c:1691 msgid "# of subranges" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1698 +#: plug-ins/common/CML_explorer.c:1698 msgid "P(ower factor)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1705 +#: plug-ins/common/CML_explorer.c:1705 msgid "Parameter k" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1712 +#: plug-ins/common/CML_explorer.c:1712 msgid "Range low" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1719 +#: plug-ins/common/CML_explorer.c:1719 msgid "Range high" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1738 +#: plug-ins/common/CML_explorer.c:1738 msgid "Plot the graph of the settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1772 +#: plug-ins/common/CML_explorer.c:1772 msgid "Ch. sensitivity" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1779 +#: plug-ins/common/CML_explorer.c:1779 msgid "Mutation rate" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1786 +#: plug-ins/common/CML_explorer.c:1786 msgid "Mutation dist." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1815 +#: plug-ins/common/CML_explorer.c:1815 msgid "Graph of the current settings" msgstr "" #. Action Area -#: plug-ins/CML_explorer/CML_explorer.c:1820 -#: plug-ins/CML_explorer/CML_explorer.c:2681 -#: plug-ins/CML_explorer/CML_explorer.c:2777 -#: plug-ins/apply_lens/apply_lens.c:420 plug-ins/blur/blur.c:619 -#: plug-ins/bmp/bmpwrite.c:428 plug-ins/bumpmap/bumpmap.c:970 -#: plug-ins/checkerboard/checkerboard.c:381 plug-ins/compose/compose.c:816 -#: plug-ins/convmatrix/convmatrix.c:706 plug-ins/cubism/cubism.c:338 -#: plug-ins/decompose/decompose.c:914 plug-ins/depthmerge/depthmerge.c:746 -#: plug-ins/destripe/destripe.c:695 plug-ins/gif/gif.c:1263 -#: plug-ins/jpeg/jpeg.c:1000 plug-ins/mail/mail.c:491 -#: plug-ins/oilify/oilify.c:460 plug-ins/png/png.c:1180 -#: plug-ins/print/print.c:1279 plug-ins/ps/ps.c:1998 plug-ins/ps/ps.c:2265 -#: plug-ins/xbm/xbm.c:959 plug-ins/xpm/xpm.c:763 +#: plug-ins/bmp/bmpwrite.c:428 plug-ins/common/CML_explorer.c:1820 +#: plug-ins/common/CML_explorer.c:2681 plug-ins/common/CML_explorer.c:2777 +#: plug-ins/common/apply_lens.c:420 plug-ins/common/blur.c:619 +#: plug-ins/common/bumpmap.c:970 plug-ins/common/checkerboard.c:381 +#: plug-ins/common/compose.c:816 plug-ins/common/convmatrix.c:706 +#: plug-ins/common/cubism.c:338 plug-ins/common/decompose.c:914 +#: plug-ins/common/depthmerge.c:746 plug-ins/common/destripe.c:695 +#: plug-ins/common/gif.c:1263 plug-ins/common/jpeg.c:1000 +#: plug-ins/common/mail.c:491 plug-ins/common/oilify.c:460 +#: plug-ins/common/png.c:827 plug-ins/common/ps.c:2023 +#: plug-ins/common/ps.c:2290 plug-ins/common/xbm.c:959 +#: plug-ins/common/xpm.c:763 plug-ins/print/print.c:1104 msgid "OK" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1830 +#: plug-ins/common/CML_explorer.c:1830 msgid "The Graph" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1922 +#: plug-ins/common/CML_explorer.c:1922 msgid "Warning: the source and the destination are the same channel." msgstr "" #. Action Area -#: plug-ins/CML_explorer/CML_explorer.c:2010 +#: plug-ins/common/CML_explorer.c:2010 msgid "Execute" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2019 +#: plug-ins/common/CML_explorer.c:2019 msgid "Execute and Exit" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2027 +#: plug-ins/common/CML_explorer.c:2027 msgid "Exit" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2045 +#: plug-ins/common/CML_explorer.c:2045 msgid "Save parameters to" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2108 -#: plug-ins/CML_explorer/CML_explorer.c:2301 +#: plug-ins/common/CML_explorer.c:2108 plug-ins/common/CML_explorer.c:2301 #, c-format msgid "Error: could not open \"%s\"" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2173 +#: plug-ins/common/CML_explorer.c:2173 msgid "CML file operation warning" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2180 +#: plug-ins/common/CML_explorer.c:2180 #, c-format msgid "%s exists, overwrite?" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2223 +#: plug-ins/common/CML_explorer.c:2223 msgid "Load parameters from" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2225 +#: plug-ins/common/CML_explorer.c:2225 msgid "Selective load from" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2324 +#: plug-ins/common/CML_explorer.c:2324 msgid "Error: it's not CML parameter file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2331 +#: plug-ins/common/CML_explorer.c:2331 msgid "Warning: it's an old format file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2333 +#: plug-ins/common/CML_explorer.c:2333 msgid "Warning: Hmmm, it's a parameter file for newer CML_explorer than me." msgstr "" #. cancel button -#: plug-ins/CML_explorer/CML_explorer.c:2690 -#: plug-ins/Lighting/lighting_ui.c:1062 plug-ins/apply_lens/apply_lens.c:430 -#: plug-ins/blur/blur.c:621 plug-ins/bmp/bmpwrite.c:437 -#: plug-ins/bumpmap/bumpmap.c:979 plug-ins/checkerboard/checkerboard.c:390 -#: plug-ins/colorify/colorify.c:319 plug-ins/compose/compose.c:825 -#: plug-ins/convmatrix/convmatrix.c:723 plug-ins/cubism/cubism.c:347 -#: plug-ins/decompose/decompose.c:924 plug-ins/depthmerge/depthmerge.c:756 -#: plug-ins/destripe/destripe.c:704 plug-ins/gif/gif.c:1172 -#: plug-ins/jpeg/jpeg.c:1009 plug-ins/mail/mail.c:502 -#: plug-ins/oilify/oilify.c:469 plug-ins/png/png.c:1189 -#: plug-ins/print/print.c:1166 plug-ins/print/print.c:1272 -#: plug-ins/ps/ps.c:2008 plug-ins/ps/ps.c:2275 plug-ins/xbm/xbm.c:707 -#: plug-ins/xbm/xbm.c:969 plug-ins/xpm/xpm.c:772 +#: plug-ins/Lighting/lighting_ui.c:1062 plug-ins/bmp/bmpwrite.c:437 +#: plug-ins/common/CML_explorer.c:2690 plug-ins/common/apply_lens.c:430 +#: plug-ins/common/blur.c:621 plug-ins/common/bumpmap.c:979 +#: plug-ins/common/checkerboard.c:390 plug-ins/common/colorify.c:323 +#: plug-ins/common/compose.c:825 plug-ins/common/convmatrix.c:723 +#: plug-ins/common/cubism.c:347 plug-ins/common/decompose.c:924 +#: plug-ins/common/depthmerge.c:756 plug-ins/common/destripe.c:704 +#: plug-ins/common/gif.c:1172 plug-ins/common/jpeg.c:1009 +#: plug-ins/common/mail.c:502 plug-ins/common/oilify.c:469 +#: plug-ins/common/png.c:836 plug-ins/common/ps.c:2033 +#: plug-ins/common/ps.c:2300 plug-ins/common/xbm.c:707 +#: plug-ins/common/xbm.c:969 plug-ins/common/xpm.c:772 +#: plug-ins/print/print.c:991 plug-ins/print/print.c:1097 msgid "Cancel" msgstr "" @@ -867,23 +858,23 @@ msgstr "" msgid "Zoom out (make image smaller)" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:136 +#: plug-ins/common/apply_lens.c:136 msgid "Apply a lens effect" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:137 +#: plug-ins/common/apply_lens.c:137 msgid "This plug-in uses Snell's law to draw an ellipsoid lens over the image" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:141 +#: plug-ins/common/apply_lens.c:141 msgid "/Filters/Glass Effects/Apply Lens" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:200 +#: plug-ins/common/apply_lens.c:200 msgid "Applying lens..." msgstr "" -#: plug-ins/apply_lens/apply_lens.c:414 +#: plug-ins/common/apply_lens.c:414 msgid "Lens effect" msgstr "" @@ -892,40 +883,40 @@ msgstr "" #. * #. * First set up the basic containers, label them, etc. #. -#: plug-ins/apply_lens/apply_lens.c:439 plug-ins/blur/blur.c:607 -#: plug-ins/checkerboard/checkerboard.c:399 plug-ins/cubism/cubism.c:356 -#: plug-ins/jpeg/jpeg.c:1018 plug-ins/oilify/oilify.c:478 -#: plug-ins/png/png.c:1200 plug-ins/xpm/xpm.c:781 +#: plug-ins/common/apply_lens.c:439 plug-ins/common/blur.c:607 +#: plug-ins/common/checkerboard.c:399 plug-ins/common/cubism.c:356 +#: plug-ins/common/jpeg.c:1018 plug-ins/common/oilify.c:478 +#: plug-ins/common/png.c:847 plug-ins/common/xpm.c:781 msgid "Parameter Settings" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:448 +#: plug-ins/common/apply_lens.c:448 msgid "Keep original surroundings" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:461 +#: plug-ins/common/apply_lens.c:461 msgid "Set surroundings to index 0" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:462 +#: plug-ins/common/apply_lens.c:462 msgid "Set surroundings to background color" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:475 +#: plug-ins/common/apply_lens.c:475 msgid "Make surroundings transparent" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:490 +#: plug-ins/common/apply_lens.c:490 msgid "Lens refraction index: " msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:82 +#: plug-ins/common/autostretch_hsv.c:82 msgid "" "Automatically stretch the contrast of the specified drawable to cover all " "possible ranges." msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:83 +#: plug-ins/common/autostretch_hsv.c:83 msgid "" "This simple plug-in does an automatic contrast stretch. For each channel in " "the image, it finds the minimum and maximum values... it uses those values " @@ -935,52 +926,52 @@ msgid "" "space, and preserves hue." msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:87 +#: plug-ins/common/autostretch_hsv.c:87 msgid "/Image/Colors/Auto-Stretch HSV" msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:119 +#: plug-ins/common/autostretch_hsv.c:119 msgid "Auto-Stretching HSV..." msgstr "" -#: plug-ins/blur/blur.c:194 +#: plug-ins/common/blur.c:194 msgid "Apply a 3x3 blurring convolution kernel to the specified drawable." msgstr "" -#: plug-ins/blur/blur.c:195 +#: plug-ins/common/blur.c:195 msgid "" "This plug-in randomly blurs the specified drawable, using a 3x3 blur. You " "control the percentage of the pixels that are blurred and the number of " "times blurring is applied. Indexed images are not supported." msgstr "" -#: plug-ins/blur/blur.c:208 +#: plug-ins/common/blur.c:208 msgid "/Filters/Blur/Blur" msgstr "" -#: plug-ins/blur/blur.c:620 +#: plug-ins/common/blur.c:620 msgid "Accept settings and apply filter to image" msgstr "" -#: plug-ins/blur/blur.c:622 +#: plug-ins/common/blur.c:622 msgid "Close plug-in without making any changes" msgstr "" #. #. * Randomization seed initialization controls #. -#: plug-ins/blur/blur.c:626 +#: plug-ins/common/blur.c:626 msgid "Randomization Seed:" msgstr "" #. #. * Time button #. -#: plug-ins/blur/blur.c:637 +#: plug-ins/common/blur.c:637 msgid "Current Time" msgstr "" -#: plug-ins/blur/blur.c:638 +#: plug-ins/common/blur.c:638 msgid "" "Seed random number generator from the current time - this guarantees a " "reasonable randomization" @@ -989,39 +980,39 @@ msgstr "" #. #. * User button #. -#: plug-ins/blur/blur.c:648 +#: plug-ins/common/blur.c:648 msgid "Other Value" msgstr "" -#: plug-ins/blur/blur.c:649 +#: plug-ins/common/blur.c:649 msgid "" "Enable user-entered value for random number generator seed - this allows you " "to repeat a given \"random\" operation" msgstr "" -#: plug-ins/blur/blur.c:661 +#: plug-ins/common/blur.c:661 msgid "Value for seeding the random number generator" msgstr "" #. #. * Randomization percentage label & scale (1 to 100) #. -#: plug-ins/blur/blur.c:666 +#: plug-ins/common/blur.c:666 msgid "Randomization %:" msgstr "" -#: plug-ins/blur/blur.c:669 +#: plug-ins/common/blur.c:669 msgid "Percentage of pixels to be filtered" msgstr "" #. #. * Repeat count label & scale (1 to 100) #. -#: plug-ins/blur/blur.c:674 +#: plug-ins/common/blur.c:674 msgid "Repeat:" msgstr "" -#: plug-ins/blur/blur.c:677 +#: plug-ins/common/blur.c:677 msgid "Number of times to apply filter" msgstr "" @@ -1033,9 +1024,10 @@ msgstr "" msgid "Saves files in Windows BMP file format" msgstr "" -#: plug-ins/bmp/bmpread.c:27 plug-ins/gifload/gifload.c:287 -#: plug-ins/jpeg/jpeg.c:494 plug-ins/png/png.c:700 plug-ins/png/png.c:702 -#: plug-ins/xbm/xbm.c:523 plug-ins/xpm/xpm.c:300 +#: plug-ins/bmp/bmpread.c:27 plug-ins/common/gifload.c:287 +#: plug-ins/common/jpeg.c:494 plug-ins/common/png.c:345 +#: plug-ins/common/png.c:347 plug-ins/common/xbm.c:523 +#: plug-ins/common/xpm.c:300 #, c-format msgid "Loading %s:" msgstr "" @@ -1074,9 +1066,10 @@ msgstr "" #. * Create the "background" layer to hold the image... #. #: plug-ins/bmp/bmpread.c:210 plug-ins/bmp/bmpread.c:218 -#: plug-ins/bmp/bmpread.c:224 plug-ins/compose/compose.c:562 -#: plug-ins/decompose/decompose.c:472 plug-ins/gifload/gifload.c:828 -#: plug-ins/jpeg/jpeg.c:611 plug-ins/png/png.c:810 plug-ins/xbm/xbm.c:612 +#: plug-ins/bmp/bmpread.c:224 plug-ins/common/compose.c:562 +#: plug-ins/common/decompose.c:472 plug-ins/common/gifload.c:828 +#: plug-ins/common/jpeg.c:611 plug-ins/common/png.c:455 +#: plug-ins/common/xbm.c:612 msgid "Background" msgstr "" @@ -1089,9 +1082,10 @@ msgstr "" msgid "can't open %s\n" msgstr "" -#: plug-ins/bmp/bmpwrite.c:154 plug-ins/jpeg/jpeg.c:759 plug-ins/png/png.c:950 -#: plug-ins/png/png.c:952 plug-ins/ps/ps.c:680 plug-ins/xbm/xbm.c:777 -#: plug-ins/xpm/xpm.c:611 plug-ins/xwd/xwd.c:503 +#: plug-ins/bmp/bmpwrite.c:154 plug-ins/common/jpeg.c:759 +#: plug-ins/common/png.c:595 plug-ins/common/png.c:597 +#: plug-ins/common/ps.c:673 plug-ins/common/xbm.c:777 +#: plug-ins/common/xpm.c:611 plug-ins/common/xwd.c:507 #, c-format msgid "Saving %s:" msgstr "" @@ -1129,310 +1123,310 @@ msgstr "" msgid "Bucket Size:" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:298 +#: plug-ins/common/bumpmap.c:298 msgid "Linear map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:299 +#: plug-ins/common/bumpmap.c:299 msgid "Spherical map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:300 +#: plug-ins/common/bumpmap.c:300 msgid "Sinusoidal map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:346 +#: plug-ins/common/bumpmap.c:346 msgid "Create an embossing effect using an image as a bump map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:354 +#: plug-ins/common/bumpmap.c:354 msgid "/Filters/Map/Bump Map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:500 +#: plug-ins/common/bumpmap.c:500 msgid "Bump-mapping..." msgstr "" #. Bump map menu -#: plug-ins/bumpmap/bumpmap.c:830 plug-ins/bumpmap/bumpmap.c:939 +#: plug-ins/common/bumpmap.c:830 plug-ins/common/bumpmap.c:939 msgid "Bump map" msgstr "" #. Compensate darkening -#: plug-ins/bumpmap/bumpmap.c:884 +#: plug-ins/common/bumpmap.c:884 msgid "Compensate for darkening" msgstr "" #. Invert bumpmap -#: plug-ins/bumpmap/bumpmap.c:895 +#: plug-ins/common/bumpmap.c:895 msgid "Invert bumpmap" msgstr "" #. Controls -#: plug-ins/bumpmap/bumpmap.c:958 +#: plug-ins/common/bumpmap.c:958 msgid "Azimuth" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:959 +#: plug-ins/common/bumpmap.c:959 msgid "Elevation" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:960 +#: plug-ins/common/bumpmap.c:960 msgid "Depth" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:961 +#: plug-ins/common/bumpmap.c:961 msgid "X offset" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:962 +#: plug-ins/common/bumpmap.c:962 msgid "Y offset" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:963 +#: plug-ins/common/bumpmap.c:963 msgid "Waterlevel" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:964 +#: plug-ins/common/bumpmap.c:964 msgid "Ambient" msgstr "" -#: plug-ins/bz2/bz2.c:293 plug-ins/bz2/bz2.c:358 +#: plug-ins/common/bz2.c:293 plug-ins/common/bz2.c:358 #, c-format msgid "bz2: fork failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:300 plug-ins/bz2/bz2.c:365 +#: plug-ins/common/bz2.c:300 plug-ins/common/bz2.c:365 #, c-format msgid "bz2: fopen failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:306 plug-ins/bz2/bz2.c:371 +#: plug-ins/common/bz2.c:306 plug-ins/common/bz2.c:371 #, c-format msgid "bz2: dup2 failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:310 +#: plug-ins/common/bz2.c:310 #, c-format msgid "bz2: exec failed: bzip2: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:324 plug-ins/bz2/bz2.c:389 +#: plug-ins/common/bz2.c:324 plug-ins/common/bz2.c:389 #, c-format msgid "bz2: bzip2 exited abnormally on file %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:375 +#: plug-ins/common/bz2.c:375 #, c-format msgid "bz2: exec failed: bunzip2: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:443 +#: plug-ins/common/bz2.c:443 msgid "bz2: can't open bzip2ed file without a sensible extension\n" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:97 +#: plug-ins/common/checkerboard.c:97 msgid "Adds a checkerboard pattern to an image" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:102 +#: plug-ins/common/checkerboard.c:102 msgid "/Filters/Render/Checkerboard" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:164 +#: plug-ins/common/checkerboard.c:164 msgid "Adding Checkerboard..." msgstr "" -#: plug-ins/checkerboard/checkerboard.c:374 +#: plug-ins/common/checkerboard.c:374 msgid "Checkerboard" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:407 +#: plug-ins/common/checkerboard.c:407 msgid "Psychobilly" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:415 +#: plug-ins/common/checkerboard.c:415 msgid "Check Size" msgstr "" -#: plug-ins/colorify/colorify.c:122 +#: plug-ins/common/colorify.c:122 msgid "Similar to the \"Color\" mode for layers." msgstr "" -#: plug-ins/colorify/colorify.c:123 +#: plug-ins/common/colorify.c:123 msgid "Makes an average of the RGB channels and uses it to set the color" msgstr "" -#: plug-ins/colorify/colorify.c:126 +#: plug-ins/common/colorify.c:126 msgid "/Filters/Colors/Colorify" msgstr "" -#: plug-ins/colorify/colorify.c:194 +#: plug-ins/common/colorify.c:194 msgid "Colorifying..." msgstr "" -#: plug-ins/colorify/colorify.c:304 +#: plug-ins/common/colorify.c:308 msgid "Colorify" msgstr "" -#: plug-ins/colorify/colorify.c:310 +#: plug-ins/common/colorify.c:314 msgid "Ok" msgstr "" -#: plug-ins/colorify/colorify.c:327 plug-ins/print/print.c:1023 -#: plug-ins/xpm/xpm.c:406 +#: plug-ins/common/colorify.c:331 plug-ins/common/xpm.c:406 +#: plug-ins/print/print.c:848 msgid "Color" msgstr "" -#: plug-ins/colorify/colorify.c:340 +#: plug-ins/common/colorify.c:344 msgid "Custom Color: " msgstr "" -#: plug-ins/colorify/colorify.c:430 +#: plug-ins/common/colorify.c:434 msgid "Colorify Custom Color" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/decompose/decompose.c:129 +#: plug-ins/common/compose.c:125 plug-ins/common/decompose.c:129 msgid "RGB" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Red:" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Green: " msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Blue:" msgstr "" -#: plug-ins/compose/compose.c:126 +#: plug-ins/common/compose.c:126 msgid "rgb-compose" msgstr "" -#: plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:127 msgid "RGBA" msgstr "" -#: plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:127 msgid "Alpha:" msgstr "" -#: plug-ins/compose/compose.c:128 +#: plug-ins/common/compose.c:128 msgid "rgba-compose" msgstr "" -#: plug-ins/compose/compose.c:129 plug-ins/decompose/decompose.c:133 +#: plug-ins/common/compose.c:129 plug-ins/common/decompose.c:133 msgid "HSV" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Hue:" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Saturation:" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Value:" msgstr "" -#: plug-ins/compose/compose.c:130 +#: plug-ins/common/compose.c:130 msgid "hsv-compose" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/decompose/decompose.c:138 +#: plug-ins/common/compose.c:131 plug-ins/common/decompose.c:138 msgid "CMY" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Cyan:" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Magenta: " msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Yellow:" msgstr "" -#: plug-ins/compose/compose.c:132 +#: plug-ins/common/compose.c:132 msgid "cmy-compose" msgstr "" -#: plug-ins/compose/compose.c:133 plug-ins/decompose/decompose.c:143 +#: plug-ins/common/compose.c:133 plug-ins/common/decompose.c:143 msgid "CMYK" msgstr "" -#: plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:133 msgid "Black:" msgstr "" -#: plug-ins/compose/compose.c:134 +#: plug-ins/common/compose.c:134 msgid "cmyk-compose" msgstr "" -#: plug-ins/compose/compose.c:228 +#: plug-ins/common/compose.c:228 msgid "Compose an image from multiple gray images" msgstr "" -#: plug-ins/compose/compose.c:229 +#: plug-ins/common/compose.c:229 msgid "This function creates a new image from multiple gray images" msgstr "" -#: plug-ins/compose/compose.c:234 +#: plug-ins/common/compose.c:234 msgid "/Image/Channel Ops/Compose" msgstr "" -#: plug-ins/compose/compose.c:241 +#: plug-ins/common/compose.c:241 msgid "Compose an image from multiple drawables of gray images" msgstr "" -#: plug-ins/compose/compose.c:242 +#: plug-ins/common/compose.c:242 msgid "" "This function creates a new image from multiple drawables of gray images" msgstr "" -#: plug-ins/compose/compose.c:305 +#: plug-ins/common/compose.c:305 #, c-format msgid "compose: Could not get layers for image %d" msgstr "" -#: plug-ins/compose/compose.c:354 +#: plug-ins/common/compose.c:354 msgid "Composing..." msgstr "" -#: plug-ins/compose/compose.c:421 +#: plug-ins/common/compose.c:421 msgid "compose: drawables have different size" msgstr "" -#: plug-ins/compose/compose.c:438 +#: plug-ins/common/compose.c:438 msgid "compose: images have different size" msgstr "" -#: plug-ins/compose/compose.c:451 +#: plug-ins/common/compose.c:451 msgid "compose: error in getting layer IDs" msgstr "" -#: plug-ins/compose/compose.c:468 +#: plug-ins/common/compose.c:468 #, c-format msgid "compose: image is not a gray image (bpp=%d)" msgstr "" -#: plug-ins/compose/compose.c:483 plug-ins/compose/compose.c:498 +#: plug-ins/common/compose.c:483 plug-ins/common/compose.c:498 msgid "compose: not enough memory" msgstr "" -#: plug-ins/compose/compose.c:809 +#: plug-ins/common/compose.c:809 msgid "Compose" msgstr "" #. The left frame keeps the compose type toggles -#: plug-ins/compose/compose.c:841 +#: plug-ins/common/compose.c:841 msgid "Compose channels:" msgstr "" @@ -1440,324 +1434,324 @@ msgstr "" #. 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/compose/compose.c:855 +#: plug-ins/common/compose.c:855 msgid "Channel representations:" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 +#: plug-ins/common/convmatrix.c:76 msgid "Grey" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:130 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:130 msgid "Red" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:131 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:131 msgid "Green" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:132 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:132 msgid "Blue" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:148 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:148 msgid "Alpha" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:80 +#: plug-ins/common/convmatrix.c:80 msgid "Extend" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:80 +#: plug-ins/common/convmatrix.c:80 msgid "Wrap" msgstr "" #. Action area -#: plug-ins/convmatrix/convmatrix.c:80 plug-ins/gif/gif.c:1163 +#: plug-ins/common/convmatrix.c:80 plug-ins/common/gif.c:1163 msgid "Crop" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:173 +#: plug-ins/common/convmatrix.c:173 msgid "A generic 5x5 convolution matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:178 +#: plug-ins/common/convmatrix.c:178 msgid "/Filters/Generic/Convolution Matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:239 +#: plug-ins/common/convmatrix.c:239 msgid "Applying convolution" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:700 +#: plug-ins/common/convmatrix.c:700 msgid "Convolution Matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:715 +#: plug-ins/common/convmatrix.c:715 msgid "Defaults" msgstr "" #. Outbox:YABox:Frame -#: plug-ins/convmatrix/convmatrix.c:741 +#: plug-ins/common/convmatrix.c:741 msgid "Matrix" msgstr "" #. divisor -#: plug-ins/convmatrix/convmatrix.c:788 +#: plug-ins/common/convmatrix.c:788 msgid "Divisor" msgstr "" #. Offset -#: plug-ins/convmatrix/convmatrix.c:803 plug-ins/depthmerge/depthmerge.c:728 +#: plug-ins/common/convmatrix.c:803 plug-ins/common/depthmerge.c:728 msgid "Offset" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:823 +#: plug-ins/common/convmatrix.c:823 msgid "Automatic" msgstr "" #. Alpha-weighting -#: plug-ins/convmatrix/convmatrix.c:832 +#: plug-ins/common/convmatrix.c:832 msgid "Alpha-weighting" msgstr "" #. Wrap-modes #. OutBox:Inbox:Frame -#: plug-ins/convmatrix/convmatrix.c:847 +#: plug-ins/common/convmatrix.c:847 msgid "Border" msgstr "" #. OutBox:Inbox:Frame -#: plug-ins/convmatrix/convmatrix.c:875 +#: plug-ins/common/convmatrix.c:875 msgid "Channels" msgstr "" -#: plug-ins/cubism/cubism.c:181 +#: plug-ins/common/cubism.c:181 msgid "Convert the input drawable into a collection of rotated squares" msgstr "" -#: plug-ins/cubism/cubism.c:186 +#: plug-ins/common/cubism.c:186 msgid "/Filters/Artistic/Cubism" msgstr "" -#: plug-ins/cubism/cubism.c:298 +#: plug-ins/common/cubism.c:298 msgid "Cubistic Transformation" msgstr "" -#: plug-ins/cubism/cubism.c:331 +#: plug-ins/common/cubism.c:331 msgid "Cubism" msgstr "" -#: plug-ins/cubism/cubism.c:364 +#: plug-ins/common/cubism.c:364 msgid "Use Background Color" msgstr "" -#: plug-ins/cubism/cubism.c:372 +#: plug-ins/common/cubism.c:372 msgid "Tile Size" msgstr "" -#: plug-ins/cubism/cubism.c:388 +#: plug-ins/common/cubism.c:388 msgid "Tile Saturation" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:130 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:130 msgid "red" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:131 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:131 msgid "green" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:132 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:132 msgid "blue" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:135 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:135 msgid "hue" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:136 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:136 msgid "saturation" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:137 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:137 msgid "value" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:140 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:140 msgid "cyan" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:141 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:141 msgid "magenta" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:142 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:142 msgid "yellow" msgstr "" -#: plug-ins/decompose/decompose.c:140 +#: plug-ins/common/decompose.c:140 msgid "Cyan" msgstr "" -#: plug-ins/decompose/decompose.c:141 +#: plug-ins/common/decompose.c:141 msgid "Magenta" msgstr "" -#: plug-ins/decompose/decompose.c:142 +#: plug-ins/common/decompose.c:142 msgid "Yellow" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:145 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:145 msgid "cyan_k" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:146 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:146 msgid "magenta_k" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:147 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:147 msgid "yellow_k" msgstr "" -#: plug-ins/decompose/decompose.c:144 +#: plug-ins/common/decompose.c:144 msgid "black" msgstr "" -#: plug-ins/decompose/decompose.c:145 +#: plug-ins/common/decompose.c:145 msgid "Cyan_K" msgstr "" -#: plug-ins/decompose/decompose.c:146 +#: plug-ins/common/decompose.c:146 msgid "Magenta_K" msgstr "" -#: plug-ins/decompose/decompose.c:147 +#: plug-ins/common/decompose.c:147 msgid "Yellow_K" msgstr "" -#: plug-ins/decompose/decompose.c:148 +#: plug-ins/common/decompose.c:148 msgid "alpha" msgstr "" -#: plug-ins/decompose/decompose.c:216 +#: plug-ins/common/decompose.c:216 msgid "Decompose an image into different types of channels" msgstr "" -#: plug-ins/decompose/decompose.c:217 +#: plug-ins/common/decompose.c:217 msgid "" "This function creates new gray images with different channel information in " "each of them" msgstr "" -#: plug-ins/decompose/decompose.c:222 +#: plug-ins/common/decompose.c:222 msgid "/Image/Channel Ops/Decompose" msgstr "" -#: plug-ins/decompose/decompose.c:303 +#: plug-ins/common/decompose.c:303 msgid "plug_in_decompose: Can only work on RGB*_IMAGE" msgstr "" -#: plug-ins/decompose/decompose.c:309 +#: plug-ins/common/decompose.c:309 msgid "Decomposing..." msgstr "" -#: plug-ins/decompose/decompose.c:374 +#: plug-ins/common/decompose.c:374 msgid "decompose: not an RGB image" msgstr "" -#: plug-ins/decompose/decompose.c:380 +#: plug-ins/common/decompose.c:380 msgid "decompose: No alpha channel available" msgstr "" -#: plug-ins/decompose/decompose.c:409 +#: plug-ins/common/decompose.c:409 msgid "decompose: out of memory" msgstr "" -#: plug-ins/decompose/decompose.c:901 plug-ins/decompose/decompose.c:907 +#: plug-ins/common/decompose.c:901 plug-ins/common/decompose.c:907 msgid "Decompose" msgstr "" #. parameter settings -#: plug-ins/decompose/decompose.c:934 +#: plug-ins/common/decompose.c:934 msgid "Extract channels:" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:194 +#: plug-ins/common/depthmerge.c:194 msgid "Combine two images using corresponding depth maps (z-buffers)" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:195 +#: plug-ins/common/depthmerge.c:195 msgid "" "Taking as input two full-colour, full-alpha images and two corresponding " "grayscale depth maps, this plug-in combines the images based on which is " "closer (has a lower depth map value) at each point." msgstr "" -#: plug-ins/depthmerge/depthmerge.c:202 +#: plug-ins/common/depthmerge.c:202 msgid "/Filters/Combine/Depth Merge" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:369 +#: plug-ins/common/depthmerge.c:369 msgid "Depth-merging..." msgstr "" -#: plug-ins/depthmerge/depthmerge.c:609 +#: plug-ins/common/depthmerge.c:609 msgid "Depth Merge" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:647 +#: plug-ins/common/depthmerge.c:647 msgid "Source 1" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:664 plug-ins/depthmerge/depthmerge.c:698 +#: plug-ins/common/depthmerge.c:664 plug-ins/common/depthmerge.c:698 msgid "Depth Map" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:681 +#: plug-ins/common/depthmerge.c:681 msgid "Source 2" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:723 +#: plug-ins/common/depthmerge.c:723 msgid "Overlap" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:733 +#: plug-ins/common/depthmerge.c:733 msgid "Scale 1" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:738 +#: plug-ins/common/depthmerge.c:738 msgid "Scale 2" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:1181 +#: plug-ins/common/depthmerge.c:1181 msgid "" "Warning: I don't _like_ this color space. This is a suggestion, not a " "threat.\n" msgstr "" -#: plug-ins/destripe/destripe.c:151 +#: plug-ins/common/destripe.c:151 msgid "" "Destripe filter, used to remove vertical stripes caused by cheap scanners." msgstr "" -#: plug-ins/destripe/destripe.c:152 +#: plug-ins/common/destripe.c:152 msgid "This plug-in tries to remove vertical stripes from an image." msgstr "" -#: plug-ins/destripe/destripe.c:155 +#: plug-ins/common/destripe.c:155 msgid "/Filters/Enhance/Destripe" msgstr "" -#: plug-ins/destripe/destripe.c:358 +#: plug-ins/common/destripe.c:358 msgid "Destriping..." msgstr "" -#: plug-ins/destripe/destripe.c:589 +#: plug-ins/common/destripe.c:589 msgid "Destripe" msgstr "" -#: plug-ins/destripe/destripe.c:663 +#: plug-ins/common/destripe.c:663 msgid "Histogram" msgstr "" @@ -1773,36 +1767,36 @@ msgstr "" #. #. * Box size (radius) control... #. -#: plug-ins/destripe/destripe.c:687 +#: plug-ins/common/destripe.c:687 msgid "Width" msgstr "" -#: plug-ins/gif/gif.c:408 +#: plug-ins/common/gif.c:408 msgid "saves files in Compuserve GIF file format" msgstr "" -#: plug-ins/gif/gif.c:682 +#: plug-ins/common/gif.c:682 msgid "GIF: Couldn't simply reduce colours further. Saving as opaque.\n" msgstr "" -#: plug-ins/gif/gif.c:938 +#: plug-ins/common/gif.c:938 msgid "" "GIF: Sorry, can't save RGB images as GIFs - convert to INDEXED\n" "or GRAY first.\n" msgstr "" -#: plug-ins/gif/gif.c:957 +#: plug-ins/common/gif.c:957 #, c-format msgid "GIF: can't open %s\n" msgstr "" -#: plug-ins/gif/gif.c:1064 +#: plug-ins/common/gif.c:1064 msgid "" "Transparent colour *might* be incorrect on viewers which don't support " "transparency." msgstr "" -#: plug-ins/gif/gif.c:1196 +#: plug-ins/common/gif.c:1196 msgid "" "The image which you are trying to save as a GIF\n" "contains layers which extend beyond the actual\n" @@ -1813,339 +1807,339 @@ msgid "" "the image borders, or cancel this save." msgstr "" -#: plug-ins/gif/gif.c:1252 +#: plug-ins/common/gif.c:1252 msgid "Save as GIF" msgstr "" #. regular gif parameter settings -#: plug-ins/gif/gif.c:1286 +#: plug-ins/common/gif.c:1286 msgid "GIF Options" msgstr "" -#: plug-ins/gif/gif.c:1294 plug-ins/png/png.c:1209 +#: plug-ins/common/gif.c:1294 plug-ins/common/png.c:856 msgid "Interlace" msgstr "" -#: plug-ins/gif/gif.c:1306 +#: plug-ins/common/gif.c:1306 msgid "GIF Comment: " msgstr "" -#: plug-ins/gif/gif.c:1339 plug-ins/gif/gif.c:1340 +#: plug-ins/common/gif.c:1339 plug-ins/common/gif.c:1340 msgid "Made with GIMP" msgstr "" #. additional animated gif parameter settings -#: plug-ins/gif/gif.c:1365 +#: plug-ins/common/gif.c:1365 msgid "Animated GIF Options" msgstr "" -#: plug-ins/gif/gif.c:1373 +#: plug-ins/common/gif.c:1373 msgid "Loop forever" msgstr "" -#: plug-ins/gif/gif.c:1386 +#: plug-ins/common/gif.c:1386 msgid "Delay between frames where unspecified: " msgstr "" -#: plug-ins/gif/gif.c:1400 +#: plug-ins/common/gif.c:1400 msgid " milliseconds" msgstr "" -#: plug-ins/gif/gif.c:1411 +#: plug-ins/common/gif.c:1411 msgid "Frame disposal where unspecified: " msgstr "" -#: plug-ins/gif/gif.c:1421 +#: plug-ins/common/gif.c:1421 msgid "I don't care" msgstr "" -#: plug-ins/gif/gif.c:1427 +#: plug-ins/common/gif.c:1427 msgid "Cumulative layers (combine)" msgstr "" -#: plug-ins/gif/gif.c:1433 +#: plug-ins/common/gif.c:1433 msgid "One frame per layer (replace)" msgstr "" -#: plug-ins/gif/gif.c:1491 +#: plug-ins/common/gif.c:1491 #, c-format msgid "GIF: colorstobpp - Eep! too many colours: %d\n" msgstr "" -#: plug-ins/gif/gif.c:1507 +#: plug-ins/common/gif.c:1507 #, c-format msgid "GIF: bpptocolors - Eep! bpp==%d !\n" msgstr "" -#: plug-ins/gifload/gifload.c:134 +#: plug-ins/common/gifload.c:134 msgid "loads files of Compuserve GIF file format" msgstr "" -#: plug-ins/gifload/gifload.c:279 +#: plug-ins/common/gifload.c:279 #, c-format msgid "GIF: can't open \"%s\"\n" msgstr "" -#: plug-ins/gifload/gifload.c:294 +#: plug-ins/common/gifload.c:294 msgid "GIF: error reading magic number\n" msgstr "" -#: plug-ins/gifload/gifload.c:300 +#: plug-ins/common/gifload.c:300 msgid "GIF: not a GIF file\n" msgstr "" -#: plug-ins/gifload/gifload.c:309 +#: plug-ins/common/gifload.c:309 msgid "GIF: bad version number, not '87a' or '89a'\n" msgstr "" -#: plug-ins/gifload/gifload.c:315 +#: plug-ins/common/gifload.c:315 msgid "GIF: failed to read screen descriptor\n" msgstr "" -#: plug-ins/gifload/gifload.c:331 +#: plug-ins/common/gifload.c:331 msgid "GIF: error reading global colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:338 +#: plug-ins/common/gifload.c:338 msgid "GIF: warning - non-square pixels\n" msgstr "" -#: plug-ins/gifload/gifload.c:349 plug-ins/gifload/gifload.c:803 +#: plug-ins/common/gifload.c:349 plug-ins/common/gifload.c:803 msgid "GIF: EOF / read error on image data\n" msgstr "" -#: plug-ins/gifload/gifload.c:364 +#: plug-ins/common/gifload.c:364 msgid "GIF: OF / read error on extension function code\n" msgstr "" #. Not a valid start character -#: plug-ins/gifload/gifload.c:374 +#: plug-ins/common/gifload.c:374 #, c-format msgid "GIF: bogus character 0x%02x, ignoring\n" msgstr "" -#: plug-ins/gifload/gifload.c:382 +#: plug-ins/common/gifload.c:382 msgid "GIF: couldn't read left/top/width/height\n" msgstr "" -#: plug-ins/gifload/gifload.c:394 +#: plug-ins/common/gifload.c:394 msgid "GIF: error reading local colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:452 +#: plug-ins/common/gifload.c:452 msgid "GIF: bad colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:568 +#: plug-ins/common/gifload.c:568 msgid "GIF: error in getting DataBlock size\n" msgstr "" -#: plug-ins/gifload/gifload.c:576 +#: plug-ins/common/gifload.c:576 msgid "GIF: error in reading DataBlock\n" msgstr "" -#: plug-ins/gifload/gifload.c:607 +#: plug-ins/common/gifload.c:607 msgid "GIF: ran off the end of by bits\n" msgstr "" -#: plug-ins/gifload/gifload.c:718 +#: plug-ins/common/gifload.c:718 msgid "GIF: missing EOD in data stream (common occurence)" msgstr "" -#: plug-ins/gifload/gifload.c:735 +#: plug-ins/common/gifload.c:735 msgid "GIF: circular table entry BIG ERROR\n" msgstr "" -#: plug-ins/gifload/gifload.c:809 +#: plug-ins/common/gifload.c:809 msgid "GIF: error while reading\n" msgstr "" -#: plug-ins/gifload/gifload.c:830 +#: plug-ins/common/gifload.c:830 #, c-format msgid "Background (%dms)" msgstr "" -#: plug-ins/gifload/gifload.c:877 +#: plug-ins/common/gifload.c:877 #, c-format msgid "Frame %d" msgstr "" -#: plug-ins/gifload/gifload.c:879 +#: plug-ins/common/gifload.c:879 #, c-format msgid "Frame %d (%dms)" msgstr "" #. 'don't care' -#: plug-ins/gifload/gifload.c:885 plug-ins/gifload/gifload.c:887 +#: plug-ins/common/gifload.c:885 plug-ins/common/gifload.c:887 msgid " (combine)" msgstr "" -#: plug-ins/gifload/gifload.c:886 +#: plug-ins/common/gifload.c:886 msgid " (replace)" msgstr "" -#: plug-ins/gifload/gifload.c:892 +#: plug-ins/common/gifload.c:892 msgid " (unknown disposal)" msgstr "" -#: plug-ins/gifload/gifload.c:893 +#: plug-ins/common/gifload.c:893 msgid "" "GIF: Hmm... please forward this GIF to the GIF plugin author!\n" " (adam@foxbox.org)\n" msgstr "" -#: plug-ins/gifload/gifload.c:896 +#: plug-ins/common/gifload.c:896 msgid "GIF: Something got corrupted.\n" msgstr "" -#: plug-ins/gifload/gifload.c:925 +#: plug-ins/common/gifload.c:925 #, c-format msgid "GIF: reading %d by %d%s GIF image, ncols=%d\n" msgstr "" -#: plug-ins/gifload/gifload.c:926 +#: plug-ins/common/gifload.c:926 msgid " interlaced" msgstr "" -#: plug-ins/gifload/gifload.c:930 +#: plug-ins/common/gifload.c:930 msgid "" "GIF: Ouchie! Can't handle non-alpha RGB frames.\n" " Please mail the plugin author. (adam@gimp.org)\n" msgstr "" -#: plug-ins/gifload/gifload.c:1022 +#: plug-ins/common/gifload.c:1022 msgid "GIF: too much input data, ignoring extra...\n" msgstr "" -#: plug-ins/jpeg/jpeg.c:176 +#: plug-ins/common/jpeg.c:176 msgid "loads files of the jpeg file format" msgstr "" -#: plug-ins/jpeg/jpeg.c:487 +#: plug-ins/common/jpeg.c:487 #, c-format msgid "can't open \"%s\"\n" msgstr "" -#: plug-ins/jpeg/jpeg.c:603 +#: plug-ins/common/jpeg.c:603 #, c-format msgid "" "don't know how to load JPEGs\n" "with %d color channels" msgstr "" -#: plug-ins/jpeg/jpeg.c:648 +#: plug-ins/common/jpeg.c:648 #, c-format msgid "" "unknown density unit %d\n" "assuming dots per inch" msgstr "" -#: plug-ins/jpeg/jpeg.c:993 +#: plug-ins/common/jpeg.c:993 msgid "Save as Jpeg" msgstr "" -#: plug-ins/jpeg/jpeg.c:1026 +#: plug-ins/common/jpeg.c:1026 msgid "Quality" msgstr "" -#: plug-ins/jpeg/jpeg.c:1042 +#: plug-ins/common/jpeg.c:1042 msgid "Smoothing" msgstr "" -#: plug-ins/jpeg/jpeg.c:1058 +#: plug-ins/common/jpeg.c:1058 msgid "Optimize" msgstr "" -#: plug-ins/jpeg/jpeg.c:1066 +#: plug-ins/common/jpeg.c:1066 msgid "Progressive" msgstr "" -#: plug-ins/jpeg/jpeg.c:1079 +#: plug-ins/common/jpeg.c:1079 msgid "Image Comments" msgstr "" -#: plug-ins/mail/mail.c:212 +#: plug-ins/common/mail.c:212 msgid "pipe files to uuencode then mail them" msgstr "" -#: plug-ins/mail/mail.c:213 +#: plug-ins/common/mail.c:213 msgid "You need to have uuencode and mail installed" msgstr "" -#: plug-ins/mail/mail.c:217 +#: plug-ins/common/mail.c:217 msgid "/File/Mail image" msgstr "" -#: plug-ins/mail/mail.c:486 +#: plug-ins/common/mail.c:486 msgid "Send to mail" msgstr "" #. filename label -#: plug-ins/mail/mail.c:620 +#: plug-ins/common/mail.c:620 msgid "Filename:" msgstr "" #. Encapsulation label -#: plug-ins/mail/mail.c:674 +#: plug-ins/common/mail.c:674 msgid "Encapsulation:" msgstr "" #. Encapsulation radiobutton -#: plug-ins/mail/mail.c:683 +#: plug-ins/common/mail.c:683 msgid "Uuencode" msgstr "" -#: plug-ins/mail/mail.c:685 +#: plug-ins/common/mail.c:685 msgid "MIME" msgstr "" -#: plug-ins/mail/mail.c:799 +#: plug-ins/common/mail.c:799 msgid "mail: some sort of error with the file extension or lack thereof \n" msgstr "" -#: plug-ins/oilify/oilify.c:122 +#: plug-ins/common/oilify.c:122 msgid "Modify the specified drawable to resemble an oil painting" msgstr "" -#: plug-ins/oilify/oilify.c:123 +#: plug-ins/common/oilify.c:123 msgid "" "This function performs the well-known oil-paint effect on the specified " "drawable. The size of the input mask is specified by 'mask_size'." msgstr "" -#: plug-ins/oilify/oilify.c:127 +#: plug-ins/common/oilify.c:127 msgid "/Filters/Artistic/Oilify" msgstr "" -#: plug-ins/oilify/oilify.c:198 +#: plug-ins/common/oilify.c:198 msgid "Oil Painting..." msgstr "" -#: plug-ins/oilify/oilify.c:453 +#: plug-ins/common/oilify.c:453 msgid "Oilify" msgstr "" -#: plug-ins/oilify/oilify.c:486 +#: plug-ins/common/oilify.c:486 msgid "Use intensity algorithm" msgstr "" -#: plug-ins/oilify/oilify.c:494 +#: plug-ins/common/oilify.c:494 msgid "Mask Size" msgstr "" -#: plug-ins/png/png.c:504 +#: plug-ins/common/png.c:149 msgid "Loads files in PNG file format" msgstr "" -#: plug-ins/png/png.c:505 +#: plug-ins/common/png.c:150 msgid "This plug-in loads Portable Network Graphics (PNG) files." msgstr "" -#: plug-ins/png/png.c:1171 +#: plug-ins/common/png.c:818 msgid "PNG Options" msgstr "" -#: plug-ins/png/png.c:1216 +#: plug-ins/common/png.c:863 msgid "Compression level" msgstr "" @@ -2243,135 +2237,135 @@ msgstr "" msgid "600 DPI" msgstr "" -#: plug-ins/print/print.c:406 +#: plug-ins/print/print.c:229 msgid "PostScript Level 1" msgstr "" -#: plug-ins/print/print.c:408 +#: plug-ins/print/print.c:231 msgid "PostScript Level 2" msgstr "" -#: plug-ins/print/print.c:410 +#: plug-ins/print/print.c:233 msgid "HP DeskJet 500, 520" msgstr "" -#: plug-ins/print/print.c:412 +#: plug-ins/print/print.c:235 msgid "HP DeskJet 500C, 540C" msgstr "" -#: plug-ins/print/print.c:414 +#: plug-ins/print/print.c:237 msgid "HP DeskJet 550C, 560C" msgstr "" -#: plug-ins/print/print.c:416 +#: plug-ins/print/print.c:239 msgid "HP DeskJet 600 series" msgstr "" -#: plug-ins/print/print.c:418 +#: plug-ins/print/print.c:241 msgid "HP DeskJet 800 series" msgstr "" -#: plug-ins/print/print.c:420 +#: plug-ins/print/print.c:243 msgid "HP DeskJet 1100C, 1120C" msgstr "" -#: plug-ins/print/print.c:422 +#: plug-ins/print/print.c:245 msgid "HP DeskJet 1200C, 1600C" msgstr "" -#: plug-ins/print/print.c:424 +#: plug-ins/print/print.c:247 msgid "HP LaserJet II series" msgstr "" -#: plug-ins/print/print.c:426 +#: plug-ins/print/print.c:249 msgid "HP LaserJet III series" msgstr "" -#: plug-ins/print/print.c:428 +#: plug-ins/print/print.c:251 msgid "HP LaserJet 4 series" msgstr "" -#: plug-ins/print/print.c:430 +#: plug-ins/print/print.c:253 msgid "HP LaserJet 4V, 4Si" msgstr "" -#: plug-ins/print/print.c:432 +#: plug-ins/print/print.c:255 msgid "HP LaserJet 5 series" msgstr "" -#: plug-ins/print/print.c:434 +#: plug-ins/print/print.c:257 msgid "HP LaserJet 5Si" msgstr "" -#: plug-ins/print/print.c:436 +#: plug-ins/print/print.c:259 msgid "HP LaserJet 6 series" msgstr "" -#: plug-ins/print/print.c:438 +#: plug-ins/print/print.c:261 msgid "EPSON Stylus Color" msgstr "" -#: plug-ins/print/print.c:440 +#: plug-ins/print/print.c:263 msgid "EPSON Stylus Color Pro" msgstr "" -#: plug-ins/print/print.c:442 +#: plug-ins/print/print.c:265 msgid "EPSON Stylus Color Pro XL" msgstr "" -#: plug-ins/print/print.c:444 +#: plug-ins/print/print.c:267 msgid "EPSON Stylus Color 1500" msgstr "" -#: plug-ins/print/print.c:446 +#: plug-ins/print/print.c:269 msgid "EPSON Stylus Color 400" msgstr "" -#: plug-ins/print/print.c:448 +#: plug-ins/print/print.c:271 msgid "EPSON Stylus Color 500" msgstr "" -#: plug-ins/print/print.c:450 +#: plug-ins/print/print.c:273 msgid "EPSON Stylus Color 600" msgstr "" -#: plug-ins/print/print.c:452 +#: plug-ins/print/print.c:275 msgid "EPSON Stylus Color 800" msgstr "" -#: plug-ins/print/print.c:454 +#: plug-ins/print/print.c:277 msgid "EPSON Stylus Color 1520" msgstr "" -#: plug-ins/print/print.c:456 +#: plug-ins/print/print.c:279 msgid "EPSON Stylus Color 3000" msgstr "" -#: plug-ins/print/print.c:509 +#: plug-ins/print/print.c:332 msgid "This plug-in prints images from The GIMP." msgstr "" -#: plug-ins/print/print.c:510 +#: plug-ins/print/print.c:333 msgid "Prints images to PostScript, PCL, or ESC/P2 printers." msgstr "" -#: plug-ins/print/print.c:514 +#: plug-ins/print/print.c:337 msgid "/File/Print" msgstr "" -#: plug-ins/print/print.c:827 +#: plug-ins/print/print.c:650 msgid "Auto" msgstr "" -#: plug-ins/print/print.c:828 +#: plug-ins/print/print.c:651 msgid "Portrait" msgstr "" -#: plug-ins/print/print.c:829 +#: plug-ins/print/print.c:652 msgid "Landscape" msgstr "" -#: plug-ins/print/print.c:860 +#: plug-ins/print/print.c:685 #, c-format msgid "Print v%s" msgstr "" @@ -2379,354 +2373,351 @@ msgstr "" #. #. * Media size option menu... #. -#: plug-ins/print/print.c:910 +#: plug-ins/print/print.c:735 msgid "Media Size:" msgstr "" #. #. * Media type option menu... #. -#: plug-ins/print/print.c:926 +#: plug-ins/print/print.c:751 msgid "Media Type:" msgstr "" #. #. * Media source option menu... #. -#: plug-ins/print/print.c:942 +#: plug-ins/print/print.c:767 msgid "Media Source:" msgstr "" #. #. * Orientation option menu... #. -#: plug-ins/print/print.c:958 +#: plug-ins/print/print.c:783 msgid "Orientation:" msgstr "" #. #. * Resolution option menu... #. -#: plug-ins/print/print.c:988 plug-ins/ps/ps.c:1974 +#: plug-ins/common/ps.c:1999 plug-ins/print/print.c:813 msgid "Resolution:" msgstr "" #. #. * Output type toggles... #. -#: plug-ins/print/print.c:1004 +#: plug-ins/print/print.c:829 msgid "Output Type:" msgstr "" -#: plug-ins/print/print.c:1013 +#: plug-ins/print/print.c:838 msgid "B&W" msgstr "" #. #. * Scaling... #. -#: plug-ins/print/print.c:1036 +#: plug-ins/print/print.c:861 msgid "Scaling:" msgstr "" -#: plug-ins/print/print.c:1071 +#: plug-ins/print/print.c:896 msgid "Percent" msgstr "" -#: plug-ins/print/print.c:1080 +#: plug-ins/print/print.c:905 msgid "PPI" msgstr "" #. #. * Brightness slider... #. -#: plug-ins/print/print.c:1092 +#: plug-ins/print/print.c:917 msgid "Brightness:" msgstr "" #. #. * Printer option menu... #. -#: plug-ins/print/print.c:1127 +#: plug-ins/print/print.c:952 msgid "Printer:" msgstr "" -#: plug-ins/print/print.c:1153 plug-ins/print/print.c:1186 +#: plug-ins/print/print.c:978 plug-ins/print/print.c:1011 msgid "Setup" msgstr "" -#: plug-ins/print/print.c:1173 +#: plug-ins/print/print.c:998 msgid "Print" msgstr "" #. #. * Printer driver option menu... #. -#: plug-ins/print/print.c:1208 +#: plug-ins/print/print.c:1033 msgid "Driver:" msgstr "" #. #. * PPD file... #. -#: plug-ins/print/print.c:1233 +#: plug-ins/print/print.c:1058 msgid "PPD File:" msgstr "" -#: plug-ins/print/print.c:1246 +#: plug-ins/print/print.c:1071 msgid "Browse" msgstr "" #. #. * Print command... #. -#: plug-ins/print/print.c:1256 +#: plug-ins/print/print.c:1081 msgid "Command:" msgstr "" #. #. * Output file selection dialog... #. -#: plug-ins/print/print.c:1291 +#: plug-ins/print/print.c:1116 msgid "Print To File?" msgstr "" #. #. * PPD file selection dialog... #. -#: plug-ins/print/print.c:1301 +#: plug-ins/print/print.c:1126 msgid "PPD File?" msgstr "" -#: plug-ins/print/print.c:2287 +#: plug-ins/print/print.c:2112 msgid "File" msgstr "" -#: plug-ins/ps/ps.c:319 plug-ins/ps/ps.c:320 +#: plug-ins/common/ps.c:320 plug-ins/common/ps.c:321 msgid "load file of PostScript/PDF file format" msgstr "" -#: plug-ins/ps/ps.c:343 +#: plug-ins/common/ps.c:344 msgid "save file in PostScript file format" msgstr "" -#: plug-ins/ps/ps.c:344 +#: plug-ins/common/ps.c:345 msgid "" "PostScript saving handles all image types except those with alpha channels." msgstr "" -#: plug-ins/ps/ps.c:549 +#: plug-ins/common/ps.c:550 msgid "PS: can't open file for reading" msgstr "" -#: plug-ins/ps/ps.c:556 +#: plug-ins/common/ps.c:557 #, c-format msgid "Interpreting and Loading %s:" msgstr "" -#: plug-ins/ps/ps.c:566 +#: plug-ins/common/ps.c:565 msgid "PS: can't interprete file" msgstr "" -#: plug-ins/ps/ps.c:573 -msgid "PS: out of memory" -msgstr "" - -#: plug-ins/ps/ps.c:653 +#: plug-ins/common/ps.c:647 msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: plug-ins/ps/ps.c:664 +#: plug-ins/common/ps.c:658 msgid "PS: cannot operate on unknown image types" msgstr "" -#: plug-ins/ps/ps.c:673 +#: plug-ins/common/ps.c:667 msgid "PS: can't open file for writing" msgstr "" -#: plug-ins/ps/ps.c:1947 +#: plug-ins/common/ps.c:1713 plug-ins/common/ps.c:1810 +#: plug-ins/common/ps.c:1903 plug-ins/common/ps.c:1972 msgid "write error occured" msgstr "" -#: plug-ins/ps/ps.c:1974 plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:1999 plug-ins/common/ps.c:2264 msgid "Width:" msgstr "" -#: plug-ins/ps/ps.c:1974 plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:1999 plug-ins/common/ps.c:2264 msgid "Height:" msgstr "" -#: plug-ins/ps/ps.c:1974 +#: plug-ins/common/ps.c:1999 msgid "Pages:" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "b/w" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "gray" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "colour" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "automatic" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "none" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "weak" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "strong" msgstr "" -#: plug-ins/ps/ps.c:1991 +#: plug-ins/common/ps.c:2016 msgid "Load PostScript" msgstr "" #. Rendering -#: plug-ins/ps/ps.c:2024 +#: plug-ins/common/ps.c:2049 msgid "Rendering" msgstr "" -#: plug-ins/ps/ps.c:2064 +#: plug-ins/common/ps.c:2089 msgid "try BoundingBox" msgstr "" #. Colouring -#: plug-ins/ps/ps.c:2077 +#: plug-ins/common/ps.c:2102 msgid "Colouring" msgstr "" -#: plug-ins/ps/ps.c:2113 +#: plug-ins/common/ps.c:2138 msgid "Graphic antialiasing" msgstr "" -#: plug-ins/ps/ps.c:2114 +#: plug-ins/common/ps.c:2139 msgid "Text antialiasing" msgstr "" -#: plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:2264 msgid "X-offset:" msgstr "" -#: plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:2264 msgid "Y-offset:" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "0" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "90" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "180" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "270" msgstr "" -#: plug-ins/ps/ps.c:2243 +#: plug-ins/common/ps.c:2268 msgid "Inch" msgstr "" -#: plug-ins/ps/ps.c:2243 +#: plug-ins/common/ps.c:2268 msgid "Millimeter" msgstr "" -#: plug-ins/ps/ps.c:2258 +#: plug-ins/common/ps.c:2283 msgid "Save PostScript" msgstr "" #. Image Size -#: plug-ins/ps/ps.c:2299 +#: plug-ins/common/ps.c:2324 msgid "Image Size" msgstr "" -#: plug-ins/ps/ps.c:2338 +#: plug-ins/common/ps.c:2363 msgid "keep aspect ratio" msgstr "" #. Unit -#: plug-ins/ps/ps.c:2348 +#: plug-ins/common/ps.c:2373 msgid "Unit" msgstr "" #. Rotation -#: plug-ins/ps/ps.c:2379 +#: plug-ins/common/ps.c:2404 msgid "Rotation" msgstr "" #. Format -#: plug-ins/ps/ps.c:2406 +#: plug-ins/common/ps.c:2431 msgid "Output" msgstr "" -#: plug-ins/ps/ps.c:2414 +#: plug-ins/common/ps.c:2439 msgid "Encapsulated PostScript" msgstr "" -#: plug-ins/ps/ps.c:2440 +#: plug-ins/common/ps.c:2465 msgid "Preview size" msgstr "" -#: plug-ins/xbm/xbm.c:163 +#: plug-ins/common/xbm.c:163 msgid "Load a file in X10 or X11 bitmap (XBM) file format" msgstr "" -#: plug-ins/xbm/xbm.c:164 +#: plug-ins/common/xbm.c:164 msgid "" "Load a file in X10 or X11 bitmap (XBM) file format. XBM is a lossless " "format for flat black-and-white (two color indexed) images." msgstr "" -#: plug-ins/xbm/xbm.c:230 +#: plug-ins/common/xbm.c:230 msgid "Made with Gimp" msgstr "" -#: plug-ins/xbm/xbm.c:518 +#: plug-ins/common/xbm.c:518 #, c-format msgid "XBM: cannot open \"%s\"\n" msgstr "" -#: plug-ins/xbm/xbm.c:583 +#: plug-ins/common/xbm.c:583 #, c-format msgid "XBM: cannot read header (ftell == %ld)\n" msgstr "" -#: plug-ins/xbm/xbm.c:589 +#: plug-ins/common/xbm.c:589 msgid "XBM: no image width specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:595 +#: plug-ins/common/xbm.c:595 msgid "XBM: no image height specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:601 +#: plug-ins/common/xbm.c:601 msgid "XBM: no image data type specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:692 +#: plug-ins/common/xbm.c:692 msgid "XBM: can only save two color indexed images\n" msgstr "" -#: plug-ins/xbm/xbm.c:697 +#: plug-ins/common/xbm.c:697 msgid "XBM Warning" msgstr "" -#: plug-ins/xbm/xbm.c:727 +#: plug-ins/common/xbm.c:727 msgid "" "The image which you are trying to save as\n" "an XBM contains more than two colors.\n" @@ -2735,82 +2726,82 @@ msgid "" "(1-bit) indexed image and try again." msgstr "" -#: plug-ins/xbm/xbm.c:799 +#: plug-ins/common/xbm.c:799 #, c-format msgid "XBM: cannot create \"%s\"\n" msgstr "" -#: plug-ins/xbm/xbm.c:949 +#: plug-ins/common/xbm.c:949 msgid "Save as XBM" msgstr "" #. parameter settings -#: plug-ins/xbm/xbm.c:980 +#: plug-ins/common/xbm.c:980 msgid "XBM Options" msgstr "" -#: plug-ins/xbm/xbm.c:995 +#: plug-ins/common/xbm.c:995 msgid "Description: " msgstr "" #. X10 format -#: plug-ins/xbm/xbm.c:1011 +#: plug-ins/common/xbm.c:1011 msgid "X10 format bitmap" msgstr "" -#: plug-ins/xbm/xbm.c:1024 +#: plug-ins/common/xbm.c:1024 msgid "Identifier prefix: " msgstr "" -#: plug-ins/xpm/xpm.c:170 +#: plug-ins/common/xpm.c:170 msgid "loads files of the xpm file format" msgstr "" -#: plug-ins/xpm/xpm.c:182 +#: plug-ins/common/xpm.c:182 msgid "saves files in the xpm file format (if you're on a 16 bit display...)" msgstr "" -#: plug-ins/xpm/xpm.c:756 +#: plug-ins/common/xpm.c:756 msgid "Save as Xpm" msgstr "" -#: plug-ins/xpm/xpm.c:790 +#: plug-ins/common/xpm.c:790 msgid "Alpha Threshold" msgstr "" -#: plug-ins/xwd/xwd.c:222 plug-ins/xwd/xwd.c:223 +#: plug-ins/common/xwd.c:226 plug-ins/common/xwd.c:227 msgid "load file of the XWD file format" msgstr "" -#: plug-ins/xwd/xwd.c:234 +#: plug-ins/common/xwd.c:238 msgid "saves files in the XWD file format" msgstr "" -#: plug-ins/xwd/xwd.c:235 +#: plug-ins/common/xwd.c:239 msgid "XWD saving handles all image types except those with alpha channels." msgstr "" -#: plug-ins/xwd/xwd.c:331 +#: plug-ins/common/xwd.c:335 msgid "can't open file for reading" msgstr "" -#: plug-ins/xwd/xwd.c:347 +#: plug-ins/common/xwd.c:351 msgid "can't open file as XWD file" msgstr "" -#: plug-ins/xwd/xwd.c:362 +#: plug-ins/common/xwd.c:366 msgid "can't get memory for colormap" msgstr "" -#: plug-ins/xwd/xwd.c:380 +#: plug-ins/common/xwd.c:384 msgid "can't read color entries" msgstr "" -#: plug-ins/xwd/xwd.c:444 +#: plug-ins/common/xwd.c:448 msgid "this image depth/format is not supported" msgstr "" -#: plug-ins/xwd/xwd.c:448 +#: plug-ins/common/xwd.c:452 #, c-format msgid "" "load_image (xwd): XWD-file %s has format %d, depth %d\n" @@ -2818,35 +2809,35 @@ msgid "" "Currently this is not supported.\n" msgstr "" -#: plug-ins/xwd/xwd.c:476 +#: plug-ins/common/xwd.c:480 msgid "XWD save cannot handle images with alpha channels" msgstr "" -#: plug-ins/xwd/xwd.c:487 +#: plug-ins/common/xwd.c:491 msgid "cannot operate on unknown image types" msgstr "" -#: plug-ins/xwd/xwd.c:496 +#: plug-ins/common/xwd.c:500 msgid "can't open file for writing" msgstr "" -#: plug-ins/xwd/xwd.c:1148 +#: plug-ins/common/xwd.c:1152 msgid "EOF encountered on " msgstr "" -#: plug-ins/xwd/xwd.c:1246 plug-ins/xwd/xwd.c:1408 plug-ins/xwd/xwd.c:1605 -#: plug-ins/xwd/xwd.c:1854 +#: plug-ins/common/xwd.c:1250 plug-ins/common/xwd.c:1412 +#: plug-ins/common/xwd.c:1609 plug-ins/common/xwd.c:1858 msgid "EOF encountered on reading" msgstr "" -#: plug-ins/xwd/xwd.c:1294 +#: plug-ins/common/xwd.c:1298 msgid "No memory for mapping colors" msgstr "" -#: plug-ins/xwd/xwd.c:1978 +#: plug-ins/common/xwd.c:1982 msgid "Error during writing indexed/grey image" msgstr "" -#: plug-ins/xwd/xwd.c:2067 +#: plug-ins/common/xwd.c:2071 msgid "Error during writing rgb image" msgstr "" diff --git a/po-plug-ins/ja.po b/po-plug-ins/ja.po index 91cb5abe74..773dde6ece 100644 --- a/po-plug-ins/ja.po +++ b/po-plug-ins/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gimp 1.1.7\n" -"POT-Creation-Date: 1999-07-03 23:47+0900\n" +"POT-Creation-Date: 1999-07-17 11:11-0700\n" "PO-Revision-Date: 1999-07-05 03:30-0900\n" "Last-Translator: гР╨Й бы╧╟ \n" "Language-Team: Japanese \n" @@ -447,7 +447,7 @@ msgstr "" #: plug-ins/common/depthmerge.c:746 plug-ins/common/destripe.c:695 #: plug-ins/common/gif.c:1263 plug-ins/common/jpeg.c:1000 #: plug-ins/common/mail.c:491 plug-ins/common/oilify.c:460 -#: plug-ins/common/png.c:825 plug-ins/common/ps.c:2023 +#: plug-ins/common/png.c:827 plug-ins/common/ps.c:2023 #: plug-ins/common/ps.c:2290 plug-ins/common/xbm.c:959 #: plug-ins/common/xpm.c:763 plug-ins/print/print.c:1104 msgid "OK" @@ -522,7 +522,7 @@ msgstr "" #: plug-ins/common/depthmerge.c:756 plug-ins/common/destripe.c:704 #: plug-ins/common/gif.c:1172 plug-ins/common/jpeg.c:1009 #: plug-ins/common/mail.c:502 plug-ins/common/oilify.c:469 -#: plug-ins/common/png.c:834 plug-ins/common/ps.c:2033 +#: plug-ins/common/png.c:836 plug-ins/common/ps.c:2033 #: plug-ins/common/ps.c:2300 plug-ins/common/xbm.c:707 #: plug-ins/common/xbm.c:969 plug-ins/common/xpm.c:772 #: plug-ins/print/print.c:991 plug-ins/print/print.c:1097 @@ -888,7 +888,7 @@ msgstr " #: plug-ins/common/apply_lens.c:439 plug-ins/common/blur.c:607 #: plug-ins/common/checkerboard.c:399 plug-ins/common/cubism.c:356 #: plug-ins/common/jpeg.c:1018 plug-ins/common/oilify.c:478 -#: plug-ins/common/png.c:845 plug-ins/common/xpm.c:781 +#: plug-ins/common/png.c:847 plug-ins/common/xpm.c:781 msgid "Parameter Settings" msgstr "╔я╔И╔А║╪╔©юъдЙ" @@ -1117,23 +1117,23 @@ msgstr " msgid "RLE encoded" msgstr "RLE ╔╗╔С╔Ё║╪╔и" -#: plug-ins/common/borderaverage.c:98 +#: plug-ins/borderaverage/borderaverage.c:98 msgid "/Filters/Colors/Border Average" msgstr "" -#: plug-ins/common/borderaverage.c:339 +#: plug-ins/borderaverage/borderaverage.c:339 msgid "Border Size" msgstr "╠О╔╣╔╓╔╨" -#: plug-ins/common/borderaverage.c:339 +#: plug-ins/borderaverage/borderaverage.c:339 msgid "Thickness" msgstr "бю╓╣" -#: plug-ins/common/borderaverage.c:342 +#: plug-ins/borderaverage/borderaverage.c:342 msgid "Number of colors" msgstr "©╖©Т" -#: plug-ins/common/borderaverage.c:345 +#: plug-ins/borderaverage/borderaverage.c:345 msgid "Bucket Size:" msgstr "╔п╔╠╔д╔╣╔╓╔╨:" @@ -1656,7 +1656,8 @@ msgstr " msgid "" "This function creates new gray images with different channel information in " "each of them" -msgstr "╓Ё╓н╢ь©Т╓о╡ХаЭ╓нЁф╔а╔Ц╔С╔м╔К╓н╬ПйС╓Р╦╣╓к©╥╓╥╓╓╔╟╔Л║╪╔╧╔╠║╪╔К╡ХаЭ╓Рю╦ю╝╓╧╓К" +msgstr "" +"╓Ё╓н╢ь©Т╓о╡ХаЭ╓нЁф╔а╔Ц╔С╔м╔К╓н╬ПйС╓Р╦╣╓к©╥╓╥╓╓╔╟╔Л║╪╔╧╔╠║╪╔К╡ХаЭ╓Рю╦ю╝╓╧╓К" #: plug-ins/common/decompose.c:222 msgid "/Image/Channel Ops/Decompose" @@ -1700,7 +1701,10 @@ msgid "" "Taking as input two full-colour, full-alpha images and two corresponding " "grayscale depth maps, this plug-in combines the images based on which is " "closer (has a lower depth map value) at each point." -msgstr "╓Ё╓н╔в╔И╔╟╔╓╔С╓о╔у╔К╔╚╔И║╪, ╔у╔К╔╒╔К╔у╔║╡ХаЭ╓хбп╠Ч╓╧╓К2╓д╓н╔╟╔Л║╪╔╧╔╠║╪╔К©╪еы╔ч╔ц╔в╓Р╦╣╓к, Ёфею╓к╓╙╓╓╓ф╔ч╔ц╔вцм╓РхФЁс╓╥, ╬╝╓╣╓╓╔ч╔ц╔вцм╓нею╓Рмя╓╓╓ф©╥╓╥╓╓╡ХаЭ╓Р╨Ню╝╓╧╓К." +msgstr "" +"╓Ё╓н╔в╔И╔╟╔╓╔С╓о╔у╔К╔╚╔И║╪, " +"╔у╔К╔╒╔К╔у╔║╡ХаЭ╓хбп╠Ч╓╧╓К2╓д╓н╔╟╔Л║╪╔╧╔╠║╪╔К©╪еы╔ч╔ц╔в╓Р╦╣╓к, " +"Ёфею╓к╓╙╓╓╓ф╔ч╔ц╔вцм╓РхФЁс╓╥, ╬╝╓╣╓╓╔ч╔ц╔вцм╓нею╓Рмя╓╓╓ф©╥╓╥╓╓╡ХаЭ╓Р╨Ню╝╓╧╓К." #: plug-ins/common/depthmerge.c:202 msgid "/Filters/Combine/Depth Merge" @@ -1838,7 +1842,7 @@ msgstr "GIF msgid "GIF Options" msgstr "GIF ╔╙╔в╔╥╔Г╔С" -#: plug-ins/common/gif.c:1294 plug-ins/common/png.c:854 +#: plug-ins/common/gif.c:1294 plug-ins/common/png.c:856 msgid "Interlace" msgstr "╔╓╔С╔©║╪╔Л║╪╔╧" @@ -2135,7 +2139,9 @@ msgstr " msgid "" "This function performs the well-known oil-paint effect on the specified " "drawable. The size of the input mask is specified by 'mask_size'." -msgstr "╓Ё╓н╢ь©Т╓о╩ьдЙ╓╥╓©иа╡Хбп╬щ╓Рни╓╞цн╓И╓Л╓©лЩЁ╗╓н╓Х╓╕╓кйя╢╧╓╧╓К. фЧно╔ч╔╧╔╞╓о 'mask_size' ╓г╩ьдЙ╓╧╓К." +msgstr "" +"╓Ё╓н╢ь©Т╓о╩ьдЙ╓╥╓©иа╡Хбп╬щ╓Рни╓╞цн╓И╓Л╓©лЩЁ╗╓н╓Х╓╕╓кйя╢╧╓╧╓К. фЧно╔ч╔╧╔╞╓о " +"'mask_size' ╓г╩ьдЙ╓╧╓К." #: plug-ins/common/oilify.c:127 msgid "/Filters/Artistic/Oilify" @@ -2165,11 +2171,11 @@ msgstr "PNG msgid "This plug-in loads Portable Network Graphics (PNG) files." msgstr "╓Ё╓н╔в╔И╔╟╔╓╔С╓о Portable Network Graphics (PNG) ╔у╔║╔╓╔К╓Рфи╓ъ╧Ч╓Ю." -#: plug-ins/common/png.c:816 +#: plug-ins/common/png.c:818 msgid "PNG Options" msgstr "PNG ╔╙╔в╔╥╔Г╔С" -#: plug-ins/common/png.c:861 +#: plug-ins/common/png.c:863 msgid "Compression level" msgstr "╟╣╫л╔Л╔ы╔К" @@ -2713,7 +2719,9 @@ msgstr "X10 msgid "" "Load a file in X10 or X11 bitmap (XBM) file format. XBM is a lossless " "format for flat black-and-white (two color indexed) images." -msgstr "X10 ╓Д X11 ╓н╔с╔ц╔х╔ч╔ц╔в (XBM) ╔у╔║╔╓╔К╥а╪╟╓н╡ХаЭ╓Рфи╓ъ╧Ч╓Ю. XBM ╓огР╧У╡ХаЭ╓кбп╓╧╓К╡д╣у╔у╔║╔╓╔К╥а╪╟╓г╓╒╓К." +msgstr "" +"X10 ╓Д X11 ╓н╔с╔ц╔х╔ч╔ц╔в (XBM) ╔у╔║╔╓╔К╥а╪╟╓н╡ХаЭ╓Рфи╓ъ╧Ч╓Ю. XBM " +"╓огР╧У╡ХаЭ╓кбп╓╧╓К╡д╣у╔у╔║╔╓╔К╥а╪╟╓г╓╒╓К." #: plug-ins/common/xbm.c:230 msgid "Made with Gimp" @@ -2796,7 +2804,8 @@ msgstr "xpm #: plug-ins/common/xpm.c:182 msgid "saves files in the xpm file format (if you're on a 16 bit display...)" -msgstr "xpm ╔у╔║╔╓╔К╥а╪╟╓г╡ХаЭ╓Рйщб╦╓╧╓К (16 bit ╔г╔ё╔╧╔в╔Л╔╓╓Р╩хмя╓╥╓ф╓╓╓К╓й╓И...)" +msgstr "" +"xpm ╔у╔║╔╓╔К╥а╪╟╓г╡ХаЭ╓Рйщб╦╓╧╓К (16 bit ╔г╔ё╔╧╔в╔Л╔╓╓Р╩хмя╓╥╓ф╓╓╓К╓й╓И...)" #: plug-ins/common/xpm.c:756 msgid "Save as Xpm" diff --git a/po-plug-ins/ko.po b/po-plug-ins/ko.po index 4336c06aab..456dd3c23c 100644 --- a/po-plug-ins/ko.po +++ b/po-plug-ins/ko.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 1999-06-05 14:12-0700\n" +"POT-Creation-Date: 1999-07-17 11:11-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,236 +14,230 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: plug-ins/CML_explorer/CML_explorer.c:226 +#: plug-ins/common/CML_explorer.c:226 msgid "Keep image's values" msgstr "Keep image's values" -#: plug-ins/CML_explorer/CML_explorer.c:228 +#: plug-ins/common/CML_explorer.c:228 msgid "Keep the first value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:230 +#: plug-ins/common/CML_explorer.c:230 msgid "Fill with parameter k" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:232 +#: plug-ins/common/CML_explorer.c:232 msgid "k{x(1-x)}^p" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:234 +#: plug-ins/common/CML_explorer.c:234 msgid "k{x(1-x)}^p stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:236 +#: plug-ins/common/CML_explorer.c:236 msgid "kx^p" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:238 +#: plug-ins/common/CML_explorer.c:238 msgid "kx^p stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:240 +#: plug-ins/common/CML_explorer.c:240 msgid "k(1 - x^p)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:242 +#: plug-ins/common/CML_explorer.c:242 msgid "k(1 - x^p) stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:244 +#: plug-ins/common/CML_explorer.c:244 msgid "Delta function" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:246 +#: plug-ins/common/CML_explorer.c:246 msgid "Delta function stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:248 +#: plug-ins/common/CML_explorer.c:248 msgid "sin^p-based function" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:250 +#: plug-ins/common/CML_explorer.c:250 msgid "sin^p, stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:256 +#: plug-ins/common/CML_explorer.c:256 msgid "None" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:258 +#: plug-ins/common/CML_explorer.c:258 msgid "Max (x, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:260 +#: plug-ins/common/CML_explorer.c:260 msgid "Max (x+d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:262 +#: plug-ins/common/CML_explorer.c:262 msgid "Max (x-d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:264 -msgid "Mix (x, -)" +#: plug-ins/common/CML_explorer.c:264 +msgid "Min (x, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:266 +#: plug-ins/common/CML_explorer.c:266 msgid "Min (x+d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:268 +#: plug-ins/common/CML_explorer.c:268 msgid "Min (x-d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:270 +#: plug-ins/common/CML_explorer.c:270 msgid "Max (x+d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:272 +#: plug-ins/common/CML_explorer.c:272 msgid "Max (x+d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:274 +#: plug-ins/common/CML_explorer.c:274 msgid "Max (x-d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:276 +#: plug-ins/common/CML_explorer.c:276 msgid "Max (x-d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:278 +#: plug-ins/common/CML_explorer.c:278 msgid "Min (x+d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:280 +#: plug-ins/common/CML_explorer.c:280 msgid "Min (x+d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:282 +#: plug-ins/common/CML_explorer.c:282 msgid "Min (x-d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:284 +#: plug-ins/common/CML_explorer.c:284 msgid "Min (x-d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:290 +#: plug-ins/common/CML_explorer.c:290 msgid "Standard" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:292 +#: plug-ins/common/CML_explorer.c:292 msgid "Use average value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:294 +#: plug-ins/common/CML_explorer.c:294 msgid "Use reverse value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:296 +#: plug-ins/common/CML_explorer.c:296 msgid "With random power (0,10)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:298 +#: plug-ins/common/CML_explorer.c:298 msgid "With random power (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:300 +#: plug-ins/common/CML_explorer.c:300 msgid "With gradient power (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:302 +#: plug-ins/common/CML_explorer.c:302 msgid "Multiply rand. value (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:304 +#: plug-ins/common/CML_explorer.c:304 msgid "Multiply rand. value (0,2)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:306 +#: plug-ins/common/CML_explorer.c:306 msgid "Multiply gradient (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:308 +#: plug-ins/common/CML_explorer.c:308 msgid "With p and random (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:313 +#: plug-ins/common/CML_explorer.c:313 msgid "All black" msgstr "" #. 0 -#: plug-ins/CML_explorer/CML_explorer.c:314 +#: plug-ins/common/CML_explorer.c:314 msgid "All gray" msgstr "" #. 1 -#: plug-ins/CML_explorer/CML_explorer.c:315 +#: plug-ins/common/CML_explorer.c:315 msgid "All white" msgstr "" #. 2 -#: plug-ins/CML_explorer/CML_explorer.c:316 +#: plug-ins/common/CML_explorer.c:316 msgid "The first row of the image" msgstr "" #. 3 -#: plug-ins/CML_explorer/CML_explorer.c:317 +#: plug-ins/common/CML_explorer.c:317 msgid "Continuous gradient" msgstr "" #. 4 -#: plug-ins/CML_explorer/CML_explorer.c:318 +#: plug-ins/common/CML_explorer.c:318 msgid "Continuous grad. w/o gap" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:320 +#: plug-ins/common/CML_explorer.c:320 msgid "Random, ch. independent" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:322 +#: plug-ins/common/CML_explorer.c:322 msgid "Random shared" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:324 +#: plug-ins/common/CML_explorer.c:324 msgid "Randoms from seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:326 +#: plug-ins/common/CML_explorer.c:326 msgid "Randoms from seed (shared)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:380 -#: plug-ins/CML_explorer/CML_explorer.c:388 -#: plug-ins/CML_explorer/CML_explorer.c:1431 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:135 +#: plug-ins/common/CML_explorer.c:380 plug-ins/common/CML_explorer.c:388 +#: plug-ins/common/CML_explorer.c:1431 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:135 msgid "Hue" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:381 -#: plug-ins/CML_explorer/CML_explorer.c:389 -#: plug-ins/CML_explorer/CML_explorer.c:1435 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:136 +#: plug-ins/common/CML_explorer.c:381 plug-ins/common/CML_explorer.c:389 +#: plug-ins/common/CML_explorer.c:1435 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:136 msgid "Saturation" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:382 -#: plug-ins/CML_explorer/CML_explorer.c:390 -#: plug-ins/CML_explorer/CML_explorer.c:1439 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:137 +#: plug-ins/common/CML_explorer.c:382 plug-ins/common/CML_explorer.c:390 +#: plug-ins/common/CML_explorer.c:1439 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:137 msgid "Value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:387 +#: plug-ins/common/CML_explorer.c:387 msgid "NULL" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:494 +#: plug-ins/common/CML_explorer.c:494 msgid "Make an image of Coupled-Map Lattice" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:495 +#: plug-ins/common/CML_explorer.c:495 msgid "" "Make an image of Coupled-Map Lattice (CML). CML is a kind of Cellula " "Automata on continuous (value) domain. In RUN_NONINTERACTIVE, the name of a " @@ -251,87 +245,87 @@ msgid "" "parameter file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1327 +#: plug-ins/common/CML_explorer.c:1327 msgid "Coupled-Map-Lattice Explorer" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1344 plug-ins/ps/ps.c:2423 +#: plug-ins/common/CML_explorer.c:1344 plug-ins/common/ps.c:2448 msgid "Preview" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1385 +#: plug-ins/common/CML_explorer.c:1385 msgid "New seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1391 +#: plug-ins/common/CML_explorer.c:1391 msgid "Fix seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1397 +#: plug-ins/common/CML_explorer.c:1397 msgid "Random seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1409 +#: plug-ins/common/CML_explorer.c:1409 msgid "Load" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1412 +#: plug-ins/common/CML_explorer.c:1412 msgid "Save" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1429 +#: plug-ins/common/CML_explorer.c:1429 msgid "Hue settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1433 +#: plug-ins/common/CML_explorer.c:1433 msgid "Saturation settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1437 +#: plug-ins/common/CML_explorer.c:1437 msgid "Value (grayimage) settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1441 +#: plug-ins/common/CML_explorer.c:1441 msgid "Advanced settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1443 +#: plug-ins/common/CML_explorer.c:1443 msgid "Advanced" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1455 +#: plug-ins/common/CML_explorer.c:1455 msgid "Other parameter settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1459 +#: plug-ins/common/CML_explorer.c:1459 msgid "Channel independed parameters" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1463 +#: plug-ins/common/CML_explorer.c:1463 msgid "Initial value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1469 +#: plug-ins/common/CML_explorer.c:1469 msgid "Zoom scale" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1474 +#: plug-ins/common/CML_explorer.c:1474 msgid "Start offset" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1494 +#: plug-ins/common/CML_explorer.c:1494 msgid "Seed of random (only for \"from seed\" modes)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1498 +#: plug-ins/common/CML_explorer.c:1498 msgid "Seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1508 +#: plug-ins/common/CML_explorer.c:1508 msgid "Switch to \"from seed\" with the last seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1515 +#: plug-ins/common/CML_explorer.c:1515 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 " @@ -339,202 +333,199 @@ msgid "" "(2) all mutation rates equal to zero." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1532 +#: plug-ins/common/CML_explorer.c:1532 msgid "Others" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1539 +#: plug-ins/common/CML_explorer.c:1539 msgid "Misc operations" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1544 +#: plug-ins/common/CML_explorer.c:1544 msgid "Copy settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1548 +#: plug-ins/common/CML_explorer.c:1548 msgid "Source ch." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1554 -#: plug-ins/CML_explorer/CML_explorer.c:1588 +#: plug-ins/common/CML_explorer.c:1554 plug-ins/common/CML_explorer.c:1588 msgid "Destination ch." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1560 +#: plug-ins/common/CML_explorer.c:1560 msgid "Do copy parameters" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1578 +#: plug-ins/common/CML_explorer.c:1578 msgid "Selective load settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1582 +#: plug-ins/common/CML_explorer.c:1582 msgid "Source ch. in file" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1608 +#: plug-ins/common/CML_explorer.c:1608 msgid "Misc ops." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1644 +#: plug-ins/common/CML_explorer.c:1644 msgid "Function type" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1651 +#: plug-ins/common/CML_explorer.c:1651 msgid "Composition" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1658 +#: plug-ins/common/CML_explorer.c:1658 msgid "Misc arrange" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1665 +#: plug-ins/common/CML_explorer.c:1665 msgid "Use cyclic range" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1670 +#: plug-ins/common/CML_explorer.c:1670 msgid "Mod. rate" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1677 +#: plug-ins/common/CML_explorer.c:1677 msgid "Env. sensitivity" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1684 +#: plug-ins/common/CML_explorer.c:1684 msgid "Diffusion dist." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1691 +#: plug-ins/common/CML_explorer.c:1691 msgid "# of subranges" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1698 +#: plug-ins/common/CML_explorer.c:1698 msgid "P(ower factor)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1705 +#: plug-ins/common/CML_explorer.c:1705 msgid "Parameter k" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1712 +#: plug-ins/common/CML_explorer.c:1712 msgid "Range low" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1719 +#: plug-ins/common/CML_explorer.c:1719 msgid "Range high" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1738 +#: plug-ins/common/CML_explorer.c:1738 msgid "Plot the graph of the settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1772 +#: plug-ins/common/CML_explorer.c:1772 msgid "Ch. sensitivity" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1779 +#: plug-ins/common/CML_explorer.c:1779 msgid "Mutation rate" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1786 +#: plug-ins/common/CML_explorer.c:1786 msgid "Mutation dist." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1815 +#: plug-ins/common/CML_explorer.c:1815 msgid "Graph of the current settings" msgstr "" #. Action Area -#: plug-ins/CML_explorer/CML_explorer.c:1820 -#: plug-ins/CML_explorer/CML_explorer.c:2681 -#: plug-ins/CML_explorer/CML_explorer.c:2777 -#: plug-ins/apply_lens/apply_lens.c:420 plug-ins/blur/blur.c:619 -#: plug-ins/bmp/bmpwrite.c:428 plug-ins/bumpmap/bumpmap.c:970 -#: plug-ins/checkerboard/checkerboard.c:381 plug-ins/compose/compose.c:816 -#: plug-ins/convmatrix/convmatrix.c:706 plug-ins/cubism/cubism.c:338 -#: plug-ins/decompose/decompose.c:914 plug-ins/depthmerge/depthmerge.c:746 -#: plug-ins/destripe/destripe.c:695 plug-ins/gif/gif.c:1263 -#: plug-ins/jpeg/jpeg.c:1000 plug-ins/mail/mail.c:491 -#: plug-ins/oilify/oilify.c:460 plug-ins/png/png.c:1180 -#: plug-ins/print/print.c:1279 plug-ins/ps/ps.c:1998 plug-ins/ps/ps.c:2265 -#: plug-ins/xbm/xbm.c:959 plug-ins/xpm/xpm.c:763 +#: plug-ins/bmp/bmpwrite.c:428 plug-ins/common/CML_explorer.c:1820 +#: plug-ins/common/CML_explorer.c:2681 plug-ins/common/CML_explorer.c:2777 +#: plug-ins/common/apply_lens.c:420 plug-ins/common/blur.c:619 +#: plug-ins/common/bumpmap.c:970 plug-ins/common/checkerboard.c:381 +#: plug-ins/common/compose.c:816 plug-ins/common/convmatrix.c:706 +#: plug-ins/common/cubism.c:338 plug-ins/common/decompose.c:914 +#: plug-ins/common/depthmerge.c:746 plug-ins/common/destripe.c:695 +#: plug-ins/common/gif.c:1263 plug-ins/common/jpeg.c:1000 +#: plug-ins/common/mail.c:491 plug-ins/common/oilify.c:460 +#: plug-ins/common/png.c:827 plug-ins/common/ps.c:2023 +#: plug-ins/common/ps.c:2290 plug-ins/common/xbm.c:959 +#: plug-ins/common/xpm.c:763 plug-ins/print/print.c:1104 msgid "OK" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1830 +#: plug-ins/common/CML_explorer.c:1830 msgid "The Graph" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1922 +#: plug-ins/common/CML_explorer.c:1922 msgid "Warning: the source and the destination are the same channel." msgstr "" #. Action Area -#: plug-ins/CML_explorer/CML_explorer.c:2010 +#: plug-ins/common/CML_explorer.c:2010 msgid "Execute" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2019 +#: plug-ins/common/CML_explorer.c:2019 msgid "Execute and Exit" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2027 +#: plug-ins/common/CML_explorer.c:2027 msgid "Exit" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2045 +#: plug-ins/common/CML_explorer.c:2045 msgid "Save parameters to" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2108 -#: plug-ins/CML_explorer/CML_explorer.c:2301 +#: plug-ins/common/CML_explorer.c:2108 plug-ins/common/CML_explorer.c:2301 #, c-format msgid "Error: could not open \"%s\"" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2173 +#: plug-ins/common/CML_explorer.c:2173 msgid "CML file operation warning" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2180 +#: plug-ins/common/CML_explorer.c:2180 #, c-format msgid "%s exists, overwrite?" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2223 +#: plug-ins/common/CML_explorer.c:2223 msgid "Load parameters from" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2225 +#: plug-ins/common/CML_explorer.c:2225 msgid "Selective load from" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2324 +#: plug-ins/common/CML_explorer.c:2324 msgid "Error: it's not CML parameter file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2331 +#: plug-ins/common/CML_explorer.c:2331 msgid "Warning: it's an old format file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2333 +#: plug-ins/common/CML_explorer.c:2333 msgid "Warning: Hmmm, it's a parameter file for newer CML_explorer than me." msgstr "" #. cancel button -#: plug-ins/CML_explorer/CML_explorer.c:2690 -#: plug-ins/Lighting/lighting_ui.c:1062 plug-ins/apply_lens/apply_lens.c:430 -#: plug-ins/blur/blur.c:621 plug-ins/bmp/bmpwrite.c:437 -#: plug-ins/bumpmap/bumpmap.c:979 plug-ins/checkerboard/checkerboard.c:390 -#: plug-ins/colorify/colorify.c:319 plug-ins/compose/compose.c:825 -#: plug-ins/convmatrix/convmatrix.c:723 plug-ins/cubism/cubism.c:347 -#: plug-ins/decompose/decompose.c:924 plug-ins/depthmerge/depthmerge.c:756 -#: plug-ins/destripe/destripe.c:704 plug-ins/gif/gif.c:1172 -#: plug-ins/jpeg/jpeg.c:1009 plug-ins/mail/mail.c:502 -#: plug-ins/oilify/oilify.c:469 plug-ins/png/png.c:1189 -#: plug-ins/print/print.c:1166 plug-ins/print/print.c:1272 -#: plug-ins/ps/ps.c:2008 plug-ins/ps/ps.c:2275 plug-ins/xbm/xbm.c:707 -#: plug-ins/xbm/xbm.c:969 plug-ins/xpm/xpm.c:772 +#: plug-ins/Lighting/lighting_ui.c:1062 plug-ins/bmp/bmpwrite.c:437 +#: plug-ins/common/CML_explorer.c:2690 plug-ins/common/apply_lens.c:430 +#: plug-ins/common/blur.c:621 plug-ins/common/bumpmap.c:979 +#: plug-ins/common/checkerboard.c:390 plug-ins/common/colorify.c:323 +#: plug-ins/common/compose.c:825 plug-ins/common/convmatrix.c:723 +#: plug-ins/common/cubism.c:347 plug-ins/common/decompose.c:924 +#: plug-ins/common/depthmerge.c:756 plug-ins/common/destripe.c:704 +#: plug-ins/common/gif.c:1172 plug-ins/common/jpeg.c:1009 +#: plug-ins/common/mail.c:502 plug-ins/common/oilify.c:469 +#: plug-ins/common/png.c:836 plug-ins/common/ps.c:2033 +#: plug-ins/common/ps.c:2300 plug-ins/common/xbm.c:707 +#: plug-ins/common/xbm.c:969 plug-ins/common/xpm.c:772 +#: plug-ins/print/print.c:991 plug-ins/print/print.c:1097 msgid "Cancel" msgstr "" @@ -867,23 +858,23 @@ msgstr "" msgid "Zoom out (make image smaller)" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:136 +#: plug-ins/common/apply_lens.c:136 msgid "Apply a lens effect" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:137 +#: plug-ins/common/apply_lens.c:137 msgid "This plug-in uses Snell's law to draw an ellipsoid lens over the image" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:141 +#: plug-ins/common/apply_lens.c:141 msgid "/Filters/Glass Effects/Apply Lens" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:200 +#: plug-ins/common/apply_lens.c:200 msgid "Applying lens..." msgstr "" -#: plug-ins/apply_lens/apply_lens.c:414 +#: plug-ins/common/apply_lens.c:414 msgid "Lens effect" msgstr "" @@ -892,40 +883,40 @@ msgstr "" #. * #. * First set up the basic containers, label them, etc. #. -#: plug-ins/apply_lens/apply_lens.c:439 plug-ins/blur/blur.c:607 -#: plug-ins/checkerboard/checkerboard.c:399 plug-ins/cubism/cubism.c:356 -#: plug-ins/jpeg/jpeg.c:1018 plug-ins/oilify/oilify.c:478 -#: plug-ins/png/png.c:1200 plug-ins/xpm/xpm.c:781 +#: plug-ins/common/apply_lens.c:439 plug-ins/common/blur.c:607 +#: plug-ins/common/checkerboard.c:399 plug-ins/common/cubism.c:356 +#: plug-ins/common/jpeg.c:1018 plug-ins/common/oilify.c:478 +#: plug-ins/common/png.c:847 plug-ins/common/xpm.c:781 msgid "Parameter Settings" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:448 +#: plug-ins/common/apply_lens.c:448 msgid "Keep original surroundings" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:461 +#: plug-ins/common/apply_lens.c:461 msgid "Set surroundings to index 0" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:462 +#: plug-ins/common/apply_lens.c:462 msgid "Set surroundings to background color" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:475 +#: plug-ins/common/apply_lens.c:475 msgid "Make surroundings transparent" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:490 +#: plug-ins/common/apply_lens.c:490 msgid "Lens refraction index: " msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:82 +#: plug-ins/common/autostretch_hsv.c:82 msgid "" "Automatically stretch the contrast of the specified drawable to cover all " "possible ranges." msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:83 +#: plug-ins/common/autostretch_hsv.c:83 msgid "" "This simple plug-in does an automatic contrast stretch. For each channel in " "the image, it finds the minimum and maximum values... it uses those values " @@ -935,52 +926,52 @@ msgid "" "space, and preserves hue." msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:87 +#: plug-ins/common/autostretch_hsv.c:87 msgid "/Image/Colors/Auto-Stretch HSV" msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:119 +#: plug-ins/common/autostretch_hsv.c:119 msgid "Auto-Stretching HSV..." msgstr "" -#: plug-ins/blur/blur.c:194 +#: plug-ins/common/blur.c:194 msgid "Apply a 3x3 blurring convolution kernel to the specified drawable." msgstr "" -#: plug-ins/blur/blur.c:195 +#: plug-ins/common/blur.c:195 msgid "" "This plug-in randomly blurs the specified drawable, using a 3x3 blur. You " "control the percentage of the pixels that are blurred and the number of " "times blurring is applied. Indexed images are not supported." msgstr "" -#: plug-ins/blur/blur.c:208 +#: plug-ins/common/blur.c:208 msgid "/Filters/Blur/Blur" msgstr "" -#: plug-ins/blur/blur.c:620 +#: plug-ins/common/blur.c:620 msgid "Accept settings and apply filter to image" msgstr "" -#: plug-ins/blur/blur.c:622 +#: plug-ins/common/blur.c:622 msgid "Close plug-in without making any changes" msgstr "" #. #. * Randomization seed initialization controls #. -#: plug-ins/blur/blur.c:626 +#: plug-ins/common/blur.c:626 msgid "Randomization Seed:" msgstr "" #. #. * Time button #. -#: plug-ins/blur/blur.c:637 +#: plug-ins/common/blur.c:637 msgid "Current Time" msgstr "" -#: plug-ins/blur/blur.c:638 +#: plug-ins/common/blur.c:638 msgid "" "Seed random number generator from the current time - this guarantees a " "reasonable randomization" @@ -989,39 +980,39 @@ msgstr "" #. #. * User button #. -#: plug-ins/blur/blur.c:648 +#: plug-ins/common/blur.c:648 msgid "Other Value" msgstr "" -#: plug-ins/blur/blur.c:649 +#: plug-ins/common/blur.c:649 msgid "" "Enable user-entered value for random number generator seed - this allows you " "to repeat a given \"random\" operation" msgstr "" -#: plug-ins/blur/blur.c:661 +#: plug-ins/common/blur.c:661 msgid "Value for seeding the random number generator" msgstr "" #. #. * Randomization percentage label & scale (1 to 100) #. -#: plug-ins/blur/blur.c:666 +#: plug-ins/common/blur.c:666 msgid "Randomization %:" msgstr "" -#: plug-ins/blur/blur.c:669 +#: plug-ins/common/blur.c:669 msgid "Percentage of pixels to be filtered" msgstr "" #. #. * Repeat count label & scale (1 to 100) #. -#: plug-ins/blur/blur.c:674 +#: plug-ins/common/blur.c:674 msgid "Repeat:" msgstr "" -#: plug-ins/blur/blur.c:677 +#: plug-ins/common/blur.c:677 msgid "Number of times to apply filter" msgstr "" @@ -1033,9 +1024,10 @@ msgstr "" msgid "Saves files in Windows BMP file format" msgstr "" -#: plug-ins/bmp/bmpread.c:27 plug-ins/gifload/gifload.c:287 -#: plug-ins/jpeg/jpeg.c:494 plug-ins/png/png.c:700 plug-ins/png/png.c:702 -#: plug-ins/xbm/xbm.c:523 plug-ins/xpm/xpm.c:300 +#: plug-ins/bmp/bmpread.c:27 plug-ins/common/gifload.c:287 +#: plug-ins/common/jpeg.c:494 plug-ins/common/png.c:345 +#: plug-ins/common/png.c:347 plug-ins/common/xbm.c:523 +#: plug-ins/common/xpm.c:300 #, c-format msgid "Loading %s:" msgstr "" @@ -1074,9 +1066,10 @@ msgstr "" #. * Create the "background" layer to hold the image... #. #: plug-ins/bmp/bmpread.c:210 plug-ins/bmp/bmpread.c:218 -#: plug-ins/bmp/bmpread.c:224 plug-ins/compose/compose.c:562 -#: plug-ins/decompose/decompose.c:472 plug-ins/gifload/gifload.c:828 -#: plug-ins/jpeg/jpeg.c:611 plug-ins/png/png.c:810 plug-ins/xbm/xbm.c:612 +#: plug-ins/bmp/bmpread.c:224 plug-ins/common/compose.c:562 +#: plug-ins/common/decompose.c:472 plug-ins/common/gifload.c:828 +#: plug-ins/common/jpeg.c:611 plug-ins/common/png.c:455 +#: plug-ins/common/xbm.c:612 msgid "Background" msgstr "" @@ -1089,9 +1082,10 @@ msgstr "" msgid "can't open %s\n" msgstr "" -#: plug-ins/bmp/bmpwrite.c:154 plug-ins/jpeg/jpeg.c:759 plug-ins/png/png.c:950 -#: plug-ins/png/png.c:952 plug-ins/ps/ps.c:680 plug-ins/xbm/xbm.c:777 -#: plug-ins/xpm/xpm.c:611 plug-ins/xwd/xwd.c:503 +#: plug-ins/bmp/bmpwrite.c:154 plug-ins/common/jpeg.c:759 +#: plug-ins/common/png.c:595 plug-ins/common/png.c:597 +#: plug-ins/common/ps.c:673 plug-ins/common/xbm.c:777 +#: plug-ins/common/xpm.c:611 plug-ins/common/xwd.c:507 #, c-format msgid "Saving %s:" msgstr "" @@ -1129,310 +1123,310 @@ msgstr "" msgid "Bucket Size:" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:298 +#: plug-ins/common/bumpmap.c:298 msgid "Linear map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:299 +#: plug-ins/common/bumpmap.c:299 msgid "Spherical map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:300 +#: plug-ins/common/bumpmap.c:300 msgid "Sinusoidal map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:346 +#: plug-ins/common/bumpmap.c:346 msgid "Create an embossing effect using an image as a bump map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:354 +#: plug-ins/common/bumpmap.c:354 msgid "/Filters/Map/Bump Map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:500 +#: plug-ins/common/bumpmap.c:500 msgid "Bump-mapping..." msgstr "" #. Bump map menu -#: plug-ins/bumpmap/bumpmap.c:830 plug-ins/bumpmap/bumpmap.c:939 +#: plug-ins/common/bumpmap.c:830 plug-ins/common/bumpmap.c:939 msgid "Bump map" msgstr "" #. Compensate darkening -#: plug-ins/bumpmap/bumpmap.c:884 +#: plug-ins/common/bumpmap.c:884 msgid "Compensate for darkening" msgstr "" #. Invert bumpmap -#: plug-ins/bumpmap/bumpmap.c:895 +#: plug-ins/common/bumpmap.c:895 msgid "Invert bumpmap" msgstr "" #. Controls -#: plug-ins/bumpmap/bumpmap.c:958 +#: plug-ins/common/bumpmap.c:958 msgid "Azimuth" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:959 +#: plug-ins/common/bumpmap.c:959 msgid "Elevation" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:960 +#: plug-ins/common/bumpmap.c:960 msgid "Depth" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:961 +#: plug-ins/common/bumpmap.c:961 msgid "X offset" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:962 +#: plug-ins/common/bumpmap.c:962 msgid "Y offset" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:963 +#: plug-ins/common/bumpmap.c:963 msgid "Waterlevel" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:964 +#: plug-ins/common/bumpmap.c:964 msgid "Ambient" msgstr "" -#: plug-ins/bz2/bz2.c:293 plug-ins/bz2/bz2.c:358 +#: plug-ins/common/bz2.c:293 plug-ins/common/bz2.c:358 #, c-format msgid "bz2: fork failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:300 plug-ins/bz2/bz2.c:365 +#: plug-ins/common/bz2.c:300 plug-ins/common/bz2.c:365 #, c-format msgid "bz2: fopen failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:306 plug-ins/bz2/bz2.c:371 +#: plug-ins/common/bz2.c:306 plug-ins/common/bz2.c:371 #, c-format msgid "bz2: dup2 failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:310 +#: plug-ins/common/bz2.c:310 #, c-format msgid "bz2: exec failed: bzip2: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:324 plug-ins/bz2/bz2.c:389 +#: plug-ins/common/bz2.c:324 plug-ins/common/bz2.c:389 #, c-format msgid "bz2: bzip2 exited abnormally on file %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:375 +#: plug-ins/common/bz2.c:375 #, c-format msgid "bz2: exec failed: bunzip2: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:443 +#: plug-ins/common/bz2.c:443 msgid "bz2: can't open bzip2ed file without a sensible extension\n" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:97 +#: plug-ins/common/checkerboard.c:97 msgid "Adds a checkerboard pattern to an image" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:102 +#: plug-ins/common/checkerboard.c:102 msgid "/Filters/Render/Checkerboard" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:164 +#: plug-ins/common/checkerboard.c:164 msgid "Adding Checkerboard..." msgstr "" -#: plug-ins/checkerboard/checkerboard.c:374 +#: plug-ins/common/checkerboard.c:374 msgid "Checkerboard" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:407 +#: plug-ins/common/checkerboard.c:407 msgid "Psychobilly" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:415 +#: plug-ins/common/checkerboard.c:415 msgid "Check Size" msgstr "" -#: plug-ins/colorify/colorify.c:122 +#: plug-ins/common/colorify.c:122 msgid "Similar to the \"Color\" mode for layers." msgstr "" -#: plug-ins/colorify/colorify.c:123 +#: plug-ins/common/colorify.c:123 msgid "Makes an average of the RGB channels and uses it to set the color" msgstr "" -#: plug-ins/colorify/colorify.c:126 +#: plug-ins/common/colorify.c:126 msgid "/Filters/Colors/Colorify" msgstr "" -#: plug-ins/colorify/colorify.c:194 +#: plug-ins/common/colorify.c:194 msgid "Colorifying..." msgstr "" -#: plug-ins/colorify/colorify.c:304 +#: plug-ins/common/colorify.c:308 msgid "Colorify" msgstr "" -#: plug-ins/colorify/colorify.c:310 +#: plug-ins/common/colorify.c:314 msgid "Ok" msgstr "" -#: plug-ins/colorify/colorify.c:327 plug-ins/print/print.c:1023 -#: plug-ins/xpm/xpm.c:406 +#: plug-ins/common/colorify.c:331 plug-ins/common/xpm.c:406 +#: plug-ins/print/print.c:848 msgid "Color" msgstr "" -#: plug-ins/colorify/colorify.c:340 +#: plug-ins/common/colorify.c:344 msgid "Custom Color: " msgstr "" -#: plug-ins/colorify/colorify.c:430 +#: plug-ins/common/colorify.c:434 msgid "Colorify Custom Color" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/decompose/decompose.c:129 +#: plug-ins/common/compose.c:125 plug-ins/common/decompose.c:129 msgid "RGB" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Red:" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Green: " msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Blue:" msgstr "" -#: plug-ins/compose/compose.c:126 +#: plug-ins/common/compose.c:126 msgid "rgb-compose" msgstr "" -#: plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:127 msgid "RGBA" msgstr "" -#: plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:127 msgid "Alpha:" msgstr "" -#: plug-ins/compose/compose.c:128 +#: plug-ins/common/compose.c:128 msgid "rgba-compose" msgstr "" -#: plug-ins/compose/compose.c:129 plug-ins/decompose/decompose.c:133 +#: plug-ins/common/compose.c:129 plug-ins/common/decompose.c:133 msgid "HSV" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Hue:" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Saturation:" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Value:" msgstr "" -#: plug-ins/compose/compose.c:130 +#: plug-ins/common/compose.c:130 msgid "hsv-compose" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/decompose/decompose.c:138 +#: plug-ins/common/compose.c:131 plug-ins/common/decompose.c:138 msgid "CMY" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Cyan:" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Magenta: " msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Yellow:" msgstr "" -#: plug-ins/compose/compose.c:132 +#: plug-ins/common/compose.c:132 msgid "cmy-compose" msgstr "" -#: plug-ins/compose/compose.c:133 plug-ins/decompose/decompose.c:143 +#: plug-ins/common/compose.c:133 plug-ins/common/decompose.c:143 msgid "CMYK" msgstr "" -#: plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:133 msgid "Black:" msgstr "" -#: plug-ins/compose/compose.c:134 +#: plug-ins/common/compose.c:134 msgid "cmyk-compose" msgstr "" -#: plug-ins/compose/compose.c:228 +#: plug-ins/common/compose.c:228 msgid "Compose an image from multiple gray images" msgstr "" -#: plug-ins/compose/compose.c:229 +#: plug-ins/common/compose.c:229 msgid "This function creates a new image from multiple gray images" msgstr "" -#: plug-ins/compose/compose.c:234 +#: plug-ins/common/compose.c:234 msgid "/Image/Channel Ops/Compose" msgstr "" -#: plug-ins/compose/compose.c:241 +#: plug-ins/common/compose.c:241 msgid "Compose an image from multiple drawables of gray images" msgstr "" -#: plug-ins/compose/compose.c:242 +#: plug-ins/common/compose.c:242 msgid "" "This function creates a new image from multiple drawables of gray images" msgstr "" -#: plug-ins/compose/compose.c:305 +#: plug-ins/common/compose.c:305 #, c-format msgid "compose: Could not get layers for image %d" msgstr "" -#: plug-ins/compose/compose.c:354 +#: plug-ins/common/compose.c:354 msgid "Composing..." msgstr "" -#: plug-ins/compose/compose.c:421 +#: plug-ins/common/compose.c:421 msgid "compose: drawables have different size" msgstr "" -#: plug-ins/compose/compose.c:438 +#: plug-ins/common/compose.c:438 msgid "compose: images have different size" msgstr "" -#: plug-ins/compose/compose.c:451 +#: plug-ins/common/compose.c:451 msgid "compose: error in getting layer IDs" msgstr "" -#: plug-ins/compose/compose.c:468 +#: plug-ins/common/compose.c:468 #, c-format msgid "compose: image is not a gray image (bpp=%d)" msgstr "" -#: plug-ins/compose/compose.c:483 plug-ins/compose/compose.c:498 +#: plug-ins/common/compose.c:483 plug-ins/common/compose.c:498 msgid "compose: not enough memory" msgstr "" -#: plug-ins/compose/compose.c:809 +#: plug-ins/common/compose.c:809 msgid "Compose" msgstr "" #. The left frame keeps the compose type toggles -#: plug-ins/compose/compose.c:841 +#: plug-ins/common/compose.c:841 msgid "Compose channels:" msgstr "" @@ -1440,324 +1434,324 @@ msgstr "" #. 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/compose/compose.c:855 +#: plug-ins/common/compose.c:855 msgid "Channel representations:" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 +#: plug-ins/common/convmatrix.c:76 msgid "Grey" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:130 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:130 msgid "Red" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:131 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:131 msgid "Green" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:132 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:132 msgid "Blue" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:148 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:148 msgid "Alpha" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:80 +#: plug-ins/common/convmatrix.c:80 msgid "Extend" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:80 +#: plug-ins/common/convmatrix.c:80 msgid "Wrap" msgstr "" #. Action area -#: plug-ins/convmatrix/convmatrix.c:80 plug-ins/gif/gif.c:1163 +#: plug-ins/common/convmatrix.c:80 plug-ins/common/gif.c:1163 msgid "Crop" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:173 +#: plug-ins/common/convmatrix.c:173 msgid "A generic 5x5 convolution matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:178 +#: plug-ins/common/convmatrix.c:178 msgid "/Filters/Generic/Convolution Matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:239 +#: plug-ins/common/convmatrix.c:239 msgid "Applying convolution" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:700 +#: plug-ins/common/convmatrix.c:700 msgid "Convolution Matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:715 +#: plug-ins/common/convmatrix.c:715 msgid "Defaults" msgstr "" #. Outbox:YABox:Frame -#: plug-ins/convmatrix/convmatrix.c:741 +#: plug-ins/common/convmatrix.c:741 msgid "Matrix" msgstr "" #. divisor -#: plug-ins/convmatrix/convmatrix.c:788 +#: plug-ins/common/convmatrix.c:788 msgid "Divisor" msgstr "" #. Offset -#: plug-ins/convmatrix/convmatrix.c:803 plug-ins/depthmerge/depthmerge.c:728 +#: plug-ins/common/convmatrix.c:803 plug-ins/common/depthmerge.c:728 msgid "Offset" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:823 +#: plug-ins/common/convmatrix.c:823 msgid "Automatic" msgstr "" #. Alpha-weighting -#: plug-ins/convmatrix/convmatrix.c:832 +#: plug-ins/common/convmatrix.c:832 msgid "Alpha-weighting" msgstr "" #. Wrap-modes #. OutBox:Inbox:Frame -#: plug-ins/convmatrix/convmatrix.c:847 +#: plug-ins/common/convmatrix.c:847 msgid "Border" msgstr "" #. OutBox:Inbox:Frame -#: plug-ins/convmatrix/convmatrix.c:875 +#: plug-ins/common/convmatrix.c:875 msgid "Channels" msgstr "" -#: plug-ins/cubism/cubism.c:181 +#: plug-ins/common/cubism.c:181 msgid "Convert the input drawable into a collection of rotated squares" msgstr "" -#: plug-ins/cubism/cubism.c:186 +#: plug-ins/common/cubism.c:186 msgid "/Filters/Artistic/Cubism" msgstr "" -#: plug-ins/cubism/cubism.c:298 +#: plug-ins/common/cubism.c:298 msgid "Cubistic Transformation" msgstr "" -#: plug-ins/cubism/cubism.c:331 +#: plug-ins/common/cubism.c:331 msgid "Cubism" msgstr "" -#: plug-ins/cubism/cubism.c:364 +#: plug-ins/common/cubism.c:364 msgid "Use Background Color" msgstr "" -#: plug-ins/cubism/cubism.c:372 +#: plug-ins/common/cubism.c:372 msgid "Tile Size" msgstr "" -#: plug-ins/cubism/cubism.c:388 +#: plug-ins/common/cubism.c:388 msgid "Tile Saturation" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:130 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:130 msgid "red" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:131 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:131 msgid "green" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:132 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:132 msgid "blue" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:135 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:135 msgid "hue" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:136 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:136 msgid "saturation" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:137 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:137 msgid "value" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:140 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:140 msgid "cyan" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:141 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:141 msgid "magenta" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:142 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:142 msgid "yellow" msgstr "" -#: plug-ins/decompose/decompose.c:140 +#: plug-ins/common/decompose.c:140 msgid "Cyan" msgstr "" -#: plug-ins/decompose/decompose.c:141 +#: plug-ins/common/decompose.c:141 msgid "Magenta" msgstr "" -#: plug-ins/decompose/decompose.c:142 +#: plug-ins/common/decompose.c:142 msgid "Yellow" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:145 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:145 msgid "cyan_k" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:146 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:146 msgid "magenta_k" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:147 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:147 msgid "yellow_k" msgstr "" -#: plug-ins/decompose/decompose.c:144 +#: plug-ins/common/decompose.c:144 msgid "black" msgstr "" -#: plug-ins/decompose/decompose.c:145 +#: plug-ins/common/decompose.c:145 msgid "Cyan_K" msgstr "" -#: plug-ins/decompose/decompose.c:146 +#: plug-ins/common/decompose.c:146 msgid "Magenta_K" msgstr "" -#: plug-ins/decompose/decompose.c:147 +#: plug-ins/common/decompose.c:147 msgid "Yellow_K" msgstr "" -#: plug-ins/decompose/decompose.c:148 +#: plug-ins/common/decompose.c:148 msgid "alpha" msgstr "" -#: plug-ins/decompose/decompose.c:216 +#: plug-ins/common/decompose.c:216 msgid "Decompose an image into different types of channels" msgstr "" -#: plug-ins/decompose/decompose.c:217 +#: plug-ins/common/decompose.c:217 msgid "" "This function creates new gray images with different channel information in " "each of them" msgstr "" -#: plug-ins/decompose/decompose.c:222 +#: plug-ins/common/decompose.c:222 msgid "/Image/Channel Ops/Decompose" msgstr "" -#: plug-ins/decompose/decompose.c:303 +#: plug-ins/common/decompose.c:303 msgid "plug_in_decompose: Can only work on RGB*_IMAGE" msgstr "" -#: plug-ins/decompose/decompose.c:309 +#: plug-ins/common/decompose.c:309 msgid "Decomposing..." msgstr "" -#: plug-ins/decompose/decompose.c:374 +#: plug-ins/common/decompose.c:374 msgid "decompose: not an RGB image" msgstr "" -#: plug-ins/decompose/decompose.c:380 +#: plug-ins/common/decompose.c:380 msgid "decompose: No alpha channel available" msgstr "" -#: plug-ins/decompose/decompose.c:409 +#: plug-ins/common/decompose.c:409 msgid "decompose: out of memory" msgstr "" -#: plug-ins/decompose/decompose.c:901 plug-ins/decompose/decompose.c:907 +#: plug-ins/common/decompose.c:901 plug-ins/common/decompose.c:907 msgid "Decompose" msgstr "" #. parameter settings -#: plug-ins/decompose/decompose.c:934 +#: plug-ins/common/decompose.c:934 msgid "Extract channels:" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:194 +#: plug-ins/common/depthmerge.c:194 msgid "Combine two images using corresponding depth maps (z-buffers)" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:195 +#: plug-ins/common/depthmerge.c:195 msgid "" "Taking as input two full-colour, full-alpha images and two corresponding " "grayscale depth maps, this plug-in combines the images based on which is " "closer (has a lower depth map value) at each point." msgstr "" -#: plug-ins/depthmerge/depthmerge.c:202 +#: plug-ins/common/depthmerge.c:202 msgid "/Filters/Combine/Depth Merge" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:369 +#: plug-ins/common/depthmerge.c:369 msgid "Depth-merging..." msgstr "" -#: plug-ins/depthmerge/depthmerge.c:609 +#: plug-ins/common/depthmerge.c:609 msgid "Depth Merge" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:647 +#: plug-ins/common/depthmerge.c:647 msgid "Source 1" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:664 plug-ins/depthmerge/depthmerge.c:698 +#: plug-ins/common/depthmerge.c:664 plug-ins/common/depthmerge.c:698 msgid "Depth Map" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:681 +#: plug-ins/common/depthmerge.c:681 msgid "Source 2" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:723 +#: plug-ins/common/depthmerge.c:723 msgid "Overlap" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:733 +#: plug-ins/common/depthmerge.c:733 msgid "Scale 1" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:738 +#: plug-ins/common/depthmerge.c:738 msgid "Scale 2" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:1181 +#: plug-ins/common/depthmerge.c:1181 msgid "" "Warning: I don't _like_ this color space. This is a suggestion, not a " "threat.\n" msgstr "" -#: plug-ins/destripe/destripe.c:151 +#: plug-ins/common/destripe.c:151 msgid "" "Destripe filter, used to remove vertical stripes caused by cheap scanners." msgstr "" -#: plug-ins/destripe/destripe.c:152 +#: plug-ins/common/destripe.c:152 msgid "This plug-in tries to remove vertical stripes from an image." msgstr "" -#: plug-ins/destripe/destripe.c:155 +#: plug-ins/common/destripe.c:155 msgid "/Filters/Enhance/Destripe" msgstr "" -#: plug-ins/destripe/destripe.c:358 +#: plug-ins/common/destripe.c:358 msgid "Destriping..." msgstr "" -#: plug-ins/destripe/destripe.c:589 +#: plug-ins/common/destripe.c:589 msgid "Destripe" msgstr "" -#: plug-ins/destripe/destripe.c:663 +#: plug-ins/common/destripe.c:663 msgid "Histogram" msgstr "" @@ -1773,36 +1767,36 @@ msgstr "" #. #. * Box size (radius) control... #. -#: plug-ins/destripe/destripe.c:687 +#: plug-ins/common/destripe.c:687 msgid "Width" msgstr "" -#: plug-ins/gif/gif.c:408 +#: plug-ins/common/gif.c:408 msgid "saves files in Compuserve GIF file format" msgstr "" -#: plug-ins/gif/gif.c:682 +#: plug-ins/common/gif.c:682 msgid "GIF: Couldn't simply reduce colours further. Saving as opaque.\n" msgstr "" -#: plug-ins/gif/gif.c:938 +#: plug-ins/common/gif.c:938 msgid "" "GIF: Sorry, can't save RGB images as GIFs - convert to INDEXED\n" "or GRAY first.\n" msgstr "" -#: plug-ins/gif/gif.c:957 +#: plug-ins/common/gif.c:957 #, c-format msgid "GIF: can't open %s\n" msgstr "" -#: plug-ins/gif/gif.c:1064 +#: plug-ins/common/gif.c:1064 msgid "" "Transparent colour *might* be incorrect on viewers which don't support " "transparency." msgstr "" -#: plug-ins/gif/gif.c:1196 +#: plug-ins/common/gif.c:1196 msgid "" "The image which you are trying to save as a GIF\n" "contains layers which extend beyond the actual\n" @@ -1813,339 +1807,339 @@ msgid "" "the image borders, or cancel this save." msgstr "" -#: plug-ins/gif/gif.c:1252 +#: plug-ins/common/gif.c:1252 msgid "Save as GIF" msgstr "" #. regular gif parameter settings -#: plug-ins/gif/gif.c:1286 +#: plug-ins/common/gif.c:1286 msgid "GIF Options" msgstr "" -#: plug-ins/gif/gif.c:1294 plug-ins/png/png.c:1209 +#: plug-ins/common/gif.c:1294 plug-ins/common/png.c:856 msgid "Interlace" msgstr "" -#: plug-ins/gif/gif.c:1306 +#: plug-ins/common/gif.c:1306 msgid "GIF Comment: " msgstr "" -#: plug-ins/gif/gif.c:1339 plug-ins/gif/gif.c:1340 +#: plug-ins/common/gif.c:1339 plug-ins/common/gif.c:1340 msgid "Made with GIMP" msgstr "" #. additional animated gif parameter settings -#: plug-ins/gif/gif.c:1365 +#: plug-ins/common/gif.c:1365 msgid "Animated GIF Options" msgstr "" -#: plug-ins/gif/gif.c:1373 +#: plug-ins/common/gif.c:1373 msgid "Loop forever" msgstr "" -#: plug-ins/gif/gif.c:1386 +#: plug-ins/common/gif.c:1386 msgid "Delay between frames where unspecified: " msgstr "" -#: plug-ins/gif/gif.c:1400 +#: plug-ins/common/gif.c:1400 msgid " milliseconds" msgstr "" -#: plug-ins/gif/gif.c:1411 +#: plug-ins/common/gif.c:1411 msgid "Frame disposal where unspecified: " msgstr "" -#: plug-ins/gif/gif.c:1421 +#: plug-ins/common/gif.c:1421 msgid "I don't care" msgstr "" -#: plug-ins/gif/gif.c:1427 +#: plug-ins/common/gif.c:1427 msgid "Cumulative layers (combine)" msgstr "" -#: plug-ins/gif/gif.c:1433 +#: plug-ins/common/gif.c:1433 msgid "One frame per layer (replace)" msgstr "" -#: plug-ins/gif/gif.c:1491 +#: plug-ins/common/gif.c:1491 #, c-format msgid "GIF: colorstobpp - Eep! too many colours: %d\n" msgstr "" -#: plug-ins/gif/gif.c:1507 +#: plug-ins/common/gif.c:1507 #, c-format msgid "GIF: bpptocolors - Eep! bpp==%d !\n" msgstr "" -#: plug-ins/gifload/gifload.c:134 +#: plug-ins/common/gifload.c:134 msgid "loads files of Compuserve GIF file format" msgstr "" -#: plug-ins/gifload/gifload.c:279 +#: plug-ins/common/gifload.c:279 #, c-format msgid "GIF: can't open \"%s\"\n" msgstr "" -#: plug-ins/gifload/gifload.c:294 +#: plug-ins/common/gifload.c:294 msgid "GIF: error reading magic number\n" msgstr "" -#: plug-ins/gifload/gifload.c:300 +#: plug-ins/common/gifload.c:300 msgid "GIF: not a GIF file\n" msgstr "" -#: plug-ins/gifload/gifload.c:309 +#: plug-ins/common/gifload.c:309 msgid "GIF: bad version number, not '87a' or '89a'\n" msgstr "" -#: plug-ins/gifload/gifload.c:315 +#: plug-ins/common/gifload.c:315 msgid "GIF: failed to read screen descriptor\n" msgstr "" -#: plug-ins/gifload/gifload.c:331 +#: plug-ins/common/gifload.c:331 msgid "GIF: error reading global colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:338 +#: plug-ins/common/gifload.c:338 msgid "GIF: warning - non-square pixels\n" msgstr "" -#: plug-ins/gifload/gifload.c:349 plug-ins/gifload/gifload.c:803 +#: plug-ins/common/gifload.c:349 plug-ins/common/gifload.c:803 msgid "GIF: EOF / read error on image data\n" msgstr "" -#: plug-ins/gifload/gifload.c:364 +#: plug-ins/common/gifload.c:364 msgid "GIF: OF / read error on extension function code\n" msgstr "" #. Not a valid start character -#: plug-ins/gifload/gifload.c:374 +#: plug-ins/common/gifload.c:374 #, c-format msgid "GIF: bogus character 0x%02x, ignoring\n" msgstr "" -#: plug-ins/gifload/gifload.c:382 +#: plug-ins/common/gifload.c:382 msgid "GIF: couldn't read left/top/width/height\n" msgstr "" -#: plug-ins/gifload/gifload.c:394 +#: plug-ins/common/gifload.c:394 msgid "GIF: error reading local colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:452 +#: plug-ins/common/gifload.c:452 msgid "GIF: bad colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:568 +#: plug-ins/common/gifload.c:568 msgid "GIF: error in getting DataBlock size\n" msgstr "" -#: plug-ins/gifload/gifload.c:576 +#: plug-ins/common/gifload.c:576 msgid "GIF: error in reading DataBlock\n" msgstr "" -#: plug-ins/gifload/gifload.c:607 +#: plug-ins/common/gifload.c:607 msgid "GIF: ran off the end of by bits\n" msgstr "" -#: plug-ins/gifload/gifload.c:718 +#: plug-ins/common/gifload.c:718 msgid "GIF: missing EOD in data stream (common occurence)" msgstr "" -#: plug-ins/gifload/gifload.c:735 +#: plug-ins/common/gifload.c:735 msgid "GIF: circular table entry BIG ERROR\n" msgstr "" -#: plug-ins/gifload/gifload.c:809 +#: plug-ins/common/gifload.c:809 msgid "GIF: error while reading\n" msgstr "" -#: plug-ins/gifload/gifload.c:830 +#: plug-ins/common/gifload.c:830 #, c-format msgid "Background (%dms)" msgstr "" -#: plug-ins/gifload/gifload.c:877 +#: plug-ins/common/gifload.c:877 #, c-format msgid "Frame %d" msgstr "" -#: plug-ins/gifload/gifload.c:879 +#: plug-ins/common/gifload.c:879 #, c-format msgid "Frame %d (%dms)" msgstr "" #. 'don't care' -#: plug-ins/gifload/gifload.c:885 plug-ins/gifload/gifload.c:887 +#: plug-ins/common/gifload.c:885 plug-ins/common/gifload.c:887 msgid " (combine)" msgstr "" -#: plug-ins/gifload/gifload.c:886 +#: plug-ins/common/gifload.c:886 msgid " (replace)" msgstr "" -#: plug-ins/gifload/gifload.c:892 +#: plug-ins/common/gifload.c:892 msgid " (unknown disposal)" msgstr "" -#: plug-ins/gifload/gifload.c:893 +#: plug-ins/common/gifload.c:893 msgid "" "GIF: Hmm... please forward this GIF to the GIF plugin author!\n" " (adam@foxbox.org)\n" msgstr "" -#: plug-ins/gifload/gifload.c:896 +#: plug-ins/common/gifload.c:896 msgid "GIF: Something got corrupted.\n" msgstr "" -#: plug-ins/gifload/gifload.c:925 +#: plug-ins/common/gifload.c:925 #, c-format msgid "GIF: reading %d by %d%s GIF image, ncols=%d\n" msgstr "" -#: plug-ins/gifload/gifload.c:926 +#: plug-ins/common/gifload.c:926 msgid " interlaced" msgstr "" -#: plug-ins/gifload/gifload.c:930 +#: plug-ins/common/gifload.c:930 msgid "" "GIF: Ouchie! Can't handle non-alpha RGB frames.\n" " Please mail the plugin author. (adam@gimp.org)\n" msgstr "" -#: plug-ins/gifload/gifload.c:1022 +#: plug-ins/common/gifload.c:1022 msgid "GIF: too much input data, ignoring extra...\n" msgstr "" -#: plug-ins/jpeg/jpeg.c:176 +#: plug-ins/common/jpeg.c:176 msgid "loads files of the jpeg file format" msgstr "" -#: plug-ins/jpeg/jpeg.c:487 +#: plug-ins/common/jpeg.c:487 #, c-format msgid "can't open \"%s\"\n" msgstr "" -#: plug-ins/jpeg/jpeg.c:603 +#: plug-ins/common/jpeg.c:603 #, c-format msgid "" "don't know how to load JPEGs\n" "with %d color channels" msgstr "" -#: plug-ins/jpeg/jpeg.c:648 +#: plug-ins/common/jpeg.c:648 #, c-format msgid "" "unknown density unit %d\n" "assuming dots per inch" msgstr "" -#: plug-ins/jpeg/jpeg.c:993 +#: plug-ins/common/jpeg.c:993 msgid "Save as Jpeg" msgstr "" -#: plug-ins/jpeg/jpeg.c:1026 +#: plug-ins/common/jpeg.c:1026 msgid "Quality" msgstr "" -#: plug-ins/jpeg/jpeg.c:1042 +#: plug-ins/common/jpeg.c:1042 msgid "Smoothing" msgstr "" -#: plug-ins/jpeg/jpeg.c:1058 +#: plug-ins/common/jpeg.c:1058 msgid "Optimize" msgstr "" -#: plug-ins/jpeg/jpeg.c:1066 +#: plug-ins/common/jpeg.c:1066 msgid "Progressive" msgstr "" -#: plug-ins/jpeg/jpeg.c:1079 +#: plug-ins/common/jpeg.c:1079 msgid "Image Comments" msgstr "" -#: plug-ins/mail/mail.c:212 +#: plug-ins/common/mail.c:212 msgid "pipe files to uuencode then mail them" msgstr "" -#: plug-ins/mail/mail.c:213 +#: plug-ins/common/mail.c:213 msgid "You need to have uuencode and mail installed" msgstr "" -#: plug-ins/mail/mail.c:217 +#: plug-ins/common/mail.c:217 msgid "/File/Mail image" msgstr "" -#: plug-ins/mail/mail.c:486 +#: plug-ins/common/mail.c:486 msgid "Send to mail" msgstr "" #. filename label -#: plug-ins/mail/mail.c:620 +#: plug-ins/common/mail.c:620 msgid "Filename:" msgstr "" #. Encapsulation label -#: plug-ins/mail/mail.c:674 +#: plug-ins/common/mail.c:674 msgid "Encapsulation:" msgstr "" #. Encapsulation radiobutton -#: plug-ins/mail/mail.c:683 +#: plug-ins/common/mail.c:683 msgid "Uuencode" msgstr "" -#: plug-ins/mail/mail.c:685 +#: plug-ins/common/mail.c:685 msgid "MIME" msgstr "" -#: plug-ins/mail/mail.c:799 +#: plug-ins/common/mail.c:799 msgid "mail: some sort of error with the file extension or lack thereof \n" msgstr "" -#: plug-ins/oilify/oilify.c:122 +#: plug-ins/common/oilify.c:122 msgid "Modify the specified drawable to resemble an oil painting" msgstr "" -#: plug-ins/oilify/oilify.c:123 +#: plug-ins/common/oilify.c:123 msgid "" "This function performs the well-known oil-paint effect on the specified " "drawable. The size of the input mask is specified by 'mask_size'." msgstr "" -#: plug-ins/oilify/oilify.c:127 +#: plug-ins/common/oilify.c:127 msgid "/Filters/Artistic/Oilify" msgstr "" -#: plug-ins/oilify/oilify.c:198 +#: plug-ins/common/oilify.c:198 msgid "Oil Painting..." msgstr "" -#: plug-ins/oilify/oilify.c:453 +#: plug-ins/common/oilify.c:453 msgid "Oilify" msgstr "" -#: plug-ins/oilify/oilify.c:486 +#: plug-ins/common/oilify.c:486 msgid "Use intensity algorithm" msgstr "" -#: plug-ins/oilify/oilify.c:494 +#: plug-ins/common/oilify.c:494 msgid "Mask Size" msgstr "" -#: plug-ins/png/png.c:504 +#: plug-ins/common/png.c:149 msgid "Loads files in PNG file format" msgstr "" -#: plug-ins/png/png.c:505 +#: plug-ins/common/png.c:150 msgid "This plug-in loads Portable Network Graphics (PNG) files." msgstr "" -#: plug-ins/png/png.c:1171 +#: plug-ins/common/png.c:818 msgid "PNG Options" msgstr "" -#: plug-ins/png/png.c:1216 +#: plug-ins/common/png.c:863 msgid "Compression level" msgstr "" @@ -2243,135 +2237,135 @@ msgstr "" msgid "600 DPI" msgstr "" -#: plug-ins/print/print.c:406 +#: plug-ins/print/print.c:229 msgid "PostScript Level 1" msgstr "" -#: plug-ins/print/print.c:408 +#: plug-ins/print/print.c:231 msgid "PostScript Level 2" msgstr "" -#: plug-ins/print/print.c:410 +#: plug-ins/print/print.c:233 msgid "HP DeskJet 500, 520" msgstr "" -#: plug-ins/print/print.c:412 +#: plug-ins/print/print.c:235 msgid "HP DeskJet 500C, 540C" msgstr "" -#: plug-ins/print/print.c:414 +#: plug-ins/print/print.c:237 msgid "HP DeskJet 550C, 560C" msgstr "" -#: plug-ins/print/print.c:416 +#: plug-ins/print/print.c:239 msgid "HP DeskJet 600 series" msgstr "" -#: plug-ins/print/print.c:418 +#: plug-ins/print/print.c:241 msgid "HP DeskJet 800 series" msgstr "" -#: plug-ins/print/print.c:420 +#: plug-ins/print/print.c:243 msgid "HP DeskJet 1100C, 1120C" msgstr "" -#: plug-ins/print/print.c:422 +#: plug-ins/print/print.c:245 msgid "HP DeskJet 1200C, 1600C" msgstr "" -#: plug-ins/print/print.c:424 +#: plug-ins/print/print.c:247 msgid "HP LaserJet II series" msgstr "" -#: plug-ins/print/print.c:426 +#: plug-ins/print/print.c:249 msgid "HP LaserJet III series" msgstr "" -#: plug-ins/print/print.c:428 +#: plug-ins/print/print.c:251 msgid "HP LaserJet 4 series" msgstr "" -#: plug-ins/print/print.c:430 +#: plug-ins/print/print.c:253 msgid "HP LaserJet 4V, 4Si" msgstr "" -#: plug-ins/print/print.c:432 +#: plug-ins/print/print.c:255 msgid "HP LaserJet 5 series" msgstr "" -#: plug-ins/print/print.c:434 +#: plug-ins/print/print.c:257 msgid "HP LaserJet 5Si" msgstr "" -#: plug-ins/print/print.c:436 +#: plug-ins/print/print.c:259 msgid "HP LaserJet 6 series" msgstr "" -#: plug-ins/print/print.c:438 +#: plug-ins/print/print.c:261 msgid "EPSON Stylus Color" msgstr "" -#: plug-ins/print/print.c:440 +#: plug-ins/print/print.c:263 msgid "EPSON Stylus Color Pro" msgstr "" -#: plug-ins/print/print.c:442 +#: plug-ins/print/print.c:265 msgid "EPSON Stylus Color Pro XL" msgstr "" -#: plug-ins/print/print.c:444 +#: plug-ins/print/print.c:267 msgid "EPSON Stylus Color 1500" msgstr "" -#: plug-ins/print/print.c:446 +#: plug-ins/print/print.c:269 msgid "EPSON Stylus Color 400" msgstr "" -#: plug-ins/print/print.c:448 +#: plug-ins/print/print.c:271 msgid "EPSON Stylus Color 500" msgstr "" -#: plug-ins/print/print.c:450 +#: plug-ins/print/print.c:273 msgid "EPSON Stylus Color 600" msgstr "" -#: plug-ins/print/print.c:452 +#: plug-ins/print/print.c:275 msgid "EPSON Stylus Color 800" msgstr "" -#: plug-ins/print/print.c:454 +#: plug-ins/print/print.c:277 msgid "EPSON Stylus Color 1520" msgstr "" -#: plug-ins/print/print.c:456 +#: plug-ins/print/print.c:279 msgid "EPSON Stylus Color 3000" msgstr "" -#: plug-ins/print/print.c:509 +#: plug-ins/print/print.c:332 msgid "This plug-in prints images from The GIMP." msgstr "" -#: plug-ins/print/print.c:510 +#: plug-ins/print/print.c:333 msgid "Prints images to PostScript, PCL, or ESC/P2 printers." msgstr "" -#: plug-ins/print/print.c:514 +#: plug-ins/print/print.c:337 msgid "/File/Print" msgstr "" -#: plug-ins/print/print.c:827 +#: plug-ins/print/print.c:650 msgid "Auto" msgstr "" -#: plug-ins/print/print.c:828 +#: plug-ins/print/print.c:651 msgid "Portrait" msgstr "" -#: plug-ins/print/print.c:829 +#: plug-ins/print/print.c:652 msgid "Landscape" msgstr "" -#: plug-ins/print/print.c:860 +#: plug-ins/print/print.c:685 #, c-format msgid "Print v%s" msgstr "" @@ -2379,354 +2373,351 @@ msgstr "" #. #. * Media size option menu... #. -#: plug-ins/print/print.c:910 +#: plug-ins/print/print.c:735 msgid "Media Size:" msgstr "" #. #. * Media type option menu... #. -#: plug-ins/print/print.c:926 +#: plug-ins/print/print.c:751 msgid "Media Type:" msgstr "" #. #. * Media source option menu... #. -#: plug-ins/print/print.c:942 +#: plug-ins/print/print.c:767 msgid "Media Source:" msgstr "" #. #. * Orientation option menu... #. -#: plug-ins/print/print.c:958 +#: plug-ins/print/print.c:783 msgid "Orientation:" msgstr "" #. #. * Resolution option menu... #. -#: plug-ins/print/print.c:988 plug-ins/ps/ps.c:1974 +#: plug-ins/common/ps.c:1999 plug-ins/print/print.c:813 msgid "Resolution:" msgstr "" #. #. * Output type toggles... #. -#: plug-ins/print/print.c:1004 +#: plug-ins/print/print.c:829 msgid "Output Type:" msgstr "" -#: plug-ins/print/print.c:1013 +#: plug-ins/print/print.c:838 msgid "B&W" msgstr "" #. #. * Scaling... #. -#: plug-ins/print/print.c:1036 +#: plug-ins/print/print.c:861 msgid "Scaling:" msgstr "" -#: plug-ins/print/print.c:1071 +#: plug-ins/print/print.c:896 msgid "Percent" msgstr "" -#: plug-ins/print/print.c:1080 +#: plug-ins/print/print.c:905 msgid "PPI" msgstr "" #. #. * Brightness slider... #. -#: plug-ins/print/print.c:1092 +#: plug-ins/print/print.c:917 msgid "Brightness:" msgstr "" #. #. * Printer option menu... #. -#: plug-ins/print/print.c:1127 +#: plug-ins/print/print.c:952 msgid "Printer:" msgstr "" -#: plug-ins/print/print.c:1153 plug-ins/print/print.c:1186 +#: plug-ins/print/print.c:978 plug-ins/print/print.c:1011 msgid "Setup" msgstr "" -#: plug-ins/print/print.c:1173 +#: plug-ins/print/print.c:998 msgid "Print" msgstr "" #. #. * Printer driver option menu... #. -#: plug-ins/print/print.c:1208 +#: plug-ins/print/print.c:1033 msgid "Driver:" msgstr "" #. #. * PPD file... #. -#: plug-ins/print/print.c:1233 +#: plug-ins/print/print.c:1058 msgid "PPD File:" msgstr "" -#: plug-ins/print/print.c:1246 +#: plug-ins/print/print.c:1071 msgid "Browse" msgstr "" #. #. * Print command... #. -#: plug-ins/print/print.c:1256 +#: plug-ins/print/print.c:1081 msgid "Command:" msgstr "" #. #. * Output file selection dialog... #. -#: plug-ins/print/print.c:1291 +#: plug-ins/print/print.c:1116 msgid "Print To File?" msgstr "" #. #. * PPD file selection dialog... #. -#: plug-ins/print/print.c:1301 +#: plug-ins/print/print.c:1126 msgid "PPD File?" msgstr "" -#: plug-ins/print/print.c:2287 +#: plug-ins/print/print.c:2112 msgid "File" msgstr "" -#: plug-ins/ps/ps.c:319 plug-ins/ps/ps.c:320 +#: plug-ins/common/ps.c:320 plug-ins/common/ps.c:321 msgid "load file of PostScript/PDF file format" msgstr "" -#: plug-ins/ps/ps.c:343 +#: plug-ins/common/ps.c:344 msgid "save file in PostScript file format" msgstr "" -#: plug-ins/ps/ps.c:344 +#: plug-ins/common/ps.c:345 msgid "" "PostScript saving handles all image types except those with alpha channels." msgstr "" -#: plug-ins/ps/ps.c:549 +#: plug-ins/common/ps.c:550 msgid "PS: can't open file for reading" msgstr "" -#: plug-ins/ps/ps.c:556 +#: plug-ins/common/ps.c:557 #, c-format msgid "Interpreting and Loading %s:" msgstr "" -#: plug-ins/ps/ps.c:566 +#: plug-ins/common/ps.c:565 msgid "PS: can't interprete file" msgstr "" -#: plug-ins/ps/ps.c:573 -msgid "PS: out of memory" -msgstr "" - -#: plug-ins/ps/ps.c:653 +#: plug-ins/common/ps.c:647 msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: plug-ins/ps/ps.c:664 +#: plug-ins/common/ps.c:658 msgid "PS: cannot operate on unknown image types" msgstr "" -#: plug-ins/ps/ps.c:673 +#: plug-ins/common/ps.c:667 msgid "PS: can't open file for writing" msgstr "" -#: plug-ins/ps/ps.c:1947 +#: plug-ins/common/ps.c:1713 plug-ins/common/ps.c:1810 +#: plug-ins/common/ps.c:1903 plug-ins/common/ps.c:1972 msgid "write error occured" msgstr "" -#: plug-ins/ps/ps.c:1974 plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:1999 plug-ins/common/ps.c:2264 msgid "Width:" msgstr "" -#: plug-ins/ps/ps.c:1974 plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:1999 plug-ins/common/ps.c:2264 msgid "Height:" msgstr "" -#: plug-ins/ps/ps.c:1974 +#: plug-ins/common/ps.c:1999 msgid "Pages:" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "b/w" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "gray" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "colour" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "automatic" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "none" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "weak" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "strong" msgstr "" -#: plug-ins/ps/ps.c:1991 +#: plug-ins/common/ps.c:2016 msgid "Load PostScript" msgstr "" #. Rendering -#: plug-ins/ps/ps.c:2024 +#: plug-ins/common/ps.c:2049 msgid "Rendering" msgstr "" -#: plug-ins/ps/ps.c:2064 +#: plug-ins/common/ps.c:2089 msgid "try BoundingBox" msgstr "" #. Colouring -#: plug-ins/ps/ps.c:2077 +#: plug-ins/common/ps.c:2102 msgid "Colouring" msgstr "" -#: plug-ins/ps/ps.c:2113 +#: plug-ins/common/ps.c:2138 msgid "Graphic antialiasing" msgstr "" -#: plug-ins/ps/ps.c:2114 +#: plug-ins/common/ps.c:2139 msgid "Text antialiasing" msgstr "" -#: plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:2264 msgid "X-offset:" msgstr "" -#: plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:2264 msgid "Y-offset:" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "0" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "90" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "180" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "270" msgstr "" -#: plug-ins/ps/ps.c:2243 +#: plug-ins/common/ps.c:2268 msgid "Inch" msgstr "" -#: plug-ins/ps/ps.c:2243 +#: plug-ins/common/ps.c:2268 msgid "Millimeter" msgstr "" -#: plug-ins/ps/ps.c:2258 +#: plug-ins/common/ps.c:2283 msgid "Save PostScript" msgstr "" #. Image Size -#: plug-ins/ps/ps.c:2299 +#: plug-ins/common/ps.c:2324 msgid "Image Size" msgstr "" -#: plug-ins/ps/ps.c:2338 +#: plug-ins/common/ps.c:2363 msgid "keep aspect ratio" msgstr "" #. Unit -#: plug-ins/ps/ps.c:2348 +#: plug-ins/common/ps.c:2373 msgid "Unit" msgstr "" #. Rotation -#: plug-ins/ps/ps.c:2379 +#: plug-ins/common/ps.c:2404 msgid "Rotation" msgstr "" #. Format -#: plug-ins/ps/ps.c:2406 +#: plug-ins/common/ps.c:2431 msgid "Output" msgstr "" -#: plug-ins/ps/ps.c:2414 +#: plug-ins/common/ps.c:2439 msgid "Encapsulated PostScript" msgstr "" -#: plug-ins/ps/ps.c:2440 +#: plug-ins/common/ps.c:2465 msgid "Preview size" msgstr "" -#: plug-ins/xbm/xbm.c:163 +#: plug-ins/common/xbm.c:163 msgid "Load a file in X10 or X11 bitmap (XBM) file format" msgstr "" -#: plug-ins/xbm/xbm.c:164 +#: plug-ins/common/xbm.c:164 msgid "" "Load a file in X10 or X11 bitmap (XBM) file format. XBM is a lossless " "format for flat black-and-white (two color indexed) images." msgstr "" -#: plug-ins/xbm/xbm.c:230 +#: plug-ins/common/xbm.c:230 msgid "Made with Gimp" msgstr "" -#: plug-ins/xbm/xbm.c:518 +#: plug-ins/common/xbm.c:518 #, c-format msgid "XBM: cannot open \"%s\"\n" msgstr "" -#: plug-ins/xbm/xbm.c:583 +#: plug-ins/common/xbm.c:583 #, c-format msgid "XBM: cannot read header (ftell == %ld)\n" msgstr "" -#: plug-ins/xbm/xbm.c:589 +#: plug-ins/common/xbm.c:589 msgid "XBM: no image width specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:595 +#: plug-ins/common/xbm.c:595 msgid "XBM: no image height specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:601 +#: plug-ins/common/xbm.c:601 msgid "XBM: no image data type specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:692 +#: plug-ins/common/xbm.c:692 msgid "XBM: can only save two color indexed images\n" msgstr "" -#: plug-ins/xbm/xbm.c:697 +#: plug-ins/common/xbm.c:697 msgid "XBM Warning" msgstr "" -#: plug-ins/xbm/xbm.c:727 +#: plug-ins/common/xbm.c:727 msgid "" "The image which you are trying to save as\n" "an XBM contains more than two colors.\n" @@ -2735,82 +2726,82 @@ msgid "" "(1-bit) indexed image and try again." msgstr "" -#: plug-ins/xbm/xbm.c:799 +#: plug-ins/common/xbm.c:799 #, c-format msgid "XBM: cannot create \"%s\"\n" msgstr "" -#: plug-ins/xbm/xbm.c:949 +#: plug-ins/common/xbm.c:949 msgid "Save as XBM" msgstr "" #. parameter settings -#: plug-ins/xbm/xbm.c:980 +#: plug-ins/common/xbm.c:980 msgid "XBM Options" msgstr "" -#: plug-ins/xbm/xbm.c:995 +#: plug-ins/common/xbm.c:995 msgid "Description: " msgstr "" #. X10 format -#: plug-ins/xbm/xbm.c:1011 +#: plug-ins/common/xbm.c:1011 msgid "X10 format bitmap" msgstr "" -#: plug-ins/xbm/xbm.c:1024 +#: plug-ins/common/xbm.c:1024 msgid "Identifier prefix: " msgstr "" -#: plug-ins/xpm/xpm.c:170 +#: plug-ins/common/xpm.c:170 msgid "loads files of the xpm file format" msgstr "" -#: plug-ins/xpm/xpm.c:182 +#: plug-ins/common/xpm.c:182 msgid "saves files in the xpm file format (if you're on a 16 bit display...)" msgstr "" -#: plug-ins/xpm/xpm.c:756 +#: plug-ins/common/xpm.c:756 msgid "Save as Xpm" msgstr "" -#: plug-ins/xpm/xpm.c:790 +#: plug-ins/common/xpm.c:790 msgid "Alpha Threshold" msgstr "" -#: plug-ins/xwd/xwd.c:222 plug-ins/xwd/xwd.c:223 +#: plug-ins/common/xwd.c:226 plug-ins/common/xwd.c:227 msgid "load file of the XWD file format" msgstr "" -#: plug-ins/xwd/xwd.c:234 +#: plug-ins/common/xwd.c:238 msgid "saves files in the XWD file format" msgstr "" -#: plug-ins/xwd/xwd.c:235 +#: plug-ins/common/xwd.c:239 msgid "XWD saving handles all image types except those with alpha channels." msgstr "" -#: plug-ins/xwd/xwd.c:331 +#: plug-ins/common/xwd.c:335 msgid "can't open file for reading" msgstr "" -#: plug-ins/xwd/xwd.c:347 +#: plug-ins/common/xwd.c:351 msgid "can't open file as XWD file" msgstr "" -#: plug-ins/xwd/xwd.c:362 +#: plug-ins/common/xwd.c:366 msgid "can't get memory for colormap" msgstr "" -#: plug-ins/xwd/xwd.c:380 +#: plug-ins/common/xwd.c:384 msgid "can't read color entries" msgstr "" -#: plug-ins/xwd/xwd.c:444 +#: plug-ins/common/xwd.c:448 msgid "this image depth/format is not supported" msgstr "" -#: plug-ins/xwd/xwd.c:448 +#: plug-ins/common/xwd.c:452 #, c-format msgid "" "load_image (xwd): XWD-file %s has format %d, depth %d\n" @@ -2818,35 +2809,35 @@ msgid "" "Currently this is not supported.\n" msgstr "" -#: plug-ins/xwd/xwd.c:476 +#: plug-ins/common/xwd.c:480 msgid "XWD save cannot handle images with alpha channels" msgstr "" -#: plug-ins/xwd/xwd.c:487 +#: plug-ins/common/xwd.c:491 msgid "cannot operate on unknown image types" msgstr "" -#: plug-ins/xwd/xwd.c:496 +#: plug-ins/common/xwd.c:500 msgid "can't open file for writing" msgstr "" -#: plug-ins/xwd/xwd.c:1148 +#: plug-ins/common/xwd.c:1152 msgid "EOF encountered on " msgstr "" -#: plug-ins/xwd/xwd.c:1246 plug-ins/xwd/xwd.c:1408 plug-ins/xwd/xwd.c:1605 -#: plug-ins/xwd/xwd.c:1854 +#: plug-ins/common/xwd.c:1250 plug-ins/common/xwd.c:1412 +#: plug-ins/common/xwd.c:1609 plug-ins/common/xwd.c:1858 msgid "EOF encountered on reading" msgstr "" -#: plug-ins/xwd/xwd.c:1294 +#: plug-ins/common/xwd.c:1298 msgid "No memory for mapping colors" msgstr "" -#: plug-ins/xwd/xwd.c:1978 +#: plug-ins/common/xwd.c:1982 msgid "Error during writing indexed/grey image" msgstr "" -#: plug-ins/xwd/xwd.c:2067 +#: plug-ins/common/xwd.c:2071 msgid "Error during writing rgb image" msgstr "" diff --git a/po-plug-ins/nl.po b/po-plug-ins/nl.po index 4336c06aab..456dd3c23c 100644 --- a/po-plug-ins/nl.po +++ b/po-plug-ins/nl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 1999-06-05 14:12-0700\n" +"POT-Creation-Date: 1999-07-17 11:11-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,236 +14,230 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: plug-ins/CML_explorer/CML_explorer.c:226 +#: plug-ins/common/CML_explorer.c:226 msgid "Keep image's values" msgstr "Keep image's values" -#: plug-ins/CML_explorer/CML_explorer.c:228 +#: plug-ins/common/CML_explorer.c:228 msgid "Keep the first value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:230 +#: plug-ins/common/CML_explorer.c:230 msgid "Fill with parameter k" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:232 +#: plug-ins/common/CML_explorer.c:232 msgid "k{x(1-x)}^p" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:234 +#: plug-ins/common/CML_explorer.c:234 msgid "k{x(1-x)}^p stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:236 +#: plug-ins/common/CML_explorer.c:236 msgid "kx^p" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:238 +#: plug-ins/common/CML_explorer.c:238 msgid "kx^p stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:240 +#: plug-ins/common/CML_explorer.c:240 msgid "k(1 - x^p)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:242 +#: plug-ins/common/CML_explorer.c:242 msgid "k(1 - x^p) stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:244 +#: plug-ins/common/CML_explorer.c:244 msgid "Delta function" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:246 +#: plug-ins/common/CML_explorer.c:246 msgid "Delta function stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:248 +#: plug-ins/common/CML_explorer.c:248 msgid "sin^p-based function" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:250 +#: plug-ins/common/CML_explorer.c:250 msgid "sin^p, stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:256 +#: plug-ins/common/CML_explorer.c:256 msgid "None" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:258 +#: plug-ins/common/CML_explorer.c:258 msgid "Max (x, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:260 +#: plug-ins/common/CML_explorer.c:260 msgid "Max (x+d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:262 +#: plug-ins/common/CML_explorer.c:262 msgid "Max (x-d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:264 -msgid "Mix (x, -)" +#: plug-ins/common/CML_explorer.c:264 +msgid "Min (x, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:266 +#: plug-ins/common/CML_explorer.c:266 msgid "Min (x+d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:268 +#: plug-ins/common/CML_explorer.c:268 msgid "Min (x-d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:270 +#: plug-ins/common/CML_explorer.c:270 msgid "Max (x+d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:272 +#: plug-ins/common/CML_explorer.c:272 msgid "Max (x+d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:274 +#: plug-ins/common/CML_explorer.c:274 msgid "Max (x-d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:276 +#: plug-ins/common/CML_explorer.c:276 msgid "Max (x-d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:278 +#: plug-ins/common/CML_explorer.c:278 msgid "Min (x+d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:280 +#: plug-ins/common/CML_explorer.c:280 msgid "Min (x+d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:282 +#: plug-ins/common/CML_explorer.c:282 msgid "Min (x-d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:284 +#: plug-ins/common/CML_explorer.c:284 msgid "Min (x-d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:290 +#: plug-ins/common/CML_explorer.c:290 msgid "Standard" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:292 +#: plug-ins/common/CML_explorer.c:292 msgid "Use average value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:294 +#: plug-ins/common/CML_explorer.c:294 msgid "Use reverse value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:296 +#: plug-ins/common/CML_explorer.c:296 msgid "With random power (0,10)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:298 +#: plug-ins/common/CML_explorer.c:298 msgid "With random power (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:300 +#: plug-ins/common/CML_explorer.c:300 msgid "With gradient power (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:302 +#: plug-ins/common/CML_explorer.c:302 msgid "Multiply rand. value (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:304 +#: plug-ins/common/CML_explorer.c:304 msgid "Multiply rand. value (0,2)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:306 +#: plug-ins/common/CML_explorer.c:306 msgid "Multiply gradient (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:308 +#: plug-ins/common/CML_explorer.c:308 msgid "With p and random (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:313 +#: plug-ins/common/CML_explorer.c:313 msgid "All black" msgstr "" #. 0 -#: plug-ins/CML_explorer/CML_explorer.c:314 +#: plug-ins/common/CML_explorer.c:314 msgid "All gray" msgstr "" #. 1 -#: plug-ins/CML_explorer/CML_explorer.c:315 +#: plug-ins/common/CML_explorer.c:315 msgid "All white" msgstr "" #. 2 -#: plug-ins/CML_explorer/CML_explorer.c:316 +#: plug-ins/common/CML_explorer.c:316 msgid "The first row of the image" msgstr "" #. 3 -#: plug-ins/CML_explorer/CML_explorer.c:317 +#: plug-ins/common/CML_explorer.c:317 msgid "Continuous gradient" msgstr "" #. 4 -#: plug-ins/CML_explorer/CML_explorer.c:318 +#: plug-ins/common/CML_explorer.c:318 msgid "Continuous grad. w/o gap" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:320 +#: plug-ins/common/CML_explorer.c:320 msgid "Random, ch. independent" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:322 +#: plug-ins/common/CML_explorer.c:322 msgid "Random shared" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:324 +#: plug-ins/common/CML_explorer.c:324 msgid "Randoms from seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:326 +#: plug-ins/common/CML_explorer.c:326 msgid "Randoms from seed (shared)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:380 -#: plug-ins/CML_explorer/CML_explorer.c:388 -#: plug-ins/CML_explorer/CML_explorer.c:1431 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:135 +#: plug-ins/common/CML_explorer.c:380 plug-ins/common/CML_explorer.c:388 +#: plug-ins/common/CML_explorer.c:1431 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:135 msgid "Hue" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:381 -#: plug-ins/CML_explorer/CML_explorer.c:389 -#: plug-ins/CML_explorer/CML_explorer.c:1435 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:136 +#: plug-ins/common/CML_explorer.c:381 plug-ins/common/CML_explorer.c:389 +#: plug-ins/common/CML_explorer.c:1435 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:136 msgid "Saturation" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:382 -#: plug-ins/CML_explorer/CML_explorer.c:390 -#: plug-ins/CML_explorer/CML_explorer.c:1439 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:137 +#: plug-ins/common/CML_explorer.c:382 plug-ins/common/CML_explorer.c:390 +#: plug-ins/common/CML_explorer.c:1439 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:137 msgid "Value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:387 +#: plug-ins/common/CML_explorer.c:387 msgid "NULL" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:494 +#: plug-ins/common/CML_explorer.c:494 msgid "Make an image of Coupled-Map Lattice" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:495 +#: plug-ins/common/CML_explorer.c:495 msgid "" "Make an image of Coupled-Map Lattice (CML). CML is a kind of Cellula " "Automata on continuous (value) domain. In RUN_NONINTERACTIVE, the name of a " @@ -251,87 +245,87 @@ msgid "" "parameter file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1327 +#: plug-ins/common/CML_explorer.c:1327 msgid "Coupled-Map-Lattice Explorer" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1344 plug-ins/ps/ps.c:2423 +#: plug-ins/common/CML_explorer.c:1344 plug-ins/common/ps.c:2448 msgid "Preview" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1385 +#: plug-ins/common/CML_explorer.c:1385 msgid "New seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1391 +#: plug-ins/common/CML_explorer.c:1391 msgid "Fix seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1397 +#: plug-ins/common/CML_explorer.c:1397 msgid "Random seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1409 +#: plug-ins/common/CML_explorer.c:1409 msgid "Load" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1412 +#: plug-ins/common/CML_explorer.c:1412 msgid "Save" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1429 +#: plug-ins/common/CML_explorer.c:1429 msgid "Hue settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1433 +#: plug-ins/common/CML_explorer.c:1433 msgid "Saturation settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1437 +#: plug-ins/common/CML_explorer.c:1437 msgid "Value (grayimage) settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1441 +#: plug-ins/common/CML_explorer.c:1441 msgid "Advanced settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1443 +#: plug-ins/common/CML_explorer.c:1443 msgid "Advanced" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1455 +#: plug-ins/common/CML_explorer.c:1455 msgid "Other parameter settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1459 +#: plug-ins/common/CML_explorer.c:1459 msgid "Channel independed parameters" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1463 +#: plug-ins/common/CML_explorer.c:1463 msgid "Initial value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1469 +#: plug-ins/common/CML_explorer.c:1469 msgid "Zoom scale" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1474 +#: plug-ins/common/CML_explorer.c:1474 msgid "Start offset" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1494 +#: plug-ins/common/CML_explorer.c:1494 msgid "Seed of random (only for \"from seed\" modes)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1498 +#: plug-ins/common/CML_explorer.c:1498 msgid "Seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1508 +#: plug-ins/common/CML_explorer.c:1508 msgid "Switch to \"from seed\" with the last seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1515 +#: plug-ins/common/CML_explorer.c:1515 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 " @@ -339,202 +333,199 @@ msgid "" "(2) all mutation rates equal to zero." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1532 +#: plug-ins/common/CML_explorer.c:1532 msgid "Others" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1539 +#: plug-ins/common/CML_explorer.c:1539 msgid "Misc operations" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1544 +#: plug-ins/common/CML_explorer.c:1544 msgid "Copy settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1548 +#: plug-ins/common/CML_explorer.c:1548 msgid "Source ch." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1554 -#: plug-ins/CML_explorer/CML_explorer.c:1588 +#: plug-ins/common/CML_explorer.c:1554 plug-ins/common/CML_explorer.c:1588 msgid "Destination ch." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1560 +#: plug-ins/common/CML_explorer.c:1560 msgid "Do copy parameters" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1578 +#: plug-ins/common/CML_explorer.c:1578 msgid "Selective load settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1582 +#: plug-ins/common/CML_explorer.c:1582 msgid "Source ch. in file" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1608 +#: plug-ins/common/CML_explorer.c:1608 msgid "Misc ops." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1644 +#: plug-ins/common/CML_explorer.c:1644 msgid "Function type" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1651 +#: plug-ins/common/CML_explorer.c:1651 msgid "Composition" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1658 +#: plug-ins/common/CML_explorer.c:1658 msgid "Misc arrange" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1665 +#: plug-ins/common/CML_explorer.c:1665 msgid "Use cyclic range" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1670 +#: plug-ins/common/CML_explorer.c:1670 msgid "Mod. rate" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1677 +#: plug-ins/common/CML_explorer.c:1677 msgid "Env. sensitivity" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1684 +#: plug-ins/common/CML_explorer.c:1684 msgid "Diffusion dist." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1691 +#: plug-ins/common/CML_explorer.c:1691 msgid "# of subranges" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1698 +#: plug-ins/common/CML_explorer.c:1698 msgid "P(ower factor)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1705 +#: plug-ins/common/CML_explorer.c:1705 msgid "Parameter k" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1712 +#: plug-ins/common/CML_explorer.c:1712 msgid "Range low" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1719 +#: plug-ins/common/CML_explorer.c:1719 msgid "Range high" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1738 +#: plug-ins/common/CML_explorer.c:1738 msgid "Plot the graph of the settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1772 +#: plug-ins/common/CML_explorer.c:1772 msgid "Ch. sensitivity" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1779 +#: plug-ins/common/CML_explorer.c:1779 msgid "Mutation rate" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1786 +#: plug-ins/common/CML_explorer.c:1786 msgid "Mutation dist." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1815 +#: plug-ins/common/CML_explorer.c:1815 msgid "Graph of the current settings" msgstr "" #. Action Area -#: plug-ins/CML_explorer/CML_explorer.c:1820 -#: plug-ins/CML_explorer/CML_explorer.c:2681 -#: plug-ins/CML_explorer/CML_explorer.c:2777 -#: plug-ins/apply_lens/apply_lens.c:420 plug-ins/blur/blur.c:619 -#: plug-ins/bmp/bmpwrite.c:428 plug-ins/bumpmap/bumpmap.c:970 -#: plug-ins/checkerboard/checkerboard.c:381 plug-ins/compose/compose.c:816 -#: plug-ins/convmatrix/convmatrix.c:706 plug-ins/cubism/cubism.c:338 -#: plug-ins/decompose/decompose.c:914 plug-ins/depthmerge/depthmerge.c:746 -#: plug-ins/destripe/destripe.c:695 plug-ins/gif/gif.c:1263 -#: plug-ins/jpeg/jpeg.c:1000 plug-ins/mail/mail.c:491 -#: plug-ins/oilify/oilify.c:460 plug-ins/png/png.c:1180 -#: plug-ins/print/print.c:1279 plug-ins/ps/ps.c:1998 plug-ins/ps/ps.c:2265 -#: plug-ins/xbm/xbm.c:959 plug-ins/xpm/xpm.c:763 +#: plug-ins/bmp/bmpwrite.c:428 plug-ins/common/CML_explorer.c:1820 +#: plug-ins/common/CML_explorer.c:2681 plug-ins/common/CML_explorer.c:2777 +#: plug-ins/common/apply_lens.c:420 plug-ins/common/blur.c:619 +#: plug-ins/common/bumpmap.c:970 plug-ins/common/checkerboard.c:381 +#: plug-ins/common/compose.c:816 plug-ins/common/convmatrix.c:706 +#: plug-ins/common/cubism.c:338 plug-ins/common/decompose.c:914 +#: plug-ins/common/depthmerge.c:746 plug-ins/common/destripe.c:695 +#: plug-ins/common/gif.c:1263 plug-ins/common/jpeg.c:1000 +#: plug-ins/common/mail.c:491 plug-ins/common/oilify.c:460 +#: plug-ins/common/png.c:827 plug-ins/common/ps.c:2023 +#: plug-ins/common/ps.c:2290 plug-ins/common/xbm.c:959 +#: plug-ins/common/xpm.c:763 plug-ins/print/print.c:1104 msgid "OK" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1830 +#: plug-ins/common/CML_explorer.c:1830 msgid "The Graph" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1922 +#: plug-ins/common/CML_explorer.c:1922 msgid "Warning: the source and the destination are the same channel." msgstr "" #. Action Area -#: plug-ins/CML_explorer/CML_explorer.c:2010 +#: plug-ins/common/CML_explorer.c:2010 msgid "Execute" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2019 +#: plug-ins/common/CML_explorer.c:2019 msgid "Execute and Exit" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2027 +#: plug-ins/common/CML_explorer.c:2027 msgid "Exit" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2045 +#: plug-ins/common/CML_explorer.c:2045 msgid "Save parameters to" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2108 -#: plug-ins/CML_explorer/CML_explorer.c:2301 +#: plug-ins/common/CML_explorer.c:2108 plug-ins/common/CML_explorer.c:2301 #, c-format msgid "Error: could not open \"%s\"" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2173 +#: plug-ins/common/CML_explorer.c:2173 msgid "CML file operation warning" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2180 +#: plug-ins/common/CML_explorer.c:2180 #, c-format msgid "%s exists, overwrite?" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2223 +#: plug-ins/common/CML_explorer.c:2223 msgid "Load parameters from" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2225 +#: plug-ins/common/CML_explorer.c:2225 msgid "Selective load from" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2324 +#: plug-ins/common/CML_explorer.c:2324 msgid "Error: it's not CML parameter file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2331 +#: plug-ins/common/CML_explorer.c:2331 msgid "Warning: it's an old format file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2333 +#: plug-ins/common/CML_explorer.c:2333 msgid "Warning: Hmmm, it's a parameter file for newer CML_explorer than me." msgstr "" #. cancel button -#: plug-ins/CML_explorer/CML_explorer.c:2690 -#: plug-ins/Lighting/lighting_ui.c:1062 plug-ins/apply_lens/apply_lens.c:430 -#: plug-ins/blur/blur.c:621 plug-ins/bmp/bmpwrite.c:437 -#: plug-ins/bumpmap/bumpmap.c:979 plug-ins/checkerboard/checkerboard.c:390 -#: plug-ins/colorify/colorify.c:319 plug-ins/compose/compose.c:825 -#: plug-ins/convmatrix/convmatrix.c:723 plug-ins/cubism/cubism.c:347 -#: plug-ins/decompose/decompose.c:924 plug-ins/depthmerge/depthmerge.c:756 -#: plug-ins/destripe/destripe.c:704 plug-ins/gif/gif.c:1172 -#: plug-ins/jpeg/jpeg.c:1009 plug-ins/mail/mail.c:502 -#: plug-ins/oilify/oilify.c:469 plug-ins/png/png.c:1189 -#: plug-ins/print/print.c:1166 plug-ins/print/print.c:1272 -#: plug-ins/ps/ps.c:2008 plug-ins/ps/ps.c:2275 plug-ins/xbm/xbm.c:707 -#: plug-ins/xbm/xbm.c:969 plug-ins/xpm/xpm.c:772 +#: plug-ins/Lighting/lighting_ui.c:1062 plug-ins/bmp/bmpwrite.c:437 +#: plug-ins/common/CML_explorer.c:2690 plug-ins/common/apply_lens.c:430 +#: plug-ins/common/blur.c:621 plug-ins/common/bumpmap.c:979 +#: plug-ins/common/checkerboard.c:390 plug-ins/common/colorify.c:323 +#: plug-ins/common/compose.c:825 plug-ins/common/convmatrix.c:723 +#: plug-ins/common/cubism.c:347 plug-ins/common/decompose.c:924 +#: plug-ins/common/depthmerge.c:756 plug-ins/common/destripe.c:704 +#: plug-ins/common/gif.c:1172 plug-ins/common/jpeg.c:1009 +#: plug-ins/common/mail.c:502 plug-ins/common/oilify.c:469 +#: plug-ins/common/png.c:836 plug-ins/common/ps.c:2033 +#: plug-ins/common/ps.c:2300 plug-ins/common/xbm.c:707 +#: plug-ins/common/xbm.c:969 plug-ins/common/xpm.c:772 +#: plug-ins/print/print.c:991 plug-ins/print/print.c:1097 msgid "Cancel" msgstr "" @@ -867,23 +858,23 @@ msgstr "" msgid "Zoom out (make image smaller)" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:136 +#: plug-ins/common/apply_lens.c:136 msgid "Apply a lens effect" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:137 +#: plug-ins/common/apply_lens.c:137 msgid "This plug-in uses Snell's law to draw an ellipsoid lens over the image" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:141 +#: plug-ins/common/apply_lens.c:141 msgid "/Filters/Glass Effects/Apply Lens" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:200 +#: plug-ins/common/apply_lens.c:200 msgid "Applying lens..." msgstr "" -#: plug-ins/apply_lens/apply_lens.c:414 +#: plug-ins/common/apply_lens.c:414 msgid "Lens effect" msgstr "" @@ -892,40 +883,40 @@ msgstr "" #. * #. * First set up the basic containers, label them, etc. #. -#: plug-ins/apply_lens/apply_lens.c:439 plug-ins/blur/blur.c:607 -#: plug-ins/checkerboard/checkerboard.c:399 plug-ins/cubism/cubism.c:356 -#: plug-ins/jpeg/jpeg.c:1018 plug-ins/oilify/oilify.c:478 -#: plug-ins/png/png.c:1200 plug-ins/xpm/xpm.c:781 +#: plug-ins/common/apply_lens.c:439 plug-ins/common/blur.c:607 +#: plug-ins/common/checkerboard.c:399 plug-ins/common/cubism.c:356 +#: plug-ins/common/jpeg.c:1018 plug-ins/common/oilify.c:478 +#: plug-ins/common/png.c:847 plug-ins/common/xpm.c:781 msgid "Parameter Settings" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:448 +#: plug-ins/common/apply_lens.c:448 msgid "Keep original surroundings" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:461 +#: plug-ins/common/apply_lens.c:461 msgid "Set surroundings to index 0" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:462 +#: plug-ins/common/apply_lens.c:462 msgid "Set surroundings to background color" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:475 +#: plug-ins/common/apply_lens.c:475 msgid "Make surroundings transparent" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:490 +#: plug-ins/common/apply_lens.c:490 msgid "Lens refraction index: " msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:82 +#: plug-ins/common/autostretch_hsv.c:82 msgid "" "Automatically stretch the contrast of the specified drawable to cover all " "possible ranges." msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:83 +#: plug-ins/common/autostretch_hsv.c:83 msgid "" "This simple plug-in does an automatic contrast stretch. For each channel in " "the image, it finds the minimum and maximum values... it uses those values " @@ -935,52 +926,52 @@ msgid "" "space, and preserves hue." msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:87 +#: plug-ins/common/autostretch_hsv.c:87 msgid "/Image/Colors/Auto-Stretch HSV" msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:119 +#: plug-ins/common/autostretch_hsv.c:119 msgid "Auto-Stretching HSV..." msgstr "" -#: plug-ins/blur/blur.c:194 +#: plug-ins/common/blur.c:194 msgid "Apply a 3x3 blurring convolution kernel to the specified drawable." msgstr "" -#: plug-ins/blur/blur.c:195 +#: plug-ins/common/blur.c:195 msgid "" "This plug-in randomly blurs the specified drawable, using a 3x3 blur. You " "control the percentage of the pixels that are blurred and the number of " "times blurring is applied. Indexed images are not supported." msgstr "" -#: plug-ins/blur/blur.c:208 +#: plug-ins/common/blur.c:208 msgid "/Filters/Blur/Blur" msgstr "" -#: plug-ins/blur/blur.c:620 +#: plug-ins/common/blur.c:620 msgid "Accept settings and apply filter to image" msgstr "" -#: plug-ins/blur/blur.c:622 +#: plug-ins/common/blur.c:622 msgid "Close plug-in without making any changes" msgstr "" #. #. * Randomization seed initialization controls #. -#: plug-ins/blur/blur.c:626 +#: plug-ins/common/blur.c:626 msgid "Randomization Seed:" msgstr "" #. #. * Time button #. -#: plug-ins/blur/blur.c:637 +#: plug-ins/common/blur.c:637 msgid "Current Time" msgstr "" -#: plug-ins/blur/blur.c:638 +#: plug-ins/common/blur.c:638 msgid "" "Seed random number generator from the current time - this guarantees a " "reasonable randomization" @@ -989,39 +980,39 @@ msgstr "" #. #. * User button #. -#: plug-ins/blur/blur.c:648 +#: plug-ins/common/blur.c:648 msgid "Other Value" msgstr "" -#: plug-ins/blur/blur.c:649 +#: plug-ins/common/blur.c:649 msgid "" "Enable user-entered value for random number generator seed - this allows you " "to repeat a given \"random\" operation" msgstr "" -#: plug-ins/blur/blur.c:661 +#: plug-ins/common/blur.c:661 msgid "Value for seeding the random number generator" msgstr "" #. #. * Randomization percentage label & scale (1 to 100) #. -#: plug-ins/blur/blur.c:666 +#: plug-ins/common/blur.c:666 msgid "Randomization %:" msgstr "" -#: plug-ins/blur/blur.c:669 +#: plug-ins/common/blur.c:669 msgid "Percentage of pixels to be filtered" msgstr "" #. #. * Repeat count label & scale (1 to 100) #. -#: plug-ins/blur/blur.c:674 +#: plug-ins/common/blur.c:674 msgid "Repeat:" msgstr "" -#: plug-ins/blur/blur.c:677 +#: plug-ins/common/blur.c:677 msgid "Number of times to apply filter" msgstr "" @@ -1033,9 +1024,10 @@ msgstr "" msgid "Saves files in Windows BMP file format" msgstr "" -#: plug-ins/bmp/bmpread.c:27 plug-ins/gifload/gifload.c:287 -#: plug-ins/jpeg/jpeg.c:494 plug-ins/png/png.c:700 plug-ins/png/png.c:702 -#: plug-ins/xbm/xbm.c:523 plug-ins/xpm/xpm.c:300 +#: plug-ins/bmp/bmpread.c:27 plug-ins/common/gifload.c:287 +#: plug-ins/common/jpeg.c:494 plug-ins/common/png.c:345 +#: plug-ins/common/png.c:347 plug-ins/common/xbm.c:523 +#: plug-ins/common/xpm.c:300 #, c-format msgid "Loading %s:" msgstr "" @@ -1074,9 +1066,10 @@ msgstr "" #. * Create the "background" layer to hold the image... #. #: plug-ins/bmp/bmpread.c:210 plug-ins/bmp/bmpread.c:218 -#: plug-ins/bmp/bmpread.c:224 plug-ins/compose/compose.c:562 -#: plug-ins/decompose/decompose.c:472 plug-ins/gifload/gifload.c:828 -#: plug-ins/jpeg/jpeg.c:611 plug-ins/png/png.c:810 plug-ins/xbm/xbm.c:612 +#: plug-ins/bmp/bmpread.c:224 plug-ins/common/compose.c:562 +#: plug-ins/common/decompose.c:472 plug-ins/common/gifload.c:828 +#: plug-ins/common/jpeg.c:611 plug-ins/common/png.c:455 +#: plug-ins/common/xbm.c:612 msgid "Background" msgstr "" @@ -1089,9 +1082,10 @@ msgstr "" msgid "can't open %s\n" msgstr "" -#: plug-ins/bmp/bmpwrite.c:154 plug-ins/jpeg/jpeg.c:759 plug-ins/png/png.c:950 -#: plug-ins/png/png.c:952 plug-ins/ps/ps.c:680 plug-ins/xbm/xbm.c:777 -#: plug-ins/xpm/xpm.c:611 plug-ins/xwd/xwd.c:503 +#: plug-ins/bmp/bmpwrite.c:154 plug-ins/common/jpeg.c:759 +#: plug-ins/common/png.c:595 plug-ins/common/png.c:597 +#: plug-ins/common/ps.c:673 plug-ins/common/xbm.c:777 +#: plug-ins/common/xpm.c:611 plug-ins/common/xwd.c:507 #, c-format msgid "Saving %s:" msgstr "" @@ -1129,310 +1123,310 @@ msgstr "" msgid "Bucket Size:" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:298 +#: plug-ins/common/bumpmap.c:298 msgid "Linear map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:299 +#: plug-ins/common/bumpmap.c:299 msgid "Spherical map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:300 +#: plug-ins/common/bumpmap.c:300 msgid "Sinusoidal map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:346 +#: plug-ins/common/bumpmap.c:346 msgid "Create an embossing effect using an image as a bump map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:354 +#: plug-ins/common/bumpmap.c:354 msgid "/Filters/Map/Bump Map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:500 +#: plug-ins/common/bumpmap.c:500 msgid "Bump-mapping..." msgstr "" #. Bump map menu -#: plug-ins/bumpmap/bumpmap.c:830 plug-ins/bumpmap/bumpmap.c:939 +#: plug-ins/common/bumpmap.c:830 plug-ins/common/bumpmap.c:939 msgid "Bump map" msgstr "" #. Compensate darkening -#: plug-ins/bumpmap/bumpmap.c:884 +#: plug-ins/common/bumpmap.c:884 msgid "Compensate for darkening" msgstr "" #. Invert bumpmap -#: plug-ins/bumpmap/bumpmap.c:895 +#: plug-ins/common/bumpmap.c:895 msgid "Invert bumpmap" msgstr "" #. Controls -#: plug-ins/bumpmap/bumpmap.c:958 +#: plug-ins/common/bumpmap.c:958 msgid "Azimuth" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:959 +#: plug-ins/common/bumpmap.c:959 msgid "Elevation" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:960 +#: plug-ins/common/bumpmap.c:960 msgid "Depth" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:961 +#: plug-ins/common/bumpmap.c:961 msgid "X offset" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:962 +#: plug-ins/common/bumpmap.c:962 msgid "Y offset" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:963 +#: plug-ins/common/bumpmap.c:963 msgid "Waterlevel" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:964 +#: plug-ins/common/bumpmap.c:964 msgid "Ambient" msgstr "" -#: plug-ins/bz2/bz2.c:293 plug-ins/bz2/bz2.c:358 +#: plug-ins/common/bz2.c:293 plug-ins/common/bz2.c:358 #, c-format msgid "bz2: fork failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:300 plug-ins/bz2/bz2.c:365 +#: plug-ins/common/bz2.c:300 plug-ins/common/bz2.c:365 #, c-format msgid "bz2: fopen failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:306 plug-ins/bz2/bz2.c:371 +#: plug-ins/common/bz2.c:306 plug-ins/common/bz2.c:371 #, c-format msgid "bz2: dup2 failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:310 +#: plug-ins/common/bz2.c:310 #, c-format msgid "bz2: exec failed: bzip2: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:324 plug-ins/bz2/bz2.c:389 +#: plug-ins/common/bz2.c:324 plug-ins/common/bz2.c:389 #, c-format msgid "bz2: bzip2 exited abnormally on file %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:375 +#: plug-ins/common/bz2.c:375 #, c-format msgid "bz2: exec failed: bunzip2: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:443 +#: plug-ins/common/bz2.c:443 msgid "bz2: can't open bzip2ed file without a sensible extension\n" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:97 +#: plug-ins/common/checkerboard.c:97 msgid "Adds a checkerboard pattern to an image" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:102 +#: plug-ins/common/checkerboard.c:102 msgid "/Filters/Render/Checkerboard" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:164 +#: plug-ins/common/checkerboard.c:164 msgid "Adding Checkerboard..." msgstr "" -#: plug-ins/checkerboard/checkerboard.c:374 +#: plug-ins/common/checkerboard.c:374 msgid "Checkerboard" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:407 +#: plug-ins/common/checkerboard.c:407 msgid "Psychobilly" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:415 +#: plug-ins/common/checkerboard.c:415 msgid "Check Size" msgstr "" -#: plug-ins/colorify/colorify.c:122 +#: plug-ins/common/colorify.c:122 msgid "Similar to the \"Color\" mode for layers." msgstr "" -#: plug-ins/colorify/colorify.c:123 +#: plug-ins/common/colorify.c:123 msgid "Makes an average of the RGB channels and uses it to set the color" msgstr "" -#: plug-ins/colorify/colorify.c:126 +#: plug-ins/common/colorify.c:126 msgid "/Filters/Colors/Colorify" msgstr "" -#: plug-ins/colorify/colorify.c:194 +#: plug-ins/common/colorify.c:194 msgid "Colorifying..." msgstr "" -#: plug-ins/colorify/colorify.c:304 +#: plug-ins/common/colorify.c:308 msgid "Colorify" msgstr "" -#: plug-ins/colorify/colorify.c:310 +#: plug-ins/common/colorify.c:314 msgid "Ok" msgstr "" -#: plug-ins/colorify/colorify.c:327 plug-ins/print/print.c:1023 -#: plug-ins/xpm/xpm.c:406 +#: plug-ins/common/colorify.c:331 plug-ins/common/xpm.c:406 +#: plug-ins/print/print.c:848 msgid "Color" msgstr "" -#: plug-ins/colorify/colorify.c:340 +#: plug-ins/common/colorify.c:344 msgid "Custom Color: " msgstr "" -#: plug-ins/colorify/colorify.c:430 +#: plug-ins/common/colorify.c:434 msgid "Colorify Custom Color" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/decompose/decompose.c:129 +#: plug-ins/common/compose.c:125 plug-ins/common/decompose.c:129 msgid "RGB" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Red:" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Green: " msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Blue:" msgstr "" -#: plug-ins/compose/compose.c:126 +#: plug-ins/common/compose.c:126 msgid "rgb-compose" msgstr "" -#: plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:127 msgid "RGBA" msgstr "" -#: plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:127 msgid "Alpha:" msgstr "" -#: plug-ins/compose/compose.c:128 +#: plug-ins/common/compose.c:128 msgid "rgba-compose" msgstr "" -#: plug-ins/compose/compose.c:129 plug-ins/decompose/decompose.c:133 +#: plug-ins/common/compose.c:129 plug-ins/common/decompose.c:133 msgid "HSV" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Hue:" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Saturation:" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Value:" msgstr "" -#: plug-ins/compose/compose.c:130 +#: plug-ins/common/compose.c:130 msgid "hsv-compose" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/decompose/decompose.c:138 +#: plug-ins/common/compose.c:131 plug-ins/common/decompose.c:138 msgid "CMY" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Cyan:" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Magenta: " msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Yellow:" msgstr "" -#: plug-ins/compose/compose.c:132 +#: plug-ins/common/compose.c:132 msgid "cmy-compose" msgstr "" -#: plug-ins/compose/compose.c:133 plug-ins/decompose/decompose.c:143 +#: plug-ins/common/compose.c:133 plug-ins/common/decompose.c:143 msgid "CMYK" msgstr "" -#: plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:133 msgid "Black:" msgstr "" -#: plug-ins/compose/compose.c:134 +#: plug-ins/common/compose.c:134 msgid "cmyk-compose" msgstr "" -#: plug-ins/compose/compose.c:228 +#: plug-ins/common/compose.c:228 msgid "Compose an image from multiple gray images" msgstr "" -#: plug-ins/compose/compose.c:229 +#: plug-ins/common/compose.c:229 msgid "This function creates a new image from multiple gray images" msgstr "" -#: plug-ins/compose/compose.c:234 +#: plug-ins/common/compose.c:234 msgid "/Image/Channel Ops/Compose" msgstr "" -#: plug-ins/compose/compose.c:241 +#: plug-ins/common/compose.c:241 msgid "Compose an image from multiple drawables of gray images" msgstr "" -#: plug-ins/compose/compose.c:242 +#: plug-ins/common/compose.c:242 msgid "" "This function creates a new image from multiple drawables of gray images" msgstr "" -#: plug-ins/compose/compose.c:305 +#: plug-ins/common/compose.c:305 #, c-format msgid "compose: Could not get layers for image %d" msgstr "" -#: plug-ins/compose/compose.c:354 +#: plug-ins/common/compose.c:354 msgid "Composing..." msgstr "" -#: plug-ins/compose/compose.c:421 +#: plug-ins/common/compose.c:421 msgid "compose: drawables have different size" msgstr "" -#: plug-ins/compose/compose.c:438 +#: plug-ins/common/compose.c:438 msgid "compose: images have different size" msgstr "" -#: plug-ins/compose/compose.c:451 +#: plug-ins/common/compose.c:451 msgid "compose: error in getting layer IDs" msgstr "" -#: plug-ins/compose/compose.c:468 +#: plug-ins/common/compose.c:468 #, c-format msgid "compose: image is not a gray image (bpp=%d)" msgstr "" -#: plug-ins/compose/compose.c:483 plug-ins/compose/compose.c:498 +#: plug-ins/common/compose.c:483 plug-ins/common/compose.c:498 msgid "compose: not enough memory" msgstr "" -#: plug-ins/compose/compose.c:809 +#: plug-ins/common/compose.c:809 msgid "Compose" msgstr "" #. The left frame keeps the compose type toggles -#: plug-ins/compose/compose.c:841 +#: plug-ins/common/compose.c:841 msgid "Compose channels:" msgstr "" @@ -1440,324 +1434,324 @@ msgstr "" #. 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/compose/compose.c:855 +#: plug-ins/common/compose.c:855 msgid "Channel representations:" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 +#: plug-ins/common/convmatrix.c:76 msgid "Grey" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:130 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:130 msgid "Red" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:131 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:131 msgid "Green" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:132 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:132 msgid "Blue" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:148 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:148 msgid "Alpha" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:80 +#: plug-ins/common/convmatrix.c:80 msgid "Extend" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:80 +#: plug-ins/common/convmatrix.c:80 msgid "Wrap" msgstr "" #. Action area -#: plug-ins/convmatrix/convmatrix.c:80 plug-ins/gif/gif.c:1163 +#: plug-ins/common/convmatrix.c:80 plug-ins/common/gif.c:1163 msgid "Crop" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:173 +#: plug-ins/common/convmatrix.c:173 msgid "A generic 5x5 convolution matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:178 +#: plug-ins/common/convmatrix.c:178 msgid "/Filters/Generic/Convolution Matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:239 +#: plug-ins/common/convmatrix.c:239 msgid "Applying convolution" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:700 +#: plug-ins/common/convmatrix.c:700 msgid "Convolution Matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:715 +#: plug-ins/common/convmatrix.c:715 msgid "Defaults" msgstr "" #. Outbox:YABox:Frame -#: plug-ins/convmatrix/convmatrix.c:741 +#: plug-ins/common/convmatrix.c:741 msgid "Matrix" msgstr "" #. divisor -#: plug-ins/convmatrix/convmatrix.c:788 +#: plug-ins/common/convmatrix.c:788 msgid "Divisor" msgstr "" #. Offset -#: plug-ins/convmatrix/convmatrix.c:803 plug-ins/depthmerge/depthmerge.c:728 +#: plug-ins/common/convmatrix.c:803 plug-ins/common/depthmerge.c:728 msgid "Offset" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:823 +#: plug-ins/common/convmatrix.c:823 msgid "Automatic" msgstr "" #. Alpha-weighting -#: plug-ins/convmatrix/convmatrix.c:832 +#: plug-ins/common/convmatrix.c:832 msgid "Alpha-weighting" msgstr "" #. Wrap-modes #. OutBox:Inbox:Frame -#: plug-ins/convmatrix/convmatrix.c:847 +#: plug-ins/common/convmatrix.c:847 msgid "Border" msgstr "" #. OutBox:Inbox:Frame -#: plug-ins/convmatrix/convmatrix.c:875 +#: plug-ins/common/convmatrix.c:875 msgid "Channels" msgstr "" -#: plug-ins/cubism/cubism.c:181 +#: plug-ins/common/cubism.c:181 msgid "Convert the input drawable into a collection of rotated squares" msgstr "" -#: plug-ins/cubism/cubism.c:186 +#: plug-ins/common/cubism.c:186 msgid "/Filters/Artistic/Cubism" msgstr "" -#: plug-ins/cubism/cubism.c:298 +#: plug-ins/common/cubism.c:298 msgid "Cubistic Transformation" msgstr "" -#: plug-ins/cubism/cubism.c:331 +#: plug-ins/common/cubism.c:331 msgid "Cubism" msgstr "" -#: plug-ins/cubism/cubism.c:364 +#: plug-ins/common/cubism.c:364 msgid "Use Background Color" msgstr "" -#: plug-ins/cubism/cubism.c:372 +#: plug-ins/common/cubism.c:372 msgid "Tile Size" msgstr "" -#: plug-ins/cubism/cubism.c:388 +#: plug-ins/common/cubism.c:388 msgid "Tile Saturation" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:130 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:130 msgid "red" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:131 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:131 msgid "green" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:132 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:132 msgid "blue" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:135 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:135 msgid "hue" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:136 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:136 msgid "saturation" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:137 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:137 msgid "value" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:140 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:140 msgid "cyan" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:141 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:141 msgid "magenta" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:142 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:142 msgid "yellow" msgstr "" -#: plug-ins/decompose/decompose.c:140 +#: plug-ins/common/decompose.c:140 msgid "Cyan" msgstr "" -#: plug-ins/decompose/decompose.c:141 +#: plug-ins/common/decompose.c:141 msgid "Magenta" msgstr "" -#: plug-ins/decompose/decompose.c:142 +#: plug-ins/common/decompose.c:142 msgid "Yellow" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:145 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:145 msgid "cyan_k" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:146 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:146 msgid "magenta_k" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:147 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:147 msgid "yellow_k" msgstr "" -#: plug-ins/decompose/decompose.c:144 +#: plug-ins/common/decompose.c:144 msgid "black" msgstr "" -#: plug-ins/decompose/decompose.c:145 +#: plug-ins/common/decompose.c:145 msgid "Cyan_K" msgstr "" -#: plug-ins/decompose/decompose.c:146 +#: plug-ins/common/decompose.c:146 msgid "Magenta_K" msgstr "" -#: plug-ins/decompose/decompose.c:147 +#: plug-ins/common/decompose.c:147 msgid "Yellow_K" msgstr "" -#: plug-ins/decompose/decompose.c:148 +#: plug-ins/common/decompose.c:148 msgid "alpha" msgstr "" -#: plug-ins/decompose/decompose.c:216 +#: plug-ins/common/decompose.c:216 msgid "Decompose an image into different types of channels" msgstr "" -#: plug-ins/decompose/decompose.c:217 +#: plug-ins/common/decompose.c:217 msgid "" "This function creates new gray images with different channel information in " "each of them" msgstr "" -#: plug-ins/decompose/decompose.c:222 +#: plug-ins/common/decompose.c:222 msgid "/Image/Channel Ops/Decompose" msgstr "" -#: plug-ins/decompose/decompose.c:303 +#: plug-ins/common/decompose.c:303 msgid "plug_in_decompose: Can only work on RGB*_IMAGE" msgstr "" -#: plug-ins/decompose/decompose.c:309 +#: plug-ins/common/decompose.c:309 msgid "Decomposing..." msgstr "" -#: plug-ins/decompose/decompose.c:374 +#: plug-ins/common/decompose.c:374 msgid "decompose: not an RGB image" msgstr "" -#: plug-ins/decompose/decompose.c:380 +#: plug-ins/common/decompose.c:380 msgid "decompose: No alpha channel available" msgstr "" -#: plug-ins/decompose/decompose.c:409 +#: plug-ins/common/decompose.c:409 msgid "decompose: out of memory" msgstr "" -#: plug-ins/decompose/decompose.c:901 plug-ins/decompose/decompose.c:907 +#: plug-ins/common/decompose.c:901 plug-ins/common/decompose.c:907 msgid "Decompose" msgstr "" #. parameter settings -#: plug-ins/decompose/decompose.c:934 +#: plug-ins/common/decompose.c:934 msgid "Extract channels:" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:194 +#: plug-ins/common/depthmerge.c:194 msgid "Combine two images using corresponding depth maps (z-buffers)" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:195 +#: plug-ins/common/depthmerge.c:195 msgid "" "Taking as input two full-colour, full-alpha images and two corresponding " "grayscale depth maps, this plug-in combines the images based on which is " "closer (has a lower depth map value) at each point." msgstr "" -#: plug-ins/depthmerge/depthmerge.c:202 +#: plug-ins/common/depthmerge.c:202 msgid "/Filters/Combine/Depth Merge" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:369 +#: plug-ins/common/depthmerge.c:369 msgid "Depth-merging..." msgstr "" -#: plug-ins/depthmerge/depthmerge.c:609 +#: plug-ins/common/depthmerge.c:609 msgid "Depth Merge" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:647 +#: plug-ins/common/depthmerge.c:647 msgid "Source 1" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:664 plug-ins/depthmerge/depthmerge.c:698 +#: plug-ins/common/depthmerge.c:664 plug-ins/common/depthmerge.c:698 msgid "Depth Map" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:681 +#: plug-ins/common/depthmerge.c:681 msgid "Source 2" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:723 +#: plug-ins/common/depthmerge.c:723 msgid "Overlap" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:733 +#: plug-ins/common/depthmerge.c:733 msgid "Scale 1" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:738 +#: plug-ins/common/depthmerge.c:738 msgid "Scale 2" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:1181 +#: plug-ins/common/depthmerge.c:1181 msgid "" "Warning: I don't _like_ this color space. This is a suggestion, not a " "threat.\n" msgstr "" -#: plug-ins/destripe/destripe.c:151 +#: plug-ins/common/destripe.c:151 msgid "" "Destripe filter, used to remove vertical stripes caused by cheap scanners." msgstr "" -#: plug-ins/destripe/destripe.c:152 +#: plug-ins/common/destripe.c:152 msgid "This plug-in tries to remove vertical stripes from an image." msgstr "" -#: plug-ins/destripe/destripe.c:155 +#: plug-ins/common/destripe.c:155 msgid "/Filters/Enhance/Destripe" msgstr "" -#: plug-ins/destripe/destripe.c:358 +#: plug-ins/common/destripe.c:358 msgid "Destriping..." msgstr "" -#: plug-ins/destripe/destripe.c:589 +#: plug-ins/common/destripe.c:589 msgid "Destripe" msgstr "" -#: plug-ins/destripe/destripe.c:663 +#: plug-ins/common/destripe.c:663 msgid "Histogram" msgstr "" @@ -1773,36 +1767,36 @@ msgstr "" #. #. * Box size (radius) control... #. -#: plug-ins/destripe/destripe.c:687 +#: plug-ins/common/destripe.c:687 msgid "Width" msgstr "" -#: plug-ins/gif/gif.c:408 +#: plug-ins/common/gif.c:408 msgid "saves files in Compuserve GIF file format" msgstr "" -#: plug-ins/gif/gif.c:682 +#: plug-ins/common/gif.c:682 msgid "GIF: Couldn't simply reduce colours further. Saving as opaque.\n" msgstr "" -#: plug-ins/gif/gif.c:938 +#: plug-ins/common/gif.c:938 msgid "" "GIF: Sorry, can't save RGB images as GIFs - convert to INDEXED\n" "or GRAY first.\n" msgstr "" -#: plug-ins/gif/gif.c:957 +#: plug-ins/common/gif.c:957 #, c-format msgid "GIF: can't open %s\n" msgstr "" -#: plug-ins/gif/gif.c:1064 +#: plug-ins/common/gif.c:1064 msgid "" "Transparent colour *might* be incorrect on viewers which don't support " "transparency." msgstr "" -#: plug-ins/gif/gif.c:1196 +#: plug-ins/common/gif.c:1196 msgid "" "The image which you are trying to save as a GIF\n" "contains layers which extend beyond the actual\n" @@ -1813,339 +1807,339 @@ msgid "" "the image borders, or cancel this save." msgstr "" -#: plug-ins/gif/gif.c:1252 +#: plug-ins/common/gif.c:1252 msgid "Save as GIF" msgstr "" #. regular gif parameter settings -#: plug-ins/gif/gif.c:1286 +#: plug-ins/common/gif.c:1286 msgid "GIF Options" msgstr "" -#: plug-ins/gif/gif.c:1294 plug-ins/png/png.c:1209 +#: plug-ins/common/gif.c:1294 plug-ins/common/png.c:856 msgid "Interlace" msgstr "" -#: plug-ins/gif/gif.c:1306 +#: plug-ins/common/gif.c:1306 msgid "GIF Comment: " msgstr "" -#: plug-ins/gif/gif.c:1339 plug-ins/gif/gif.c:1340 +#: plug-ins/common/gif.c:1339 plug-ins/common/gif.c:1340 msgid "Made with GIMP" msgstr "" #. additional animated gif parameter settings -#: plug-ins/gif/gif.c:1365 +#: plug-ins/common/gif.c:1365 msgid "Animated GIF Options" msgstr "" -#: plug-ins/gif/gif.c:1373 +#: plug-ins/common/gif.c:1373 msgid "Loop forever" msgstr "" -#: plug-ins/gif/gif.c:1386 +#: plug-ins/common/gif.c:1386 msgid "Delay between frames where unspecified: " msgstr "" -#: plug-ins/gif/gif.c:1400 +#: plug-ins/common/gif.c:1400 msgid " milliseconds" msgstr "" -#: plug-ins/gif/gif.c:1411 +#: plug-ins/common/gif.c:1411 msgid "Frame disposal where unspecified: " msgstr "" -#: plug-ins/gif/gif.c:1421 +#: plug-ins/common/gif.c:1421 msgid "I don't care" msgstr "" -#: plug-ins/gif/gif.c:1427 +#: plug-ins/common/gif.c:1427 msgid "Cumulative layers (combine)" msgstr "" -#: plug-ins/gif/gif.c:1433 +#: plug-ins/common/gif.c:1433 msgid "One frame per layer (replace)" msgstr "" -#: plug-ins/gif/gif.c:1491 +#: plug-ins/common/gif.c:1491 #, c-format msgid "GIF: colorstobpp - Eep! too many colours: %d\n" msgstr "" -#: plug-ins/gif/gif.c:1507 +#: plug-ins/common/gif.c:1507 #, c-format msgid "GIF: bpptocolors - Eep! bpp==%d !\n" msgstr "" -#: plug-ins/gifload/gifload.c:134 +#: plug-ins/common/gifload.c:134 msgid "loads files of Compuserve GIF file format" msgstr "" -#: plug-ins/gifload/gifload.c:279 +#: plug-ins/common/gifload.c:279 #, c-format msgid "GIF: can't open \"%s\"\n" msgstr "" -#: plug-ins/gifload/gifload.c:294 +#: plug-ins/common/gifload.c:294 msgid "GIF: error reading magic number\n" msgstr "" -#: plug-ins/gifload/gifload.c:300 +#: plug-ins/common/gifload.c:300 msgid "GIF: not a GIF file\n" msgstr "" -#: plug-ins/gifload/gifload.c:309 +#: plug-ins/common/gifload.c:309 msgid "GIF: bad version number, not '87a' or '89a'\n" msgstr "" -#: plug-ins/gifload/gifload.c:315 +#: plug-ins/common/gifload.c:315 msgid "GIF: failed to read screen descriptor\n" msgstr "" -#: plug-ins/gifload/gifload.c:331 +#: plug-ins/common/gifload.c:331 msgid "GIF: error reading global colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:338 +#: plug-ins/common/gifload.c:338 msgid "GIF: warning - non-square pixels\n" msgstr "" -#: plug-ins/gifload/gifload.c:349 plug-ins/gifload/gifload.c:803 +#: plug-ins/common/gifload.c:349 plug-ins/common/gifload.c:803 msgid "GIF: EOF / read error on image data\n" msgstr "" -#: plug-ins/gifload/gifload.c:364 +#: plug-ins/common/gifload.c:364 msgid "GIF: OF / read error on extension function code\n" msgstr "" #. Not a valid start character -#: plug-ins/gifload/gifload.c:374 +#: plug-ins/common/gifload.c:374 #, c-format msgid "GIF: bogus character 0x%02x, ignoring\n" msgstr "" -#: plug-ins/gifload/gifload.c:382 +#: plug-ins/common/gifload.c:382 msgid "GIF: couldn't read left/top/width/height\n" msgstr "" -#: plug-ins/gifload/gifload.c:394 +#: plug-ins/common/gifload.c:394 msgid "GIF: error reading local colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:452 +#: plug-ins/common/gifload.c:452 msgid "GIF: bad colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:568 +#: plug-ins/common/gifload.c:568 msgid "GIF: error in getting DataBlock size\n" msgstr "" -#: plug-ins/gifload/gifload.c:576 +#: plug-ins/common/gifload.c:576 msgid "GIF: error in reading DataBlock\n" msgstr "" -#: plug-ins/gifload/gifload.c:607 +#: plug-ins/common/gifload.c:607 msgid "GIF: ran off the end of by bits\n" msgstr "" -#: plug-ins/gifload/gifload.c:718 +#: plug-ins/common/gifload.c:718 msgid "GIF: missing EOD in data stream (common occurence)" msgstr "" -#: plug-ins/gifload/gifload.c:735 +#: plug-ins/common/gifload.c:735 msgid "GIF: circular table entry BIG ERROR\n" msgstr "" -#: plug-ins/gifload/gifload.c:809 +#: plug-ins/common/gifload.c:809 msgid "GIF: error while reading\n" msgstr "" -#: plug-ins/gifload/gifload.c:830 +#: plug-ins/common/gifload.c:830 #, c-format msgid "Background (%dms)" msgstr "" -#: plug-ins/gifload/gifload.c:877 +#: plug-ins/common/gifload.c:877 #, c-format msgid "Frame %d" msgstr "" -#: plug-ins/gifload/gifload.c:879 +#: plug-ins/common/gifload.c:879 #, c-format msgid "Frame %d (%dms)" msgstr "" #. 'don't care' -#: plug-ins/gifload/gifload.c:885 plug-ins/gifload/gifload.c:887 +#: plug-ins/common/gifload.c:885 plug-ins/common/gifload.c:887 msgid " (combine)" msgstr "" -#: plug-ins/gifload/gifload.c:886 +#: plug-ins/common/gifload.c:886 msgid " (replace)" msgstr "" -#: plug-ins/gifload/gifload.c:892 +#: plug-ins/common/gifload.c:892 msgid " (unknown disposal)" msgstr "" -#: plug-ins/gifload/gifload.c:893 +#: plug-ins/common/gifload.c:893 msgid "" "GIF: Hmm... please forward this GIF to the GIF plugin author!\n" " (adam@foxbox.org)\n" msgstr "" -#: plug-ins/gifload/gifload.c:896 +#: plug-ins/common/gifload.c:896 msgid "GIF: Something got corrupted.\n" msgstr "" -#: plug-ins/gifload/gifload.c:925 +#: plug-ins/common/gifload.c:925 #, c-format msgid "GIF: reading %d by %d%s GIF image, ncols=%d\n" msgstr "" -#: plug-ins/gifload/gifload.c:926 +#: plug-ins/common/gifload.c:926 msgid " interlaced" msgstr "" -#: plug-ins/gifload/gifload.c:930 +#: plug-ins/common/gifload.c:930 msgid "" "GIF: Ouchie! Can't handle non-alpha RGB frames.\n" " Please mail the plugin author. (adam@gimp.org)\n" msgstr "" -#: plug-ins/gifload/gifload.c:1022 +#: plug-ins/common/gifload.c:1022 msgid "GIF: too much input data, ignoring extra...\n" msgstr "" -#: plug-ins/jpeg/jpeg.c:176 +#: plug-ins/common/jpeg.c:176 msgid "loads files of the jpeg file format" msgstr "" -#: plug-ins/jpeg/jpeg.c:487 +#: plug-ins/common/jpeg.c:487 #, c-format msgid "can't open \"%s\"\n" msgstr "" -#: plug-ins/jpeg/jpeg.c:603 +#: plug-ins/common/jpeg.c:603 #, c-format msgid "" "don't know how to load JPEGs\n" "with %d color channels" msgstr "" -#: plug-ins/jpeg/jpeg.c:648 +#: plug-ins/common/jpeg.c:648 #, c-format msgid "" "unknown density unit %d\n" "assuming dots per inch" msgstr "" -#: plug-ins/jpeg/jpeg.c:993 +#: plug-ins/common/jpeg.c:993 msgid "Save as Jpeg" msgstr "" -#: plug-ins/jpeg/jpeg.c:1026 +#: plug-ins/common/jpeg.c:1026 msgid "Quality" msgstr "" -#: plug-ins/jpeg/jpeg.c:1042 +#: plug-ins/common/jpeg.c:1042 msgid "Smoothing" msgstr "" -#: plug-ins/jpeg/jpeg.c:1058 +#: plug-ins/common/jpeg.c:1058 msgid "Optimize" msgstr "" -#: plug-ins/jpeg/jpeg.c:1066 +#: plug-ins/common/jpeg.c:1066 msgid "Progressive" msgstr "" -#: plug-ins/jpeg/jpeg.c:1079 +#: plug-ins/common/jpeg.c:1079 msgid "Image Comments" msgstr "" -#: plug-ins/mail/mail.c:212 +#: plug-ins/common/mail.c:212 msgid "pipe files to uuencode then mail them" msgstr "" -#: plug-ins/mail/mail.c:213 +#: plug-ins/common/mail.c:213 msgid "You need to have uuencode and mail installed" msgstr "" -#: plug-ins/mail/mail.c:217 +#: plug-ins/common/mail.c:217 msgid "/File/Mail image" msgstr "" -#: plug-ins/mail/mail.c:486 +#: plug-ins/common/mail.c:486 msgid "Send to mail" msgstr "" #. filename label -#: plug-ins/mail/mail.c:620 +#: plug-ins/common/mail.c:620 msgid "Filename:" msgstr "" #. Encapsulation label -#: plug-ins/mail/mail.c:674 +#: plug-ins/common/mail.c:674 msgid "Encapsulation:" msgstr "" #. Encapsulation radiobutton -#: plug-ins/mail/mail.c:683 +#: plug-ins/common/mail.c:683 msgid "Uuencode" msgstr "" -#: plug-ins/mail/mail.c:685 +#: plug-ins/common/mail.c:685 msgid "MIME" msgstr "" -#: plug-ins/mail/mail.c:799 +#: plug-ins/common/mail.c:799 msgid "mail: some sort of error with the file extension or lack thereof \n" msgstr "" -#: plug-ins/oilify/oilify.c:122 +#: plug-ins/common/oilify.c:122 msgid "Modify the specified drawable to resemble an oil painting" msgstr "" -#: plug-ins/oilify/oilify.c:123 +#: plug-ins/common/oilify.c:123 msgid "" "This function performs the well-known oil-paint effect on the specified " "drawable. The size of the input mask is specified by 'mask_size'." msgstr "" -#: plug-ins/oilify/oilify.c:127 +#: plug-ins/common/oilify.c:127 msgid "/Filters/Artistic/Oilify" msgstr "" -#: plug-ins/oilify/oilify.c:198 +#: plug-ins/common/oilify.c:198 msgid "Oil Painting..." msgstr "" -#: plug-ins/oilify/oilify.c:453 +#: plug-ins/common/oilify.c:453 msgid "Oilify" msgstr "" -#: plug-ins/oilify/oilify.c:486 +#: plug-ins/common/oilify.c:486 msgid "Use intensity algorithm" msgstr "" -#: plug-ins/oilify/oilify.c:494 +#: plug-ins/common/oilify.c:494 msgid "Mask Size" msgstr "" -#: plug-ins/png/png.c:504 +#: plug-ins/common/png.c:149 msgid "Loads files in PNG file format" msgstr "" -#: plug-ins/png/png.c:505 +#: plug-ins/common/png.c:150 msgid "This plug-in loads Portable Network Graphics (PNG) files." msgstr "" -#: plug-ins/png/png.c:1171 +#: plug-ins/common/png.c:818 msgid "PNG Options" msgstr "" -#: plug-ins/png/png.c:1216 +#: plug-ins/common/png.c:863 msgid "Compression level" msgstr "" @@ -2243,135 +2237,135 @@ msgstr "" msgid "600 DPI" msgstr "" -#: plug-ins/print/print.c:406 +#: plug-ins/print/print.c:229 msgid "PostScript Level 1" msgstr "" -#: plug-ins/print/print.c:408 +#: plug-ins/print/print.c:231 msgid "PostScript Level 2" msgstr "" -#: plug-ins/print/print.c:410 +#: plug-ins/print/print.c:233 msgid "HP DeskJet 500, 520" msgstr "" -#: plug-ins/print/print.c:412 +#: plug-ins/print/print.c:235 msgid "HP DeskJet 500C, 540C" msgstr "" -#: plug-ins/print/print.c:414 +#: plug-ins/print/print.c:237 msgid "HP DeskJet 550C, 560C" msgstr "" -#: plug-ins/print/print.c:416 +#: plug-ins/print/print.c:239 msgid "HP DeskJet 600 series" msgstr "" -#: plug-ins/print/print.c:418 +#: plug-ins/print/print.c:241 msgid "HP DeskJet 800 series" msgstr "" -#: plug-ins/print/print.c:420 +#: plug-ins/print/print.c:243 msgid "HP DeskJet 1100C, 1120C" msgstr "" -#: plug-ins/print/print.c:422 +#: plug-ins/print/print.c:245 msgid "HP DeskJet 1200C, 1600C" msgstr "" -#: plug-ins/print/print.c:424 +#: plug-ins/print/print.c:247 msgid "HP LaserJet II series" msgstr "" -#: plug-ins/print/print.c:426 +#: plug-ins/print/print.c:249 msgid "HP LaserJet III series" msgstr "" -#: plug-ins/print/print.c:428 +#: plug-ins/print/print.c:251 msgid "HP LaserJet 4 series" msgstr "" -#: plug-ins/print/print.c:430 +#: plug-ins/print/print.c:253 msgid "HP LaserJet 4V, 4Si" msgstr "" -#: plug-ins/print/print.c:432 +#: plug-ins/print/print.c:255 msgid "HP LaserJet 5 series" msgstr "" -#: plug-ins/print/print.c:434 +#: plug-ins/print/print.c:257 msgid "HP LaserJet 5Si" msgstr "" -#: plug-ins/print/print.c:436 +#: plug-ins/print/print.c:259 msgid "HP LaserJet 6 series" msgstr "" -#: plug-ins/print/print.c:438 +#: plug-ins/print/print.c:261 msgid "EPSON Stylus Color" msgstr "" -#: plug-ins/print/print.c:440 +#: plug-ins/print/print.c:263 msgid "EPSON Stylus Color Pro" msgstr "" -#: plug-ins/print/print.c:442 +#: plug-ins/print/print.c:265 msgid "EPSON Stylus Color Pro XL" msgstr "" -#: plug-ins/print/print.c:444 +#: plug-ins/print/print.c:267 msgid "EPSON Stylus Color 1500" msgstr "" -#: plug-ins/print/print.c:446 +#: plug-ins/print/print.c:269 msgid "EPSON Stylus Color 400" msgstr "" -#: plug-ins/print/print.c:448 +#: plug-ins/print/print.c:271 msgid "EPSON Stylus Color 500" msgstr "" -#: plug-ins/print/print.c:450 +#: plug-ins/print/print.c:273 msgid "EPSON Stylus Color 600" msgstr "" -#: plug-ins/print/print.c:452 +#: plug-ins/print/print.c:275 msgid "EPSON Stylus Color 800" msgstr "" -#: plug-ins/print/print.c:454 +#: plug-ins/print/print.c:277 msgid "EPSON Stylus Color 1520" msgstr "" -#: plug-ins/print/print.c:456 +#: plug-ins/print/print.c:279 msgid "EPSON Stylus Color 3000" msgstr "" -#: plug-ins/print/print.c:509 +#: plug-ins/print/print.c:332 msgid "This plug-in prints images from The GIMP." msgstr "" -#: plug-ins/print/print.c:510 +#: plug-ins/print/print.c:333 msgid "Prints images to PostScript, PCL, or ESC/P2 printers." msgstr "" -#: plug-ins/print/print.c:514 +#: plug-ins/print/print.c:337 msgid "/File/Print" msgstr "" -#: plug-ins/print/print.c:827 +#: plug-ins/print/print.c:650 msgid "Auto" msgstr "" -#: plug-ins/print/print.c:828 +#: plug-ins/print/print.c:651 msgid "Portrait" msgstr "" -#: plug-ins/print/print.c:829 +#: plug-ins/print/print.c:652 msgid "Landscape" msgstr "" -#: plug-ins/print/print.c:860 +#: plug-ins/print/print.c:685 #, c-format msgid "Print v%s" msgstr "" @@ -2379,354 +2373,351 @@ msgstr "" #. #. * Media size option menu... #. -#: plug-ins/print/print.c:910 +#: plug-ins/print/print.c:735 msgid "Media Size:" msgstr "" #. #. * Media type option menu... #. -#: plug-ins/print/print.c:926 +#: plug-ins/print/print.c:751 msgid "Media Type:" msgstr "" #. #. * Media source option menu... #. -#: plug-ins/print/print.c:942 +#: plug-ins/print/print.c:767 msgid "Media Source:" msgstr "" #. #. * Orientation option menu... #. -#: plug-ins/print/print.c:958 +#: plug-ins/print/print.c:783 msgid "Orientation:" msgstr "" #. #. * Resolution option menu... #. -#: plug-ins/print/print.c:988 plug-ins/ps/ps.c:1974 +#: plug-ins/common/ps.c:1999 plug-ins/print/print.c:813 msgid "Resolution:" msgstr "" #. #. * Output type toggles... #. -#: plug-ins/print/print.c:1004 +#: plug-ins/print/print.c:829 msgid "Output Type:" msgstr "" -#: plug-ins/print/print.c:1013 +#: plug-ins/print/print.c:838 msgid "B&W" msgstr "" #. #. * Scaling... #. -#: plug-ins/print/print.c:1036 +#: plug-ins/print/print.c:861 msgid "Scaling:" msgstr "" -#: plug-ins/print/print.c:1071 +#: plug-ins/print/print.c:896 msgid "Percent" msgstr "" -#: plug-ins/print/print.c:1080 +#: plug-ins/print/print.c:905 msgid "PPI" msgstr "" #. #. * Brightness slider... #. -#: plug-ins/print/print.c:1092 +#: plug-ins/print/print.c:917 msgid "Brightness:" msgstr "" #. #. * Printer option menu... #. -#: plug-ins/print/print.c:1127 +#: plug-ins/print/print.c:952 msgid "Printer:" msgstr "" -#: plug-ins/print/print.c:1153 plug-ins/print/print.c:1186 +#: plug-ins/print/print.c:978 plug-ins/print/print.c:1011 msgid "Setup" msgstr "" -#: plug-ins/print/print.c:1173 +#: plug-ins/print/print.c:998 msgid "Print" msgstr "" #. #. * Printer driver option menu... #. -#: plug-ins/print/print.c:1208 +#: plug-ins/print/print.c:1033 msgid "Driver:" msgstr "" #. #. * PPD file... #. -#: plug-ins/print/print.c:1233 +#: plug-ins/print/print.c:1058 msgid "PPD File:" msgstr "" -#: plug-ins/print/print.c:1246 +#: plug-ins/print/print.c:1071 msgid "Browse" msgstr "" #. #. * Print command... #. -#: plug-ins/print/print.c:1256 +#: plug-ins/print/print.c:1081 msgid "Command:" msgstr "" #. #. * Output file selection dialog... #. -#: plug-ins/print/print.c:1291 +#: plug-ins/print/print.c:1116 msgid "Print To File?" msgstr "" #. #. * PPD file selection dialog... #. -#: plug-ins/print/print.c:1301 +#: plug-ins/print/print.c:1126 msgid "PPD File?" msgstr "" -#: plug-ins/print/print.c:2287 +#: plug-ins/print/print.c:2112 msgid "File" msgstr "" -#: plug-ins/ps/ps.c:319 plug-ins/ps/ps.c:320 +#: plug-ins/common/ps.c:320 plug-ins/common/ps.c:321 msgid "load file of PostScript/PDF file format" msgstr "" -#: plug-ins/ps/ps.c:343 +#: plug-ins/common/ps.c:344 msgid "save file in PostScript file format" msgstr "" -#: plug-ins/ps/ps.c:344 +#: plug-ins/common/ps.c:345 msgid "" "PostScript saving handles all image types except those with alpha channels." msgstr "" -#: plug-ins/ps/ps.c:549 +#: plug-ins/common/ps.c:550 msgid "PS: can't open file for reading" msgstr "" -#: plug-ins/ps/ps.c:556 +#: plug-ins/common/ps.c:557 #, c-format msgid "Interpreting and Loading %s:" msgstr "" -#: plug-ins/ps/ps.c:566 +#: plug-ins/common/ps.c:565 msgid "PS: can't interprete file" msgstr "" -#: plug-ins/ps/ps.c:573 -msgid "PS: out of memory" -msgstr "" - -#: plug-ins/ps/ps.c:653 +#: plug-ins/common/ps.c:647 msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: plug-ins/ps/ps.c:664 +#: plug-ins/common/ps.c:658 msgid "PS: cannot operate on unknown image types" msgstr "" -#: plug-ins/ps/ps.c:673 +#: plug-ins/common/ps.c:667 msgid "PS: can't open file for writing" msgstr "" -#: plug-ins/ps/ps.c:1947 +#: plug-ins/common/ps.c:1713 plug-ins/common/ps.c:1810 +#: plug-ins/common/ps.c:1903 plug-ins/common/ps.c:1972 msgid "write error occured" msgstr "" -#: plug-ins/ps/ps.c:1974 plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:1999 plug-ins/common/ps.c:2264 msgid "Width:" msgstr "" -#: plug-ins/ps/ps.c:1974 plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:1999 plug-ins/common/ps.c:2264 msgid "Height:" msgstr "" -#: plug-ins/ps/ps.c:1974 +#: plug-ins/common/ps.c:1999 msgid "Pages:" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "b/w" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "gray" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "colour" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "automatic" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "none" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "weak" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "strong" msgstr "" -#: plug-ins/ps/ps.c:1991 +#: plug-ins/common/ps.c:2016 msgid "Load PostScript" msgstr "" #. Rendering -#: plug-ins/ps/ps.c:2024 +#: plug-ins/common/ps.c:2049 msgid "Rendering" msgstr "" -#: plug-ins/ps/ps.c:2064 +#: plug-ins/common/ps.c:2089 msgid "try BoundingBox" msgstr "" #. Colouring -#: plug-ins/ps/ps.c:2077 +#: plug-ins/common/ps.c:2102 msgid "Colouring" msgstr "" -#: plug-ins/ps/ps.c:2113 +#: plug-ins/common/ps.c:2138 msgid "Graphic antialiasing" msgstr "" -#: plug-ins/ps/ps.c:2114 +#: plug-ins/common/ps.c:2139 msgid "Text antialiasing" msgstr "" -#: plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:2264 msgid "X-offset:" msgstr "" -#: plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:2264 msgid "Y-offset:" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "0" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "90" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "180" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "270" msgstr "" -#: plug-ins/ps/ps.c:2243 +#: plug-ins/common/ps.c:2268 msgid "Inch" msgstr "" -#: plug-ins/ps/ps.c:2243 +#: plug-ins/common/ps.c:2268 msgid "Millimeter" msgstr "" -#: plug-ins/ps/ps.c:2258 +#: plug-ins/common/ps.c:2283 msgid "Save PostScript" msgstr "" #. Image Size -#: plug-ins/ps/ps.c:2299 +#: plug-ins/common/ps.c:2324 msgid "Image Size" msgstr "" -#: plug-ins/ps/ps.c:2338 +#: plug-ins/common/ps.c:2363 msgid "keep aspect ratio" msgstr "" #. Unit -#: plug-ins/ps/ps.c:2348 +#: plug-ins/common/ps.c:2373 msgid "Unit" msgstr "" #. Rotation -#: plug-ins/ps/ps.c:2379 +#: plug-ins/common/ps.c:2404 msgid "Rotation" msgstr "" #. Format -#: plug-ins/ps/ps.c:2406 +#: plug-ins/common/ps.c:2431 msgid "Output" msgstr "" -#: plug-ins/ps/ps.c:2414 +#: plug-ins/common/ps.c:2439 msgid "Encapsulated PostScript" msgstr "" -#: plug-ins/ps/ps.c:2440 +#: plug-ins/common/ps.c:2465 msgid "Preview size" msgstr "" -#: plug-ins/xbm/xbm.c:163 +#: plug-ins/common/xbm.c:163 msgid "Load a file in X10 or X11 bitmap (XBM) file format" msgstr "" -#: plug-ins/xbm/xbm.c:164 +#: plug-ins/common/xbm.c:164 msgid "" "Load a file in X10 or X11 bitmap (XBM) file format. XBM is a lossless " "format for flat black-and-white (two color indexed) images." msgstr "" -#: plug-ins/xbm/xbm.c:230 +#: plug-ins/common/xbm.c:230 msgid "Made with Gimp" msgstr "" -#: plug-ins/xbm/xbm.c:518 +#: plug-ins/common/xbm.c:518 #, c-format msgid "XBM: cannot open \"%s\"\n" msgstr "" -#: plug-ins/xbm/xbm.c:583 +#: plug-ins/common/xbm.c:583 #, c-format msgid "XBM: cannot read header (ftell == %ld)\n" msgstr "" -#: plug-ins/xbm/xbm.c:589 +#: plug-ins/common/xbm.c:589 msgid "XBM: no image width specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:595 +#: plug-ins/common/xbm.c:595 msgid "XBM: no image height specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:601 +#: plug-ins/common/xbm.c:601 msgid "XBM: no image data type specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:692 +#: plug-ins/common/xbm.c:692 msgid "XBM: can only save two color indexed images\n" msgstr "" -#: plug-ins/xbm/xbm.c:697 +#: plug-ins/common/xbm.c:697 msgid "XBM Warning" msgstr "" -#: plug-ins/xbm/xbm.c:727 +#: plug-ins/common/xbm.c:727 msgid "" "The image which you are trying to save as\n" "an XBM contains more than two colors.\n" @@ -2735,82 +2726,82 @@ msgid "" "(1-bit) indexed image and try again." msgstr "" -#: plug-ins/xbm/xbm.c:799 +#: plug-ins/common/xbm.c:799 #, c-format msgid "XBM: cannot create \"%s\"\n" msgstr "" -#: plug-ins/xbm/xbm.c:949 +#: plug-ins/common/xbm.c:949 msgid "Save as XBM" msgstr "" #. parameter settings -#: plug-ins/xbm/xbm.c:980 +#: plug-ins/common/xbm.c:980 msgid "XBM Options" msgstr "" -#: plug-ins/xbm/xbm.c:995 +#: plug-ins/common/xbm.c:995 msgid "Description: " msgstr "" #. X10 format -#: plug-ins/xbm/xbm.c:1011 +#: plug-ins/common/xbm.c:1011 msgid "X10 format bitmap" msgstr "" -#: plug-ins/xbm/xbm.c:1024 +#: plug-ins/common/xbm.c:1024 msgid "Identifier prefix: " msgstr "" -#: plug-ins/xpm/xpm.c:170 +#: plug-ins/common/xpm.c:170 msgid "loads files of the xpm file format" msgstr "" -#: plug-ins/xpm/xpm.c:182 +#: plug-ins/common/xpm.c:182 msgid "saves files in the xpm file format (if you're on a 16 bit display...)" msgstr "" -#: plug-ins/xpm/xpm.c:756 +#: plug-ins/common/xpm.c:756 msgid "Save as Xpm" msgstr "" -#: plug-ins/xpm/xpm.c:790 +#: plug-ins/common/xpm.c:790 msgid "Alpha Threshold" msgstr "" -#: plug-ins/xwd/xwd.c:222 plug-ins/xwd/xwd.c:223 +#: plug-ins/common/xwd.c:226 plug-ins/common/xwd.c:227 msgid "load file of the XWD file format" msgstr "" -#: plug-ins/xwd/xwd.c:234 +#: plug-ins/common/xwd.c:238 msgid "saves files in the XWD file format" msgstr "" -#: plug-ins/xwd/xwd.c:235 +#: plug-ins/common/xwd.c:239 msgid "XWD saving handles all image types except those with alpha channels." msgstr "" -#: plug-ins/xwd/xwd.c:331 +#: plug-ins/common/xwd.c:335 msgid "can't open file for reading" msgstr "" -#: plug-ins/xwd/xwd.c:347 +#: plug-ins/common/xwd.c:351 msgid "can't open file as XWD file" msgstr "" -#: plug-ins/xwd/xwd.c:362 +#: plug-ins/common/xwd.c:366 msgid "can't get memory for colormap" msgstr "" -#: plug-ins/xwd/xwd.c:380 +#: plug-ins/common/xwd.c:384 msgid "can't read color entries" msgstr "" -#: plug-ins/xwd/xwd.c:444 +#: plug-ins/common/xwd.c:448 msgid "this image depth/format is not supported" msgstr "" -#: plug-ins/xwd/xwd.c:448 +#: plug-ins/common/xwd.c:452 #, c-format msgid "" "load_image (xwd): XWD-file %s has format %d, depth %d\n" @@ -2818,35 +2809,35 @@ msgid "" "Currently this is not supported.\n" msgstr "" -#: plug-ins/xwd/xwd.c:476 +#: plug-ins/common/xwd.c:480 msgid "XWD save cannot handle images with alpha channels" msgstr "" -#: plug-ins/xwd/xwd.c:487 +#: plug-ins/common/xwd.c:491 msgid "cannot operate on unknown image types" msgstr "" -#: plug-ins/xwd/xwd.c:496 +#: plug-ins/common/xwd.c:500 msgid "can't open file for writing" msgstr "" -#: plug-ins/xwd/xwd.c:1148 +#: plug-ins/common/xwd.c:1152 msgid "EOF encountered on " msgstr "" -#: plug-ins/xwd/xwd.c:1246 plug-ins/xwd/xwd.c:1408 plug-ins/xwd/xwd.c:1605 -#: plug-ins/xwd/xwd.c:1854 +#: plug-ins/common/xwd.c:1250 plug-ins/common/xwd.c:1412 +#: plug-ins/common/xwd.c:1609 plug-ins/common/xwd.c:1858 msgid "EOF encountered on reading" msgstr "" -#: plug-ins/xwd/xwd.c:1294 +#: plug-ins/common/xwd.c:1298 msgid "No memory for mapping colors" msgstr "" -#: plug-ins/xwd/xwd.c:1978 +#: plug-ins/common/xwd.c:1982 msgid "Error during writing indexed/grey image" msgstr "" -#: plug-ins/xwd/xwd.c:2067 +#: plug-ins/common/xwd.c:2071 msgid "Error during writing rgb image" msgstr "" diff --git a/po-plug-ins/no.po b/po-plug-ins/no.po index cbe7d02e10..18b1591d4d 100644 --- a/po-plug-ins/no.po +++ b/po-plug-ins/no.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: GIMP 1.1.1\n" -"POT-Creation-Date: 1999-07-10 03:35+0200\n" +"POT-Creation-Date: 1999-07-17 11:11-0700\n" "PO-Revision-Date: 1999-07-11 19:55+0200\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -449,7 +449,7 @@ msgstr "" #: plug-ins/common/depthmerge.c:746 plug-ins/common/destripe.c:695 #: plug-ins/common/gif.c:1263 plug-ins/common/jpeg.c:1000 #: plug-ins/common/mail.c:491 plug-ins/common/oilify.c:460 -#: plug-ins/common/png.c:825 plug-ins/common/ps.c:2023 +#: plug-ins/common/png.c:827 plug-ins/common/ps.c:2023 #: plug-ins/common/ps.c:2290 plug-ins/common/xbm.c:959 #: plug-ins/common/xpm.c:763 plug-ins/print/print.c:1104 msgid "OK" @@ -524,7 +524,7 @@ msgstr "" #: plug-ins/common/depthmerge.c:756 plug-ins/common/destripe.c:704 #: plug-ins/common/gif.c:1172 plug-ins/common/jpeg.c:1009 #: plug-ins/common/mail.c:502 plug-ins/common/oilify.c:469 -#: plug-ins/common/png.c:834 plug-ins/common/ps.c:2033 +#: plug-ins/common/png.c:836 plug-ins/common/ps.c:2033 #: plug-ins/common/ps.c:2300 plug-ins/common/xbm.c:707 #: plug-ins/common/xbm.c:969 plug-ins/common/xpm.c:772 #: plug-ins/print/print.c:991 plug-ins/print/print.c:1097 @@ -888,7 +888,7 @@ msgstr "" #: plug-ins/common/apply_lens.c:439 plug-ins/common/blur.c:607 #: plug-ins/common/checkerboard.c:399 plug-ins/common/cubism.c:356 #: plug-ins/common/jpeg.c:1018 plug-ins/common/oilify.c:478 -#: plug-ins/common/png.c:845 plug-ins/common/xpm.c:781 +#: plug-ins/common/png.c:847 plug-ins/common/xpm.c:781 msgid "Parameter Settings" msgstr "" @@ -1105,23 +1105,23 @@ msgstr "" msgid "RLE encoded" msgstr "" -#: plug-ins/common/borderaverage.c:98 +#: plug-ins/borderaverage/borderaverage.c:98 msgid "/Filters/Colors/Border Average" msgstr "" -#: plug-ins/common/borderaverage.c:339 +#: plug-ins/borderaverage/borderaverage.c:339 msgid "Border Size" msgstr "" -#: plug-ins/common/borderaverage.c:339 +#: plug-ins/borderaverage/borderaverage.c:339 msgid "Thickness" msgstr "" -#: plug-ins/common/borderaverage.c:342 +#: plug-ins/borderaverage/borderaverage.c:342 msgid "Number of colors" msgstr "" -#: plug-ins/common/borderaverage.c:345 +#: plug-ins/borderaverage/borderaverage.c:345 msgid "Bucket Size:" msgstr "" @@ -1818,7 +1818,7 @@ msgstr "" msgid "GIF Options" msgstr "" -#: plug-ins/common/gif.c:1294 plug-ins/common/png.c:854 +#: plug-ins/common/gif.c:1294 plug-ins/common/png.c:856 msgid "Interlace" msgstr "" @@ -2137,11 +2137,11 @@ msgstr "Laster filer i PNG filformat" msgid "This plug-in loads Portable Network Graphics (PNG) files." msgstr "" -#: plug-ins/common/png.c:816 +#: plug-ins/common/png.c:818 msgid "PNG Options" msgstr "PNG alternativer" -#: plug-ins/common/png.c:861 +#: plug-ins/common/png.c:863 msgid "Compression level" msgstr "KompresjonsnivЕ" diff --git a/po-plug-ins/pl.po b/po-plug-ins/pl.po index 4336c06aab..456dd3c23c 100644 --- a/po-plug-ins/pl.po +++ b/po-plug-ins/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 1999-06-05 14:12-0700\n" +"POT-Creation-Date: 1999-07-17 11:11-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,236 +14,230 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: plug-ins/CML_explorer/CML_explorer.c:226 +#: plug-ins/common/CML_explorer.c:226 msgid "Keep image's values" msgstr "Keep image's values" -#: plug-ins/CML_explorer/CML_explorer.c:228 +#: plug-ins/common/CML_explorer.c:228 msgid "Keep the first value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:230 +#: plug-ins/common/CML_explorer.c:230 msgid "Fill with parameter k" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:232 +#: plug-ins/common/CML_explorer.c:232 msgid "k{x(1-x)}^p" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:234 +#: plug-ins/common/CML_explorer.c:234 msgid "k{x(1-x)}^p stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:236 +#: plug-ins/common/CML_explorer.c:236 msgid "kx^p" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:238 +#: plug-ins/common/CML_explorer.c:238 msgid "kx^p stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:240 +#: plug-ins/common/CML_explorer.c:240 msgid "k(1 - x^p)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:242 +#: plug-ins/common/CML_explorer.c:242 msgid "k(1 - x^p) stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:244 +#: plug-ins/common/CML_explorer.c:244 msgid "Delta function" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:246 +#: plug-ins/common/CML_explorer.c:246 msgid "Delta function stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:248 +#: plug-ins/common/CML_explorer.c:248 msgid "sin^p-based function" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:250 +#: plug-ins/common/CML_explorer.c:250 msgid "sin^p, stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:256 +#: plug-ins/common/CML_explorer.c:256 msgid "None" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:258 +#: plug-ins/common/CML_explorer.c:258 msgid "Max (x, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:260 +#: plug-ins/common/CML_explorer.c:260 msgid "Max (x+d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:262 +#: plug-ins/common/CML_explorer.c:262 msgid "Max (x-d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:264 -msgid "Mix (x, -)" +#: plug-ins/common/CML_explorer.c:264 +msgid "Min (x, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:266 +#: plug-ins/common/CML_explorer.c:266 msgid "Min (x+d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:268 +#: plug-ins/common/CML_explorer.c:268 msgid "Min (x-d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:270 +#: plug-ins/common/CML_explorer.c:270 msgid "Max (x+d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:272 +#: plug-ins/common/CML_explorer.c:272 msgid "Max (x+d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:274 +#: plug-ins/common/CML_explorer.c:274 msgid "Max (x-d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:276 +#: plug-ins/common/CML_explorer.c:276 msgid "Max (x-d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:278 +#: plug-ins/common/CML_explorer.c:278 msgid "Min (x+d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:280 +#: plug-ins/common/CML_explorer.c:280 msgid "Min (x+d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:282 +#: plug-ins/common/CML_explorer.c:282 msgid "Min (x-d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:284 +#: plug-ins/common/CML_explorer.c:284 msgid "Min (x-d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:290 +#: plug-ins/common/CML_explorer.c:290 msgid "Standard" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:292 +#: plug-ins/common/CML_explorer.c:292 msgid "Use average value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:294 +#: plug-ins/common/CML_explorer.c:294 msgid "Use reverse value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:296 +#: plug-ins/common/CML_explorer.c:296 msgid "With random power (0,10)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:298 +#: plug-ins/common/CML_explorer.c:298 msgid "With random power (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:300 +#: plug-ins/common/CML_explorer.c:300 msgid "With gradient power (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:302 +#: plug-ins/common/CML_explorer.c:302 msgid "Multiply rand. value (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:304 +#: plug-ins/common/CML_explorer.c:304 msgid "Multiply rand. value (0,2)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:306 +#: plug-ins/common/CML_explorer.c:306 msgid "Multiply gradient (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:308 +#: plug-ins/common/CML_explorer.c:308 msgid "With p and random (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:313 +#: plug-ins/common/CML_explorer.c:313 msgid "All black" msgstr "" #. 0 -#: plug-ins/CML_explorer/CML_explorer.c:314 +#: plug-ins/common/CML_explorer.c:314 msgid "All gray" msgstr "" #. 1 -#: plug-ins/CML_explorer/CML_explorer.c:315 +#: plug-ins/common/CML_explorer.c:315 msgid "All white" msgstr "" #. 2 -#: plug-ins/CML_explorer/CML_explorer.c:316 +#: plug-ins/common/CML_explorer.c:316 msgid "The first row of the image" msgstr "" #. 3 -#: plug-ins/CML_explorer/CML_explorer.c:317 +#: plug-ins/common/CML_explorer.c:317 msgid "Continuous gradient" msgstr "" #. 4 -#: plug-ins/CML_explorer/CML_explorer.c:318 +#: plug-ins/common/CML_explorer.c:318 msgid "Continuous grad. w/o gap" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:320 +#: plug-ins/common/CML_explorer.c:320 msgid "Random, ch. independent" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:322 +#: plug-ins/common/CML_explorer.c:322 msgid "Random shared" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:324 +#: plug-ins/common/CML_explorer.c:324 msgid "Randoms from seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:326 +#: plug-ins/common/CML_explorer.c:326 msgid "Randoms from seed (shared)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:380 -#: plug-ins/CML_explorer/CML_explorer.c:388 -#: plug-ins/CML_explorer/CML_explorer.c:1431 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:135 +#: plug-ins/common/CML_explorer.c:380 plug-ins/common/CML_explorer.c:388 +#: plug-ins/common/CML_explorer.c:1431 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:135 msgid "Hue" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:381 -#: plug-ins/CML_explorer/CML_explorer.c:389 -#: plug-ins/CML_explorer/CML_explorer.c:1435 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:136 +#: plug-ins/common/CML_explorer.c:381 plug-ins/common/CML_explorer.c:389 +#: plug-ins/common/CML_explorer.c:1435 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:136 msgid "Saturation" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:382 -#: plug-ins/CML_explorer/CML_explorer.c:390 -#: plug-ins/CML_explorer/CML_explorer.c:1439 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:137 +#: plug-ins/common/CML_explorer.c:382 plug-ins/common/CML_explorer.c:390 +#: plug-ins/common/CML_explorer.c:1439 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:137 msgid "Value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:387 +#: plug-ins/common/CML_explorer.c:387 msgid "NULL" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:494 +#: plug-ins/common/CML_explorer.c:494 msgid "Make an image of Coupled-Map Lattice" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:495 +#: plug-ins/common/CML_explorer.c:495 msgid "" "Make an image of Coupled-Map Lattice (CML). CML is a kind of Cellula " "Automata on continuous (value) domain. In RUN_NONINTERACTIVE, the name of a " @@ -251,87 +245,87 @@ msgid "" "parameter file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1327 +#: plug-ins/common/CML_explorer.c:1327 msgid "Coupled-Map-Lattice Explorer" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1344 plug-ins/ps/ps.c:2423 +#: plug-ins/common/CML_explorer.c:1344 plug-ins/common/ps.c:2448 msgid "Preview" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1385 +#: plug-ins/common/CML_explorer.c:1385 msgid "New seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1391 +#: plug-ins/common/CML_explorer.c:1391 msgid "Fix seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1397 +#: plug-ins/common/CML_explorer.c:1397 msgid "Random seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1409 +#: plug-ins/common/CML_explorer.c:1409 msgid "Load" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1412 +#: plug-ins/common/CML_explorer.c:1412 msgid "Save" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1429 +#: plug-ins/common/CML_explorer.c:1429 msgid "Hue settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1433 +#: plug-ins/common/CML_explorer.c:1433 msgid "Saturation settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1437 +#: plug-ins/common/CML_explorer.c:1437 msgid "Value (grayimage) settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1441 +#: plug-ins/common/CML_explorer.c:1441 msgid "Advanced settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1443 +#: plug-ins/common/CML_explorer.c:1443 msgid "Advanced" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1455 +#: plug-ins/common/CML_explorer.c:1455 msgid "Other parameter settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1459 +#: plug-ins/common/CML_explorer.c:1459 msgid "Channel independed parameters" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1463 +#: plug-ins/common/CML_explorer.c:1463 msgid "Initial value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1469 +#: plug-ins/common/CML_explorer.c:1469 msgid "Zoom scale" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1474 +#: plug-ins/common/CML_explorer.c:1474 msgid "Start offset" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1494 +#: plug-ins/common/CML_explorer.c:1494 msgid "Seed of random (only for \"from seed\" modes)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1498 +#: plug-ins/common/CML_explorer.c:1498 msgid "Seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1508 +#: plug-ins/common/CML_explorer.c:1508 msgid "Switch to \"from seed\" with the last seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1515 +#: plug-ins/common/CML_explorer.c:1515 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 " @@ -339,202 +333,199 @@ msgid "" "(2) all mutation rates equal to zero." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1532 +#: plug-ins/common/CML_explorer.c:1532 msgid "Others" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1539 +#: plug-ins/common/CML_explorer.c:1539 msgid "Misc operations" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1544 +#: plug-ins/common/CML_explorer.c:1544 msgid "Copy settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1548 +#: plug-ins/common/CML_explorer.c:1548 msgid "Source ch." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1554 -#: plug-ins/CML_explorer/CML_explorer.c:1588 +#: plug-ins/common/CML_explorer.c:1554 plug-ins/common/CML_explorer.c:1588 msgid "Destination ch." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1560 +#: plug-ins/common/CML_explorer.c:1560 msgid "Do copy parameters" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1578 +#: plug-ins/common/CML_explorer.c:1578 msgid "Selective load settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1582 +#: plug-ins/common/CML_explorer.c:1582 msgid "Source ch. in file" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1608 +#: plug-ins/common/CML_explorer.c:1608 msgid "Misc ops." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1644 +#: plug-ins/common/CML_explorer.c:1644 msgid "Function type" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1651 +#: plug-ins/common/CML_explorer.c:1651 msgid "Composition" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1658 +#: plug-ins/common/CML_explorer.c:1658 msgid "Misc arrange" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1665 +#: plug-ins/common/CML_explorer.c:1665 msgid "Use cyclic range" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1670 +#: plug-ins/common/CML_explorer.c:1670 msgid "Mod. rate" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1677 +#: plug-ins/common/CML_explorer.c:1677 msgid "Env. sensitivity" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1684 +#: plug-ins/common/CML_explorer.c:1684 msgid "Diffusion dist." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1691 +#: plug-ins/common/CML_explorer.c:1691 msgid "# of subranges" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1698 +#: plug-ins/common/CML_explorer.c:1698 msgid "P(ower factor)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1705 +#: plug-ins/common/CML_explorer.c:1705 msgid "Parameter k" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1712 +#: plug-ins/common/CML_explorer.c:1712 msgid "Range low" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1719 +#: plug-ins/common/CML_explorer.c:1719 msgid "Range high" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1738 +#: plug-ins/common/CML_explorer.c:1738 msgid "Plot the graph of the settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1772 +#: plug-ins/common/CML_explorer.c:1772 msgid "Ch. sensitivity" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1779 +#: plug-ins/common/CML_explorer.c:1779 msgid "Mutation rate" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1786 +#: plug-ins/common/CML_explorer.c:1786 msgid "Mutation dist." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1815 +#: plug-ins/common/CML_explorer.c:1815 msgid "Graph of the current settings" msgstr "" #. Action Area -#: plug-ins/CML_explorer/CML_explorer.c:1820 -#: plug-ins/CML_explorer/CML_explorer.c:2681 -#: plug-ins/CML_explorer/CML_explorer.c:2777 -#: plug-ins/apply_lens/apply_lens.c:420 plug-ins/blur/blur.c:619 -#: plug-ins/bmp/bmpwrite.c:428 plug-ins/bumpmap/bumpmap.c:970 -#: plug-ins/checkerboard/checkerboard.c:381 plug-ins/compose/compose.c:816 -#: plug-ins/convmatrix/convmatrix.c:706 plug-ins/cubism/cubism.c:338 -#: plug-ins/decompose/decompose.c:914 plug-ins/depthmerge/depthmerge.c:746 -#: plug-ins/destripe/destripe.c:695 plug-ins/gif/gif.c:1263 -#: plug-ins/jpeg/jpeg.c:1000 plug-ins/mail/mail.c:491 -#: plug-ins/oilify/oilify.c:460 plug-ins/png/png.c:1180 -#: plug-ins/print/print.c:1279 plug-ins/ps/ps.c:1998 plug-ins/ps/ps.c:2265 -#: plug-ins/xbm/xbm.c:959 plug-ins/xpm/xpm.c:763 +#: plug-ins/bmp/bmpwrite.c:428 plug-ins/common/CML_explorer.c:1820 +#: plug-ins/common/CML_explorer.c:2681 plug-ins/common/CML_explorer.c:2777 +#: plug-ins/common/apply_lens.c:420 plug-ins/common/blur.c:619 +#: plug-ins/common/bumpmap.c:970 plug-ins/common/checkerboard.c:381 +#: plug-ins/common/compose.c:816 plug-ins/common/convmatrix.c:706 +#: plug-ins/common/cubism.c:338 plug-ins/common/decompose.c:914 +#: plug-ins/common/depthmerge.c:746 plug-ins/common/destripe.c:695 +#: plug-ins/common/gif.c:1263 plug-ins/common/jpeg.c:1000 +#: plug-ins/common/mail.c:491 plug-ins/common/oilify.c:460 +#: plug-ins/common/png.c:827 plug-ins/common/ps.c:2023 +#: plug-ins/common/ps.c:2290 plug-ins/common/xbm.c:959 +#: plug-ins/common/xpm.c:763 plug-ins/print/print.c:1104 msgid "OK" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1830 +#: plug-ins/common/CML_explorer.c:1830 msgid "The Graph" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1922 +#: plug-ins/common/CML_explorer.c:1922 msgid "Warning: the source and the destination are the same channel." msgstr "" #. Action Area -#: plug-ins/CML_explorer/CML_explorer.c:2010 +#: plug-ins/common/CML_explorer.c:2010 msgid "Execute" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2019 +#: plug-ins/common/CML_explorer.c:2019 msgid "Execute and Exit" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2027 +#: plug-ins/common/CML_explorer.c:2027 msgid "Exit" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2045 +#: plug-ins/common/CML_explorer.c:2045 msgid "Save parameters to" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2108 -#: plug-ins/CML_explorer/CML_explorer.c:2301 +#: plug-ins/common/CML_explorer.c:2108 plug-ins/common/CML_explorer.c:2301 #, c-format msgid "Error: could not open \"%s\"" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2173 +#: plug-ins/common/CML_explorer.c:2173 msgid "CML file operation warning" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2180 +#: plug-ins/common/CML_explorer.c:2180 #, c-format msgid "%s exists, overwrite?" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2223 +#: plug-ins/common/CML_explorer.c:2223 msgid "Load parameters from" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2225 +#: plug-ins/common/CML_explorer.c:2225 msgid "Selective load from" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2324 +#: plug-ins/common/CML_explorer.c:2324 msgid "Error: it's not CML parameter file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2331 +#: plug-ins/common/CML_explorer.c:2331 msgid "Warning: it's an old format file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2333 +#: plug-ins/common/CML_explorer.c:2333 msgid "Warning: Hmmm, it's a parameter file for newer CML_explorer than me." msgstr "" #. cancel button -#: plug-ins/CML_explorer/CML_explorer.c:2690 -#: plug-ins/Lighting/lighting_ui.c:1062 plug-ins/apply_lens/apply_lens.c:430 -#: plug-ins/blur/blur.c:621 plug-ins/bmp/bmpwrite.c:437 -#: plug-ins/bumpmap/bumpmap.c:979 plug-ins/checkerboard/checkerboard.c:390 -#: plug-ins/colorify/colorify.c:319 plug-ins/compose/compose.c:825 -#: plug-ins/convmatrix/convmatrix.c:723 plug-ins/cubism/cubism.c:347 -#: plug-ins/decompose/decompose.c:924 plug-ins/depthmerge/depthmerge.c:756 -#: plug-ins/destripe/destripe.c:704 plug-ins/gif/gif.c:1172 -#: plug-ins/jpeg/jpeg.c:1009 plug-ins/mail/mail.c:502 -#: plug-ins/oilify/oilify.c:469 plug-ins/png/png.c:1189 -#: plug-ins/print/print.c:1166 plug-ins/print/print.c:1272 -#: plug-ins/ps/ps.c:2008 plug-ins/ps/ps.c:2275 plug-ins/xbm/xbm.c:707 -#: plug-ins/xbm/xbm.c:969 plug-ins/xpm/xpm.c:772 +#: plug-ins/Lighting/lighting_ui.c:1062 plug-ins/bmp/bmpwrite.c:437 +#: plug-ins/common/CML_explorer.c:2690 plug-ins/common/apply_lens.c:430 +#: plug-ins/common/blur.c:621 plug-ins/common/bumpmap.c:979 +#: plug-ins/common/checkerboard.c:390 plug-ins/common/colorify.c:323 +#: plug-ins/common/compose.c:825 plug-ins/common/convmatrix.c:723 +#: plug-ins/common/cubism.c:347 plug-ins/common/decompose.c:924 +#: plug-ins/common/depthmerge.c:756 plug-ins/common/destripe.c:704 +#: plug-ins/common/gif.c:1172 plug-ins/common/jpeg.c:1009 +#: plug-ins/common/mail.c:502 plug-ins/common/oilify.c:469 +#: plug-ins/common/png.c:836 plug-ins/common/ps.c:2033 +#: plug-ins/common/ps.c:2300 plug-ins/common/xbm.c:707 +#: plug-ins/common/xbm.c:969 plug-ins/common/xpm.c:772 +#: plug-ins/print/print.c:991 plug-ins/print/print.c:1097 msgid "Cancel" msgstr "" @@ -867,23 +858,23 @@ msgstr "" msgid "Zoom out (make image smaller)" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:136 +#: plug-ins/common/apply_lens.c:136 msgid "Apply a lens effect" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:137 +#: plug-ins/common/apply_lens.c:137 msgid "This plug-in uses Snell's law to draw an ellipsoid lens over the image" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:141 +#: plug-ins/common/apply_lens.c:141 msgid "/Filters/Glass Effects/Apply Lens" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:200 +#: plug-ins/common/apply_lens.c:200 msgid "Applying lens..." msgstr "" -#: plug-ins/apply_lens/apply_lens.c:414 +#: plug-ins/common/apply_lens.c:414 msgid "Lens effect" msgstr "" @@ -892,40 +883,40 @@ msgstr "" #. * #. * First set up the basic containers, label them, etc. #. -#: plug-ins/apply_lens/apply_lens.c:439 plug-ins/blur/blur.c:607 -#: plug-ins/checkerboard/checkerboard.c:399 plug-ins/cubism/cubism.c:356 -#: plug-ins/jpeg/jpeg.c:1018 plug-ins/oilify/oilify.c:478 -#: plug-ins/png/png.c:1200 plug-ins/xpm/xpm.c:781 +#: plug-ins/common/apply_lens.c:439 plug-ins/common/blur.c:607 +#: plug-ins/common/checkerboard.c:399 plug-ins/common/cubism.c:356 +#: plug-ins/common/jpeg.c:1018 plug-ins/common/oilify.c:478 +#: plug-ins/common/png.c:847 plug-ins/common/xpm.c:781 msgid "Parameter Settings" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:448 +#: plug-ins/common/apply_lens.c:448 msgid "Keep original surroundings" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:461 +#: plug-ins/common/apply_lens.c:461 msgid "Set surroundings to index 0" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:462 +#: plug-ins/common/apply_lens.c:462 msgid "Set surroundings to background color" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:475 +#: plug-ins/common/apply_lens.c:475 msgid "Make surroundings transparent" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:490 +#: plug-ins/common/apply_lens.c:490 msgid "Lens refraction index: " msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:82 +#: plug-ins/common/autostretch_hsv.c:82 msgid "" "Automatically stretch the contrast of the specified drawable to cover all " "possible ranges." msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:83 +#: plug-ins/common/autostretch_hsv.c:83 msgid "" "This simple plug-in does an automatic contrast stretch. For each channel in " "the image, it finds the minimum and maximum values... it uses those values " @@ -935,52 +926,52 @@ msgid "" "space, and preserves hue." msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:87 +#: plug-ins/common/autostretch_hsv.c:87 msgid "/Image/Colors/Auto-Stretch HSV" msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:119 +#: plug-ins/common/autostretch_hsv.c:119 msgid "Auto-Stretching HSV..." msgstr "" -#: plug-ins/blur/blur.c:194 +#: plug-ins/common/blur.c:194 msgid "Apply a 3x3 blurring convolution kernel to the specified drawable." msgstr "" -#: plug-ins/blur/blur.c:195 +#: plug-ins/common/blur.c:195 msgid "" "This plug-in randomly blurs the specified drawable, using a 3x3 blur. You " "control the percentage of the pixels that are blurred and the number of " "times blurring is applied. Indexed images are not supported." msgstr "" -#: plug-ins/blur/blur.c:208 +#: plug-ins/common/blur.c:208 msgid "/Filters/Blur/Blur" msgstr "" -#: plug-ins/blur/blur.c:620 +#: plug-ins/common/blur.c:620 msgid "Accept settings and apply filter to image" msgstr "" -#: plug-ins/blur/blur.c:622 +#: plug-ins/common/blur.c:622 msgid "Close plug-in without making any changes" msgstr "" #. #. * Randomization seed initialization controls #. -#: plug-ins/blur/blur.c:626 +#: plug-ins/common/blur.c:626 msgid "Randomization Seed:" msgstr "" #. #. * Time button #. -#: plug-ins/blur/blur.c:637 +#: plug-ins/common/blur.c:637 msgid "Current Time" msgstr "" -#: plug-ins/blur/blur.c:638 +#: plug-ins/common/blur.c:638 msgid "" "Seed random number generator from the current time - this guarantees a " "reasonable randomization" @@ -989,39 +980,39 @@ msgstr "" #. #. * User button #. -#: plug-ins/blur/blur.c:648 +#: plug-ins/common/blur.c:648 msgid "Other Value" msgstr "" -#: plug-ins/blur/blur.c:649 +#: plug-ins/common/blur.c:649 msgid "" "Enable user-entered value for random number generator seed - this allows you " "to repeat a given \"random\" operation" msgstr "" -#: plug-ins/blur/blur.c:661 +#: plug-ins/common/blur.c:661 msgid "Value for seeding the random number generator" msgstr "" #. #. * Randomization percentage label & scale (1 to 100) #. -#: plug-ins/blur/blur.c:666 +#: plug-ins/common/blur.c:666 msgid "Randomization %:" msgstr "" -#: plug-ins/blur/blur.c:669 +#: plug-ins/common/blur.c:669 msgid "Percentage of pixels to be filtered" msgstr "" #. #. * Repeat count label & scale (1 to 100) #. -#: plug-ins/blur/blur.c:674 +#: plug-ins/common/blur.c:674 msgid "Repeat:" msgstr "" -#: plug-ins/blur/blur.c:677 +#: plug-ins/common/blur.c:677 msgid "Number of times to apply filter" msgstr "" @@ -1033,9 +1024,10 @@ msgstr "" msgid "Saves files in Windows BMP file format" msgstr "" -#: plug-ins/bmp/bmpread.c:27 plug-ins/gifload/gifload.c:287 -#: plug-ins/jpeg/jpeg.c:494 plug-ins/png/png.c:700 plug-ins/png/png.c:702 -#: plug-ins/xbm/xbm.c:523 plug-ins/xpm/xpm.c:300 +#: plug-ins/bmp/bmpread.c:27 plug-ins/common/gifload.c:287 +#: plug-ins/common/jpeg.c:494 plug-ins/common/png.c:345 +#: plug-ins/common/png.c:347 plug-ins/common/xbm.c:523 +#: plug-ins/common/xpm.c:300 #, c-format msgid "Loading %s:" msgstr "" @@ -1074,9 +1066,10 @@ msgstr "" #. * Create the "background" layer to hold the image... #. #: plug-ins/bmp/bmpread.c:210 plug-ins/bmp/bmpread.c:218 -#: plug-ins/bmp/bmpread.c:224 plug-ins/compose/compose.c:562 -#: plug-ins/decompose/decompose.c:472 plug-ins/gifload/gifload.c:828 -#: plug-ins/jpeg/jpeg.c:611 plug-ins/png/png.c:810 plug-ins/xbm/xbm.c:612 +#: plug-ins/bmp/bmpread.c:224 plug-ins/common/compose.c:562 +#: plug-ins/common/decompose.c:472 plug-ins/common/gifload.c:828 +#: plug-ins/common/jpeg.c:611 plug-ins/common/png.c:455 +#: plug-ins/common/xbm.c:612 msgid "Background" msgstr "" @@ -1089,9 +1082,10 @@ msgstr "" msgid "can't open %s\n" msgstr "" -#: plug-ins/bmp/bmpwrite.c:154 plug-ins/jpeg/jpeg.c:759 plug-ins/png/png.c:950 -#: plug-ins/png/png.c:952 plug-ins/ps/ps.c:680 plug-ins/xbm/xbm.c:777 -#: plug-ins/xpm/xpm.c:611 plug-ins/xwd/xwd.c:503 +#: plug-ins/bmp/bmpwrite.c:154 plug-ins/common/jpeg.c:759 +#: plug-ins/common/png.c:595 plug-ins/common/png.c:597 +#: plug-ins/common/ps.c:673 plug-ins/common/xbm.c:777 +#: plug-ins/common/xpm.c:611 plug-ins/common/xwd.c:507 #, c-format msgid "Saving %s:" msgstr "" @@ -1129,310 +1123,310 @@ msgstr "" msgid "Bucket Size:" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:298 +#: plug-ins/common/bumpmap.c:298 msgid "Linear map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:299 +#: plug-ins/common/bumpmap.c:299 msgid "Spherical map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:300 +#: plug-ins/common/bumpmap.c:300 msgid "Sinusoidal map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:346 +#: plug-ins/common/bumpmap.c:346 msgid "Create an embossing effect using an image as a bump map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:354 +#: plug-ins/common/bumpmap.c:354 msgid "/Filters/Map/Bump Map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:500 +#: plug-ins/common/bumpmap.c:500 msgid "Bump-mapping..." msgstr "" #. Bump map menu -#: plug-ins/bumpmap/bumpmap.c:830 plug-ins/bumpmap/bumpmap.c:939 +#: plug-ins/common/bumpmap.c:830 plug-ins/common/bumpmap.c:939 msgid "Bump map" msgstr "" #. Compensate darkening -#: plug-ins/bumpmap/bumpmap.c:884 +#: plug-ins/common/bumpmap.c:884 msgid "Compensate for darkening" msgstr "" #. Invert bumpmap -#: plug-ins/bumpmap/bumpmap.c:895 +#: plug-ins/common/bumpmap.c:895 msgid "Invert bumpmap" msgstr "" #. Controls -#: plug-ins/bumpmap/bumpmap.c:958 +#: plug-ins/common/bumpmap.c:958 msgid "Azimuth" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:959 +#: plug-ins/common/bumpmap.c:959 msgid "Elevation" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:960 +#: plug-ins/common/bumpmap.c:960 msgid "Depth" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:961 +#: plug-ins/common/bumpmap.c:961 msgid "X offset" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:962 +#: plug-ins/common/bumpmap.c:962 msgid "Y offset" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:963 +#: plug-ins/common/bumpmap.c:963 msgid "Waterlevel" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:964 +#: plug-ins/common/bumpmap.c:964 msgid "Ambient" msgstr "" -#: plug-ins/bz2/bz2.c:293 plug-ins/bz2/bz2.c:358 +#: plug-ins/common/bz2.c:293 plug-ins/common/bz2.c:358 #, c-format msgid "bz2: fork failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:300 plug-ins/bz2/bz2.c:365 +#: plug-ins/common/bz2.c:300 plug-ins/common/bz2.c:365 #, c-format msgid "bz2: fopen failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:306 plug-ins/bz2/bz2.c:371 +#: plug-ins/common/bz2.c:306 plug-ins/common/bz2.c:371 #, c-format msgid "bz2: dup2 failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:310 +#: plug-ins/common/bz2.c:310 #, c-format msgid "bz2: exec failed: bzip2: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:324 plug-ins/bz2/bz2.c:389 +#: plug-ins/common/bz2.c:324 plug-ins/common/bz2.c:389 #, c-format msgid "bz2: bzip2 exited abnormally on file %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:375 +#: plug-ins/common/bz2.c:375 #, c-format msgid "bz2: exec failed: bunzip2: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:443 +#: plug-ins/common/bz2.c:443 msgid "bz2: can't open bzip2ed file without a sensible extension\n" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:97 +#: plug-ins/common/checkerboard.c:97 msgid "Adds a checkerboard pattern to an image" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:102 +#: plug-ins/common/checkerboard.c:102 msgid "/Filters/Render/Checkerboard" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:164 +#: plug-ins/common/checkerboard.c:164 msgid "Adding Checkerboard..." msgstr "" -#: plug-ins/checkerboard/checkerboard.c:374 +#: plug-ins/common/checkerboard.c:374 msgid "Checkerboard" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:407 +#: plug-ins/common/checkerboard.c:407 msgid "Psychobilly" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:415 +#: plug-ins/common/checkerboard.c:415 msgid "Check Size" msgstr "" -#: plug-ins/colorify/colorify.c:122 +#: plug-ins/common/colorify.c:122 msgid "Similar to the \"Color\" mode for layers." msgstr "" -#: plug-ins/colorify/colorify.c:123 +#: plug-ins/common/colorify.c:123 msgid "Makes an average of the RGB channels and uses it to set the color" msgstr "" -#: plug-ins/colorify/colorify.c:126 +#: plug-ins/common/colorify.c:126 msgid "/Filters/Colors/Colorify" msgstr "" -#: plug-ins/colorify/colorify.c:194 +#: plug-ins/common/colorify.c:194 msgid "Colorifying..." msgstr "" -#: plug-ins/colorify/colorify.c:304 +#: plug-ins/common/colorify.c:308 msgid "Colorify" msgstr "" -#: plug-ins/colorify/colorify.c:310 +#: plug-ins/common/colorify.c:314 msgid "Ok" msgstr "" -#: plug-ins/colorify/colorify.c:327 plug-ins/print/print.c:1023 -#: plug-ins/xpm/xpm.c:406 +#: plug-ins/common/colorify.c:331 plug-ins/common/xpm.c:406 +#: plug-ins/print/print.c:848 msgid "Color" msgstr "" -#: plug-ins/colorify/colorify.c:340 +#: plug-ins/common/colorify.c:344 msgid "Custom Color: " msgstr "" -#: plug-ins/colorify/colorify.c:430 +#: plug-ins/common/colorify.c:434 msgid "Colorify Custom Color" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/decompose/decompose.c:129 +#: plug-ins/common/compose.c:125 plug-ins/common/decompose.c:129 msgid "RGB" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Red:" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Green: " msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Blue:" msgstr "" -#: plug-ins/compose/compose.c:126 +#: plug-ins/common/compose.c:126 msgid "rgb-compose" msgstr "" -#: plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:127 msgid "RGBA" msgstr "" -#: plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:127 msgid "Alpha:" msgstr "" -#: plug-ins/compose/compose.c:128 +#: plug-ins/common/compose.c:128 msgid "rgba-compose" msgstr "" -#: plug-ins/compose/compose.c:129 plug-ins/decompose/decompose.c:133 +#: plug-ins/common/compose.c:129 plug-ins/common/decompose.c:133 msgid "HSV" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Hue:" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Saturation:" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Value:" msgstr "" -#: plug-ins/compose/compose.c:130 +#: plug-ins/common/compose.c:130 msgid "hsv-compose" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/decompose/decompose.c:138 +#: plug-ins/common/compose.c:131 plug-ins/common/decompose.c:138 msgid "CMY" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Cyan:" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Magenta: " msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Yellow:" msgstr "" -#: plug-ins/compose/compose.c:132 +#: plug-ins/common/compose.c:132 msgid "cmy-compose" msgstr "" -#: plug-ins/compose/compose.c:133 plug-ins/decompose/decompose.c:143 +#: plug-ins/common/compose.c:133 plug-ins/common/decompose.c:143 msgid "CMYK" msgstr "" -#: plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:133 msgid "Black:" msgstr "" -#: plug-ins/compose/compose.c:134 +#: plug-ins/common/compose.c:134 msgid "cmyk-compose" msgstr "" -#: plug-ins/compose/compose.c:228 +#: plug-ins/common/compose.c:228 msgid "Compose an image from multiple gray images" msgstr "" -#: plug-ins/compose/compose.c:229 +#: plug-ins/common/compose.c:229 msgid "This function creates a new image from multiple gray images" msgstr "" -#: plug-ins/compose/compose.c:234 +#: plug-ins/common/compose.c:234 msgid "/Image/Channel Ops/Compose" msgstr "" -#: plug-ins/compose/compose.c:241 +#: plug-ins/common/compose.c:241 msgid "Compose an image from multiple drawables of gray images" msgstr "" -#: plug-ins/compose/compose.c:242 +#: plug-ins/common/compose.c:242 msgid "" "This function creates a new image from multiple drawables of gray images" msgstr "" -#: plug-ins/compose/compose.c:305 +#: plug-ins/common/compose.c:305 #, c-format msgid "compose: Could not get layers for image %d" msgstr "" -#: plug-ins/compose/compose.c:354 +#: plug-ins/common/compose.c:354 msgid "Composing..." msgstr "" -#: plug-ins/compose/compose.c:421 +#: plug-ins/common/compose.c:421 msgid "compose: drawables have different size" msgstr "" -#: plug-ins/compose/compose.c:438 +#: plug-ins/common/compose.c:438 msgid "compose: images have different size" msgstr "" -#: plug-ins/compose/compose.c:451 +#: plug-ins/common/compose.c:451 msgid "compose: error in getting layer IDs" msgstr "" -#: plug-ins/compose/compose.c:468 +#: plug-ins/common/compose.c:468 #, c-format msgid "compose: image is not a gray image (bpp=%d)" msgstr "" -#: plug-ins/compose/compose.c:483 plug-ins/compose/compose.c:498 +#: plug-ins/common/compose.c:483 plug-ins/common/compose.c:498 msgid "compose: not enough memory" msgstr "" -#: plug-ins/compose/compose.c:809 +#: plug-ins/common/compose.c:809 msgid "Compose" msgstr "" #. The left frame keeps the compose type toggles -#: plug-ins/compose/compose.c:841 +#: plug-ins/common/compose.c:841 msgid "Compose channels:" msgstr "" @@ -1440,324 +1434,324 @@ msgstr "" #. 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/compose/compose.c:855 +#: plug-ins/common/compose.c:855 msgid "Channel representations:" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 +#: plug-ins/common/convmatrix.c:76 msgid "Grey" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:130 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:130 msgid "Red" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:131 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:131 msgid "Green" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:132 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:132 msgid "Blue" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:148 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:148 msgid "Alpha" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:80 +#: plug-ins/common/convmatrix.c:80 msgid "Extend" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:80 +#: plug-ins/common/convmatrix.c:80 msgid "Wrap" msgstr "" #. Action area -#: plug-ins/convmatrix/convmatrix.c:80 plug-ins/gif/gif.c:1163 +#: plug-ins/common/convmatrix.c:80 plug-ins/common/gif.c:1163 msgid "Crop" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:173 +#: plug-ins/common/convmatrix.c:173 msgid "A generic 5x5 convolution matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:178 +#: plug-ins/common/convmatrix.c:178 msgid "/Filters/Generic/Convolution Matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:239 +#: plug-ins/common/convmatrix.c:239 msgid "Applying convolution" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:700 +#: plug-ins/common/convmatrix.c:700 msgid "Convolution Matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:715 +#: plug-ins/common/convmatrix.c:715 msgid "Defaults" msgstr "" #. Outbox:YABox:Frame -#: plug-ins/convmatrix/convmatrix.c:741 +#: plug-ins/common/convmatrix.c:741 msgid "Matrix" msgstr "" #. divisor -#: plug-ins/convmatrix/convmatrix.c:788 +#: plug-ins/common/convmatrix.c:788 msgid "Divisor" msgstr "" #. Offset -#: plug-ins/convmatrix/convmatrix.c:803 plug-ins/depthmerge/depthmerge.c:728 +#: plug-ins/common/convmatrix.c:803 plug-ins/common/depthmerge.c:728 msgid "Offset" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:823 +#: plug-ins/common/convmatrix.c:823 msgid "Automatic" msgstr "" #. Alpha-weighting -#: plug-ins/convmatrix/convmatrix.c:832 +#: plug-ins/common/convmatrix.c:832 msgid "Alpha-weighting" msgstr "" #. Wrap-modes #. OutBox:Inbox:Frame -#: plug-ins/convmatrix/convmatrix.c:847 +#: plug-ins/common/convmatrix.c:847 msgid "Border" msgstr "" #. OutBox:Inbox:Frame -#: plug-ins/convmatrix/convmatrix.c:875 +#: plug-ins/common/convmatrix.c:875 msgid "Channels" msgstr "" -#: plug-ins/cubism/cubism.c:181 +#: plug-ins/common/cubism.c:181 msgid "Convert the input drawable into a collection of rotated squares" msgstr "" -#: plug-ins/cubism/cubism.c:186 +#: plug-ins/common/cubism.c:186 msgid "/Filters/Artistic/Cubism" msgstr "" -#: plug-ins/cubism/cubism.c:298 +#: plug-ins/common/cubism.c:298 msgid "Cubistic Transformation" msgstr "" -#: plug-ins/cubism/cubism.c:331 +#: plug-ins/common/cubism.c:331 msgid "Cubism" msgstr "" -#: plug-ins/cubism/cubism.c:364 +#: plug-ins/common/cubism.c:364 msgid "Use Background Color" msgstr "" -#: plug-ins/cubism/cubism.c:372 +#: plug-ins/common/cubism.c:372 msgid "Tile Size" msgstr "" -#: plug-ins/cubism/cubism.c:388 +#: plug-ins/common/cubism.c:388 msgid "Tile Saturation" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:130 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:130 msgid "red" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:131 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:131 msgid "green" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:132 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:132 msgid "blue" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:135 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:135 msgid "hue" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:136 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:136 msgid "saturation" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:137 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:137 msgid "value" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:140 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:140 msgid "cyan" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:141 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:141 msgid "magenta" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:142 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:142 msgid "yellow" msgstr "" -#: plug-ins/decompose/decompose.c:140 +#: plug-ins/common/decompose.c:140 msgid "Cyan" msgstr "" -#: plug-ins/decompose/decompose.c:141 +#: plug-ins/common/decompose.c:141 msgid "Magenta" msgstr "" -#: plug-ins/decompose/decompose.c:142 +#: plug-ins/common/decompose.c:142 msgid "Yellow" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:145 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:145 msgid "cyan_k" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:146 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:146 msgid "magenta_k" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:147 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:147 msgid "yellow_k" msgstr "" -#: plug-ins/decompose/decompose.c:144 +#: plug-ins/common/decompose.c:144 msgid "black" msgstr "" -#: plug-ins/decompose/decompose.c:145 +#: plug-ins/common/decompose.c:145 msgid "Cyan_K" msgstr "" -#: plug-ins/decompose/decompose.c:146 +#: plug-ins/common/decompose.c:146 msgid "Magenta_K" msgstr "" -#: plug-ins/decompose/decompose.c:147 +#: plug-ins/common/decompose.c:147 msgid "Yellow_K" msgstr "" -#: plug-ins/decompose/decompose.c:148 +#: plug-ins/common/decompose.c:148 msgid "alpha" msgstr "" -#: plug-ins/decompose/decompose.c:216 +#: plug-ins/common/decompose.c:216 msgid "Decompose an image into different types of channels" msgstr "" -#: plug-ins/decompose/decompose.c:217 +#: plug-ins/common/decompose.c:217 msgid "" "This function creates new gray images with different channel information in " "each of them" msgstr "" -#: plug-ins/decompose/decompose.c:222 +#: plug-ins/common/decompose.c:222 msgid "/Image/Channel Ops/Decompose" msgstr "" -#: plug-ins/decompose/decompose.c:303 +#: plug-ins/common/decompose.c:303 msgid "plug_in_decompose: Can only work on RGB*_IMAGE" msgstr "" -#: plug-ins/decompose/decompose.c:309 +#: plug-ins/common/decompose.c:309 msgid "Decomposing..." msgstr "" -#: plug-ins/decompose/decompose.c:374 +#: plug-ins/common/decompose.c:374 msgid "decompose: not an RGB image" msgstr "" -#: plug-ins/decompose/decompose.c:380 +#: plug-ins/common/decompose.c:380 msgid "decompose: No alpha channel available" msgstr "" -#: plug-ins/decompose/decompose.c:409 +#: plug-ins/common/decompose.c:409 msgid "decompose: out of memory" msgstr "" -#: plug-ins/decompose/decompose.c:901 plug-ins/decompose/decompose.c:907 +#: plug-ins/common/decompose.c:901 plug-ins/common/decompose.c:907 msgid "Decompose" msgstr "" #. parameter settings -#: plug-ins/decompose/decompose.c:934 +#: plug-ins/common/decompose.c:934 msgid "Extract channels:" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:194 +#: plug-ins/common/depthmerge.c:194 msgid "Combine two images using corresponding depth maps (z-buffers)" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:195 +#: plug-ins/common/depthmerge.c:195 msgid "" "Taking as input two full-colour, full-alpha images and two corresponding " "grayscale depth maps, this plug-in combines the images based on which is " "closer (has a lower depth map value) at each point." msgstr "" -#: plug-ins/depthmerge/depthmerge.c:202 +#: plug-ins/common/depthmerge.c:202 msgid "/Filters/Combine/Depth Merge" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:369 +#: plug-ins/common/depthmerge.c:369 msgid "Depth-merging..." msgstr "" -#: plug-ins/depthmerge/depthmerge.c:609 +#: plug-ins/common/depthmerge.c:609 msgid "Depth Merge" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:647 +#: plug-ins/common/depthmerge.c:647 msgid "Source 1" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:664 plug-ins/depthmerge/depthmerge.c:698 +#: plug-ins/common/depthmerge.c:664 plug-ins/common/depthmerge.c:698 msgid "Depth Map" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:681 +#: plug-ins/common/depthmerge.c:681 msgid "Source 2" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:723 +#: plug-ins/common/depthmerge.c:723 msgid "Overlap" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:733 +#: plug-ins/common/depthmerge.c:733 msgid "Scale 1" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:738 +#: plug-ins/common/depthmerge.c:738 msgid "Scale 2" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:1181 +#: plug-ins/common/depthmerge.c:1181 msgid "" "Warning: I don't _like_ this color space. This is a suggestion, not a " "threat.\n" msgstr "" -#: plug-ins/destripe/destripe.c:151 +#: plug-ins/common/destripe.c:151 msgid "" "Destripe filter, used to remove vertical stripes caused by cheap scanners." msgstr "" -#: plug-ins/destripe/destripe.c:152 +#: plug-ins/common/destripe.c:152 msgid "This plug-in tries to remove vertical stripes from an image." msgstr "" -#: plug-ins/destripe/destripe.c:155 +#: plug-ins/common/destripe.c:155 msgid "/Filters/Enhance/Destripe" msgstr "" -#: plug-ins/destripe/destripe.c:358 +#: plug-ins/common/destripe.c:358 msgid "Destriping..." msgstr "" -#: plug-ins/destripe/destripe.c:589 +#: plug-ins/common/destripe.c:589 msgid "Destripe" msgstr "" -#: plug-ins/destripe/destripe.c:663 +#: plug-ins/common/destripe.c:663 msgid "Histogram" msgstr "" @@ -1773,36 +1767,36 @@ msgstr "" #. #. * Box size (radius) control... #. -#: plug-ins/destripe/destripe.c:687 +#: plug-ins/common/destripe.c:687 msgid "Width" msgstr "" -#: plug-ins/gif/gif.c:408 +#: plug-ins/common/gif.c:408 msgid "saves files in Compuserve GIF file format" msgstr "" -#: plug-ins/gif/gif.c:682 +#: plug-ins/common/gif.c:682 msgid "GIF: Couldn't simply reduce colours further. Saving as opaque.\n" msgstr "" -#: plug-ins/gif/gif.c:938 +#: plug-ins/common/gif.c:938 msgid "" "GIF: Sorry, can't save RGB images as GIFs - convert to INDEXED\n" "or GRAY first.\n" msgstr "" -#: plug-ins/gif/gif.c:957 +#: plug-ins/common/gif.c:957 #, c-format msgid "GIF: can't open %s\n" msgstr "" -#: plug-ins/gif/gif.c:1064 +#: plug-ins/common/gif.c:1064 msgid "" "Transparent colour *might* be incorrect on viewers which don't support " "transparency." msgstr "" -#: plug-ins/gif/gif.c:1196 +#: plug-ins/common/gif.c:1196 msgid "" "The image which you are trying to save as a GIF\n" "contains layers which extend beyond the actual\n" @@ -1813,339 +1807,339 @@ msgid "" "the image borders, or cancel this save." msgstr "" -#: plug-ins/gif/gif.c:1252 +#: plug-ins/common/gif.c:1252 msgid "Save as GIF" msgstr "" #. regular gif parameter settings -#: plug-ins/gif/gif.c:1286 +#: plug-ins/common/gif.c:1286 msgid "GIF Options" msgstr "" -#: plug-ins/gif/gif.c:1294 plug-ins/png/png.c:1209 +#: plug-ins/common/gif.c:1294 plug-ins/common/png.c:856 msgid "Interlace" msgstr "" -#: plug-ins/gif/gif.c:1306 +#: plug-ins/common/gif.c:1306 msgid "GIF Comment: " msgstr "" -#: plug-ins/gif/gif.c:1339 plug-ins/gif/gif.c:1340 +#: plug-ins/common/gif.c:1339 plug-ins/common/gif.c:1340 msgid "Made with GIMP" msgstr "" #. additional animated gif parameter settings -#: plug-ins/gif/gif.c:1365 +#: plug-ins/common/gif.c:1365 msgid "Animated GIF Options" msgstr "" -#: plug-ins/gif/gif.c:1373 +#: plug-ins/common/gif.c:1373 msgid "Loop forever" msgstr "" -#: plug-ins/gif/gif.c:1386 +#: plug-ins/common/gif.c:1386 msgid "Delay between frames where unspecified: " msgstr "" -#: plug-ins/gif/gif.c:1400 +#: plug-ins/common/gif.c:1400 msgid " milliseconds" msgstr "" -#: plug-ins/gif/gif.c:1411 +#: plug-ins/common/gif.c:1411 msgid "Frame disposal where unspecified: " msgstr "" -#: plug-ins/gif/gif.c:1421 +#: plug-ins/common/gif.c:1421 msgid "I don't care" msgstr "" -#: plug-ins/gif/gif.c:1427 +#: plug-ins/common/gif.c:1427 msgid "Cumulative layers (combine)" msgstr "" -#: plug-ins/gif/gif.c:1433 +#: plug-ins/common/gif.c:1433 msgid "One frame per layer (replace)" msgstr "" -#: plug-ins/gif/gif.c:1491 +#: plug-ins/common/gif.c:1491 #, c-format msgid "GIF: colorstobpp - Eep! too many colours: %d\n" msgstr "" -#: plug-ins/gif/gif.c:1507 +#: plug-ins/common/gif.c:1507 #, c-format msgid "GIF: bpptocolors - Eep! bpp==%d !\n" msgstr "" -#: plug-ins/gifload/gifload.c:134 +#: plug-ins/common/gifload.c:134 msgid "loads files of Compuserve GIF file format" msgstr "" -#: plug-ins/gifload/gifload.c:279 +#: plug-ins/common/gifload.c:279 #, c-format msgid "GIF: can't open \"%s\"\n" msgstr "" -#: plug-ins/gifload/gifload.c:294 +#: plug-ins/common/gifload.c:294 msgid "GIF: error reading magic number\n" msgstr "" -#: plug-ins/gifload/gifload.c:300 +#: plug-ins/common/gifload.c:300 msgid "GIF: not a GIF file\n" msgstr "" -#: plug-ins/gifload/gifload.c:309 +#: plug-ins/common/gifload.c:309 msgid "GIF: bad version number, not '87a' or '89a'\n" msgstr "" -#: plug-ins/gifload/gifload.c:315 +#: plug-ins/common/gifload.c:315 msgid "GIF: failed to read screen descriptor\n" msgstr "" -#: plug-ins/gifload/gifload.c:331 +#: plug-ins/common/gifload.c:331 msgid "GIF: error reading global colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:338 +#: plug-ins/common/gifload.c:338 msgid "GIF: warning - non-square pixels\n" msgstr "" -#: plug-ins/gifload/gifload.c:349 plug-ins/gifload/gifload.c:803 +#: plug-ins/common/gifload.c:349 plug-ins/common/gifload.c:803 msgid "GIF: EOF / read error on image data\n" msgstr "" -#: plug-ins/gifload/gifload.c:364 +#: plug-ins/common/gifload.c:364 msgid "GIF: OF / read error on extension function code\n" msgstr "" #. Not a valid start character -#: plug-ins/gifload/gifload.c:374 +#: plug-ins/common/gifload.c:374 #, c-format msgid "GIF: bogus character 0x%02x, ignoring\n" msgstr "" -#: plug-ins/gifload/gifload.c:382 +#: plug-ins/common/gifload.c:382 msgid "GIF: couldn't read left/top/width/height\n" msgstr "" -#: plug-ins/gifload/gifload.c:394 +#: plug-ins/common/gifload.c:394 msgid "GIF: error reading local colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:452 +#: plug-ins/common/gifload.c:452 msgid "GIF: bad colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:568 +#: plug-ins/common/gifload.c:568 msgid "GIF: error in getting DataBlock size\n" msgstr "" -#: plug-ins/gifload/gifload.c:576 +#: plug-ins/common/gifload.c:576 msgid "GIF: error in reading DataBlock\n" msgstr "" -#: plug-ins/gifload/gifload.c:607 +#: plug-ins/common/gifload.c:607 msgid "GIF: ran off the end of by bits\n" msgstr "" -#: plug-ins/gifload/gifload.c:718 +#: plug-ins/common/gifload.c:718 msgid "GIF: missing EOD in data stream (common occurence)" msgstr "" -#: plug-ins/gifload/gifload.c:735 +#: plug-ins/common/gifload.c:735 msgid "GIF: circular table entry BIG ERROR\n" msgstr "" -#: plug-ins/gifload/gifload.c:809 +#: plug-ins/common/gifload.c:809 msgid "GIF: error while reading\n" msgstr "" -#: plug-ins/gifload/gifload.c:830 +#: plug-ins/common/gifload.c:830 #, c-format msgid "Background (%dms)" msgstr "" -#: plug-ins/gifload/gifload.c:877 +#: plug-ins/common/gifload.c:877 #, c-format msgid "Frame %d" msgstr "" -#: plug-ins/gifload/gifload.c:879 +#: plug-ins/common/gifload.c:879 #, c-format msgid "Frame %d (%dms)" msgstr "" #. 'don't care' -#: plug-ins/gifload/gifload.c:885 plug-ins/gifload/gifload.c:887 +#: plug-ins/common/gifload.c:885 plug-ins/common/gifload.c:887 msgid " (combine)" msgstr "" -#: plug-ins/gifload/gifload.c:886 +#: plug-ins/common/gifload.c:886 msgid " (replace)" msgstr "" -#: plug-ins/gifload/gifload.c:892 +#: plug-ins/common/gifload.c:892 msgid " (unknown disposal)" msgstr "" -#: plug-ins/gifload/gifload.c:893 +#: plug-ins/common/gifload.c:893 msgid "" "GIF: Hmm... please forward this GIF to the GIF plugin author!\n" " (adam@foxbox.org)\n" msgstr "" -#: plug-ins/gifload/gifload.c:896 +#: plug-ins/common/gifload.c:896 msgid "GIF: Something got corrupted.\n" msgstr "" -#: plug-ins/gifload/gifload.c:925 +#: plug-ins/common/gifload.c:925 #, c-format msgid "GIF: reading %d by %d%s GIF image, ncols=%d\n" msgstr "" -#: plug-ins/gifload/gifload.c:926 +#: plug-ins/common/gifload.c:926 msgid " interlaced" msgstr "" -#: plug-ins/gifload/gifload.c:930 +#: plug-ins/common/gifload.c:930 msgid "" "GIF: Ouchie! Can't handle non-alpha RGB frames.\n" " Please mail the plugin author. (adam@gimp.org)\n" msgstr "" -#: plug-ins/gifload/gifload.c:1022 +#: plug-ins/common/gifload.c:1022 msgid "GIF: too much input data, ignoring extra...\n" msgstr "" -#: plug-ins/jpeg/jpeg.c:176 +#: plug-ins/common/jpeg.c:176 msgid "loads files of the jpeg file format" msgstr "" -#: plug-ins/jpeg/jpeg.c:487 +#: plug-ins/common/jpeg.c:487 #, c-format msgid "can't open \"%s\"\n" msgstr "" -#: plug-ins/jpeg/jpeg.c:603 +#: plug-ins/common/jpeg.c:603 #, c-format msgid "" "don't know how to load JPEGs\n" "with %d color channels" msgstr "" -#: plug-ins/jpeg/jpeg.c:648 +#: plug-ins/common/jpeg.c:648 #, c-format msgid "" "unknown density unit %d\n" "assuming dots per inch" msgstr "" -#: plug-ins/jpeg/jpeg.c:993 +#: plug-ins/common/jpeg.c:993 msgid "Save as Jpeg" msgstr "" -#: plug-ins/jpeg/jpeg.c:1026 +#: plug-ins/common/jpeg.c:1026 msgid "Quality" msgstr "" -#: plug-ins/jpeg/jpeg.c:1042 +#: plug-ins/common/jpeg.c:1042 msgid "Smoothing" msgstr "" -#: plug-ins/jpeg/jpeg.c:1058 +#: plug-ins/common/jpeg.c:1058 msgid "Optimize" msgstr "" -#: plug-ins/jpeg/jpeg.c:1066 +#: plug-ins/common/jpeg.c:1066 msgid "Progressive" msgstr "" -#: plug-ins/jpeg/jpeg.c:1079 +#: plug-ins/common/jpeg.c:1079 msgid "Image Comments" msgstr "" -#: plug-ins/mail/mail.c:212 +#: plug-ins/common/mail.c:212 msgid "pipe files to uuencode then mail them" msgstr "" -#: plug-ins/mail/mail.c:213 +#: plug-ins/common/mail.c:213 msgid "You need to have uuencode and mail installed" msgstr "" -#: plug-ins/mail/mail.c:217 +#: plug-ins/common/mail.c:217 msgid "/File/Mail image" msgstr "" -#: plug-ins/mail/mail.c:486 +#: plug-ins/common/mail.c:486 msgid "Send to mail" msgstr "" #. filename label -#: plug-ins/mail/mail.c:620 +#: plug-ins/common/mail.c:620 msgid "Filename:" msgstr "" #. Encapsulation label -#: plug-ins/mail/mail.c:674 +#: plug-ins/common/mail.c:674 msgid "Encapsulation:" msgstr "" #. Encapsulation radiobutton -#: plug-ins/mail/mail.c:683 +#: plug-ins/common/mail.c:683 msgid "Uuencode" msgstr "" -#: plug-ins/mail/mail.c:685 +#: plug-ins/common/mail.c:685 msgid "MIME" msgstr "" -#: plug-ins/mail/mail.c:799 +#: plug-ins/common/mail.c:799 msgid "mail: some sort of error with the file extension or lack thereof \n" msgstr "" -#: plug-ins/oilify/oilify.c:122 +#: plug-ins/common/oilify.c:122 msgid "Modify the specified drawable to resemble an oil painting" msgstr "" -#: plug-ins/oilify/oilify.c:123 +#: plug-ins/common/oilify.c:123 msgid "" "This function performs the well-known oil-paint effect on the specified " "drawable. The size of the input mask is specified by 'mask_size'." msgstr "" -#: plug-ins/oilify/oilify.c:127 +#: plug-ins/common/oilify.c:127 msgid "/Filters/Artistic/Oilify" msgstr "" -#: plug-ins/oilify/oilify.c:198 +#: plug-ins/common/oilify.c:198 msgid "Oil Painting..." msgstr "" -#: plug-ins/oilify/oilify.c:453 +#: plug-ins/common/oilify.c:453 msgid "Oilify" msgstr "" -#: plug-ins/oilify/oilify.c:486 +#: plug-ins/common/oilify.c:486 msgid "Use intensity algorithm" msgstr "" -#: plug-ins/oilify/oilify.c:494 +#: plug-ins/common/oilify.c:494 msgid "Mask Size" msgstr "" -#: plug-ins/png/png.c:504 +#: plug-ins/common/png.c:149 msgid "Loads files in PNG file format" msgstr "" -#: plug-ins/png/png.c:505 +#: plug-ins/common/png.c:150 msgid "This plug-in loads Portable Network Graphics (PNG) files." msgstr "" -#: plug-ins/png/png.c:1171 +#: plug-ins/common/png.c:818 msgid "PNG Options" msgstr "" -#: plug-ins/png/png.c:1216 +#: plug-ins/common/png.c:863 msgid "Compression level" msgstr "" @@ -2243,135 +2237,135 @@ msgstr "" msgid "600 DPI" msgstr "" -#: plug-ins/print/print.c:406 +#: plug-ins/print/print.c:229 msgid "PostScript Level 1" msgstr "" -#: plug-ins/print/print.c:408 +#: plug-ins/print/print.c:231 msgid "PostScript Level 2" msgstr "" -#: plug-ins/print/print.c:410 +#: plug-ins/print/print.c:233 msgid "HP DeskJet 500, 520" msgstr "" -#: plug-ins/print/print.c:412 +#: plug-ins/print/print.c:235 msgid "HP DeskJet 500C, 540C" msgstr "" -#: plug-ins/print/print.c:414 +#: plug-ins/print/print.c:237 msgid "HP DeskJet 550C, 560C" msgstr "" -#: plug-ins/print/print.c:416 +#: plug-ins/print/print.c:239 msgid "HP DeskJet 600 series" msgstr "" -#: plug-ins/print/print.c:418 +#: plug-ins/print/print.c:241 msgid "HP DeskJet 800 series" msgstr "" -#: plug-ins/print/print.c:420 +#: plug-ins/print/print.c:243 msgid "HP DeskJet 1100C, 1120C" msgstr "" -#: plug-ins/print/print.c:422 +#: plug-ins/print/print.c:245 msgid "HP DeskJet 1200C, 1600C" msgstr "" -#: plug-ins/print/print.c:424 +#: plug-ins/print/print.c:247 msgid "HP LaserJet II series" msgstr "" -#: plug-ins/print/print.c:426 +#: plug-ins/print/print.c:249 msgid "HP LaserJet III series" msgstr "" -#: plug-ins/print/print.c:428 +#: plug-ins/print/print.c:251 msgid "HP LaserJet 4 series" msgstr "" -#: plug-ins/print/print.c:430 +#: plug-ins/print/print.c:253 msgid "HP LaserJet 4V, 4Si" msgstr "" -#: plug-ins/print/print.c:432 +#: plug-ins/print/print.c:255 msgid "HP LaserJet 5 series" msgstr "" -#: plug-ins/print/print.c:434 +#: plug-ins/print/print.c:257 msgid "HP LaserJet 5Si" msgstr "" -#: plug-ins/print/print.c:436 +#: plug-ins/print/print.c:259 msgid "HP LaserJet 6 series" msgstr "" -#: plug-ins/print/print.c:438 +#: plug-ins/print/print.c:261 msgid "EPSON Stylus Color" msgstr "" -#: plug-ins/print/print.c:440 +#: plug-ins/print/print.c:263 msgid "EPSON Stylus Color Pro" msgstr "" -#: plug-ins/print/print.c:442 +#: plug-ins/print/print.c:265 msgid "EPSON Stylus Color Pro XL" msgstr "" -#: plug-ins/print/print.c:444 +#: plug-ins/print/print.c:267 msgid "EPSON Stylus Color 1500" msgstr "" -#: plug-ins/print/print.c:446 +#: plug-ins/print/print.c:269 msgid "EPSON Stylus Color 400" msgstr "" -#: plug-ins/print/print.c:448 +#: plug-ins/print/print.c:271 msgid "EPSON Stylus Color 500" msgstr "" -#: plug-ins/print/print.c:450 +#: plug-ins/print/print.c:273 msgid "EPSON Stylus Color 600" msgstr "" -#: plug-ins/print/print.c:452 +#: plug-ins/print/print.c:275 msgid "EPSON Stylus Color 800" msgstr "" -#: plug-ins/print/print.c:454 +#: plug-ins/print/print.c:277 msgid "EPSON Stylus Color 1520" msgstr "" -#: plug-ins/print/print.c:456 +#: plug-ins/print/print.c:279 msgid "EPSON Stylus Color 3000" msgstr "" -#: plug-ins/print/print.c:509 +#: plug-ins/print/print.c:332 msgid "This plug-in prints images from The GIMP." msgstr "" -#: plug-ins/print/print.c:510 +#: plug-ins/print/print.c:333 msgid "Prints images to PostScript, PCL, or ESC/P2 printers." msgstr "" -#: plug-ins/print/print.c:514 +#: plug-ins/print/print.c:337 msgid "/File/Print" msgstr "" -#: plug-ins/print/print.c:827 +#: plug-ins/print/print.c:650 msgid "Auto" msgstr "" -#: plug-ins/print/print.c:828 +#: plug-ins/print/print.c:651 msgid "Portrait" msgstr "" -#: plug-ins/print/print.c:829 +#: plug-ins/print/print.c:652 msgid "Landscape" msgstr "" -#: plug-ins/print/print.c:860 +#: plug-ins/print/print.c:685 #, c-format msgid "Print v%s" msgstr "" @@ -2379,354 +2373,351 @@ msgstr "" #. #. * Media size option menu... #. -#: plug-ins/print/print.c:910 +#: plug-ins/print/print.c:735 msgid "Media Size:" msgstr "" #. #. * Media type option menu... #. -#: plug-ins/print/print.c:926 +#: plug-ins/print/print.c:751 msgid "Media Type:" msgstr "" #. #. * Media source option menu... #. -#: plug-ins/print/print.c:942 +#: plug-ins/print/print.c:767 msgid "Media Source:" msgstr "" #. #. * Orientation option menu... #. -#: plug-ins/print/print.c:958 +#: plug-ins/print/print.c:783 msgid "Orientation:" msgstr "" #. #. * Resolution option menu... #. -#: plug-ins/print/print.c:988 plug-ins/ps/ps.c:1974 +#: plug-ins/common/ps.c:1999 plug-ins/print/print.c:813 msgid "Resolution:" msgstr "" #. #. * Output type toggles... #. -#: plug-ins/print/print.c:1004 +#: plug-ins/print/print.c:829 msgid "Output Type:" msgstr "" -#: plug-ins/print/print.c:1013 +#: plug-ins/print/print.c:838 msgid "B&W" msgstr "" #. #. * Scaling... #. -#: plug-ins/print/print.c:1036 +#: plug-ins/print/print.c:861 msgid "Scaling:" msgstr "" -#: plug-ins/print/print.c:1071 +#: plug-ins/print/print.c:896 msgid "Percent" msgstr "" -#: plug-ins/print/print.c:1080 +#: plug-ins/print/print.c:905 msgid "PPI" msgstr "" #. #. * Brightness slider... #. -#: plug-ins/print/print.c:1092 +#: plug-ins/print/print.c:917 msgid "Brightness:" msgstr "" #. #. * Printer option menu... #. -#: plug-ins/print/print.c:1127 +#: plug-ins/print/print.c:952 msgid "Printer:" msgstr "" -#: plug-ins/print/print.c:1153 plug-ins/print/print.c:1186 +#: plug-ins/print/print.c:978 plug-ins/print/print.c:1011 msgid "Setup" msgstr "" -#: plug-ins/print/print.c:1173 +#: plug-ins/print/print.c:998 msgid "Print" msgstr "" #. #. * Printer driver option menu... #. -#: plug-ins/print/print.c:1208 +#: plug-ins/print/print.c:1033 msgid "Driver:" msgstr "" #. #. * PPD file... #. -#: plug-ins/print/print.c:1233 +#: plug-ins/print/print.c:1058 msgid "PPD File:" msgstr "" -#: plug-ins/print/print.c:1246 +#: plug-ins/print/print.c:1071 msgid "Browse" msgstr "" #. #. * Print command... #. -#: plug-ins/print/print.c:1256 +#: plug-ins/print/print.c:1081 msgid "Command:" msgstr "" #. #. * Output file selection dialog... #. -#: plug-ins/print/print.c:1291 +#: plug-ins/print/print.c:1116 msgid "Print To File?" msgstr "" #. #. * PPD file selection dialog... #. -#: plug-ins/print/print.c:1301 +#: plug-ins/print/print.c:1126 msgid "PPD File?" msgstr "" -#: plug-ins/print/print.c:2287 +#: plug-ins/print/print.c:2112 msgid "File" msgstr "" -#: plug-ins/ps/ps.c:319 plug-ins/ps/ps.c:320 +#: plug-ins/common/ps.c:320 plug-ins/common/ps.c:321 msgid "load file of PostScript/PDF file format" msgstr "" -#: plug-ins/ps/ps.c:343 +#: plug-ins/common/ps.c:344 msgid "save file in PostScript file format" msgstr "" -#: plug-ins/ps/ps.c:344 +#: plug-ins/common/ps.c:345 msgid "" "PostScript saving handles all image types except those with alpha channels." msgstr "" -#: plug-ins/ps/ps.c:549 +#: plug-ins/common/ps.c:550 msgid "PS: can't open file for reading" msgstr "" -#: plug-ins/ps/ps.c:556 +#: plug-ins/common/ps.c:557 #, c-format msgid "Interpreting and Loading %s:" msgstr "" -#: plug-ins/ps/ps.c:566 +#: plug-ins/common/ps.c:565 msgid "PS: can't interprete file" msgstr "" -#: plug-ins/ps/ps.c:573 -msgid "PS: out of memory" -msgstr "" - -#: plug-ins/ps/ps.c:653 +#: plug-ins/common/ps.c:647 msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: plug-ins/ps/ps.c:664 +#: plug-ins/common/ps.c:658 msgid "PS: cannot operate on unknown image types" msgstr "" -#: plug-ins/ps/ps.c:673 +#: plug-ins/common/ps.c:667 msgid "PS: can't open file for writing" msgstr "" -#: plug-ins/ps/ps.c:1947 +#: plug-ins/common/ps.c:1713 plug-ins/common/ps.c:1810 +#: plug-ins/common/ps.c:1903 plug-ins/common/ps.c:1972 msgid "write error occured" msgstr "" -#: plug-ins/ps/ps.c:1974 plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:1999 plug-ins/common/ps.c:2264 msgid "Width:" msgstr "" -#: plug-ins/ps/ps.c:1974 plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:1999 plug-ins/common/ps.c:2264 msgid "Height:" msgstr "" -#: plug-ins/ps/ps.c:1974 +#: plug-ins/common/ps.c:1999 msgid "Pages:" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "b/w" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "gray" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "colour" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "automatic" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "none" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "weak" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "strong" msgstr "" -#: plug-ins/ps/ps.c:1991 +#: plug-ins/common/ps.c:2016 msgid "Load PostScript" msgstr "" #. Rendering -#: plug-ins/ps/ps.c:2024 +#: plug-ins/common/ps.c:2049 msgid "Rendering" msgstr "" -#: plug-ins/ps/ps.c:2064 +#: plug-ins/common/ps.c:2089 msgid "try BoundingBox" msgstr "" #. Colouring -#: plug-ins/ps/ps.c:2077 +#: plug-ins/common/ps.c:2102 msgid "Colouring" msgstr "" -#: plug-ins/ps/ps.c:2113 +#: plug-ins/common/ps.c:2138 msgid "Graphic antialiasing" msgstr "" -#: plug-ins/ps/ps.c:2114 +#: plug-ins/common/ps.c:2139 msgid "Text antialiasing" msgstr "" -#: plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:2264 msgid "X-offset:" msgstr "" -#: plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:2264 msgid "Y-offset:" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "0" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "90" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "180" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "270" msgstr "" -#: plug-ins/ps/ps.c:2243 +#: plug-ins/common/ps.c:2268 msgid "Inch" msgstr "" -#: plug-ins/ps/ps.c:2243 +#: plug-ins/common/ps.c:2268 msgid "Millimeter" msgstr "" -#: plug-ins/ps/ps.c:2258 +#: plug-ins/common/ps.c:2283 msgid "Save PostScript" msgstr "" #. Image Size -#: plug-ins/ps/ps.c:2299 +#: plug-ins/common/ps.c:2324 msgid "Image Size" msgstr "" -#: plug-ins/ps/ps.c:2338 +#: plug-ins/common/ps.c:2363 msgid "keep aspect ratio" msgstr "" #. Unit -#: plug-ins/ps/ps.c:2348 +#: plug-ins/common/ps.c:2373 msgid "Unit" msgstr "" #. Rotation -#: plug-ins/ps/ps.c:2379 +#: plug-ins/common/ps.c:2404 msgid "Rotation" msgstr "" #. Format -#: plug-ins/ps/ps.c:2406 +#: plug-ins/common/ps.c:2431 msgid "Output" msgstr "" -#: plug-ins/ps/ps.c:2414 +#: plug-ins/common/ps.c:2439 msgid "Encapsulated PostScript" msgstr "" -#: plug-ins/ps/ps.c:2440 +#: plug-ins/common/ps.c:2465 msgid "Preview size" msgstr "" -#: plug-ins/xbm/xbm.c:163 +#: plug-ins/common/xbm.c:163 msgid "Load a file in X10 or X11 bitmap (XBM) file format" msgstr "" -#: plug-ins/xbm/xbm.c:164 +#: plug-ins/common/xbm.c:164 msgid "" "Load a file in X10 or X11 bitmap (XBM) file format. XBM is a lossless " "format for flat black-and-white (two color indexed) images." msgstr "" -#: plug-ins/xbm/xbm.c:230 +#: plug-ins/common/xbm.c:230 msgid "Made with Gimp" msgstr "" -#: plug-ins/xbm/xbm.c:518 +#: plug-ins/common/xbm.c:518 #, c-format msgid "XBM: cannot open \"%s\"\n" msgstr "" -#: plug-ins/xbm/xbm.c:583 +#: plug-ins/common/xbm.c:583 #, c-format msgid "XBM: cannot read header (ftell == %ld)\n" msgstr "" -#: plug-ins/xbm/xbm.c:589 +#: plug-ins/common/xbm.c:589 msgid "XBM: no image width specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:595 +#: plug-ins/common/xbm.c:595 msgid "XBM: no image height specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:601 +#: plug-ins/common/xbm.c:601 msgid "XBM: no image data type specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:692 +#: plug-ins/common/xbm.c:692 msgid "XBM: can only save two color indexed images\n" msgstr "" -#: plug-ins/xbm/xbm.c:697 +#: plug-ins/common/xbm.c:697 msgid "XBM Warning" msgstr "" -#: plug-ins/xbm/xbm.c:727 +#: plug-ins/common/xbm.c:727 msgid "" "The image which you are trying to save as\n" "an XBM contains more than two colors.\n" @@ -2735,82 +2726,82 @@ msgid "" "(1-bit) indexed image and try again." msgstr "" -#: plug-ins/xbm/xbm.c:799 +#: plug-ins/common/xbm.c:799 #, c-format msgid "XBM: cannot create \"%s\"\n" msgstr "" -#: plug-ins/xbm/xbm.c:949 +#: plug-ins/common/xbm.c:949 msgid "Save as XBM" msgstr "" #. parameter settings -#: plug-ins/xbm/xbm.c:980 +#: plug-ins/common/xbm.c:980 msgid "XBM Options" msgstr "" -#: plug-ins/xbm/xbm.c:995 +#: plug-ins/common/xbm.c:995 msgid "Description: " msgstr "" #. X10 format -#: plug-ins/xbm/xbm.c:1011 +#: plug-ins/common/xbm.c:1011 msgid "X10 format bitmap" msgstr "" -#: plug-ins/xbm/xbm.c:1024 +#: plug-ins/common/xbm.c:1024 msgid "Identifier prefix: " msgstr "" -#: plug-ins/xpm/xpm.c:170 +#: plug-ins/common/xpm.c:170 msgid "loads files of the xpm file format" msgstr "" -#: plug-ins/xpm/xpm.c:182 +#: plug-ins/common/xpm.c:182 msgid "saves files in the xpm file format (if you're on a 16 bit display...)" msgstr "" -#: plug-ins/xpm/xpm.c:756 +#: plug-ins/common/xpm.c:756 msgid "Save as Xpm" msgstr "" -#: plug-ins/xpm/xpm.c:790 +#: plug-ins/common/xpm.c:790 msgid "Alpha Threshold" msgstr "" -#: plug-ins/xwd/xwd.c:222 plug-ins/xwd/xwd.c:223 +#: plug-ins/common/xwd.c:226 plug-ins/common/xwd.c:227 msgid "load file of the XWD file format" msgstr "" -#: plug-ins/xwd/xwd.c:234 +#: plug-ins/common/xwd.c:238 msgid "saves files in the XWD file format" msgstr "" -#: plug-ins/xwd/xwd.c:235 +#: plug-ins/common/xwd.c:239 msgid "XWD saving handles all image types except those with alpha channels." msgstr "" -#: plug-ins/xwd/xwd.c:331 +#: plug-ins/common/xwd.c:335 msgid "can't open file for reading" msgstr "" -#: plug-ins/xwd/xwd.c:347 +#: plug-ins/common/xwd.c:351 msgid "can't open file as XWD file" msgstr "" -#: plug-ins/xwd/xwd.c:362 +#: plug-ins/common/xwd.c:366 msgid "can't get memory for colormap" msgstr "" -#: plug-ins/xwd/xwd.c:380 +#: plug-ins/common/xwd.c:384 msgid "can't read color entries" msgstr "" -#: plug-ins/xwd/xwd.c:444 +#: plug-ins/common/xwd.c:448 msgid "this image depth/format is not supported" msgstr "" -#: plug-ins/xwd/xwd.c:448 +#: plug-ins/common/xwd.c:452 #, c-format msgid "" "load_image (xwd): XWD-file %s has format %d, depth %d\n" @@ -2818,35 +2809,35 @@ msgid "" "Currently this is not supported.\n" msgstr "" -#: plug-ins/xwd/xwd.c:476 +#: plug-ins/common/xwd.c:480 msgid "XWD save cannot handle images with alpha channels" msgstr "" -#: plug-ins/xwd/xwd.c:487 +#: plug-ins/common/xwd.c:491 msgid "cannot operate on unknown image types" msgstr "" -#: plug-ins/xwd/xwd.c:496 +#: plug-ins/common/xwd.c:500 msgid "can't open file for writing" msgstr "" -#: plug-ins/xwd/xwd.c:1148 +#: plug-ins/common/xwd.c:1152 msgid "EOF encountered on " msgstr "" -#: plug-ins/xwd/xwd.c:1246 plug-ins/xwd/xwd.c:1408 plug-ins/xwd/xwd.c:1605 -#: plug-ins/xwd/xwd.c:1854 +#: plug-ins/common/xwd.c:1250 plug-ins/common/xwd.c:1412 +#: plug-ins/common/xwd.c:1609 plug-ins/common/xwd.c:1858 msgid "EOF encountered on reading" msgstr "" -#: plug-ins/xwd/xwd.c:1294 +#: plug-ins/common/xwd.c:1298 msgid "No memory for mapping colors" msgstr "" -#: plug-ins/xwd/xwd.c:1978 +#: plug-ins/common/xwd.c:1982 msgid "Error during writing indexed/grey image" msgstr "" -#: plug-ins/xwd/xwd.c:2067 +#: plug-ins/common/xwd.c:2071 msgid "Error during writing rgb image" msgstr "" diff --git a/po-plug-ins/ru.po b/po-plug-ins/ru.po index 4336c06aab..456dd3c23c 100644 --- a/po-plug-ins/ru.po +++ b/po-plug-ins/ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 1999-06-05 14:12-0700\n" +"POT-Creation-Date: 1999-07-17 11:11-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,236 +14,230 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: plug-ins/CML_explorer/CML_explorer.c:226 +#: plug-ins/common/CML_explorer.c:226 msgid "Keep image's values" msgstr "Keep image's values" -#: plug-ins/CML_explorer/CML_explorer.c:228 +#: plug-ins/common/CML_explorer.c:228 msgid "Keep the first value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:230 +#: plug-ins/common/CML_explorer.c:230 msgid "Fill with parameter k" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:232 +#: plug-ins/common/CML_explorer.c:232 msgid "k{x(1-x)}^p" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:234 +#: plug-ins/common/CML_explorer.c:234 msgid "k{x(1-x)}^p stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:236 +#: plug-ins/common/CML_explorer.c:236 msgid "kx^p" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:238 +#: plug-ins/common/CML_explorer.c:238 msgid "kx^p stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:240 +#: plug-ins/common/CML_explorer.c:240 msgid "k(1 - x^p)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:242 +#: plug-ins/common/CML_explorer.c:242 msgid "k(1 - x^p) stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:244 +#: plug-ins/common/CML_explorer.c:244 msgid "Delta function" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:246 +#: plug-ins/common/CML_explorer.c:246 msgid "Delta function stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:248 +#: plug-ins/common/CML_explorer.c:248 msgid "sin^p-based function" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:250 +#: plug-ins/common/CML_explorer.c:250 msgid "sin^p, stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:256 +#: plug-ins/common/CML_explorer.c:256 msgid "None" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:258 +#: plug-ins/common/CML_explorer.c:258 msgid "Max (x, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:260 +#: plug-ins/common/CML_explorer.c:260 msgid "Max (x+d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:262 +#: plug-ins/common/CML_explorer.c:262 msgid "Max (x-d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:264 -msgid "Mix (x, -)" +#: plug-ins/common/CML_explorer.c:264 +msgid "Min (x, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:266 +#: plug-ins/common/CML_explorer.c:266 msgid "Min (x+d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:268 +#: plug-ins/common/CML_explorer.c:268 msgid "Min (x-d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:270 +#: plug-ins/common/CML_explorer.c:270 msgid "Max (x+d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:272 +#: plug-ins/common/CML_explorer.c:272 msgid "Max (x+d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:274 +#: plug-ins/common/CML_explorer.c:274 msgid "Max (x-d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:276 +#: plug-ins/common/CML_explorer.c:276 msgid "Max (x-d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:278 +#: plug-ins/common/CML_explorer.c:278 msgid "Min (x+d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:280 +#: plug-ins/common/CML_explorer.c:280 msgid "Min (x+d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:282 +#: plug-ins/common/CML_explorer.c:282 msgid "Min (x-d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:284 +#: plug-ins/common/CML_explorer.c:284 msgid "Min (x-d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:290 +#: plug-ins/common/CML_explorer.c:290 msgid "Standard" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:292 +#: plug-ins/common/CML_explorer.c:292 msgid "Use average value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:294 +#: plug-ins/common/CML_explorer.c:294 msgid "Use reverse value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:296 +#: plug-ins/common/CML_explorer.c:296 msgid "With random power (0,10)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:298 +#: plug-ins/common/CML_explorer.c:298 msgid "With random power (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:300 +#: plug-ins/common/CML_explorer.c:300 msgid "With gradient power (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:302 +#: plug-ins/common/CML_explorer.c:302 msgid "Multiply rand. value (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:304 +#: plug-ins/common/CML_explorer.c:304 msgid "Multiply rand. value (0,2)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:306 +#: plug-ins/common/CML_explorer.c:306 msgid "Multiply gradient (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:308 +#: plug-ins/common/CML_explorer.c:308 msgid "With p and random (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:313 +#: plug-ins/common/CML_explorer.c:313 msgid "All black" msgstr "" #. 0 -#: plug-ins/CML_explorer/CML_explorer.c:314 +#: plug-ins/common/CML_explorer.c:314 msgid "All gray" msgstr "" #. 1 -#: plug-ins/CML_explorer/CML_explorer.c:315 +#: plug-ins/common/CML_explorer.c:315 msgid "All white" msgstr "" #. 2 -#: plug-ins/CML_explorer/CML_explorer.c:316 +#: plug-ins/common/CML_explorer.c:316 msgid "The first row of the image" msgstr "" #. 3 -#: plug-ins/CML_explorer/CML_explorer.c:317 +#: plug-ins/common/CML_explorer.c:317 msgid "Continuous gradient" msgstr "" #. 4 -#: plug-ins/CML_explorer/CML_explorer.c:318 +#: plug-ins/common/CML_explorer.c:318 msgid "Continuous grad. w/o gap" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:320 +#: plug-ins/common/CML_explorer.c:320 msgid "Random, ch. independent" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:322 +#: plug-ins/common/CML_explorer.c:322 msgid "Random shared" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:324 +#: plug-ins/common/CML_explorer.c:324 msgid "Randoms from seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:326 +#: plug-ins/common/CML_explorer.c:326 msgid "Randoms from seed (shared)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:380 -#: plug-ins/CML_explorer/CML_explorer.c:388 -#: plug-ins/CML_explorer/CML_explorer.c:1431 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:135 +#: plug-ins/common/CML_explorer.c:380 plug-ins/common/CML_explorer.c:388 +#: plug-ins/common/CML_explorer.c:1431 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:135 msgid "Hue" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:381 -#: plug-ins/CML_explorer/CML_explorer.c:389 -#: plug-ins/CML_explorer/CML_explorer.c:1435 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:136 +#: plug-ins/common/CML_explorer.c:381 plug-ins/common/CML_explorer.c:389 +#: plug-ins/common/CML_explorer.c:1435 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:136 msgid "Saturation" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:382 -#: plug-ins/CML_explorer/CML_explorer.c:390 -#: plug-ins/CML_explorer/CML_explorer.c:1439 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:137 +#: plug-ins/common/CML_explorer.c:382 plug-ins/common/CML_explorer.c:390 +#: plug-ins/common/CML_explorer.c:1439 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:137 msgid "Value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:387 +#: plug-ins/common/CML_explorer.c:387 msgid "NULL" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:494 +#: plug-ins/common/CML_explorer.c:494 msgid "Make an image of Coupled-Map Lattice" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:495 +#: plug-ins/common/CML_explorer.c:495 msgid "" "Make an image of Coupled-Map Lattice (CML). CML is a kind of Cellula " "Automata on continuous (value) domain. In RUN_NONINTERACTIVE, the name of a " @@ -251,87 +245,87 @@ msgid "" "parameter file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1327 +#: plug-ins/common/CML_explorer.c:1327 msgid "Coupled-Map-Lattice Explorer" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1344 plug-ins/ps/ps.c:2423 +#: plug-ins/common/CML_explorer.c:1344 plug-ins/common/ps.c:2448 msgid "Preview" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1385 +#: plug-ins/common/CML_explorer.c:1385 msgid "New seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1391 +#: plug-ins/common/CML_explorer.c:1391 msgid "Fix seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1397 +#: plug-ins/common/CML_explorer.c:1397 msgid "Random seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1409 +#: plug-ins/common/CML_explorer.c:1409 msgid "Load" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1412 +#: plug-ins/common/CML_explorer.c:1412 msgid "Save" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1429 +#: plug-ins/common/CML_explorer.c:1429 msgid "Hue settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1433 +#: plug-ins/common/CML_explorer.c:1433 msgid "Saturation settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1437 +#: plug-ins/common/CML_explorer.c:1437 msgid "Value (grayimage) settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1441 +#: plug-ins/common/CML_explorer.c:1441 msgid "Advanced settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1443 +#: plug-ins/common/CML_explorer.c:1443 msgid "Advanced" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1455 +#: plug-ins/common/CML_explorer.c:1455 msgid "Other parameter settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1459 +#: plug-ins/common/CML_explorer.c:1459 msgid "Channel independed parameters" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1463 +#: plug-ins/common/CML_explorer.c:1463 msgid "Initial value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1469 +#: plug-ins/common/CML_explorer.c:1469 msgid "Zoom scale" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1474 +#: plug-ins/common/CML_explorer.c:1474 msgid "Start offset" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1494 +#: plug-ins/common/CML_explorer.c:1494 msgid "Seed of random (only for \"from seed\" modes)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1498 +#: plug-ins/common/CML_explorer.c:1498 msgid "Seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1508 +#: plug-ins/common/CML_explorer.c:1508 msgid "Switch to \"from seed\" with the last seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1515 +#: plug-ins/common/CML_explorer.c:1515 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 " @@ -339,202 +333,199 @@ msgid "" "(2) all mutation rates equal to zero." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1532 +#: plug-ins/common/CML_explorer.c:1532 msgid "Others" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1539 +#: plug-ins/common/CML_explorer.c:1539 msgid "Misc operations" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1544 +#: plug-ins/common/CML_explorer.c:1544 msgid "Copy settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1548 +#: plug-ins/common/CML_explorer.c:1548 msgid "Source ch." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1554 -#: plug-ins/CML_explorer/CML_explorer.c:1588 +#: plug-ins/common/CML_explorer.c:1554 plug-ins/common/CML_explorer.c:1588 msgid "Destination ch." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1560 +#: plug-ins/common/CML_explorer.c:1560 msgid "Do copy parameters" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1578 +#: plug-ins/common/CML_explorer.c:1578 msgid "Selective load settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1582 +#: plug-ins/common/CML_explorer.c:1582 msgid "Source ch. in file" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1608 +#: plug-ins/common/CML_explorer.c:1608 msgid "Misc ops." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1644 +#: plug-ins/common/CML_explorer.c:1644 msgid "Function type" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1651 +#: plug-ins/common/CML_explorer.c:1651 msgid "Composition" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1658 +#: plug-ins/common/CML_explorer.c:1658 msgid "Misc arrange" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1665 +#: plug-ins/common/CML_explorer.c:1665 msgid "Use cyclic range" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1670 +#: plug-ins/common/CML_explorer.c:1670 msgid "Mod. rate" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1677 +#: plug-ins/common/CML_explorer.c:1677 msgid "Env. sensitivity" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1684 +#: plug-ins/common/CML_explorer.c:1684 msgid "Diffusion dist." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1691 +#: plug-ins/common/CML_explorer.c:1691 msgid "# of subranges" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1698 +#: plug-ins/common/CML_explorer.c:1698 msgid "P(ower factor)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1705 +#: plug-ins/common/CML_explorer.c:1705 msgid "Parameter k" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1712 +#: plug-ins/common/CML_explorer.c:1712 msgid "Range low" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1719 +#: plug-ins/common/CML_explorer.c:1719 msgid "Range high" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1738 +#: plug-ins/common/CML_explorer.c:1738 msgid "Plot the graph of the settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1772 +#: plug-ins/common/CML_explorer.c:1772 msgid "Ch. sensitivity" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1779 +#: plug-ins/common/CML_explorer.c:1779 msgid "Mutation rate" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1786 +#: plug-ins/common/CML_explorer.c:1786 msgid "Mutation dist." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1815 +#: plug-ins/common/CML_explorer.c:1815 msgid "Graph of the current settings" msgstr "" #. Action Area -#: plug-ins/CML_explorer/CML_explorer.c:1820 -#: plug-ins/CML_explorer/CML_explorer.c:2681 -#: plug-ins/CML_explorer/CML_explorer.c:2777 -#: plug-ins/apply_lens/apply_lens.c:420 plug-ins/blur/blur.c:619 -#: plug-ins/bmp/bmpwrite.c:428 plug-ins/bumpmap/bumpmap.c:970 -#: plug-ins/checkerboard/checkerboard.c:381 plug-ins/compose/compose.c:816 -#: plug-ins/convmatrix/convmatrix.c:706 plug-ins/cubism/cubism.c:338 -#: plug-ins/decompose/decompose.c:914 plug-ins/depthmerge/depthmerge.c:746 -#: plug-ins/destripe/destripe.c:695 plug-ins/gif/gif.c:1263 -#: plug-ins/jpeg/jpeg.c:1000 plug-ins/mail/mail.c:491 -#: plug-ins/oilify/oilify.c:460 plug-ins/png/png.c:1180 -#: plug-ins/print/print.c:1279 plug-ins/ps/ps.c:1998 plug-ins/ps/ps.c:2265 -#: plug-ins/xbm/xbm.c:959 plug-ins/xpm/xpm.c:763 +#: plug-ins/bmp/bmpwrite.c:428 plug-ins/common/CML_explorer.c:1820 +#: plug-ins/common/CML_explorer.c:2681 plug-ins/common/CML_explorer.c:2777 +#: plug-ins/common/apply_lens.c:420 plug-ins/common/blur.c:619 +#: plug-ins/common/bumpmap.c:970 plug-ins/common/checkerboard.c:381 +#: plug-ins/common/compose.c:816 plug-ins/common/convmatrix.c:706 +#: plug-ins/common/cubism.c:338 plug-ins/common/decompose.c:914 +#: plug-ins/common/depthmerge.c:746 plug-ins/common/destripe.c:695 +#: plug-ins/common/gif.c:1263 plug-ins/common/jpeg.c:1000 +#: plug-ins/common/mail.c:491 plug-ins/common/oilify.c:460 +#: plug-ins/common/png.c:827 plug-ins/common/ps.c:2023 +#: plug-ins/common/ps.c:2290 plug-ins/common/xbm.c:959 +#: plug-ins/common/xpm.c:763 plug-ins/print/print.c:1104 msgid "OK" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1830 +#: plug-ins/common/CML_explorer.c:1830 msgid "The Graph" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1922 +#: plug-ins/common/CML_explorer.c:1922 msgid "Warning: the source and the destination are the same channel." msgstr "" #. Action Area -#: plug-ins/CML_explorer/CML_explorer.c:2010 +#: plug-ins/common/CML_explorer.c:2010 msgid "Execute" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2019 +#: plug-ins/common/CML_explorer.c:2019 msgid "Execute and Exit" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2027 +#: plug-ins/common/CML_explorer.c:2027 msgid "Exit" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2045 +#: plug-ins/common/CML_explorer.c:2045 msgid "Save parameters to" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2108 -#: plug-ins/CML_explorer/CML_explorer.c:2301 +#: plug-ins/common/CML_explorer.c:2108 plug-ins/common/CML_explorer.c:2301 #, c-format msgid "Error: could not open \"%s\"" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2173 +#: plug-ins/common/CML_explorer.c:2173 msgid "CML file operation warning" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2180 +#: plug-ins/common/CML_explorer.c:2180 #, c-format msgid "%s exists, overwrite?" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2223 +#: plug-ins/common/CML_explorer.c:2223 msgid "Load parameters from" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2225 +#: plug-ins/common/CML_explorer.c:2225 msgid "Selective load from" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2324 +#: plug-ins/common/CML_explorer.c:2324 msgid "Error: it's not CML parameter file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2331 +#: plug-ins/common/CML_explorer.c:2331 msgid "Warning: it's an old format file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2333 +#: plug-ins/common/CML_explorer.c:2333 msgid "Warning: Hmmm, it's a parameter file for newer CML_explorer than me." msgstr "" #. cancel button -#: plug-ins/CML_explorer/CML_explorer.c:2690 -#: plug-ins/Lighting/lighting_ui.c:1062 plug-ins/apply_lens/apply_lens.c:430 -#: plug-ins/blur/blur.c:621 plug-ins/bmp/bmpwrite.c:437 -#: plug-ins/bumpmap/bumpmap.c:979 plug-ins/checkerboard/checkerboard.c:390 -#: plug-ins/colorify/colorify.c:319 plug-ins/compose/compose.c:825 -#: plug-ins/convmatrix/convmatrix.c:723 plug-ins/cubism/cubism.c:347 -#: plug-ins/decompose/decompose.c:924 plug-ins/depthmerge/depthmerge.c:756 -#: plug-ins/destripe/destripe.c:704 plug-ins/gif/gif.c:1172 -#: plug-ins/jpeg/jpeg.c:1009 plug-ins/mail/mail.c:502 -#: plug-ins/oilify/oilify.c:469 plug-ins/png/png.c:1189 -#: plug-ins/print/print.c:1166 plug-ins/print/print.c:1272 -#: plug-ins/ps/ps.c:2008 plug-ins/ps/ps.c:2275 plug-ins/xbm/xbm.c:707 -#: plug-ins/xbm/xbm.c:969 plug-ins/xpm/xpm.c:772 +#: plug-ins/Lighting/lighting_ui.c:1062 plug-ins/bmp/bmpwrite.c:437 +#: plug-ins/common/CML_explorer.c:2690 plug-ins/common/apply_lens.c:430 +#: plug-ins/common/blur.c:621 plug-ins/common/bumpmap.c:979 +#: plug-ins/common/checkerboard.c:390 plug-ins/common/colorify.c:323 +#: plug-ins/common/compose.c:825 plug-ins/common/convmatrix.c:723 +#: plug-ins/common/cubism.c:347 plug-ins/common/decompose.c:924 +#: plug-ins/common/depthmerge.c:756 plug-ins/common/destripe.c:704 +#: plug-ins/common/gif.c:1172 plug-ins/common/jpeg.c:1009 +#: plug-ins/common/mail.c:502 plug-ins/common/oilify.c:469 +#: plug-ins/common/png.c:836 plug-ins/common/ps.c:2033 +#: plug-ins/common/ps.c:2300 plug-ins/common/xbm.c:707 +#: plug-ins/common/xbm.c:969 plug-ins/common/xpm.c:772 +#: plug-ins/print/print.c:991 plug-ins/print/print.c:1097 msgid "Cancel" msgstr "" @@ -867,23 +858,23 @@ msgstr "" msgid "Zoom out (make image smaller)" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:136 +#: plug-ins/common/apply_lens.c:136 msgid "Apply a lens effect" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:137 +#: plug-ins/common/apply_lens.c:137 msgid "This plug-in uses Snell's law to draw an ellipsoid lens over the image" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:141 +#: plug-ins/common/apply_lens.c:141 msgid "/Filters/Glass Effects/Apply Lens" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:200 +#: plug-ins/common/apply_lens.c:200 msgid "Applying lens..." msgstr "" -#: plug-ins/apply_lens/apply_lens.c:414 +#: plug-ins/common/apply_lens.c:414 msgid "Lens effect" msgstr "" @@ -892,40 +883,40 @@ msgstr "" #. * #. * First set up the basic containers, label them, etc. #. -#: plug-ins/apply_lens/apply_lens.c:439 plug-ins/blur/blur.c:607 -#: plug-ins/checkerboard/checkerboard.c:399 plug-ins/cubism/cubism.c:356 -#: plug-ins/jpeg/jpeg.c:1018 plug-ins/oilify/oilify.c:478 -#: plug-ins/png/png.c:1200 plug-ins/xpm/xpm.c:781 +#: plug-ins/common/apply_lens.c:439 plug-ins/common/blur.c:607 +#: plug-ins/common/checkerboard.c:399 plug-ins/common/cubism.c:356 +#: plug-ins/common/jpeg.c:1018 plug-ins/common/oilify.c:478 +#: plug-ins/common/png.c:847 plug-ins/common/xpm.c:781 msgid "Parameter Settings" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:448 +#: plug-ins/common/apply_lens.c:448 msgid "Keep original surroundings" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:461 +#: plug-ins/common/apply_lens.c:461 msgid "Set surroundings to index 0" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:462 +#: plug-ins/common/apply_lens.c:462 msgid "Set surroundings to background color" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:475 +#: plug-ins/common/apply_lens.c:475 msgid "Make surroundings transparent" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:490 +#: plug-ins/common/apply_lens.c:490 msgid "Lens refraction index: " msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:82 +#: plug-ins/common/autostretch_hsv.c:82 msgid "" "Automatically stretch the contrast of the specified drawable to cover all " "possible ranges." msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:83 +#: plug-ins/common/autostretch_hsv.c:83 msgid "" "This simple plug-in does an automatic contrast stretch. For each channel in " "the image, it finds the minimum and maximum values... it uses those values " @@ -935,52 +926,52 @@ msgid "" "space, and preserves hue." msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:87 +#: plug-ins/common/autostretch_hsv.c:87 msgid "/Image/Colors/Auto-Stretch HSV" msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:119 +#: plug-ins/common/autostretch_hsv.c:119 msgid "Auto-Stretching HSV..." msgstr "" -#: plug-ins/blur/blur.c:194 +#: plug-ins/common/blur.c:194 msgid "Apply a 3x3 blurring convolution kernel to the specified drawable." msgstr "" -#: plug-ins/blur/blur.c:195 +#: plug-ins/common/blur.c:195 msgid "" "This plug-in randomly blurs the specified drawable, using a 3x3 blur. You " "control the percentage of the pixels that are blurred and the number of " "times blurring is applied. Indexed images are not supported." msgstr "" -#: plug-ins/blur/blur.c:208 +#: plug-ins/common/blur.c:208 msgid "/Filters/Blur/Blur" msgstr "" -#: plug-ins/blur/blur.c:620 +#: plug-ins/common/blur.c:620 msgid "Accept settings and apply filter to image" msgstr "" -#: plug-ins/blur/blur.c:622 +#: plug-ins/common/blur.c:622 msgid "Close plug-in without making any changes" msgstr "" #. #. * Randomization seed initialization controls #. -#: plug-ins/blur/blur.c:626 +#: plug-ins/common/blur.c:626 msgid "Randomization Seed:" msgstr "" #. #. * Time button #. -#: plug-ins/blur/blur.c:637 +#: plug-ins/common/blur.c:637 msgid "Current Time" msgstr "" -#: plug-ins/blur/blur.c:638 +#: plug-ins/common/blur.c:638 msgid "" "Seed random number generator from the current time - this guarantees a " "reasonable randomization" @@ -989,39 +980,39 @@ msgstr "" #. #. * User button #. -#: plug-ins/blur/blur.c:648 +#: plug-ins/common/blur.c:648 msgid "Other Value" msgstr "" -#: plug-ins/blur/blur.c:649 +#: plug-ins/common/blur.c:649 msgid "" "Enable user-entered value for random number generator seed - this allows you " "to repeat a given \"random\" operation" msgstr "" -#: plug-ins/blur/blur.c:661 +#: plug-ins/common/blur.c:661 msgid "Value for seeding the random number generator" msgstr "" #. #. * Randomization percentage label & scale (1 to 100) #. -#: plug-ins/blur/blur.c:666 +#: plug-ins/common/blur.c:666 msgid "Randomization %:" msgstr "" -#: plug-ins/blur/blur.c:669 +#: plug-ins/common/blur.c:669 msgid "Percentage of pixels to be filtered" msgstr "" #. #. * Repeat count label & scale (1 to 100) #. -#: plug-ins/blur/blur.c:674 +#: plug-ins/common/blur.c:674 msgid "Repeat:" msgstr "" -#: plug-ins/blur/blur.c:677 +#: plug-ins/common/blur.c:677 msgid "Number of times to apply filter" msgstr "" @@ -1033,9 +1024,10 @@ msgstr "" msgid "Saves files in Windows BMP file format" msgstr "" -#: plug-ins/bmp/bmpread.c:27 plug-ins/gifload/gifload.c:287 -#: plug-ins/jpeg/jpeg.c:494 plug-ins/png/png.c:700 plug-ins/png/png.c:702 -#: plug-ins/xbm/xbm.c:523 plug-ins/xpm/xpm.c:300 +#: plug-ins/bmp/bmpread.c:27 plug-ins/common/gifload.c:287 +#: plug-ins/common/jpeg.c:494 plug-ins/common/png.c:345 +#: plug-ins/common/png.c:347 plug-ins/common/xbm.c:523 +#: plug-ins/common/xpm.c:300 #, c-format msgid "Loading %s:" msgstr "" @@ -1074,9 +1066,10 @@ msgstr "" #. * Create the "background" layer to hold the image... #. #: plug-ins/bmp/bmpread.c:210 plug-ins/bmp/bmpread.c:218 -#: plug-ins/bmp/bmpread.c:224 plug-ins/compose/compose.c:562 -#: plug-ins/decompose/decompose.c:472 plug-ins/gifload/gifload.c:828 -#: plug-ins/jpeg/jpeg.c:611 plug-ins/png/png.c:810 plug-ins/xbm/xbm.c:612 +#: plug-ins/bmp/bmpread.c:224 plug-ins/common/compose.c:562 +#: plug-ins/common/decompose.c:472 plug-ins/common/gifload.c:828 +#: plug-ins/common/jpeg.c:611 plug-ins/common/png.c:455 +#: plug-ins/common/xbm.c:612 msgid "Background" msgstr "" @@ -1089,9 +1082,10 @@ msgstr "" msgid "can't open %s\n" msgstr "" -#: plug-ins/bmp/bmpwrite.c:154 plug-ins/jpeg/jpeg.c:759 plug-ins/png/png.c:950 -#: plug-ins/png/png.c:952 plug-ins/ps/ps.c:680 plug-ins/xbm/xbm.c:777 -#: plug-ins/xpm/xpm.c:611 plug-ins/xwd/xwd.c:503 +#: plug-ins/bmp/bmpwrite.c:154 plug-ins/common/jpeg.c:759 +#: plug-ins/common/png.c:595 plug-ins/common/png.c:597 +#: plug-ins/common/ps.c:673 plug-ins/common/xbm.c:777 +#: plug-ins/common/xpm.c:611 plug-ins/common/xwd.c:507 #, c-format msgid "Saving %s:" msgstr "" @@ -1129,310 +1123,310 @@ msgstr "" msgid "Bucket Size:" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:298 +#: plug-ins/common/bumpmap.c:298 msgid "Linear map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:299 +#: plug-ins/common/bumpmap.c:299 msgid "Spherical map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:300 +#: plug-ins/common/bumpmap.c:300 msgid "Sinusoidal map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:346 +#: plug-ins/common/bumpmap.c:346 msgid "Create an embossing effect using an image as a bump map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:354 +#: plug-ins/common/bumpmap.c:354 msgid "/Filters/Map/Bump Map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:500 +#: plug-ins/common/bumpmap.c:500 msgid "Bump-mapping..." msgstr "" #. Bump map menu -#: plug-ins/bumpmap/bumpmap.c:830 plug-ins/bumpmap/bumpmap.c:939 +#: plug-ins/common/bumpmap.c:830 plug-ins/common/bumpmap.c:939 msgid "Bump map" msgstr "" #. Compensate darkening -#: plug-ins/bumpmap/bumpmap.c:884 +#: plug-ins/common/bumpmap.c:884 msgid "Compensate for darkening" msgstr "" #. Invert bumpmap -#: plug-ins/bumpmap/bumpmap.c:895 +#: plug-ins/common/bumpmap.c:895 msgid "Invert bumpmap" msgstr "" #. Controls -#: plug-ins/bumpmap/bumpmap.c:958 +#: plug-ins/common/bumpmap.c:958 msgid "Azimuth" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:959 +#: plug-ins/common/bumpmap.c:959 msgid "Elevation" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:960 +#: plug-ins/common/bumpmap.c:960 msgid "Depth" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:961 +#: plug-ins/common/bumpmap.c:961 msgid "X offset" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:962 +#: plug-ins/common/bumpmap.c:962 msgid "Y offset" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:963 +#: plug-ins/common/bumpmap.c:963 msgid "Waterlevel" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:964 +#: plug-ins/common/bumpmap.c:964 msgid "Ambient" msgstr "" -#: plug-ins/bz2/bz2.c:293 plug-ins/bz2/bz2.c:358 +#: plug-ins/common/bz2.c:293 plug-ins/common/bz2.c:358 #, c-format msgid "bz2: fork failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:300 plug-ins/bz2/bz2.c:365 +#: plug-ins/common/bz2.c:300 plug-ins/common/bz2.c:365 #, c-format msgid "bz2: fopen failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:306 plug-ins/bz2/bz2.c:371 +#: plug-ins/common/bz2.c:306 plug-ins/common/bz2.c:371 #, c-format msgid "bz2: dup2 failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:310 +#: plug-ins/common/bz2.c:310 #, c-format msgid "bz2: exec failed: bzip2: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:324 plug-ins/bz2/bz2.c:389 +#: plug-ins/common/bz2.c:324 plug-ins/common/bz2.c:389 #, c-format msgid "bz2: bzip2 exited abnormally on file %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:375 +#: plug-ins/common/bz2.c:375 #, c-format msgid "bz2: exec failed: bunzip2: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:443 +#: plug-ins/common/bz2.c:443 msgid "bz2: can't open bzip2ed file without a sensible extension\n" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:97 +#: plug-ins/common/checkerboard.c:97 msgid "Adds a checkerboard pattern to an image" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:102 +#: plug-ins/common/checkerboard.c:102 msgid "/Filters/Render/Checkerboard" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:164 +#: plug-ins/common/checkerboard.c:164 msgid "Adding Checkerboard..." msgstr "" -#: plug-ins/checkerboard/checkerboard.c:374 +#: plug-ins/common/checkerboard.c:374 msgid "Checkerboard" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:407 +#: plug-ins/common/checkerboard.c:407 msgid "Psychobilly" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:415 +#: plug-ins/common/checkerboard.c:415 msgid "Check Size" msgstr "" -#: plug-ins/colorify/colorify.c:122 +#: plug-ins/common/colorify.c:122 msgid "Similar to the \"Color\" mode for layers." msgstr "" -#: plug-ins/colorify/colorify.c:123 +#: plug-ins/common/colorify.c:123 msgid "Makes an average of the RGB channels and uses it to set the color" msgstr "" -#: plug-ins/colorify/colorify.c:126 +#: plug-ins/common/colorify.c:126 msgid "/Filters/Colors/Colorify" msgstr "" -#: plug-ins/colorify/colorify.c:194 +#: plug-ins/common/colorify.c:194 msgid "Colorifying..." msgstr "" -#: plug-ins/colorify/colorify.c:304 +#: plug-ins/common/colorify.c:308 msgid "Colorify" msgstr "" -#: plug-ins/colorify/colorify.c:310 +#: plug-ins/common/colorify.c:314 msgid "Ok" msgstr "" -#: plug-ins/colorify/colorify.c:327 plug-ins/print/print.c:1023 -#: plug-ins/xpm/xpm.c:406 +#: plug-ins/common/colorify.c:331 plug-ins/common/xpm.c:406 +#: plug-ins/print/print.c:848 msgid "Color" msgstr "" -#: plug-ins/colorify/colorify.c:340 +#: plug-ins/common/colorify.c:344 msgid "Custom Color: " msgstr "" -#: plug-ins/colorify/colorify.c:430 +#: plug-ins/common/colorify.c:434 msgid "Colorify Custom Color" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/decompose/decompose.c:129 +#: plug-ins/common/compose.c:125 plug-ins/common/decompose.c:129 msgid "RGB" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Red:" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Green: " msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Blue:" msgstr "" -#: plug-ins/compose/compose.c:126 +#: plug-ins/common/compose.c:126 msgid "rgb-compose" msgstr "" -#: plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:127 msgid "RGBA" msgstr "" -#: plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:127 msgid "Alpha:" msgstr "" -#: plug-ins/compose/compose.c:128 +#: plug-ins/common/compose.c:128 msgid "rgba-compose" msgstr "" -#: plug-ins/compose/compose.c:129 plug-ins/decompose/decompose.c:133 +#: plug-ins/common/compose.c:129 plug-ins/common/decompose.c:133 msgid "HSV" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Hue:" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Saturation:" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Value:" msgstr "" -#: plug-ins/compose/compose.c:130 +#: plug-ins/common/compose.c:130 msgid "hsv-compose" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/decompose/decompose.c:138 +#: plug-ins/common/compose.c:131 plug-ins/common/decompose.c:138 msgid "CMY" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Cyan:" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Magenta: " msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Yellow:" msgstr "" -#: plug-ins/compose/compose.c:132 +#: plug-ins/common/compose.c:132 msgid "cmy-compose" msgstr "" -#: plug-ins/compose/compose.c:133 plug-ins/decompose/decompose.c:143 +#: plug-ins/common/compose.c:133 plug-ins/common/decompose.c:143 msgid "CMYK" msgstr "" -#: plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:133 msgid "Black:" msgstr "" -#: plug-ins/compose/compose.c:134 +#: plug-ins/common/compose.c:134 msgid "cmyk-compose" msgstr "" -#: plug-ins/compose/compose.c:228 +#: plug-ins/common/compose.c:228 msgid "Compose an image from multiple gray images" msgstr "" -#: plug-ins/compose/compose.c:229 +#: plug-ins/common/compose.c:229 msgid "This function creates a new image from multiple gray images" msgstr "" -#: plug-ins/compose/compose.c:234 +#: plug-ins/common/compose.c:234 msgid "/Image/Channel Ops/Compose" msgstr "" -#: plug-ins/compose/compose.c:241 +#: plug-ins/common/compose.c:241 msgid "Compose an image from multiple drawables of gray images" msgstr "" -#: plug-ins/compose/compose.c:242 +#: plug-ins/common/compose.c:242 msgid "" "This function creates a new image from multiple drawables of gray images" msgstr "" -#: plug-ins/compose/compose.c:305 +#: plug-ins/common/compose.c:305 #, c-format msgid "compose: Could not get layers for image %d" msgstr "" -#: plug-ins/compose/compose.c:354 +#: plug-ins/common/compose.c:354 msgid "Composing..." msgstr "" -#: plug-ins/compose/compose.c:421 +#: plug-ins/common/compose.c:421 msgid "compose: drawables have different size" msgstr "" -#: plug-ins/compose/compose.c:438 +#: plug-ins/common/compose.c:438 msgid "compose: images have different size" msgstr "" -#: plug-ins/compose/compose.c:451 +#: plug-ins/common/compose.c:451 msgid "compose: error in getting layer IDs" msgstr "" -#: plug-ins/compose/compose.c:468 +#: plug-ins/common/compose.c:468 #, c-format msgid "compose: image is not a gray image (bpp=%d)" msgstr "" -#: plug-ins/compose/compose.c:483 plug-ins/compose/compose.c:498 +#: plug-ins/common/compose.c:483 plug-ins/common/compose.c:498 msgid "compose: not enough memory" msgstr "" -#: plug-ins/compose/compose.c:809 +#: plug-ins/common/compose.c:809 msgid "Compose" msgstr "" #. The left frame keeps the compose type toggles -#: plug-ins/compose/compose.c:841 +#: plug-ins/common/compose.c:841 msgid "Compose channels:" msgstr "" @@ -1440,324 +1434,324 @@ msgstr "" #. 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/compose/compose.c:855 +#: plug-ins/common/compose.c:855 msgid "Channel representations:" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 +#: plug-ins/common/convmatrix.c:76 msgid "Grey" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:130 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:130 msgid "Red" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:131 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:131 msgid "Green" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:132 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:132 msgid "Blue" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:148 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:148 msgid "Alpha" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:80 +#: plug-ins/common/convmatrix.c:80 msgid "Extend" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:80 +#: plug-ins/common/convmatrix.c:80 msgid "Wrap" msgstr "" #. Action area -#: plug-ins/convmatrix/convmatrix.c:80 plug-ins/gif/gif.c:1163 +#: plug-ins/common/convmatrix.c:80 plug-ins/common/gif.c:1163 msgid "Crop" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:173 +#: plug-ins/common/convmatrix.c:173 msgid "A generic 5x5 convolution matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:178 +#: plug-ins/common/convmatrix.c:178 msgid "/Filters/Generic/Convolution Matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:239 +#: plug-ins/common/convmatrix.c:239 msgid "Applying convolution" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:700 +#: plug-ins/common/convmatrix.c:700 msgid "Convolution Matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:715 +#: plug-ins/common/convmatrix.c:715 msgid "Defaults" msgstr "" #. Outbox:YABox:Frame -#: plug-ins/convmatrix/convmatrix.c:741 +#: plug-ins/common/convmatrix.c:741 msgid "Matrix" msgstr "" #. divisor -#: plug-ins/convmatrix/convmatrix.c:788 +#: plug-ins/common/convmatrix.c:788 msgid "Divisor" msgstr "" #. Offset -#: plug-ins/convmatrix/convmatrix.c:803 plug-ins/depthmerge/depthmerge.c:728 +#: plug-ins/common/convmatrix.c:803 plug-ins/common/depthmerge.c:728 msgid "Offset" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:823 +#: plug-ins/common/convmatrix.c:823 msgid "Automatic" msgstr "" #. Alpha-weighting -#: plug-ins/convmatrix/convmatrix.c:832 +#: plug-ins/common/convmatrix.c:832 msgid "Alpha-weighting" msgstr "" #. Wrap-modes #. OutBox:Inbox:Frame -#: plug-ins/convmatrix/convmatrix.c:847 +#: plug-ins/common/convmatrix.c:847 msgid "Border" msgstr "" #. OutBox:Inbox:Frame -#: plug-ins/convmatrix/convmatrix.c:875 +#: plug-ins/common/convmatrix.c:875 msgid "Channels" msgstr "" -#: plug-ins/cubism/cubism.c:181 +#: plug-ins/common/cubism.c:181 msgid "Convert the input drawable into a collection of rotated squares" msgstr "" -#: plug-ins/cubism/cubism.c:186 +#: plug-ins/common/cubism.c:186 msgid "/Filters/Artistic/Cubism" msgstr "" -#: plug-ins/cubism/cubism.c:298 +#: plug-ins/common/cubism.c:298 msgid "Cubistic Transformation" msgstr "" -#: plug-ins/cubism/cubism.c:331 +#: plug-ins/common/cubism.c:331 msgid "Cubism" msgstr "" -#: plug-ins/cubism/cubism.c:364 +#: plug-ins/common/cubism.c:364 msgid "Use Background Color" msgstr "" -#: plug-ins/cubism/cubism.c:372 +#: plug-ins/common/cubism.c:372 msgid "Tile Size" msgstr "" -#: plug-ins/cubism/cubism.c:388 +#: plug-ins/common/cubism.c:388 msgid "Tile Saturation" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:130 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:130 msgid "red" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:131 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:131 msgid "green" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:132 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:132 msgid "blue" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:135 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:135 msgid "hue" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:136 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:136 msgid "saturation" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:137 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:137 msgid "value" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:140 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:140 msgid "cyan" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:141 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:141 msgid "magenta" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:142 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:142 msgid "yellow" msgstr "" -#: plug-ins/decompose/decompose.c:140 +#: plug-ins/common/decompose.c:140 msgid "Cyan" msgstr "" -#: plug-ins/decompose/decompose.c:141 +#: plug-ins/common/decompose.c:141 msgid "Magenta" msgstr "" -#: plug-ins/decompose/decompose.c:142 +#: plug-ins/common/decompose.c:142 msgid "Yellow" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:145 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:145 msgid "cyan_k" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:146 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:146 msgid "magenta_k" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:147 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:147 msgid "yellow_k" msgstr "" -#: plug-ins/decompose/decompose.c:144 +#: plug-ins/common/decompose.c:144 msgid "black" msgstr "" -#: plug-ins/decompose/decompose.c:145 +#: plug-ins/common/decompose.c:145 msgid "Cyan_K" msgstr "" -#: plug-ins/decompose/decompose.c:146 +#: plug-ins/common/decompose.c:146 msgid "Magenta_K" msgstr "" -#: plug-ins/decompose/decompose.c:147 +#: plug-ins/common/decompose.c:147 msgid "Yellow_K" msgstr "" -#: plug-ins/decompose/decompose.c:148 +#: plug-ins/common/decompose.c:148 msgid "alpha" msgstr "" -#: plug-ins/decompose/decompose.c:216 +#: plug-ins/common/decompose.c:216 msgid "Decompose an image into different types of channels" msgstr "" -#: plug-ins/decompose/decompose.c:217 +#: plug-ins/common/decompose.c:217 msgid "" "This function creates new gray images with different channel information in " "each of them" msgstr "" -#: plug-ins/decompose/decompose.c:222 +#: plug-ins/common/decompose.c:222 msgid "/Image/Channel Ops/Decompose" msgstr "" -#: plug-ins/decompose/decompose.c:303 +#: plug-ins/common/decompose.c:303 msgid "plug_in_decompose: Can only work on RGB*_IMAGE" msgstr "" -#: plug-ins/decompose/decompose.c:309 +#: plug-ins/common/decompose.c:309 msgid "Decomposing..." msgstr "" -#: plug-ins/decompose/decompose.c:374 +#: plug-ins/common/decompose.c:374 msgid "decompose: not an RGB image" msgstr "" -#: plug-ins/decompose/decompose.c:380 +#: plug-ins/common/decompose.c:380 msgid "decompose: No alpha channel available" msgstr "" -#: plug-ins/decompose/decompose.c:409 +#: plug-ins/common/decompose.c:409 msgid "decompose: out of memory" msgstr "" -#: plug-ins/decompose/decompose.c:901 plug-ins/decompose/decompose.c:907 +#: plug-ins/common/decompose.c:901 plug-ins/common/decompose.c:907 msgid "Decompose" msgstr "" #. parameter settings -#: plug-ins/decompose/decompose.c:934 +#: plug-ins/common/decompose.c:934 msgid "Extract channels:" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:194 +#: plug-ins/common/depthmerge.c:194 msgid "Combine two images using corresponding depth maps (z-buffers)" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:195 +#: plug-ins/common/depthmerge.c:195 msgid "" "Taking as input two full-colour, full-alpha images and two corresponding " "grayscale depth maps, this plug-in combines the images based on which is " "closer (has a lower depth map value) at each point." msgstr "" -#: plug-ins/depthmerge/depthmerge.c:202 +#: plug-ins/common/depthmerge.c:202 msgid "/Filters/Combine/Depth Merge" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:369 +#: plug-ins/common/depthmerge.c:369 msgid "Depth-merging..." msgstr "" -#: plug-ins/depthmerge/depthmerge.c:609 +#: plug-ins/common/depthmerge.c:609 msgid "Depth Merge" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:647 +#: plug-ins/common/depthmerge.c:647 msgid "Source 1" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:664 plug-ins/depthmerge/depthmerge.c:698 +#: plug-ins/common/depthmerge.c:664 plug-ins/common/depthmerge.c:698 msgid "Depth Map" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:681 +#: plug-ins/common/depthmerge.c:681 msgid "Source 2" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:723 +#: plug-ins/common/depthmerge.c:723 msgid "Overlap" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:733 +#: plug-ins/common/depthmerge.c:733 msgid "Scale 1" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:738 +#: plug-ins/common/depthmerge.c:738 msgid "Scale 2" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:1181 +#: plug-ins/common/depthmerge.c:1181 msgid "" "Warning: I don't _like_ this color space. This is a suggestion, not a " "threat.\n" msgstr "" -#: plug-ins/destripe/destripe.c:151 +#: plug-ins/common/destripe.c:151 msgid "" "Destripe filter, used to remove vertical stripes caused by cheap scanners." msgstr "" -#: plug-ins/destripe/destripe.c:152 +#: plug-ins/common/destripe.c:152 msgid "This plug-in tries to remove vertical stripes from an image." msgstr "" -#: plug-ins/destripe/destripe.c:155 +#: plug-ins/common/destripe.c:155 msgid "/Filters/Enhance/Destripe" msgstr "" -#: plug-ins/destripe/destripe.c:358 +#: plug-ins/common/destripe.c:358 msgid "Destriping..." msgstr "" -#: plug-ins/destripe/destripe.c:589 +#: plug-ins/common/destripe.c:589 msgid "Destripe" msgstr "" -#: plug-ins/destripe/destripe.c:663 +#: plug-ins/common/destripe.c:663 msgid "Histogram" msgstr "" @@ -1773,36 +1767,36 @@ msgstr "" #. #. * Box size (radius) control... #. -#: plug-ins/destripe/destripe.c:687 +#: plug-ins/common/destripe.c:687 msgid "Width" msgstr "" -#: plug-ins/gif/gif.c:408 +#: plug-ins/common/gif.c:408 msgid "saves files in Compuserve GIF file format" msgstr "" -#: plug-ins/gif/gif.c:682 +#: plug-ins/common/gif.c:682 msgid "GIF: Couldn't simply reduce colours further. Saving as opaque.\n" msgstr "" -#: plug-ins/gif/gif.c:938 +#: plug-ins/common/gif.c:938 msgid "" "GIF: Sorry, can't save RGB images as GIFs - convert to INDEXED\n" "or GRAY first.\n" msgstr "" -#: plug-ins/gif/gif.c:957 +#: plug-ins/common/gif.c:957 #, c-format msgid "GIF: can't open %s\n" msgstr "" -#: plug-ins/gif/gif.c:1064 +#: plug-ins/common/gif.c:1064 msgid "" "Transparent colour *might* be incorrect on viewers which don't support " "transparency." msgstr "" -#: plug-ins/gif/gif.c:1196 +#: plug-ins/common/gif.c:1196 msgid "" "The image which you are trying to save as a GIF\n" "contains layers which extend beyond the actual\n" @@ -1813,339 +1807,339 @@ msgid "" "the image borders, or cancel this save." msgstr "" -#: plug-ins/gif/gif.c:1252 +#: plug-ins/common/gif.c:1252 msgid "Save as GIF" msgstr "" #. regular gif parameter settings -#: plug-ins/gif/gif.c:1286 +#: plug-ins/common/gif.c:1286 msgid "GIF Options" msgstr "" -#: plug-ins/gif/gif.c:1294 plug-ins/png/png.c:1209 +#: plug-ins/common/gif.c:1294 plug-ins/common/png.c:856 msgid "Interlace" msgstr "" -#: plug-ins/gif/gif.c:1306 +#: plug-ins/common/gif.c:1306 msgid "GIF Comment: " msgstr "" -#: plug-ins/gif/gif.c:1339 plug-ins/gif/gif.c:1340 +#: plug-ins/common/gif.c:1339 plug-ins/common/gif.c:1340 msgid "Made with GIMP" msgstr "" #. additional animated gif parameter settings -#: plug-ins/gif/gif.c:1365 +#: plug-ins/common/gif.c:1365 msgid "Animated GIF Options" msgstr "" -#: plug-ins/gif/gif.c:1373 +#: plug-ins/common/gif.c:1373 msgid "Loop forever" msgstr "" -#: plug-ins/gif/gif.c:1386 +#: plug-ins/common/gif.c:1386 msgid "Delay between frames where unspecified: " msgstr "" -#: plug-ins/gif/gif.c:1400 +#: plug-ins/common/gif.c:1400 msgid " milliseconds" msgstr "" -#: plug-ins/gif/gif.c:1411 +#: plug-ins/common/gif.c:1411 msgid "Frame disposal where unspecified: " msgstr "" -#: plug-ins/gif/gif.c:1421 +#: plug-ins/common/gif.c:1421 msgid "I don't care" msgstr "" -#: plug-ins/gif/gif.c:1427 +#: plug-ins/common/gif.c:1427 msgid "Cumulative layers (combine)" msgstr "" -#: plug-ins/gif/gif.c:1433 +#: plug-ins/common/gif.c:1433 msgid "One frame per layer (replace)" msgstr "" -#: plug-ins/gif/gif.c:1491 +#: plug-ins/common/gif.c:1491 #, c-format msgid "GIF: colorstobpp - Eep! too many colours: %d\n" msgstr "" -#: plug-ins/gif/gif.c:1507 +#: plug-ins/common/gif.c:1507 #, c-format msgid "GIF: bpptocolors - Eep! bpp==%d !\n" msgstr "" -#: plug-ins/gifload/gifload.c:134 +#: plug-ins/common/gifload.c:134 msgid "loads files of Compuserve GIF file format" msgstr "" -#: plug-ins/gifload/gifload.c:279 +#: plug-ins/common/gifload.c:279 #, c-format msgid "GIF: can't open \"%s\"\n" msgstr "" -#: plug-ins/gifload/gifload.c:294 +#: plug-ins/common/gifload.c:294 msgid "GIF: error reading magic number\n" msgstr "" -#: plug-ins/gifload/gifload.c:300 +#: plug-ins/common/gifload.c:300 msgid "GIF: not a GIF file\n" msgstr "" -#: plug-ins/gifload/gifload.c:309 +#: plug-ins/common/gifload.c:309 msgid "GIF: bad version number, not '87a' or '89a'\n" msgstr "" -#: plug-ins/gifload/gifload.c:315 +#: plug-ins/common/gifload.c:315 msgid "GIF: failed to read screen descriptor\n" msgstr "" -#: plug-ins/gifload/gifload.c:331 +#: plug-ins/common/gifload.c:331 msgid "GIF: error reading global colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:338 +#: plug-ins/common/gifload.c:338 msgid "GIF: warning - non-square pixels\n" msgstr "" -#: plug-ins/gifload/gifload.c:349 plug-ins/gifload/gifload.c:803 +#: plug-ins/common/gifload.c:349 plug-ins/common/gifload.c:803 msgid "GIF: EOF / read error on image data\n" msgstr "" -#: plug-ins/gifload/gifload.c:364 +#: plug-ins/common/gifload.c:364 msgid "GIF: OF / read error on extension function code\n" msgstr "" #. Not a valid start character -#: plug-ins/gifload/gifload.c:374 +#: plug-ins/common/gifload.c:374 #, c-format msgid "GIF: bogus character 0x%02x, ignoring\n" msgstr "" -#: plug-ins/gifload/gifload.c:382 +#: plug-ins/common/gifload.c:382 msgid "GIF: couldn't read left/top/width/height\n" msgstr "" -#: plug-ins/gifload/gifload.c:394 +#: plug-ins/common/gifload.c:394 msgid "GIF: error reading local colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:452 +#: plug-ins/common/gifload.c:452 msgid "GIF: bad colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:568 +#: plug-ins/common/gifload.c:568 msgid "GIF: error in getting DataBlock size\n" msgstr "" -#: plug-ins/gifload/gifload.c:576 +#: plug-ins/common/gifload.c:576 msgid "GIF: error in reading DataBlock\n" msgstr "" -#: plug-ins/gifload/gifload.c:607 +#: plug-ins/common/gifload.c:607 msgid "GIF: ran off the end of by bits\n" msgstr "" -#: plug-ins/gifload/gifload.c:718 +#: plug-ins/common/gifload.c:718 msgid "GIF: missing EOD in data stream (common occurence)" msgstr "" -#: plug-ins/gifload/gifload.c:735 +#: plug-ins/common/gifload.c:735 msgid "GIF: circular table entry BIG ERROR\n" msgstr "" -#: plug-ins/gifload/gifload.c:809 +#: plug-ins/common/gifload.c:809 msgid "GIF: error while reading\n" msgstr "" -#: plug-ins/gifload/gifload.c:830 +#: plug-ins/common/gifload.c:830 #, c-format msgid "Background (%dms)" msgstr "" -#: plug-ins/gifload/gifload.c:877 +#: plug-ins/common/gifload.c:877 #, c-format msgid "Frame %d" msgstr "" -#: plug-ins/gifload/gifload.c:879 +#: plug-ins/common/gifload.c:879 #, c-format msgid "Frame %d (%dms)" msgstr "" #. 'don't care' -#: plug-ins/gifload/gifload.c:885 plug-ins/gifload/gifload.c:887 +#: plug-ins/common/gifload.c:885 plug-ins/common/gifload.c:887 msgid " (combine)" msgstr "" -#: plug-ins/gifload/gifload.c:886 +#: plug-ins/common/gifload.c:886 msgid " (replace)" msgstr "" -#: plug-ins/gifload/gifload.c:892 +#: plug-ins/common/gifload.c:892 msgid " (unknown disposal)" msgstr "" -#: plug-ins/gifload/gifload.c:893 +#: plug-ins/common/gifload.c:893 msgid "" "GIF: Hmm... please forward this GIF to the GIF plugin author!\n" " (adam@foxbox.org)\n" msgstr "" -#: plug-ins/gifload/gifload.c:896 +#: plug-ins/common/gifload.c:896 msgid "GIF: Something got corrupted.\n" msgstr "" -#: plug-ins/gifload/gifload.c:925 +#: plug-ins/common/gifload.c:925 #, c-format msgid "GIF: reading %d by %d%s GIF image, ncols=%d\n" msgstr "" -#: plug-ins/gifload/gifload.c:926 +#: plug-ins/common/gifload.c:926 msgid " interlaced" msgstr "" -#: plug-ins/gifload/gifload.c:930 +#: plug-ins/common/gifload.c:930 msgid "" "GIF: Ouchie! Can't handle non-alpha RGB frames.\n" " Please mail the plugin author. (adam@gimp.org)\n" msgstr "" -#: plug-ins/gifload/gifload.c:1022 +#: plug-ins/common/gifload.c:1022 msgid "GIF: too much input data, ignoring extra...\n" msgstr "" -#: plug-ins/jpeg/jpeg.c:176 +#: plug-ins/common/jpeg.c:176 msgid "loads files of the jpeg file format" msgstr "" -#: plug-ins/jpeg/jpeg.c:487 +#: plug-ins/common/jpeg.c:487 #, c-format msgid "can't open \"%s\"\n" msgstr "" -#: plug-ins/jpeg/jpeg.c:603 +#: plug-ins/common/jpeg.c:603 #, c-format msgid "" "don't know how to load JPEGs\n" "with %d color channels" msgstr "" -#: plug-ins/jpeg/jpeg.c:648 +#: plug-ins/common/jpeg.c:648 #, c-format msgid "" "unknown density unit %d\n" "assuming dots per inch" msgstr "" -#: plug-ins/jpeg/jpeg.c:993 +#: plug-ins/common/jpeg.c:993 msgid "Save as Jpeg" msgstr "" -#: plug-ins/jpeg/jpeg.c:1026 +#: plug-ins/common/jpeg.c:1026 msgid "Quality" msgstr "" -#: plug-ins/jpeg/jpeg.c:1042 +#: plug-ins/common/jpeg.c:1042 msgid "Smoothing" msgstr "" -#: plug-ins/jpeg/jpeg.c:1058 +#: plug-ins/common/jpeg.c:1058 msgid "Optimize" msgstr "" -#: plug-ins/jpeg/jpeg.c:1066 +#: plug-ins/common/jpeg.c:1066 msgid "Progressive" msgstr "" -#: plug-ins/jpeg/jpeg.c:1079 +#: plug-ins/common/jpeg.c:1079 msgid "Image Comments" msgstr "" -#: plug-ins/mail/mail.c:212 +#: plug-ins/common/mail.c:212 msgid "pipe files to uuencode then mail them" msgstr "" -#: plug-ins/mail/mail.c:213 +#: plug-ins/common/mail.c:213 msgid "You need to have uuencode and mail installed" msgstr "" -#: plug-ins/mail/mail.c:217 +#: plug-ins/common/mail.c:217 msgid "/File/Mail image" msgstr "" -#: plug-ins/mail/mail.c:486 +#: plug-ins/common/mail.c:486 msgid "Send to mail" msgstr "" #. filename label -#: plug-ins/mail/mail.c:620 +#: plug-ins/common/mail.c:620 msgid "Filename:" msgstr "" #. Encapsulation label -#: plug-ins/mail/mail.c:674 +#: plug-ins/common/mail.c:674 msgid "Encapsulation:" msgstr "" #. Encapsulation radiobutton -#: plug-ins/mail/mail.c:683 +#: plug-ins/common/mail.c:683 msgid "Uuencode" msgstr "" -#: plug-ins/mail/mail.c:685 +#: plug-ins/common/mail.c:685 msgid "MIME" msgstr "" -#: plug-ins/mail/mail.c:799 +#: plug-ins/common/mail.c:799 msgid "mail: some sort of error with the file extension or lack thereof \n" msgstr "" -#: plug-ins/oilify/oilify.c:122 +#: plug-ins/common/oilify.c:122 msgid "Modify the specified drawable to resemble an oil painting" msgstr "" -#: plug-ins/oilify/oilify.c:123 +#: plug-ins/common/oilify.c:123 msgid "" "This function performs the well-known oil-paint effect on the specified " "drawable. The size of the input mask is specified by 'mask_size'." msgstr "" -#: plug-ins/oilify/oilify.c:127 +#: plug-ins/common/oilify.c:127 msgid "/Filters/Artistic/Oilify" msgstr "" -#: plug-ins/oilify/oilify.c:198 +#: plug-ins/common/oilify.c:198 msgid "Oil Painting..." msgstr "" -#: plug-ins/oilify/oilify.c:453 +#: plug-ins/common/oilify.c:453 msgid "Oilify" msgstr "" -#: plug-ins/oilify/oilify.c:486 +#: plug-ins/common/oilify.c:486 msgid "Use intensity algorithm" msgstr "" -#: plug-ins/oilify/oilify.c:494 +#: plug-ins/common/oilify.c:494 msgid "Mask Size" msgstr "" -#: plug-ins/png/png.c:504 +#: plug-ins/common/png.c:149 msgid "Loads files in PNG file format" msgstr "" -#: plug-ins/png/png.c:505 +#: plug-ins/common/png.c:150 msgid "This plug-in loads Portable Network Graphics (PNG) files." msgstr "" -#: plug-ins/png/png.c:1171 +#: plug-ins/common/png.c:818 msgid "PNG Options" msgstr "" -#: plug-ins/png/png.c:1216 +#: plug-ins/common/png.c:863 msgid "Compression level" msgstr "" @@ -2243,135 +2237,135 @@ msgstr "" msgid "600 DPI" msgstr "" -#: plug-ins/print/print.c:406 +#: plug-ins/print/print.c:229 msgid "PostScript Level 1" msgstr "" -#: plug-ins/print/print.c:408 +#: plug-ins/print/print.c:231 msgid "PostScript Level 2" msgstr "" -#: plug-ins/print/print.c:410 +#: plug-ins/print/print.c:233 msgid "HP DeskJet 500, 520" msgstr "" -#: plug-ins/print/print.c:412 +#: plug-ins/print/print.c:235 msgid "HP DeskJet 500C, 540C" msgstr "" -#: plug-ins/print/print.c:414 +#: plug-ins/print/print.c:237 msgid "HP DeskJet 550C, 560C" msgstr "" -#: plug-ins/print/print.c:416 +#: plug-ins/print/print.c:239 msgid "HP DeskJet 600 series" msgstr "" -#: plug-ins/print/print.c:418 +#: plug-ins/print/print.c:241 msgid "HP DeskJet 800 series" msgstr "" -#: plug-ins/print/print.c:420 +#: plug-ins/print/print.c:243 msgid "HP DeskJet 1100C, 1120C" msgstr "" -#: plug-ins/print/print.c:422 +#: plug-ins/print/print.c:245 msgid "HP DeskJet 1200C, 1600C" msgstr "" -#: plug-ins/print/print.c:424 +#: plug-ins/print/print.c:247 msgid "HP LaserJet II series" msgstr "" -#: plug-ins/print/print.c:426 +#: plug-ins/print/print.c:249 msgid "HP LaserJet III series" msgstr "" -#: plug-ins/print/print.c:428 +#: plug-ins/print/print.c:251 msgid "HP LaserJet 4 series" msgstr "" -#: plug-ins/print/print.c:430 +#: plug-ins/print/print.c:253 msgid "HP LaserJet 4V, 4Si" msgstr "" -#: plug-ins/print/print.c:432 +#: plug-ins/print/print.c:255 msgid "HP LaserJet 5 series" msgstr "" -#: plug-ins/print/print.c:434 +#: plug-ins/print/print.c:257 msgid "HP LaserJet 5Si" msgstr "" -#: plug-ins/print/print.c:436 +#: plug-ins/print/print.c:259 msgid "HP LaserJet 6 series" msgstr "" -#: plug-ins/print/print.c:438 +#: plug-ins/print/print.c:261 msgid "EPSON Stylus Color" msgstr "" -#: plug-ins/print/print.c:440 +#: plug-ins/print/print.c:263 msgid "EPSON Stylus Color Pro" msgstr "" -#: plug-ins/print/print.c:442 +#: plug-ins/print/print.c:265 msgid "EPSON Stylus Color Pro XL" msgstr "" -#: plug-ins/print/print.c:444 +#: plug-ins/print/print.c:267 msgid "EPSON Stylus Color 1500" msgstr "" -#: plug-ins/print/print.c:446 +#: plug-ins/print/print.c:269 msgid "EPSON Stylus Color 400" msgstr "" -#: plug-ins/print/print.c:448 +#: plug-ins/print/print.c:271 msgid "EPSON Stylus Color 500" msgstr "" -#: plug-ins/print/print.c:450 +#: plug-ins/print/print.c:273 msgid "EPSON Stylus Color 600" msgstr "" -#: plug-ins/print/print.c:452 +#: plug-ins/print/print.c:275 msgid "EPSON Stylus Color 800" msgstr "" -#: plug-ins/print/print.c:454 +#: plug-ins/print/print.c:277 msgid "EPSON Stylus Color 1520" msgstr "" -#: plug-ins/print/print.c:456 +#: plug-ins/print/print.c:279 msgid "EPSON Stylus Color 3000" msgstr "" -#: plug-ins/print/print.c:509 +#: plug-ins/print/print.c:332 msgid "This plug-in prints images from The GIMP." msgstr "" -#: plug-ins/print/print.c:510 +#: plug-ins/print/print.c:333 msgid "Prints images to PostScript, PCL, or ESC/P2 printers." msgstr "" -#: plug-ins/print/print.c:514 +#: plug-ins/print/print.c:337 msgid "/File/Print" msgstr "" -#: plug-ins/print/print.c:827 +#: plug-ins/print/print.c:650 msgid "Auto" msgstr "" -#: plug-ins/print/print.c:828 +#: plug-ins/print/print.c:651 msgid "Portrait" msgstr "" -#: plug-ins/print/print.c:829 +#: plug-ins/print/print.c:652 msgid "Landscape" msgstr "" -#: plug-ins/print/print.c:860 +#: plug-ins/print/print.c:685 #, c-format msgid "Print v%s" msgstr "" @@ -2379,354 +2373,351 @@ msgstr "" #. #. * Media size option menu... #. -#: plug-ins/print/print.c:910 +#: plug-ins/print/print.c:735 msgid "Media Size:" msgstr "" #. #. * Media type option menu... #. -#: plug-ins/print/print.c:926 +#: plug-ins/print/print.c:751 msgid "Media Type:" msgstr "" #. #. * Media source option menu... #. -#: plug-ins/print/print.c:942 +#: plug-ins/print/print.c:767 msgid "Media Source:" msgstr "" #. #. * Orientation option menu... #. -#: plug-ins/print/print.c:958 +#: plug-ins/print/print.c:783 msgid "Orientation:" msgstr "" #. #. * Resolution option menu... #. -#: plug-ins/print/print.c:988 plug-ins/ps/ps.c:1974 +#: plug-ins/common/ps.c:1999 plug-ins/print/print.c:813 msgid "Resolution:" msgstr "" #. #. * Output type toggles... #. -#: plug-ins/print/print.c:1004 +#: plug-ins/print/print.c:829 msgid "Output Type:" msgstr "" -#: plug-ins/print/print.c:1013 +#: plug-ins/print/print.c:838 msgid "B&W" msgstr "" #. #. * Scaling... #. -#: plug-ins/print/print.c:1036 +#: plug-ins/print/print.c:861 msgid "Scaling:" msgstr "" -#: plug-ins/print/print.c:1071 +#: plug-ins/print/print.c:896 msgid "Percent" msgstr "" -#: plug-ins/print/print.c:1080 +#: plug-ins/print/print.c:905 msgid "PPI" msgstr "" #. #. * Brightness slider... #. -#: plug-ins/print/print.c:1092 +#: plug-ins/print/print.c:917 msgid "Brightness:" msgstr "" #. #. * Printer option menu... #. -#: plug-ins/print/print.c:1127 +#: plug-ins/print/print.c:952 msgid "Printer:" msgstr "" -#: plug-ins/print/print.c:1153 plug-ins/print/print.c:1186 +#: plug-ins/print/print.c:978 plug-ins/print/print.c:1011 msgid "Setup" msgstr "" -#: plug-ins/print/print.c:1173 +#: plug-ins/print/print.c:998 msgid "Print" msgstr "" #. #. * Printer driver option menu... #. -#: plug-ins/print/print.c:1208 +#: plug-ins/print/print.c:1033 msgid "Driver:" msgstr "" #. #. * PPD file... #. -#: plug-ins/print/print.c:1233 +#: plug-ins/print/print.c:1058 msgid "PPD File:" msgstr "" -#: plug-ins/print/print.c:1246 +#: plug-ins/print/print.c:1071 msgid "Browse" msgstr "" #. #. * Print command... #. -#: plug-ins/print/print.c:1256 +#: plug-ins/print/print.c:1081 msgid "Command:" msgstr "" #. #. * Output file selection dialog... #. -#: plug-ins/print/print.c:1291 +#: plug-ins/print/print.c:1116 msgid "Print To File?" msgstr "" #. #. * PPD file selection dialog... #. -#: plug-ins/print/print.c:1301 +#: plug-ins/print/print.c:1126 msgid "PPD File?" msgstr "" -#: plug-ins/print/print.c:2287 +#: plug-ins/print/print.c:2112 msgid "File" msgstr "" -#: plug-ins/ps/ps.c:319 plug-ins/ps/ps.c:320 +#: plug-ins/common/ps.c:320 plug-ins/common/ps.c:321 msgid "load file of PostScript/PDF file format" msgstr "" -#: plug-ins/ps/ps.c:343 +#: plug-ins/common/ps.c:344 msgid "save file in PostScript file format" msgstr "" -#: plug-ins/ps/ps.c:344 +#: plug-ins/common/ps.c:345 msgid "" "PostScript saving handles all image types except those with alpha channels." msgstr "" -#: plug-ins/ps/ps.c:549 +#: plug-ins/common/ps.c:550 msgid "PS: can't open file for reading" msgstr "" -#: plug-ins/ps/ps.c:556 +#: plug-ins/common/ps.c:557 #, c-format msgid "Interpreting and Loading %s:" msgstr "" -#: plug-ins/ps/ps.c:566 +#: plug-ins/common/ps.c:565 msgid "PS: can't interprete file" msgstr "" -#: plug-ins/ps/ps.c:573 -msgid "PS: out of memory" -msgstr "" - -#: plug-ins/ps/ps.c:653 +#: plug-ins/common/ps.c:647 msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: plug-ins/ps/ps.c:664 +#: plug-ins/common/ps.c:658 msgid "PS: cannot operate on unknown image types" msgstr "" -#: plug-ins/ps/ps.c:673 +#: plug-ins/common/ps.c:667 msgid "PS: can't open file for writing" msgstr "" -#: plug-ins/ps/ps.c:1947 +#: plug-ins/common/ps.c:1713 plug-ins/common/ps.c:1810 +#: plug-ins/common/ps.c:1903 plug-ins/common/ps.c:1972 msgid "write error occured" msgstr "" -#: plug-ins/ps/ps.c:1974 plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:1999 plug-ins/common/ps.c:2264 msgid "Width:" msgstr "" -#: plug-ins/ps/ps.c:1974 plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:1999 plug-ins/common/ps.c:2264 msgid "Height:" msgstr "" -#: plug-ins/ps/ps.c:1974 +#: plug-ins/common/ps.c:1999 msgid "Pages:" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "b/w" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "gray" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "colour" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "automatic" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "none" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "weak" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "strong" msgstr "" -#: plug-ins/ps/ps.c:1991 +#: plug-ins/common/ps.c:2016 msgid "Load PostScript" msgstr "" #. Rendering -#: plug-ins/ps/ps.c:2024 +#: plug-ins/common/ps.c:2049 msgid "Rendering" msgstr "" -#: plug-ins/ps/ps.c:2064 +#: plug-ins/common/ps.c:2089 msgid "try BoundingBox" msgstr "" #. Colouring -#: plug-ins/ps/ps.c:2077 +#: plug-ins/common/ps.c:2102 msgid "Colouring" msgstr "" -#: plug-ins/ps/ps.c:2113 +#: plug-ins/common/ps.c:2138 msgid "Graphic antialiasing" msgstr "" -#: plug-ins/ps/ps.c:2114 +#: plug-ins/common/ps.c:2139 msgid "Text antialiasing" msgstr "" -#: plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:2264 msgid "X-offset:" msgstr "" -#: plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:2264 msgid "Y-offset:" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "0" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "90" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "180" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "270" msgstr "" -#: plug-ins/ps/ps.c:2243 +#: plug-ins/common/ps.c:2268 msgid "Inch" msgstr "" -#: plug-ins/ps/ps.c:2243 +#: plug-ins/common/ps.c:2268 msgid "Millimeter" msgstr "" -#: plug-ins/ps/ps.c:2258 +#: plug-ins/common/ps.c:2283 msgid "Save PostScript" msgstr "" #. Image Size -#: plug-ins/ps/ps.c:2299 +#: plug-ins/common/ps.c:2324 msgid "Image Size" msgstr "" -#: plug-ins/ps/ps.c:2338 +#: plug-ins/common/ps.c:2363 msgid "keep aspect ratio" msgstr "" #. Unit -#: plug-ins/ps/ps.c:2348 +#: plug-ins/common/ps.c:2373 msgid "Unit" msgstr "" #. Rotation -#: plug-ins/ps/ps.c:2379 +#: plug-ins/common/ps.c:2404 msgid "Rotation" msgstr "" #. Format -#: plug-ins/ps/ps.c:2406 +#: plug-ins/common/ps.c:2431 msgid "Output" msgstr "" -#: plug-ins/ps/ps.c:2414 +#: plug-ins/common/ps.c:2439 msgid "Encapsulated PostScript" msgstr "" -#: plug-ins/ps/ps.c:2440 +#: plug-ins/common/ps.c:2465 msgid "Preview size" msgstr "" -#: plug-ins/xbm/xbm.c:163 +#: plug-ins/common/xbm.c:163 msgid "Load a file in X10 or X11 bitmap (XBM) file format" msgstr "" -#: plug-ins/xbm/xbm.c:164 +#: plug-ins/common/xbm.c:164 msgid "" "Load a file in X10 or X11 bitmap (XBM) file format. XBM is a lossless " "format for flat black-and-white (two color indexed) images." msgstr "" -#: plug-ins/xbm/xbm.c:230 +#: plug-ins/common/xbm.c:230 msgid "Made with Gimp" msgstr "" -#: plug-ins/xbm/xbm.c:518 +#: plug-ins/common/xbm.c:518 #, c-format msgid "XBM: cannot open \"%s\"\n" msgstr "" -#: plug-ins/xbm/xbm.c:583 +#: plug-ins/common/xbm.c:583 #, c-format msgid "XBM: cannot read header (ftell == %ld)\n" msgstr "" -#: plug-ins/xbm/xbm.c:589 +#: plug-ins/common/xbm.c:589 msgid "XBM: no image width specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:595 +#: plug-ins/common/xbm.c:595 msgid "XBM: no image height specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:601 +#: plug-ins/common/xbm.c:601 msgid "XBM: no image data type specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:692 +#: plug-ins/common/xbm.c:692 msgid "XBM: can only save two color indexed images\n" msgstr "" -#: plug-ins/xbm/xbm.c:697 +#: plug-ins/common/xbm.c:697 msgid "XBM Warning" msgstr "" -#: plug-ins/xbm/xbm.c:727 +#: plug-ins/common/xbm.c:727 msgid "" "The image which you are trying to save as\n" "an XBM contains more than two colors.\n" @@ -2735,82 +2726,82 @@ msgid "" "(1-bit) indexed image and try again." msgstr "" -#: plug-ins/xbm/xbm.c:799 +#: plug-ins/common/xbm.c:799 #, c-format msgid "XBM: cannot create \"%s\"\n" msgstr "" -#: plug-ins/xbm/xbm.c:949 +#: plug-ins/common/xbm.c:949 msgid "Save as XBM" msgstr "" #. parameter settings -#: plug-ins/xbm/xbm.c:980 +#: plug-ins/common/xbm.c:980 msgid "XBM Options" msgstr "" -#: plug-ins/xbm/xbm.c:995 +#: plug-ins/common/xbm.c:995 msgid "Description: " msgstr "" #. X10 format -#: plug-ins/xbm/xbm.c:1011 +#: plug-ins/common/xbm.c:1011 msgid "X10 format bitmap" msgstr "" -#: plug-ins/xbm/xbm.c:1024 +#: plug-ins/common/xbm.c:1024 msgid "Identifier prefix: " msgstr "" -#: plug-ins/xpm/xpm.c:170 +#: plug-ins/common/xpm.c:170 msgid "loads files of the xpm file format" msgstr "" -#: plug-ins/xpm/xpm.c:182 +#: plug-ins/common/xpm.c:182 msgid "saves files in the xpm file format (if you're on a 16 bit display...)" msgstr "" -#: plug-ins/xpm/xpm.c:756 +#: plug-ins/common/xpm.c:756 msgid "Save as Xpm" msgstr "" -#: plug-ins/xpm/xpm.c:790 +#: plug-ins/common/xpm.c:790 msgid "Alpha Threshold" msgstr "" -#: plug-ins/xwd/xwd.c:222 plug-ins/xwd/xwd.c:223 +#: plug-ins/common/xwd.c:226 plug-ins/common/xwd.c:227 msgid "load file of the XWD file format" msgstr "" -#: plug-ins/xwd/xwd.c:234 +#: plug-ins/common/xwd.c:238 msgid "saves files in the XWD file format" msgstr "" -#: plug-ins/xwd/xwd.c:235 +#: plug-ins/common/xwd.c:239 msgid "XWD saving handles all image types except those with alpha channels." msgstr "" -#: plug-ins/xwd/xwd.c:331 +#: plug-ins/common/xwd.c:335 msgid "can't open file for reading" msgstr "" -#: plug-ins/xwd/xwd.c:347 +#: plug-ins/common/xwd.c:351 msgid "can't open file as XWD file" msgstr "" -#: plug-ins/xwd/xwd.c:362 +#: plug-ins/common/xwd.c:366 msgid "can't get memory for colormap" msgstr "" -#: plug-ins/xwd/xwd.c:380 +#: plug-ins/common/xwd.c:384 msgid "can't read color entries" msgstr "" -#: plug-ins/xwd/xwd.c:444 +#: plug-ins/common/xwd.c:448 msgid "this image depth/format is not supported" msgstr "" -#: plug-ins/xwd/xwd.c:448 +#: plug-ins/common/xwd.c:452 #, c-format msgid "" "load_image (xwd): XWD-file %s has format %d, depth %d\n" @@ -2818,35 +2809,35 @@ msgid "" "Currently this is not supported.\n" msgstr "" -#: plug-ins/xwd/xwd.c:476 +#: plug-ins/common/xwd.c:480 msgid "XWD save cannot handle images with alpha channels" msgstr "" -#: plug-ins/xwd/xwd.c:487 +#: plug-ins/common/xwd.c:491 msgid "cannot operate on unknown image types" msgstr "" -#: plug-ins/xwd/xwd.c:496 +#: plug-ins/common/xwd.c:500 msgid "can't open file for writing" msgstr "" -#: plug-ins/xwd/xwd.c:1148 +#: plug-ins/common/xwd.c:1152 msgid "EOF encountered on " msgstr "" -#: plug-ins/xwd/xwd.c:1246 plug-ins/xwd/xwd.c:1408 plug-ins/xwd/xwd.c:1605 -#: plug-ins/xwd/xwd.c:1854 +#: plug-ins/common/xwd.c:1250 plug-ins/common/xwd.c:1412 +#: plug-ins/common/xwd.c:1609 plug-ins/common/xwd.c:1858 msgid "EOF encountered on reading" msgstr "" -#: plug-ins/xwd/xwd.c:1294 +#: plug-ins/common/xwd.c:1298 msgid "No memory for mapping colors" msgstr "" -#: plug-ins/xwd/xwd.c:1978 +#: plug-ins/common/xwd.c:1982 msgid "Error during writing indexed/grey image" msgstr "" -#: plug-ins/xwd/xwd.c:2067 +#: plug-ins/common/xwd.c:2071 msgid "Error during writing rgb image" msgstr "" diff --git a/po-plug-ins/sv.po b/po-plug-ins/sv.po index 4336c06aab..456dd3c23c 100644 --- a/po-plug-ins/sv.po +++ b/po-plug-ins/sv.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 1999-06-05 14:12-0700\n" +"POT-Creation-Date: 1999-07-17 11:11-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,236 +14,230 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: plug-ins/CML_explorer/CML_explorer.c:226 +#: plug-ins/common/CML_explorer.c:226 msgid "Keep image's values" msgstr "Keep image's values" -#: plug-ins/CML_explorer/CML_explorer.c:228 +#: plug-ins/common/CML_explorer.c:228 msgid "Keep the first value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:230 +#: plug-ins/common/CML_explorer.c:230 msgid "Fill with parameter k" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:232 +#: plug-ins/common/CML_explorer.c:232 msgid "k{x(1-x)}^p" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:234 +#: plug-ins/common/CML_explorer.c:234 msgid "k{x(1-x)}^p stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:236 +#: plug-ins/common/CML_explorer.c:236 msgid "kx^p" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:238 +#: plug-ins/common/CML_explorer.c:238 msgid "kx^p stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:240 +#: plug-ins/common/CML_explorer.c:240 msgid "k(1 - x^p)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:242 +#: plug-ins/common/CML_explorer.c:242 msgid "k(1 - x^p) stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:244 +#: plug-ins/common/CML_explorer.c:244 msgid "Delta function" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:246 +#: plug-ins/common/CML_explorer.c:246 msgid "Delta function stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:248 +#: plug-ins/common/CML_explorer.c:248 msgid "sin^p-based function" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:250 +#: plug-ins/common/CML_explorer.c:250 msgid "sin^p, stepped" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:256 +#: plug-ins/common/CML_explorer.c:256 msgid "None" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:258 +#: plug-ins/common/CML_explorer.c:258 msgid "Max (x, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:260 +#: plug-ins/common/CML_explorer.c:260 msgid "Max (x+d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:262 +#: plug-ins/common/CML_explorer.c:262 msgid "Max (x-d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:264 -msgid "Mix (x, -)" +#: plug-ins/common/CML_explorer.c:264 +msgid "Min (x, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:266 +#: plug-ins/common/CML_explorer.c:266 msgid "Min (x+d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:268 +#: plug-ins/common/CML_explorer.c:268 msgid "Min (x-d, -)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:270 +#: plug-ins/common/CML_explorer.c:270 msgid "Max (x+d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:272 +#: plug-ins/common/CML_explorer.c:272 msgid "Max (x+d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:274 +#: plug-ins/common/CML_explorer.c:274 msgid "Max (x-d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:276 +#: plug-ins/common/CML_explorer.c:276 msgid "Max (x-d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:278 +#: plug-ins/common/CML_explorer.c:278 msgid "Min (x+d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:280 +#: plug-ins/common/CML_explorer.c:280 msgid "Min (x+d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:282 +#: plug-ins/common/CML_explorer.c:282 msgid "Min (x-d, -), (x < 0.5)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:284 +#: plug-ins/common/CML_explorer.c:284 msgid "Min (x-d, -), (0.5 < x)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:290 +#: plug-ins/common/CML_explorer.c:290 msgid "Standard" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:292 +#: plug-ins/common/CML_explorer.c:292 msgid "Use average value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:294 +#: plug-ins/common/CML_explorer.c:294 msgid "Use reverse value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:296 +#: plug-ins/common/CML_explorer.c:296 msgid "With random power (0,10)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:298 +#: plug-ins/common/CML_explorer.c:298 msgid "With random power (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:300 +#: plug-ins/common/CML_explorer.c:300 msgid "With gradient power (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:302 +#: plug-ins/common/CML_explorer.c:302 msgid "Multiply rand. value (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:304 +#: plug-ins/common/CML_explorer.c:304 msgid "Multiply rand. value (0,2)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:306 +#: plug-ins/common/CML_explorer.c:306 msgid "Multiply gradient (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:308 +#: plug-ins/common/CML_explorer.c:308 msgid "With p and random (0,1)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:313 +#: plug-ins/common/CML_explorer.c:313 msgid "All black" msgstr "" #. 0 -#: plug-ins/CML_explorer/CML_explorer.c:314 +#: plug-ins/common/CML_explorer.c:314 msgid "All gray" msgstr "" #. 1 -#: plug-ins/CML_explorer/CML_explorer.c:315 +#: plug-ins/common/CML_explorer.c:315 msgid "All white" msgstr "" #. 2 -#: plug-ins/CML_explorer/CML_explorer.c:316 +#: plug-ins/common/CML_explorer.c:316 msgid "The first row of the image" msgstr "" #. 3 -#: plug-ins/CML_explorer/CML_explorer.c:317 +#: plug-ins/common/CML_explorer.c:317 msgid "Continuous gradient" msgstr "" #. 4 -#: plug-ins/CML_explorer/CML_explorer.c:318 +#: plug-ins/common/CML_explorer.c:318 msgid "Continuous grad. w/o gap" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:320 +#: plug-ins/common/CML_explorer.c:320 msgid "Random, ch. independent" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:322 +#: plug-ins/common/CML_explorer.c:322 msgid "Random shared" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:324 +#: plug-ins/common/CML_explorer.c:324 msgid "Randoms from seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:326 +#: plug-ins/common/CML_explorer.c:326 msgid "Randoms from seed (shared)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:380 -#: plug-ins/CML_explorer/CML_explorer.c:388 -#: plug-ins/CML_explorer/CML_explorer.c:1431 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:135 +#: plug-ins/common/CML_explorer.c:380 plug-ins/common/CML_explorer.c:388 +#: plug-ins/common/CML_explorer.c:1431 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:135 msgid "Hue" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:381 -#: plug-ins/CML_explorer/CML_explorer.c:389 -#: plug-ins/CML_explorer/CML_explorer.c:1435 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:136 +#: plug-ins/common/CML_explorer.c:381 plug-ins/common/CML_explorer.c:389 +#: plug-ins/common/CML_explorer.c:1435 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:136 msgid "Saturation" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:382 -#: plug-ins/CML_explorer/CML_explorer.c:390 -#: plug-ins/CML_explorer/CML_explorer.c:1439 -#: plug-ins/CML_explorer/CML_explorer.c:1755 -#: plug-ins/decompose/decompose.c:137 +#: plug-ins/common/CML_explorer.c:382 plug-ins/common/CML_explorer.c:390 +#: plug-ins/common/CML_explorer.c:1439 plug-ins/common/CML_explorer.c:1755 +#: plug-ins/common/decompose.c:137 msgid "Value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:387 +#: plug-ins/common/CML_explorer.c:387 msgid "NULL" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:494 +#: plug-ins/common/CML_explorer.c:494 msgid "Make an image of Coupled-Map Lattice" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:495 +#: plug-ins/common/CML_explorer.c:495 msgid "" "Make an image of Coupled-Map Lattice (CML). CML is a kind of Cellula " "Automata on continuous (value) domain. In RUN_NONINTERACTIVE, the name of a " @@ -251,87 +245,87 @@ msgid "" "parameter file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1327 +#: plug-ins/common/CML_explorer.c:1327 msgid "Coupled-Map-Lattice Explorer" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1344 plug-ins/ps/ps.c:2423 +#: plug-ins/common/CML_explorer.c:1344 plug-ins/common/ps.c:2448 msgid "Preview" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1385 +#: plug-ins/common/CML_explorer.c:1385 msgid "New seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1391 +#: plug-ins/common/CML_explorer.c:1391 msgid "Fix seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1397 +#: plug-ins/common/CML_explorer.c:1397 msgid "Random seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1409 +#: plug-ins/common/CML_explorer.c:1409 msgid "Load" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1412 +#: plug-ins/common/CML_explorer.c:1412 msgid "Save" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1429 +#: plug-ins/common/CML_explorer.c:1429 msgid "Hue settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1433 +#: plug-ins/common/CML_explorer.c:1433 msgid "Saturation settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1437 +#: plug-ins/common/CML_explorer.c:1437 msgid "Value (grayimage) settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1441 +#: plug-ins/common/CML_explorer.c:1441 msgid "Advanced settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1443 +#: plug-ins/common/CML_explorer.c:1443 msgid "Advanced" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1455 +#: plug-ins/common/CML_explorer.c:1455 msgid "Other parameter settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1459 +#: plug-ins/common/CML_explorer.c:1459 msgid "Channel independed parameters" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1463 +#: plug-ins/common/CML_explorer.c:1463 msgid "Initial value" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1469 +#: plug-ins/common/CML_explorer.c:1469 msgid "Zoom scale" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1474 +#: plug-ins/common/CML_explorer.c:1474 msgid "Start offset" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1494 +#: plug-ins/common/CML_explorer.c:1494 msgid "Seed of random (only for \"from seed\" modes)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1498 +#: plug-ins/common/CML_explorer.c:1498 msgid "Seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1508 +#: plug-ins/common/CML_explorer.c:1508 msgid "Switch to \"from seed\" with the last seed" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1515 +#: plug-ins/common/CML_explorer.c:1515 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 " @@ -339,202 +333,199 @@ msgid "" "(2) all mutation rates equal to zero." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1532 +#: plug-ins/common/CML_explorer.c:1532 msgid "Others" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1539 +#: plug-ins/common/CML_explorer.c:1539 msgid "Misc operations" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1544 +#: plug-ins/common/CML_explorer.c:1544 msgid "Copy settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1548 +#: plug-ins/common/CML_explorer.c:1548 msgid "Source ch." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1554 -#: plug-ins/CML_explorer/CML_explorer.c:1588 +#: plug-ins/common/CML_explorer.c:1554 plug-ins/common/CML_explorer.c:1588 msgid "Destination ch." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1560 +#: plug-ins/common/CML_explorer.c:1560 msgid "Do copy parameters" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1578 +#: plug-ins/common/CML_explorer.c:1578 msgid "Selective load settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1582 +#: plug-ins/common/CML_explorer.c:1582 msgid "Source ch. in file" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1608 +#: plug-ins/common/CML_explorer.c:1608 msgid "Misc ops." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1644 +#: plug-ins/common/CML_explorer.c:1644 msgid "Function type" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1651 +#: plug-ins/common/CML_explorer.c:1651 msgid "Composition" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1658 +#: plug-ins/common/CML_explorer.c:1658 msgid "Misc arrange" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1665 +#: plug-ins/common/CML_explorer.c:1665 msgid "Use cyclic range" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1670 +#: plug-ins/common/CML_explorer.c:1670 msgid "Mod. rate" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1677 +#: plug-ins/common/CML_explorer.c:1677 msgid "Env. sensitivity" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1684 +#: plug-ins/common/CML_explorer.c:1684 msgid "Diffusion dist." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1691 +#: plug-ins/common/CML_explorer.c:1691 msgid "# of subranges" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1698 +#: plug-ins/common/CML_explorer.c:1698 msgid "P(ower factor)" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1705 +#: plug-ins/common/CML_explorer.c:1705 msgid "Parameter k" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1712 +#: plug-ins/common/CML_explorer.c:1712 msgid "Range low" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1719 +#: plug-ins/common/CML_explorer.c:1719 msgid "Range high" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1738 +#: plug-ins/common/CML_explorer.c:1738 msgid "Plot the graph of the settings" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1772 +#: plug-ins/common/CML_explorer.c:1772 msgid "Ch. sensitivity" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1779 +#: plug-ins/common/CML_explorer.c:1779 msgid "Mutation rate" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1786 +#: plug-ins/common/CML_explorer.c:1786 msgid "Mutation dist." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1815 +#: plug-ins/common/CML_explorer.c:1815 msgid "Graph of the current settings" msgstr "" #. Action Area -#: plug-ins/CML_explorer/CML_explorer.c:1820 -#: plug-ins/CML_explorer/CML_explorer.c:2681 -#: plug-ins/CML_explorer/CML_explorer.c:2777 -#: plug-ins/apply_lens/apply_lens.c:420 plug-ins/blur/blur.c:619 -#: plug-ins/bmp/bmpwrite.c:428 plug-ins/bumpmap/bumpmap.c:970 -#: plug-ins/checkerboard/checkerboard.c:381 plug-ins/compose/compose.c:816 -#: plug-ins/convmatrix/convmatrix.c:706 plug-ins/cubism/cubism.c:338 -#: plug-ins/decompose/decompose.c:914 plug-ins/depthmerge/depthmerge.c:746 -#: plug-ins/destripe/destripe.c:695 plug-ins/gif/gif.c:1263 -#: plug-ins/jpeg/jpeg.c:1000 plug-ins/mail/mail.c:491 -#: plug-ins/oilify/oilify.c:460 plug-ins/png/png.c:1180 -#: plug-ins/print/print.c:1279 plug-ins/ps/ps.c:1998 plug-ins/ps/ps.c:2265 -#: plug-ins/xbm/xbm.c:959 plug-ins/xpm/xpm.c:763 +#: plug-ins/bmp/bmpwrite.c:428 plug-ins/common/CML_explorer.c:1820 +#: plug-ins/common/CML_explorer.c:2681 plug-ins/common/CML_explorer.c:2777 +#: plug-ins/common/apply_lens.c:420 plug-ins/common/blur.c:619 +#: plug-ins/common/bumpmap.c:970 plug-ins/common/checkerboard.c:381 +#: plug-ins/common/compose.c:816 plug-ins/common/convmatrix.c:706 +#: plug-ins/common/cubism.c:338 plug-ins/common/decompose.c:914 +#: plug-ins/common/depthmerge.c:746 plug-ins/common/destripe.c:695 +#: plug-ins/common/gif.c:1263 plug-ins/common/jpeg.c:1000 +#: plug-ins/common/mail.c:491 plug-ins/common/oilify.c:460 +#: plug-ins/common/png.c:827 plug-ins/common/ps.c:2023 +#: plug-ins/common/ps.c:2290 plug-ins/common/xbm.c:959 +#: plug-ins/common/xpm.c:763 plug-ins/print/print.c:1104 msgid "OK" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1830 +#: plug-ins/common/CML_explorer.c:1830 msgid "The Graph" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:1922 +#: plug-ins/common/CML_explorer.c:1922 msgid "Warning: the source and the destination are the same channel." msgstr "" #. Action Area -#: plug-ins/CML_explorer/CML_explorer.c:2010 +#: plug-ins/common/CML_explorer.c:2010 msgid "Execute" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2019 +#: plug-ins/common/CML_explorer.c:2019 msgid "Execute and Exit" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2027 +#: plug-ins/common/CML_explorer.c:2027 msgid "Exit" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2045 +#: plug-ins/common/CML_explorer.c:2045 msgid "Save parameters to" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2108 -#: plug-ins/CML_explorer/CML_explorer.c:2301 +#: plug-ins/common/CML_explorer.c:2108 plug-ins/common/CML_explorer.c:2301 #, c-format msgid "Error: could not open \"%s\"" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2173 +#: plug-ins/common/CML_explorer.c:2173 msgid "CML file operation warning" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2180 +#: plug-ins/common/CML_explorer.c:2180 #, c-format msgid "%s exists, overwrite?" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2223 +#: plug-ins/common/CML_explorer.c:2223 msgid "Load parameters from" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2225 +#: plug-ins/common/CML_explorer.c:2225 msgid "Selective load from" msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2324 +#: plug-ins/common/CML_explorer.c:2324 msgid "Error: it's not CML parameter file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2331 +#: plug-ins/common/CML_explorer.c:2331 msgid "Warning: it's an old format file." msgstr "" -#: plug-ins/CML_explorer/CML_explorer.c:2333 +#: plug-ins/common/CML_explorer.c:2333 msgid "Warning: Hmmm, it's a parameter file for newer CML_explorer than me." msgstr "" #. cancel button -#: plug-ins/CML_explorer/CML_explorer.c:2690 -#: plug-ins/Lighting/lighting_ui.c:1062 plug-ins/apply_lens/apply_lens.c:430 -#: plug-ins/blur/blur.c:621 plug-ins/bmp/bmpwrite.c:437 -#: plug-ins/bumpmap/bumpmap.c:979 plug-ins/checkerboard/checkerboard.c:390 -#: plug-ins/colorify/colorify.c:319 plug-ins/compose/compose.c:825 -#: plug-ins/convmatrix/convmatrix.c:723 plug-ins/cubism/cubism.c:347 -#: plug-ins/decompose/decompose.c:924 plug-ins/depthmerge/depthmerge.c:756 -#: plug-ins/destripe/destripe.c:704 plug-ins/gif/gif.c:1172 -#: plug-ins/jpeg/jpeg.c:1009 plug-ins/mail/mail.c:502 -#: plug-ins/oilify/oilify.c:469 plug-ins/png/png.c:1189 -#: plug-ins/print/print.c:1166 plug-ins/print/print.c:1272 -#: plug-ins/ps/ps.c:2008 plug-ins/ps/ps.c:2275 plug-ins/xbm/xbm.c:707 -#: plug-ins/xbm/xbm.c:969 plug-ins/xpm/xpm.c:772 +#: plug-ins/Lighting/lighting_ui.c:1062 plug-ins/bmp/bmpwrite.c:437 +#: plug-ins/common/CML_explorer.c:2690 plug-ins/common/apply_lens.c:430 +#: plug-ins/common/blur.c:621 plug-ins/common/bumpmap.c:979 +#: plug-ins/common/checkerboard.c:390 plug-ins/common/colorify.c:323 +#: plug-ins/common/compose.c:825 plug-ins/common/convmatrix.c:723 +#: plug-ins/common/cubism.c:347 plug-ins/common/decompose.c:924 +#: plug-ins/common/depthmerge.c:756 plug-ins/common/destripe.c:704 +#: plug-ins/common/gif.c:1172 plug-ins/common/jpeg.c:1009 +#: plug-ins/common/mail.c:502 plug-ins/common/oilify.c:469 +#: plug-ins/common/png.c:836 plug-ins/common/ps.c:2033 +#: plug-ins/common/ps.c:2300 plug-ins/common/xbm.c:707 +#: plug-ins/common/xbm.c:969 plug-ins/common/xpm.c:772 +#: plug-ins/print/print.c:991 plug-ins/print/print.c:1097 msgid "Cancel" msgstr "" @@ -867,23 +858,23 @@ msgstr "" msgid "Zoom out (make image smaller)" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:136 +#: plug-ins/common/apply_lens.c:136 msgid "Apply a lens effect" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:137 +#: plug-ins/common/apply_lens.c:137 msgid "This plug-in uses Snell's law to draw an ellipsoid lens over the image" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:141 +#: plug-ins/common/apply_lens.c:141 msgid "/Filters/Glass Effects/Apply Lens" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:200 +#: plug-ins/common/apply_lens.c:200 msgid "Applying lens..." msgstr "" -#: plug-ins/apply_lens/apply_lens.c:414 +#: plug-ins/common/apply_lens.c:414 msgid "Lens effect" msgstr "" @@ -892,40 +883,40 @@ msgstr "" #. * #. * First set up the basic containers, label them, etc. #. -#: plug-ins/apply_lens/apply_lens.c:439 plug-ins/blur/blur.c:607 -#: plug-ins/checkerboard/checkerboard.c:399 plug-ins/cubism/cubism.c:356 -#: plug-ins/jpeg/jpeg.c:1018 plug-ins/oilify/oilify.c:478 -#: plug-ins/png/png.c:1200 plug-ins/xpm/xpm.c:781 +#: plug-ins/common/apply_lens.c:439 plug-ins/common/blur.c:607 +#: plug-ins/common/checkerboard.c:399 plug-ins/common/cubism.c:356 +#: plug-ins/common/jpeg.c:1018 plug-ins/common/oilify.c:478 +#: plug-ins/common/png.c:847 plug-ins/common/xpm.c:781 msgid "Parameter Settings" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:448 +#: plug-ins/common/apply_lens.c:448 msgid "Keep original surroundings" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:461 +#: plug-ins/common/apply_lens.c:461 msgid "Set surroundings to index 0" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:462 +#: plug-ins/common/apply_lens.c:462 msgid "Set surroundings to background color" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:475 +#: plug-ins/common/apply_lens.c:475 msgid "Make surroundings transparent" msgstr "" -#: plug-ins/apply_lens/apply_lens.c:490 +#: plug-ins/common/apply_lens.c:490 msgid "Lens refraction index: " msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:82 +#: plug-ins/common/autostretch_hsv.c:82 msgid "" "Automatically stretch the contrast of the specified drawable to cover all " "possible ranges." msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:83 +#: plug-ins/common/autostretch_hsv.c:83 msgid "" "This simple plug-in does an automatic contrast stretch. For each channel in " "the image, it finds the minimum and maximum values... it uses those values " @@ -935,52 +926,52 @@ msgid "" "space, and preserves hue." msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:87 +#: plug-ins/common/autostretch_hsv.c:87 msgid "/Image/Colors/Auto-Stretch HSV" msgstr "" -#: plug-ins/autostretch_hsv/autostretch_hsv.c:119 +#: plug-ins/common/autostretch_hsv.c:119 msgid "Auto-Stretching HSV..." msgstr "" -#: plug-ins/blur/blur.c:194 +#: plug-ins/common/blur.c:194 msgid "Apply a 3x3 blurring convolution kernel to the specified drawable." msgstr "" -#: plug-ins/blur/blur.c:195 +#: plug-ins/common/blur.c:195 msgid "" "This plug-in randomly blurs the specified drawable, using a 3x3 blur. You " "control the percentage of the pixels that are blurred and the number of " "times blurring is applied. Indexed images are not supported." msgstr "" -#: plug-ins/blur/blur.c:208 +#: plug-ins/common/blur.c:208 msgid "/Filters/Blur/Blur" msgstr "" -#: plug-ins/blur/blur.c:620 +#: plug-ins/common/blur.c:620 msgid "Accept settings and apply filter to image" msgstr "" -#: plug-ins/blur/blur.c:622 +#: plug-ins/common/blur.c:622 msgid "Close plug-in without making any changes" msgstr "" #. #. * Randomization seed initialization controls #. -#: plug-ins/blur/blur.c:626 +#: plug-ins/common/blur.c:626 msgid "Randomization Seed:" msgstr "" #. #. * Time button #. -#: plug-ins/blur/blur.c:637 +#: plug-ins/common/blur.c:637 msgid "Current Time" msgstr "" -#: plug-ins/blur/blur.c:638 +#: plug-ins/common/blur.c:638 msgid "" "Seed random number generator from the current time - this guarantees a " "reasonable randomization" @@ -989,39 +980,39 @@ msgstr "" #. #. * User button #. -#: plug-ins/blur/blur.c:648 +#: plug-ins/common/blur.c:648 msgid "Other Value" msgstr "" -#: plug-ins/blur/blur.c:649 +#: plug-ins/common/blur.c:649 msgid "" "Enable user-entered value for random number generator seed - this allows you " "to repeat a given \"random\" operation" msgstr "" -#: plug-ins/blur/blur.c:661 +#: plug-ins/common/blur.c:661 msgid "Value for seeding the random number generator" msgstr "" #. #. * Randomization percentage label & scale (1 to 100) #. -#: plug-ins/blur/blur.c:666 +#: plug-ins/common/blur.c:666 msgid "Randomization %:" msgstr "" -#: plug-ins/blur/blur.c:669 +#: plug-ins/common/blur.c:669 msgid "Percentage of pixels to be filtered" msgstr "" #. #. * Repeat count label & scale (1 to 100) #. -#: plug-ins/blur/blur.c:674 +#: plug-ins/common/blur.c:674 msgid "Repeat:" msgstr "" -#: plug-ins/blur/blur.c:677 +#: plug-ins/common/blur.c:677 msgid "Number of times to apply filter" msgstr "" @@ -1033,9 +1024,10 @@ msgstr "" msgid "Saves files in Windows BMP file format" msgstr "" -#: plug-ins/bmp/bmpread.c:27 plug-ins/gifload/gifload.c:287 -#: plug-ins/jpeg/jpeg.c:494 plug-ins/png/png.c:700 plug-ins/png/png.c:702 -#: plug-ins/xbm/xbm.c:523 plug-ins/xpm/xpm.c:300 +#: plug-ins/bmp/bmpread.c:27 plug-ins/common/gifload.c:287 +#: plug-ins/common/jpeg.c:494 plug-ins/common/png.c:345 +#: plug-ins/common/png.c:347 plug-ins/common/xbm.c:523 +#: plug-ins/common/xpm.c:300 #, c-format msgid "Loading %s:" msgstr "" @@ -1074,9 +1066,10 @@ msgstr "" #. * Create the "background" layer to hold the image... #. #: plug-ins/bmp/bmpread.c:210 plug-ins/bmp/bmpread.c:218 -#: plug-ins/bmp/bmpread.c:224 plug-ins/compose/compose.c:562 -#: plug-ins/decompose/decompose.c:472 plug-ins/gifload/gifload.c:828 -#: plug-ins/jpeg/jpeg.c:611 plug-ins/png/png.c:810 plug-ins/xbm/xbm.c:612 +#: plug-ins/bmp/bmpread.c:224 plug-ins/common/compose.c:562 +#: plug-ins/common/decompose.c:472 plug-ins/common/gifload.c:828 +#: plug-ins/common/jpeg.c:611 plug-ins/common/png.c:455 +#: plug-ins/common/xbm.c:612 msgid "Background" msgstr "" @@ -1089,9 +1082,10 @@ msgstr "" msgid "can't open %s\n" msgstr "" -#: plug-ins/bmp/bmpwrite.c:154 plug-ins/jpeg/jpeg.c:759 plug-ins/png/png.c:950 -#: plug-ins/png/png.c:952 plug-ins/ps/ps.c:680 plug-ins/xbm/xbm.c:777 -#: plug-ins/xpm/xpm.c:611 plug-ins/xwd/xwd.c:503 +#: plug-ins/bmp/bmpwrite.c:154 plug-ins/common/jpeg.c:759 +#: plug-ins/common/png.c:595 plug-ins/common/png.c:597 +#: plug-ins/common/ps.c:673 plug-ins/common/xbm.c:777 +#: plug-ins/common/xpm.c:611 plug-ins/common/xwd.c:507 #, c-format msgid "Saving %s:" msgstr "" @@ -1129,310 +1123,310 @@ msgstr "" msgid "Bucket Size:" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:298 +#: plug-ins/common/bumpmap.c:298 msgid "Linear map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:299 +#: plug-ins/common/bumpmap.c:299 msgid "Spherical map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:300 +#: plug-ins/common/bumpmap.c:300 msgid "Sinusoidal map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:346 +#: plug-ins/common/bumpmap.c:346 msgid "Create an embossing effect using an image as a bump map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:354 +#: plug-ins/common/bumpmap.c:354 msgid "/Filters/Map/Bump Map" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:500 +#: plug-ins/common/bumpmap.c:500 msgid "Bump-mapping..." msgstr "" #. Bump map menu -#: plug-ins/bumpmap/bumpmap.c:830 plug-ins/bumpmap/bumpmap.c:939 +#: plug-ins/common/bumpmap.c:830 plug-ins/common/bumpmap.c:939 msgid "Bump map" msgstr "" #. Compensate darkening -#: plug-ins/bumpmap/bumpmap.c:884 +#: plug-ins/common/bumpmap.c:884 msgid "Compensate for darkening" msgstr "" #. Invert bumpmap -#: plug-ins/bumpmap/bumpmap.c:895 +#: plug-ins/common/bumpmap.c:895 msgid "Invert bumpmap" msgstr "" #. Controls -#: plug-ins/bumpmap/bumpmap.c:958 +#: plug-ins/common/bumpmap.c:958 msgid "Azimuth" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:959 +#: plug-ins/common/bumpmap.c:959 msgid "Elevation" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:960 +#: plug-ins/common/bumpmap.c:960 msgid "Depth" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:961 +#: plug-ins/common/bumpmap.c:961 msgid "X offset" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:962 +#: plug-ins/common/bumpmap.c:962 msgid "Y offset" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:963 +#: plug-ins/common/bumpmap.c:963 msgid "Waterlevel" msgstr "" -#: plug-ins/bumpmap/bumpmap.c:964 +#: plug-ins/common/bumpmap.c:964 msgid "Ambient" msgstr "" -#: plug-ins/bz2/bz2.c:293 plug-ins/bz2/bz2.c:358 +#: plug-ins/common/bz2.c:293 plug-ins/common/bz2.c:358 #, c-format msgid "bz2: fork failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:300 plug-ins/bz2/bz2.c:365 +#: plug-ins/common/bz2.c:300 plug-ins/common/bz2.c:365 #, c-format msgid "bz2: fopen failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:306 plug-ins/bz2/bz2.c:371 +#: plug-ins/common/bz2.c:306 plug-ins/common/bz2.c:371 #, c-format msgid "bz2: dup2 failed: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:310 +#: plug-ins/common/bz2.c:310 #, c-format msgid "bz2: exec failed: bzip2: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:324 plug-ins/bz2/bz2.c:389 +#: plug-ins/common/bz2.c:324 plug-ins/common/bz2.c:389 #, c-format msgid "bz2: bzip2 exited abnormally on file %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:375 +#: plug-ins/common/bz2.c:375 #, c-format msgid "bz2: exec failed: bunzip2: %s\n" msgstr "" -#: plug-ins/bz2/bz2.c:443 +#: plug-ins/common/bz2.c:443 msgid "bz2: can't open bzip2ed file without a sensible extension\n" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:97 +#: plug-ins/common/checkerboard.c:97 msgid "Adds a checkerboard pattern to an image" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:102 +#: plug-ins/common/checkerboard.c:102 msgid "/Filters/Render/Checkerboard" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:164 +#: plug-ins/common/checkerboard.c:164 msgid "Adding Checkerboard..." msgstr "" -#: plug-ins/checkerboard/checkerboard.c:374 +#: plug-ins/common/checkerboard.c:374 msgid "Checkerboard" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:407 +#: plug-ins/common/checkerboard.c:407 msgid "Psychobilly" msgstr "" -#: plug-ins/checkerboard/checkerboard.c:415 +#: plug-ins/common/checkerboard.c:415 msgid "Check Size" msgstr "" -#: plug-ins/colorify/colorify.c:122 +#: plug-ins/common/colorify.c:122 msgid "Similar to the \"Color\" mode for layers." msgstr "" -#: plug-ins/colorify/colorify.c:123 +#: plug-ins/common/colorify.c:123 msgid "Makes an average of the RGB channels and uses it to set the color" msgstr "" -#: plug-ins/colorify/colorify.c:126 +#: plug-ins/common/colorify.c:126 msgid "/Filters/Colors/Colorify" msgstr "" -#: plug-ins/colorify/colorify.c:194 +#: plug-ins/common/colorify.c:194 msgid "Colorifying..." msgstr "" -#: plug-ins/colorify/colorify.c:304 +#: plug-ins/common/colorify.c:308 msgid "Colorify" msgstr "" -#: plug-ins/colorify/colorify.c:310 +#: plug-ins/common/colorify.c:314 msgid "Ok" msgstr "" -#: plug-ins/colorify/colorify.c:327 plug-ins/print/print.c:1023 -#: plug-ins/xpm/xpm.c:406 +#: plug-ins/common/colorify.c:331 plug-ins/common/xpm.c:406 +#: plug-ins/print/print.c:848 msgid "Color" msgstr "" -#: plug-ins/colorify/colorify.c:340 +#: plug-ins/common/colorify.c:344 msgid "Custom Color: " msgstr "" -#: plug-ins/colorify/colorify.c:430 +#: plug-ins/common/colorify.c:434 msgid "Colorify Custom Color" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/decompose/decompose.c:129 +#: plug-ins/common/compose.c:125 plug-ins/common/decompose.c:129 msgid "RGB" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Red:" msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Green: " msgstr "" -#: plug-ins/compose/compose.c:125 plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:125 plug-ins/common/compose.c:127 msgid "Blue:" msgstr "" -#: plug-ins/compose/compose.c:126 +#: plug-ins/common/compose.c:126 msgid "rgb-compose" msgstr "" -#: plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:127 msgid "RGBA" msgstr "" -#: plug-ins/compose/compose.c:127 +#: plug-ins/common/compose.c:127 msgid "Alpha:" msgstr "" -#: plug-ins/compose/compose.c:128 +#: plug-ins/common/compose.c:128 msgid "rgba-compose" msgstr "" -#: plug-ins/compose/compose.c:129 plug-ins/decompose/decompose.c:133 +#: plug-ins/common/compose.c:129 plug-ins/common/decompose.c:133 msgid "HSV" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Hue:" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Saturation:" msgstr "" -#: plug-ins/compose/compose.c:129 +#: plug-ins/common/compose.c:129 msgid "Value:" msgstr "" -#: plug-ins/compose/compose.c:130 +#: plug-ins/common/compose.c:130 msgid "hsv-compose" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/decompose/decompose.c:138 +#: plug-ins/common/compose.c:131 plug-ins/common/decompose.c:138 msgid "CMY" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Cyan:" msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Magenta: " msgstr "" -#: plug-ins/compose/compose.c:131 plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:131 plug-ins/common/compose.c:133 msgid "Yellow:" msgstr "" -#: plug-ins/compose/compose.c:132 +#: plug-ins/common/compose.c:132 msgid "cmy-compose" msgstr "" -#: plug-ins/compose/compose.c:133 plug-ins/decompose/decompose.c:143 +#: plug-ins/common/compose.c:133 plug-ins/common/decompose.c:143 msgid "CMYK" msgstr "" -#: plug-ins/compose/compose.c:133 +#: plug-ins/common/compose.c:133 msgid "Black:" msgstr "" -#: plug-ins/compose/compose.c:134 +#: plug-ins/common/compose.c:134 msgid "cmyk-compose" msgstr "" -#: plug-ins/compose/compose.c:228 +#: plug-ins/common/compose.c:228 msgid "Compose an image from multiple gray images" msgstr "" -#: plug-ins/compose/compose.c:229 +#: plug-ins/common/compose.c:229 msgid "This function creates a new image from multiple gray images" msgstr "" -#: plug-ins/compose/compose.c:234 +#: plug-ins/common/compose.c:234 msgid "/Image/Channel Ops/Compose" msgstr "" -#: plug-ins/compose/compose.c:241 +#: plug-ins/common/compose.c:241 msgid "Compose an image from multiple drawables of gray images" msgstr "" -#: plug-ins/compose/compose.c:242 +#: plug-ins/common/compose.c:242 msgid "" "This function creates a new image from multiple drawables of gray images" msgstr "" -#: plug-ins/compose/compose.c:305 +#: plug-ins/common/compose.c:305 #, c-format msgid "compose: Could not get layers for image %d" msgstr "" -#: plug-ins/compose/compose.c:354 +#: plug-ins/common/compose.c:354 msgid "Composing..." msgstr "" -#: plug-ins/compose/compose.c:421 +#: plug-ins/common/compose.c:421 msgid "compose: drawables have different size" msgstr "" -#: plug-ins/compose/compose.c:438 +#: plug-ins/common/compose.c:438 msgid "compose: images have different size" msgstr "" -#: plug-ins/compose/compose.c:451 +#: plug-ins/common/compose.c:451 msgid "compose: error in getting layer IDs" msgstr "" -#: plug-ins/compose/compose.c:468 +#: plug-ins/common/compose.c:468 #, c-format msgid "compose: image is not a gray image (bpp=%d)" msgstr "" -#: plug-ins/compose/compose.c:483 plug-ins/compose/compose.c:498 +#: plug-ins/common/compose.c:483 plug-ins/common/compose.c:498 msgid "compose: not enough memory" msgstr "" -#: plug-ins/compose/compose.c:809 +#: plug-ins/common/compose.c:809 msgid "Compose" msgstr "" #. The left frame keeps the compose type toggles -#: plug-ins/compose/compose.c:841 +#: plug-ins/common/compose.c:841 msgid "Compose channels:" msgstr "" @@ -1440,324 +1434,324 @@ msgstr "" #. 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/compose/compose.c:855 +#: plug-ins/common/compose.c:855 msgid "Channel representations:" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 +#: plug-ins/common/convmatrix.c:76 msgid "Grey" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:130 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:130 msgid "Red" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:131 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:131 msgid "Green" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:132 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:132 msgid "Blue" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:76 plug-ins/decompose/decompose.c:148 +#: plug-ins/common/convmatrix.c:76 plug-ins/common/decompose.c:148 msgid "Alpha" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:80 +#: plug-ins/common/convmatrix.c:80 msgid "Extend" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:80 +#: plug-ins/common/convmatrix.c:80 msgid "Wrap" msgstr "" #. Action area -#: plug-ins/convmatrix/convmatrix.c:80 plug-ins/gif/gif.c:1163 +#: plug-ins/common/convmatrix.c:80 plug-ins/common/gif.c:1163 msgid "Crop" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:173 +#: plug-ins/common/convmatrix.c:173 msgid "A generic 5x5 convolution matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:178 +#: plug-ins/common/convmatrix.c:178 msgid "/Filters/Generic/Convolution Matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:239 +#: plug-ins/common/convmatrix.c:239 msgid "Applying convolution" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:700 +#: plug-ins/common/convmatrix.c:700 msgid "Convolution Matrix" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:715 +#: plug-ins/common/convmatrix.c:715 msgid "Defaults" msgstr "" #. Outbox:YABox:Frame -#: plug-ins/convmatrix/convmatrix.c:741 +#: plug-ins/common/convmatrix.c:741 msgid "Matrix" msgstr "" #. divisor -#: plug-ins/convmatrix/convmatrix.c:788 +#: plug-ins/common/convmatrix.c:788 msgid "Divisor" msgstr "" #. Offset -#: plug-ins/convmatrix/convmatrix.c:803 plug-ins/depthmerge/depthmerge.c:728 +#: plug-ins/common/convmatrix.c:803 plug-ins/common/depthmerge.c:728 msgid "Offset" msgstr "" -#: plug-ins/convmatrix/convmatrix.c:823 +#: plug-ins/common/convmatrix.c:823 msgid "Automatic" msgstr "" #. Alpha-weighting -#: plug-ins/convmatrix/convmatrix.c:832 +#: plug-ins/common/convmatrix.c:832 msgid "Alpha-weighting" msgstr "" #. Wrap-modes #. OutBox:Inbox:Frame -#: plug-ins/convmatrix/convmatrix.c:847 +#: plug-ins/common/convmatrix.c:847 msgid "Border" msgstr "" #. OutBox:Inbox:Frame -#: plug-ins/convmatrix/convmatrix.c:875 +#: plug-ins/common/convmatrix.c:875 msgid "Channels" msgstr "" -#: plug-ins/cubism/cubism.c:181 +#: plug-ins/common/cubism.c:181 msgid "Convert the input drawable into a collection of rotated squares" msgstr "" -#: plug-ins/cubism/cubism.c:186 +#: plug-ins/common/cubism.c:186 msgid "/Filters/Artistic/Cubism" msgstr "" -#: plug-ins/cubism/cubism.c:298 +#: plug-ins/common/cubism.c:298 msgid "Cubistic Transformation" msgstr "" -#: plug-ins/cubism/cubism.c:331 +#: plug-ins/common/cubism.c:331 msgid "Cubism" msgstr "" -#: plug-ins/cubism/cubism.c:364 +#: plug-ins/common/cubism.c:364 msgid "Use Background Color" msgstr "" -#: plug-ins/cubism/cubism.c:372 +#: plug-ins/common/cubism.c:372 msgid "Tile Size" msgstr "" -#: plug-ins/cubism/cubism.c:388 +#: plug-ins/common/cubism.c:388 msgid "Tile Saturation" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:130 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:130 msgid "red" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:131 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:131 msgid "green" msgstr "" -#: plug-ins/decompose/decompose.c:129 plug-ins/decompose/decompose.c:132 +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:132 msgid "blue" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:135 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:135 msgid "hue" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:136 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:136 msgid "saturation" msgstr "" -#: plug-ins/decompose/decompose.c:133 plug-ins/decompose/decompose.c:137 +#: plug-ins/common/decompose.c:133 plug-ins/common/decompose.c:137 msgid "value" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:140 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:140 msgid "cyan" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:141 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:141 msgid "magenta" msgstr "" -#: plug-ins/decompose/decompose.c:138 plug-ins/decompose/decompose.c:142 +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:142 msgid "yellow" msgstr "" -#: plug-ins/decompose/decompose.c:140 +#: plug-ins/common/decompose.c:140 msgid "Cyan" msgstr "" -#: plug-ins/decompose/decompose.c:141 +#: plug-ins/common/decompose.c:141 msgid "Magenta" msgstr "" -#: plug-ins/decompose/decompose.c:142 +#: plug-ins/common/decompose.c:142 msgid "Yellow" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:145 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:145 msgid "cyan_k" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:146 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:146 msgid "magenta_k" msgstr "" -#: plug-ins/decompose/decompose.c:143 plug-ins/decompose/decompose.c:147 +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:147 msgid "yellow_k" msgstr "" -#: plug-ins/decompose/decompose.c:144 +#: plug-ins/common/decompose.c:144 msgid "black" msgstr "" -#: plug-ins/decompose/decompose.c:145 +#: plug-ins/common/decompose.c:145 msgid "Cyan_K" msgstr "" -#: plug-ins/decompose/decompose.c:146 +#: plug-ins/common/decompose.c:146 msgid "Magenta_K" msgstr "" -#: plug-ins/decompose/decompose.c:147 +#: plug-ins/common/decompose.c:147 msgid "Yellow_K" msgstr "" -#: plug-ins/decompose/decompose.c:148 +#: plug-ins/common/decompose.c:148 msgid "alpha" msgstr "" -#: plug-ins/decompose/decompose.c:216 +#: plug-ins/common/decompose.c:216 msgid "Decompose an image into different types of channels" msgstr "" -#: plug-ins/decompose/decompose.c:217 +#: plug-ins/common/decompose.c:217 msgid "" "This function creates new gray images with different channel information in " "each of them" msgstr "" -#: plug-ins/decompose/decompose.c:222 +#: plug-ins/common/decompose.c:222 msgid "/Image/Channel Ops/Decompose" msgstr "" -#: plug-ins/decompose/decompose.c:303 +#: plug-ins/common/decompose.c:303 msgid "plug_in_decompose: Can only work on RGB*_IMAGE" msgstr "" -#: plug-ins/decompose/decompose.c:309 +#: plug-ins/common/decompose.c:309 msgid "Decomposing..." msgstr "" -#: plug-ins/decompose/decompose.c:374 +#: plug-ins/common/decompose.c:374 msgid "decompose: not an RGB image" msgstr "" -#: plug-ins/decompose/decompose.c:380 +#: plug-ins/common/decompose.c:380 msgid "decompose: No alpha channel available" msgstr "" -#: plug-ins/decompose/decompose.c:409 +#: plug-ins/common/decompose.c:409 msgid "decompose: out of memory" msgstr "" -#: plug-ins/decompose/decompose.c:901 plug-ins/decompose/decompose.c:907 +#: plug-ins/common/decompose.c:901 plug-ins/common/decompose.c:907 msgid "Decompose" msgstr "" #. parameter settings -#: plug-ins/decompose/decompose.c:934 +#: plug-ins/common/decompose.c:934 msgid "Extract channels:" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:194 +#: plug-ins/common/depthmerge.c:194 msgid "Combine two images using corresponding depth maps (z-buffers)" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:195 +#: plug-ins/common/depthmerge.c:195 msgid "" "Taking as input two full-colour, full-alpha images and two corresponding " "grayscale depth maps, this plug-in combines the images based on which is " "closer (has a lower depth map value) at each point." msgstr "" -#: plug-ins/depthmerge/depthmerge.c:202 +#: plug-ins/common/depthmerge.c:202 msgid "/Filters/Combine/Depth Merge" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:369 +#: plug-ins/common/depthmerge.c:369 msgid "Depth-merging..." msgstr "" -#: plug-ins/depthmerge/depthmerge.c:609 +#: plug-ins/common/depthmerge.c:609 msgid "Depth Merge" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:647 +#: plug-ins/common/depthmerge.c:647 msgid "Source 1" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:664 plug-ins/depthmerge/depthmerge.c:698 +#: plug-ins/common/depthmerge.c:664 plug-ins/common/depthmerge.c:698 msgid "Depth Map" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:681 +#: plug-ins/common/depthmerge.c:681 msgid "Source 2" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:723 +#: plug-ins/common/depthmerge.c:723 msgid "Overlap" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:733 +#: plug-ins/common/depthmerge.c:733 msgid "Scale 1" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:738 +#: plug-ins/common/depthmerge.c:738 msgid "Scale 2" msgstr "" -#: plug-ins/depthmerge/depthmerge.c:1181 +#: plug-ins/common/depthmerge.c:1181 msgid "" "Warning: I don't _like_ this color space. This is a suggestion, not a " "threat.\n" msgstr "" -#: plug-ins/destripe/destripe.c:151 +#: plug-ins/common/destripe.c:151 msgid "" "Destripe filter, used to remove vertical stripes caused by cheap scanners." msgstr "" -#: plug-ins/destripe/destripe.c:152 +#: plug-ins/common/destripe.c:152 msgid "This plug-in tries to remove vertical stripes from an image." msgstr "" -#: plug-ins/destripe/destripe.c:155 +#: plug-ins/common/destripe.c:155 msgid "/Filters/Enhance/Destripe" msgstr "" -#: plug-ins/destripe/destripe.c:358 +#: plug-ins/common/destripe.c:358 msgid "Destriping..." msgstr "" -#: plug-ins/destripe/destripe.c:589 +#: plug-ins/common/destripe.c:589 msgid "Destripe" msgstr "" -#: plug-ins/destripe/destripe.c:663 +#: plug-ins/common/destripe.c:663 msgid "Histogram" msgstr "" @@ -1773,36 +1767,36 @@ msgstr "" #. #. * Box size (radius) control... #. -#: plug-ins/destripe/destripe.c:687 +#: plug-ins/common/destripe.c:687 msgid "Width" msgstr "" -#: plug-ins/gif/gif.c:408 +#: plug-ins/common/gif.c:408 msgid "saves files in Compuserve GIF file format" msgstr "" -#: plug-ins/gif/gif.c:682 +#: plug-ins/common/gif.c:682 msgid "GIF: Couldn't simply reduce colours further. Saving as opaque.\n" msgstr "" -#: plug-ins/gif/gif.c:938 +#: plug-ins/common/gif.c:938 msgid "" "GIF: Sorry, can't save RGB images as GIFs - convert to INDEXED\n" "or GRAY first.\n" msgstr "" -#: plug-ins/gif/gif.c:957 +#: plug-ins/common/gif.c:957 #, c-format msgid "GIF: can't open %s\n" msgstr "" -#: plug-ins/gif/gif.c:1064 +#: plug-ins/common/gif.c:1064 msgid "" "Transparent colour *might* be incorrect on viewers which don't support " "transparency." msgstr "" -#: plug-ins/gif/gif.c:1196 +#: plug-ins/common/gif.c:1196 msgid "" "The image which you are trying to save as a GIF\n" "contains layers which extend beyond the actual\n" @@ -1813,339 +1807,339 @@ msgid "" "the image borders, or cancel this save." msgstr "" -#: plug-ins/gif/gif.c:1252 +#: plug-ins/common/gif.c:1252 msgid "Save as GIF" msgstr "" #. regular gif parameter settings -#: plug-ins/gif/gif.c:1286 +#: plug-ins/common/gif.c:1286 msgid "GIF Options" msgstr "" -#: plug-ins/gif/gif.c:1294 plug-ins/png/png.c:1209 +#: plug-ins/common/gif.c:1294 plug-ins/common/png.c:856 msgid "Interlace" msgstr "" -#: plug-ins/gif/gif.c:1306 +#: plug-ins/common/gif.c:1306 msgid "GIF Comment: " msgstr "" -#: plug-ins/gif/gif.c:1339 plug-ins/gif/gif.c:1340 +#: plug-ins/common/gif.c:1339 plug-ins/common/gif.c:1340 msgid "Made with GIMP" msgstr "" #. additional animated gif parameter settings -#: plug-ins/gif/gif.c:1365 +#: plug-ins/common/gif.c:1365 msgid "Animated GIF Options" msgstr "" -#: plug-ins/gif/gif.c:1373 +#: plug-ins/common/gif.c:1373 msgid "Loop forever" msgstr "" -#: plug-ins/gif/gif.c:1386 +#: plug-ins/common/gif.c:1386 msgid "Delay between frames where unspecified: " msgstr "" -#: plug-ins/gif/gif.c:1400 +#: plug-ins/common/gif.c:1400 msgid " milliseconds" msgstr "" -#: plug-ins/gif/gif.c:1411 +#: plug-ins/common/gif.c:1411 msgid "Frame disposal where unspecified: " msgstr "" -#: plug-ins/gif/gif.c:1421 +#: plug-ins/common/gif.c:1421 msgid "I don't care" msgstr "" -#: plug-ins/gif/gif.c:1427 +#: plug-ins/common/gif.c:1427 msgid "Cumulative layers (combine)" msgstr "" -#: plug-ins/gif/gif.c:1433 +#: plug-ins/common/gif.c:1433 msgid "One frame per layer (replace)" msgstr "" -#: plug-ins/gif/gif.c:1491 +#: plug-ins/common/gif.c:1491 #, c-format msgid "GIF: colorstobpp - Eep! too many colours: %d\n" msgstr "" -#: plug-ins/gif/gif.c:1507 +#: plug-ins/common/gif.c:1507 #, c-format msgid "GIF: bpptocolors - Eep! bpp==%d !\n" msgstr "" -#: plug-ins/gifload/gifload.c:134 +#: plug-ins/common/gifload.c:134 msgid "loads files of Compuserve GIF file format" msgstr "" -#: plug-ins/gifload/gifload.c:279 +#: plug-ins/common/gifload.c:279 #, c-format msgid "GIF: can't open \"%s\"\n" msgstr "" -#: plug-ins/gifload/gifload.c:294 +#: plug-ins/common/gifload.c:294 msgid "GIF: error reading magic number\n" msgstr "" -#: plug-ins/gifload/gifload.c:300 +#: plug-ins/common/gifload.c:300 msgid "GIF: not a GIF file\n" msgstr "" -#: plug-ins/gifload/gifload.c:309 +#: plug-ins/common/gifload.c:309 msgid "GIF: bad version number, not '87a' or '89a'\n" msgstr "" -#: plug-ins/gifload/gifload.c:315 +#: plug-ins/common/gifload.c:315 msgid "GIF: failed to read screen descriptor\n" msgstr "" -#: plug-ins/gifload/gifload.c:331 +#: plug-ins/common/gifload.c:331 msgid "GIF: error reading global colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:338 +#: plug-ins/common/gifload.c:338 msgid "GIF: warning - non-square pixels\n" msgstr "" -#: plug-ins/gifload/gifload.c:349 plug-ins/gifload/gifload.c:803 +#: plug-ins/common/gifload.c:349 plug-ins/common/gifload.c:803 msgid "GIF: EOF / read error on image data\n" msgstr "" -#: plug-ins/gifload/gifload.c:364 +#: plug-ins/common/gifload.c:364 msgid "GIF: OF / read error on extension function code\n" msgstr "" #. Not a valid start character -#: plug-ins/gifload/gifload.c:374 +#: plug-ins/common/gifload.c:374 #, c-format msgid "GIF: bogus character 0x%02x, ignoring\n" msgstr "" -#: plug-ins/gifload/gifload.c:382 +#: plug-ins/common/gifload.c:382 msgid "GIF: couldn't read left/top/width/height\n" msgstr "" -#: plug-ins/gifload/gifload.c:394 +#: plug-ins/common/gifload.c:394 msgid "GIF: error reading local colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:452 +#: plug-ins/common/gifload.c:452 msgid "GIF: bad colormap\n" msgstr "" -#: plug-ins/gifload/gifload.c:568 +#: plug-ins/common/gifload.c:568 msgid "GIF: error in getting DataBlock size\n" msgstr "" -#: plug-ins/gifload/gifload.c:576 +#: plug-ins/common/gifload.c:576 msgid "GIF: error in reading DataBlock\n" msgstr "" -#: plug-ins/gifload/gifload.c:607 +#: plug-ins/common/gifload.c:607 msgid "GIF: ran off the end of by bits\n" msgstr "" -#: plug-ins/gifload/gifload.c:718 +#: plug-ins/common/gifload.c:718 msgid "GIF: missing EOD in data stream (common occurence)" msgstr "" -#: plug-ins/gifload/gifload.c:735 +#: plug-ins/common/gifload.c:735 msgid "GIF: circular table entry BIG ERROR\n" msgstr "" -#: plug-ins/gifload/gifload.c:809 +#: plug-ins/common/gifload.c:809 msgid "GIF: error while reading\n" msgstr "" -#: plug-ins/gifload/gifload.c:830 +#: plug-ins/common/gifload.c:830 #, c-format msgid "Background (%dms)" msgstr "" -#: plug-ins/gifload/gifload.c:877 +#: plug-ins/common/gifload.c:877 #, c-format msgid "Frame %d" msgstr "" -#: plug-ins/gifload/gifload.c:879 +#: plug-ins/common/gifload.c:879 #, c-format msgid "Frame %d (%dms)" msgstr "" #. 'don't care' -#: plug-ins/gifload/gifload.c:885 plug-ins/gifload/gifload.c:887 +#: plug-ins/common/gifload.c:885 plug-ins/common/gifload.c:887 msgid " (combine)" msgstr "" -#: plug-ins/gifload/gifload.c:886 +#: plug-ins/common/gifload.c:886 msgid " (replace)" msgstr "" -#: plug-ins/gifload/gifload.c:892 +#: plug-ins/common/gifload.c:892 msgid " (unknown disposal)" msgstr "" -#: plug-ins/gifload/gifload.c:893 +#: plug-ins/common/gifload.c:893 msgid "" "GIF: Hmm... please forward this GIF to the GIF plugin author!\n" " (adam@foxbox.org)\n" msgstr "" -#: plug-ins/gifload/gifload.c:896 +#: plug-ins/common/gifload.c:896 msgid "GIF: Something got corrupted.\n" msgstr "" -#: plug-ins/gifload/gifload.c:925 +#: plug-ins/common/gifload.c:925 #, c-format msgid "GIF: reading %d by %d%s GIF image, ncols=%d\n" msgstr "" -#: plug-ins/gifload/gifload.c:926 +#: plug-ins/common/gifload.c:926 msgid " interlaced" msgstr "" -#: plug-ins/gifload/gifload.c:930 +#: plug-ins/common/gifload.c:930 msgid "" "GIF: Ouchie! Can't handle non-alpha RGB frames.\n" " Please mail the plugin author. (adam@gimp.org)\n" msgstr "" -#: plug-ins/gifload/gifload.c:1022 +#: plug-ins/common/gifload.c:1022 msgid "GIF: too much input data, ignoring extra...\n" msgstr "" -#: plug-ins/jpeg/jpeg.c:176 +#: plug-ins/common/jpeg.c:176 msgid "loads files of the jpeg file format" msgstr "" -#: plug-ins/jpeg/jpeg.c:487 +#: plug-ins/common/jpeg.c:487 #, c-format msgid "can't open \"%s\"\n" msgstr "" -#: plug-ins/jpeg/jpeg.c:603 +#: plug-ins/common/jpeg.c:603 #, c-format msgid "" "don't know how to load JPEGs\n" "with %d color channels" msgstr "" -#: plug-ins/jpeg/jpeg.c:648 +#: plug-ins/common/jpeg.c:648 #, c-format msgid "" "unknown density unit %d\n" "assuming dots per inch" msgstr "" -#: plug-ins/jpeg/jpeg.c:993 +#: plug-ins/common/jpeg.c:993 msgid "Save as Jpeg" msgstr "" -#: plug-ins/jpeg/jpeg.c:1026 +#: plug-ins/common/jpeg.c:1026 msgid "Quality" msgstr "" -#: plug-ins/jpeg/jpeg.c:1042 +#: plug-ins/common/jpeg.c:1042 msgid "Smoothing" msgstr "" -#: plug-ins/jpeg/jpeg.c:1058 +#: plug-ins/common/jpeg.c:1058 msgid "Optimize" msgstr "" -#: plug-ins/jpeg/jpeg.c:1066 +#: plug-ins/common/jpeg.c:1066 msgid "Progressive" msgstr "" -#: plug-ins/jpeg/jpeg.c:1079 +#: plug-ins/common/jpeg.c:1079 msgid "Image Comments" msgstr "" -#: plug-ins/mail/mail.c:212 +#: plug-ins/common/mail.c:212 msgid "pipe files to uuencode then mail them" msgstr "" -#: plug-ins/mail/mail.c:213 +#: plug-ins/common/mail.c:213 msgid "You need to have uuencode and mail installed" msgstr "" -#: plug-ins/mail/mail.c:217 +#: plug-ins/common/mail.c:217 msgid "/File/Mail image" msgstr "" -#: plug-ins/mail/mail.c:486 +#: plug-ins/common/mail.c:486 msgid "Send to mail" msgstr "" #. filename label -#: plug-ins/mail/mail.c:620 +#: plug-ins/common/mail.c:620 msgid "Filename:" msgstr "" #. Encapsulation label -#: plug-ins/mail/mail.c:674 +#: plug-ins/common/mail.c:674 msgid "Encapsulation:" msgstr "" #. Encapsulation radiobutton -#: plug-ins/mail/mail.c:683 +#: plug-ins/common/mail.c:683 msgid "Uuencode" msgstr "" -#: plug-ins/mail/mail.c:685 +#: plug-ins/common/mail.c:685 msgid "MIME" msgstr "" -#: plug-ins/mail/mail.c:799 +#: plug-ins/common/mail.c:799 msgid "mail: some sort of error with the file extension or lack thereof \n" msgstr "" -#: plug-ins/oilify/oilify.c:122 +#: plug-ins/common/oilify.c:122 msgid "Modify the specified drawable to resemble an oil painting" msgstr "" -#: plug-ins/oilify/oilify.c:123 +#: plug-ins/common/oilify.c:123 msgid "" "This function performs the well-known oil-paint effect on the specified " "drawable. The size of the input mask is specified by 'mask_size'." msgstr "" -#: plug-ins/oilify/oilify.c:127 +#: plug-ins/common/oilify.c:127 msgid "/Filters/Artistic/Oilify" msgstr "" -#: plug-ins/oilify/oilify.c:198 +#: plug-ins/common/oilify.c:198 msgid "Oil Painting..." msgstr "" -#: plug-ins/oilify/oilify.c:453 +#: plug-ins/common/oilify.c:453 msgid "Oilify" msgstr "" -#: plug-ins/oilify/oilify.c:486 +#: plug-ins/common/oilify.c:486 msgid "Use intensity algorithm" msgstr "" -#: plug-ins/oilify/oilify.c:494 +#: plug-ins/common/oilify.c:494 msgid "Mask Size" msgstr "" -#: plug-ins/png/png.c:504 +#: plug-ins/common/png.c:149 msgid "Loads files in PNG file format" msgstr "" -#: plug-ins/png/png.c:505 +#: plug-ins/common/png.c:150 msgid "This plug-in loads Portable Network Graphics (PNG) files." msgstr "" -#: plug-ins/png/png.c:1171 +#: plug-ins/common/png.c:818 msgid "PNG Options" msgstr "" -#: plug-ins/png/png.c:1216 +#: plug-ins/common/png.c:863 msgid "Compression level" msgstr "" @@ -2243,135 +2237,135 @@ msgstr "" msgid "600 DPI" msgstr "" -#: plug-ins/print/print.c:406 +#: plug-ins/print/print.c:229 msgid "PostScript Level 1" msgstr "" -#: plug-ins/print/print.c:408 +#: plug-ins/print/print.c:231 msgid "PostScript Level 2" msgstr "" -#: plug-ins/print/print.c:410 +#: plug-ins/print/print.c:233 msgid "HP DeskJet 500, 520" msgstr "" -#: plug-ins/print/print.c:412 +#: plug-ins/print/print.c:235 msgid "HP DeskJet 500C, 540C" msgstr "" -#: plug-ins/print/print.c:414 +#: plug-ins/print/print.c:237 msgid "HP DeskJet 550C, 560C" msgstr "" -#: plug-ins/print/print.c:416 +#: plug-ins/print/print.c:239 msgid "HP DeskJet 600 series" msgstr "" -#: plug-ins/print/print.c:418 +#: plug-ins/print/print.c:241 msgid "HP DeskJet 800 series" msgstr "" -#: plug-ins/print/print.c:420 +#: plug-ins/print/print.c:243 msgid "HP DeskJet 1100C, 1120C" msgstr "" -#: plug-ins/print/print.c:422 +#: plug-ins/print/print.c:245 msgid "HP DeskJet 1200C, 1600C" msgstr "" -#: plug-ins/print/print.c:424 +#: plug-ins/print/print.c:247 msgid "HP LaserJet II series" msgstr "" -#: plug-ins/print/print.c:426 +#: plug-ins/print/print.c:249 msgid "HP LaserJet III series" msgstr "" -#: plug-ins/print/print.c:428 +#: plug-ins/print/print.c:251 msgid "HP LaserJet 4 series" msgstr "" -#: plug-ins/print/print.c:430 +#: plug-ins/print/print.c:253 msgid "HP LaserJet 4V, 4Si" msgstr "" -#: plug-ins/print/print.c:432 +#: plug-ins/print/print.c:255 msgid "HP LaserJet 5 series" msgstr "" -#: plug-ins/print/print.c:434 +#: plug-ins/print/print.c:257 msgid "HP LaserJet 5Si" msgstr "" -#: plug-ins/print/print.c:436 +#: plug-ins/print/print.c:259 msgid "HP LaserJet 6 series" msgstr "" -#: plug-ins/print/print.c:438 +#: plug-ins/print/print.c:261 msgid "EPSON Stylus Color" msgstr "" -#: plug-ins/print/print.c:440 +#: plug-ins/print/print.c:263 msgid "EPSON Stylus Color Pro" msgstr "" -#: plug-ins/print/print.c:442 +#: plug-ins/print/print.c:265 msgid "EPSON Stylus Color Pro XL" msgstr "" -#: plug-ins/print/print.c:444 +#: plug-ins/print/print.c:267 msgid "EPSON Stylus Color 1500" msgstr "" -#: plug-ins/print/print.c:446 +#: plug-ins/print/print.c:269 msgid "EPSON Stylus Color 400" msgstr "" -#: plug-ins/print/print.c:448 +#: plug-ins/print/print.c:271 msgid "EPSON Stylus Color 500" msgstr "" -#: plug-ins/print/print.c:450 +#: plug-ins/print/print.c:273 msgid "EPSON Stylus Color 600" msgstr "" -#: plug-ins/print/print.c:452 +#: plug-ins/print/print.c:275 msgid "EPSON Stylus Color 800" msgstr "" -#: plug-ins/print/print.c:454 +#: plug-ins/print/print.c:277 msgid "EPSON Stylus Color 1520" msgstr "" -#: plug-ins/print/print.c:456 +#: plug-ins/print/print.c:279 msgid "EPSON Stylus Color 3000" msgstr "" -#: plug-ins/print/print.c:509 +#: plug-ins/print/print.c:332 msgid "This plug-in prints images from The GIMP." msgstr "" -#: plug-ins/print/print.c:510 +#: plug-ins/print/print.c:333 msgid "Prints images to PostScript, PCL, or ESC/P2 printers." msgstr "" -#: plug-ins/print/print.c:514 +#: plug-ins/print/print.c:337 msgid "/File/Print" msgstr "" -#: plug-ins/print/print.c:827 +#: plug-ins/print/print.c:650 msgid "Auto" msgstr "" -#: plug-ins/print/print.c:828 +#: plug-ins/print/print.c:651 msgid "Portrait" msgstr "" -#: plug-ins/print/print.c:829 +#: plug-ins/print/print.c:652 msgid "Landscape" msgstr "" -#: plug-ins/print/print.c:860 +#: plug-ins/print/print.c:685 #, c-format msgid "Print v%s" msgstr "" @@ -2379,354 +2373,351 @@ msgstr "" #. #. * Media size option menu... #. -#: plug-ins/print/print.c:910 +#: plug-ins/print/print.c:735 msgid "Media Size:" msgstr "" #. #. * Media type option menu... #. -#: plug-ins/print/print.c:926 +#: plug-ins/print/print.c:751 msgid "Media Type:" msgstr "" #. #. * Media source option menu... #. -#: plug-ins/print/print.c:942 +#: plug-ins/print/print.c:767 msgid "Media Source:" msgstr "" #. #. * Orientation option menu... #. -#: plug-ins/print/print.c:958 +#: plug-ins/print/print.c:783 msgid "Orientation:" msgstr "" #. #. * Resolution option menu... #. -#: plug-ins/print/print.c:988 plug-ins/ps/ps.c:1974 +#: plug-ins/common/ps.c:1999 plug-ins/print/print.c:813 msgid "Resolution:" msgstr "" #. #. * Output type toggles... #. -#: plug-ins/print/print.c:1004 +#: plug-ins/print/print.c:829 msgid "Output Type:" msgstr "" -#: plug-ins/print/print.c:1013 +#: plug-ins/print/print.c:838 msgid "B&W" msgstr "" #. #. * Scaling... #. -#: plug-ins/print/print.c:1036 +#: plug-ins/print/print.c:861 msgid "Scaling:" msgstr "" -#: plug-ins/print/print.c:1071 +#: plug-ins/print/print.c:896 msgid "Percent" msgstr "" -#: plug-ins/print/print.c:1080 +#: plug-ins/print/print.c:905 msgid "PPI" msgstr "" #. #. * Brightness slider... #. -#: plug-ins/print/print.c:1092 +#: plug-ins/print/print.c:917 msgid "Brightness:" msgstr "" #. #. * Printer option menu... #. -#: plug-ins/print/print.c:1127 +#: plug-ins/print/print.c:952 msgid "Printer:" msgstr "" -#: plug-ins/print/print.c:1153 plug-ins/print/print.c:1186 +#: plug-ins/print/print.c:978 plug-ins/print/print.c:1011 msgid "Setup" msgstr "" -#: plug-ins/print/print.c:1173 +#: plug-ins/print/print.c:998 msgid "Print" msgstr "" #. #. * Printer driver option menu... #. -#: plug-ins/print/print.c:1208 +#: plug-ins/print/print.c:1033 msgid "Driver:" msgstr "" #. #. * PPD file... #. -#: plug-ins/print/print.c:1233 +#: plug-ins/print/print.c:1058 msgid "PPD File:" msgstr "" -#: plug-ins/print/print.c:1246 +#: plug-ins/print/print.c:1071 msgid "Browse" msgstr "" #. #. * Print command... #. -#: plug-ins/print/print.c:1256 +#: plug-ins/print/print.c:1081 msgid "Command:" msgstr "" #. #. * Output file selection dialog... #. -#: plug-ins/print/print.c:1291 +#: plug-ins/print/print.c:1116 msgid "Print To File?" msgstr "" #. #. * PPD file selection dialog... #. -#: plug-ins/print/print.c:1301 +#: plug-ins/print/print.c:1126 msgid "PPD File?" msgstr "" -#: plug-ins/print/print.c:2287 +#: plug-ins/print/print.c:2112 msgid "File" msgstr "" -#: plug-ins/ps/ps.c:319 plug-ins/ps/ps.c:320 +#: plug-ins/common/ps.c:320 plug-ins/common/ps.c:321 msgid "load file of PostScript/PDF file format" msgstr "" -#: plug-ins/ps/ps.c:343 +#: plug-ins/common/ps.c:344 msgid "save file in PostScript file format" msgstr "" -#: plug-ins/ps/ps.c:344 +#: plug-ins/common/ps.c:345 msgid "" "PostScript saving handles all image types except those with alpha channels." msgstr "" -#: plug-ins/ps/ps.c:549 +#: plug-ins/common/ps.c:550 msgid "PS: can't open file for reading" msgstr "" -#: plug-ins/ps/ps.c:556 +#: plug-ins/common/ps.c:557 #, c-format msgid "Interpreting and Loading %s:" msgstr "" -#: plug-ins/ps/ps.c:566 +#: plug-ins/common/ps.c:565 msgid "PS: can't interprete file" msgstr "" -#: plug-ins/ps/ps.c:573 -msgid "PS: out of memory" -msgstr "" - -#: plug-ins/ps/ps.c:653 +#: plug-ins/common/ps.c:647 msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: plug-ins/ps/ps.c:664 +#: plug-ins/common/ps.c:658 msgid "PS: cannot operate on unknown image types" msgstr "" -#: plug-ins/ps/ps.c:673 +#: plug-ins/common/ps.c:667 msgid "PS: can't open file for writing" msgstr "" -#: plug-ins/ps/ps.c:1947 +#: plug-ins/common/ps.c:1713 plug-ins/common/ps.c:1810 +#: plug-ins/common/ps.c:1903 plug-ins/common/ps.c:1972 msgid "write error occured" msgstr "" -#: plug-ins/ps/ps.c:1974 plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:1999 plug-ins/common/ps.c:2264 msgid "Width:" msgstr "" -#: plug-ins/ps/ps.c:1974 plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:1999 plug-ins/common/ps.c:2264 msgid "Height:" msgstr "" -#: plug-ins/ps/ps.c:1974 +#: plug-ins/common/ps.c:1999 msgid "Pages:" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "b/w" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "gray" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "colour" msgstr "" -#: plug-ins/ps/ps.c:1976 +#: plug-ins/common/ps.c:2001 msgid "automatic" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "none" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "weak" msgstr "" -#: plug-ins/ps/ps.c:1978 +#: plug-ins/common/ps.c:2003 msgid "strong" msgstr "" -#: plug-ins/ps/ps.c:1991 +#: plug-ins/common/ps.c:2016 msgid "Load PostScript" msgstr "" #. Rendering -#: plug-ins/ps/ps.c:2024 +#: plug-ins/common/ps.c:2049 msgid "Rendering" msgstr "" -#: plug-ins/ps/ps.c:2064 +#: plug-ins/common/ps.c:2089 msgid "try BoundingBox" msgstr "" #. Colouring -#: plug-ins/ps/ps.c:2077 +#: plug-ins/common/ps.c:2102 msgid "Colouring" msgstr "" -#: plug-ins/ps/ps.c:2113 +#: plug-ins/common/ps.c:2138 msgid "Graphic antialiasing" msgstr "" -#: plug-ins/ps/ps.c:2114 +#: plug-ins/common/ps.c:2139 msgid "Text antialiasing" msgstr "" -#: plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:2264 msgid "X-offset:" msgstr "" -#: plug-ins/ps/ps.c:2239 +#: plug-ins/common/ps.c:2264 msgid "Y-offset:" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "0" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "90" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "180" msgstr "" -#: plug-ins/ps/ps.c:2241 +#: plug-ins/common/ps.c:2266 msgid "270" msgstr "" -#: plug-ins/ps/ps.c:2243 +#: plug-ins/common/ps.c:2268 msgid "Inch" msgstr "" -#: plug-ins/ps/ps.c:2243 +#: plug-ins/common/ps.c:2268 msgid "Millimeter" msgstr "" -#: plug-ins/ps/ps.c:2258 +#: plug-ins/common/ps.c:2283 msgid "Save PostScript" msgstr "" #. Image Size -#: plug-ins/ps/ps.c:2299 +#: plug-ins/common/ps.c:2324 msgid "Image Size" msgstr "" -#: plug-ins/ps/ps.c:2338 +#: plug-ins/common/ps.c:2363 msgid "keep aspect ratio" msgstr "" #. Unit -#: plug-ins/ps/ps.c:2348 +#: plug-ins/common/ps.c:2373 msgid "Unit" msgstr "" #. Rotation -#: plug-ins/ps/ps.c:2379 +#: plug-ins/common/ps.c:2404 msgid "Rotation" msgstr "" #. Format -#: plug-ins/ps/ps.c:2406 +#: plug-ins/common/ps.c:2431 msgid "Output" msgstr "" -#: plug-ins/ps/ps.c:2414 +#: plug-ins/common/ps.c:2439 msgid "Encapsulated PostScript" msgstr "" -#: plug-ins/ps/ps.c:2440 +#: plug-ins/common/ps.c:2465 msgid "Preview size" msgstr "" -#: plug-ins/xbm/xbm.c:163 +#: plug-ins/common/xbm.c:163 msgid "Load a file in X10 or X11 bitmap (XBM) file format" msgstr "" -#: plug-ins/xbm/xbm.c:164 +#: plug-ins/common/xbm.c:164 msgid "" "Load a file in X10 or X11 bitmap (XBM) file format. XBM is a lossless " "format for flat black-and-white (two color indexed) images." msgstr "" -#: plug-ins/xbm/xbm.c:230 +#: plug-ins/common/xbm.c:230 msgid "Made with Gimp" msgstr "" -#: plug-ins/xbm/xbm.c:518 +#: plug-ins/common/xbm.c:518 #, c-format msgid "XBM: cannot open \"%s\"\n" msgstr "" -#: plug-ins/xbm/xbm.c:583 +#: plug-ins/common/xbm.c:583 #, c-format msgid "XBM: cannot read header (ftell == %ld)\n" msgstr "" -#: plug-ins/xbm/xbm.c:589 +#: plug-ins/common/xbm.c:589 msgid "XBM: no image width specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:595 +#: plug-ins/common/xbm.c:595 msgid "XBM: no image height specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:601 +#: plug-ins/common/xbm.c:601 msgid "XBM: no image data type specified\n" msgstr "" -#: plug-ins/xbm/xbm.c:692 +#: plug-ins/common/xbm.c:692 msgid "XBM: can only save two color indexed images\n" msgstr "" -#: plug-ins/xbm/xbm.c:697 +#: plug-ins/common/xbm.c:697 msgid "XBM Warning" msgstr "" -#: plug-ins/xbm/xbm.c:727 +#: plug-ins/common/xbm.c:727 msgid "" "The image which you are trying to save as\n" "an XBM contains more than two colors.\n" @@ -2735,82 +2726,82 @@ msgid "" "(1-bit) indexed image and try again." msgstr "" -#: plug-ins/xbm/xbm.c:799 +#: plug-ins/common/xbm.c:799 #, c-format msgid "XBM: cannot create \"%s\"\n" msgstr "" -#: plug-ins/xbm/xbm.c:949 +#: plug-ins/common/xbm.c:949 msgid "Save as XBM" msgstr "" #. parameter settings -#: plug-ins/xbm/xbm.c:980 +#: plug-ins/common/xbm.c:980 msgid "XBM Options" msgstr "" -#: plug-ins/xbm/xbm.c:995 +#: plug-ins/common/xbm.c:995 msgid "Description: " msgstr "" #. X10 format -#: plug-ins/xbm/xbm.c:1011 +#: plug-ins/common/xbm.c:1011 msgid "X10 format bitmap" msgstr "" -#: plug-ins/xbm/xbm.c:1024 +#: plug-ins/common/xbm.c:1024 msgid "Identifier prefix: " msgstr "" -#: plug-ins/xpm/xpm.c:170 +#: plug-ins/common/xpm.c:170 msgid "loads files of the xpm file format" msgstr "" -#: plug-ins/xpm/xpm.c:182 +#: plug-ins/common/xpm.c:182 msgid "saves files in the xpm file format (if you're on a 16 bit display...)" msgstr "" -#: plug-ins/xpm/xpm.c:756 +#: plug-ins/common/xpm.c:756 msgid "Save as Xpm" msgstr "" -#: plug-ins/xpm/xpm.c:790 +#: plug-ins/common/xpm.c:790 msgid "Alpha Threshold" msgstr "" -#: plug-ins/xwd/xwd.c:222 plug-ins/xwd/xwd.c:223 +#: plug-ins/common/xwd.c:226 plug-ins/common/xwd.c:227 msgid "load file of the XWD file format" msgstr "" -#: plug-ins/xwd/xwd.c:234 +#: plug-ins/common/xwd.c:238 msgid "saves files in the XWD file format" msgstr "" -#: plug-ins/xwd/xwd.c:235 +#: plug-ins/common/xwd.c:239 msgid "XWD saving handles all image types except those with alpha channels." msgstr "" -#: plug-ins/xwd/xwd.c:331 +#: plug-ins/common/xwd.c:335 msgid "can't open file for reading" msgstr "" -#: plug-ins/xwd/xwd.c:347 +#: plug-ins/common/xwd.c:351 msgid "can't open file as XWD file" msgstr "" -#: plug-ins/xwd/xwd.c:362 +#: plug-ins/common/xwd.c:366 msgid "can't get memory for colormap" msgstr "" -#: plug-ins/xwd/xwd.c:380 +#: plug-ins/common/xwd.c:384 msgid "can't read color entries" msgstr "" -#: plug-ins/xwd/xwd.c:444 +#: plug-ins/common/xwd.c:448 msgid "this image depth/format is not supported" msgstr "" -#: plug-ins/xwd/xwd.c:448 +#: plug-ins/common/xwd.c:452 #, c-format msgid "" "load_image (xwd): XWD-file %s has format %d, depth %d\n" @@ -2818,35 +2809,35 @@ msgid "" "Currently this is not supported.\n" msgstr "" -#: plug-ins/xwd/xwd.c:476 +#: plug-ins/common/xwd.c:480 msgid "XWD save cannot handle images with alpha channels" msgstr "" -#: plug-ins/xwd/xwd.c:487 +#: plug-ins/common/xwd.c:491 msgid "cannot operate on unknown image types" msgstr "" -#: plug-ins/xwd/xwd.c:496 +#: plug-ins/common/xwd.c:500 msgid "can't open file for writing" msgstr "" -#: plug-ins/xwd/xwd.c:1148 +#: plug-ins/common/xwd.c:1152 msgid "EOF encountered on " msgstr "" -#: plug-ins/xwd/xwd.c:1246 plug-ins/xwd/xwd.c:1408 plug-ins/xwd/xwd.c:1605 -#: plug-ins/xwd/xwd.c:1854 +#: plug-ins/common/xwd.c:1250 plug-ins/common/xwd.c:1412 +#: plug-ins/common/xwd.c:1609 plug-ins/common/xwd.c:1858 msgid "EOF encountered on reading" msgstr "" -#: plug-ins/xwd/xwd.c:1294 +#: plug-ins/common/xwd.c:1298 msgid "No memory for mapping colors" msgstr "" -#: plug-ins/xwd/xwd.c:1978 +#: plug-ins/common/xwd.c:1982 msgid "Error during writing indexed/grey image" msgstr "" -#: plug-ins/xwd/xwd.c:2067 +#: plug-ins/common/xwd.c:2071 msgid "Error during writing rgb image" msgstr "" diff --git a/po/de.po b/po/de.po index 9464812cd9..c31d4afd02 100644 --- a/po/de.po +++ b/po/de.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 1999-06-05 15:50-0700\n" +"POT-Creation-Date: 1999-07-17 11:23-0700\n" "PO-Revision-Date: 1998-12-19 21:24:18+0200\n" "Last-Translator: Daniel Egger \n" "Language-Team: German \n" @@ -13,27 +13,27 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: app/about_dialog.c:153 +#: app/about_dialog.c:156 msgid "About the GIMP" msgstr "эber GIMP" -#: app/about_dialog.c:196 +#: app/about_dialog.c:199 msgid "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-*-*" msgstr "" -#: app/about_dialog.c:199 +#: app/about_dialog.c:202 msgid "Version " msgstr "Version" -#: app/about_dialog.c:200 +#: app/about_dialog.c:203 msgid " brought to you by" msgstr " wurde euch gebracht von" -#: app/about_dialog.c:206 +#: app/about_dialog.c:209 msgid "Spencer Kimball & Peter Mattis" msgstr "" -#: app/about_dialog.c:239 +#: app/about_dialog.c:242 msgid "Please visit http://www.gimp.org/ for more info" msgstr "Siehe http://www.gimp.org/ fЭr mehr Informationen" @@ -52,361 +52,365 @@ msgstr "Druck: " msgid "killing stray timer, please report to lewing@gimp.org" msgstr "entferne Eimertimer, bitte melden an lewing@gimp.org" -#: app/app_procs.c:355 +#: app/app_procs.c:358 msgid "GIMP Startup" msgstr "GIMP Start" -#: app/app_procs.c:468 app/gimprc.c:389 +#: app/app_procs.c:471 app/gimprc.c:394 #, c-format msgid "parsing \"%s\"\n" msgstr "bearbeite \"%s\"\n" #. initialize the xcf file format routines -#: app/app_procs.c:524 +#: app/app_procs.c:526 msgid "Looking for data files" msgstr "Suche nach Arbeitsdaten" -#: app/app_procs.c:524 +#: app/app_procs.c:526 #, fuzzy msgid "Parasites" msgstr "EinfЭgen" #. initialize the global parasite table -#: app/app_procs.c:526 app/internal_procs.c:70 app/preferences_dialog.c:2320 +#: app/app_procs.c:528 app/internal_procs.c:70 app/preferences_dialog.c:2395 msgid "Brushes" msgstr "Pinsel" #. initialize the list of gimp brushes -#: app/app_procs.c:528 app/internal_procs.c:139 app/preferences_dialog.c:2322 +#: app/app_procs.c:530 app/internal_procs.c:139 app/preferences_dialog.c:2397 msgid "Patterns" msgstr "Muster" #. initialize the list of gimp patterns -#: app/app_procs.c:530 app/preferences_dialog.c:2324 +#: app/app_procs.c:532 app/preferences_dialog.c:2399 msgid "Palettes" msgstr "Farbpaletten" #. initialize the list of gimp palettes -#: app/app_procs.c:532 app/gradient_select.c:557 app/internal_procs.c:109 -#: app/preferences_dialog.c:2326 +#: app/app_procs.c:534 app/gradient_select.c:557 app/internal_procs.c:109 +#: app/preferences_dialog.c:2401 msgid "Gradients" msgstr "FarbverlДufe" -#: app/app_procs.c:696 app/app_procs.c:717 -msgid "/File/Quit" -msgstr "/Datei/Beenden" +#: app/app_procs.c:702 app/app_procs.c:703 app/app_procs.c:728 +#: app/app_procs.c:729 app/menus.c:83 app/menus.c:98 +#, fuzzy +msgid "/File/Quit" +msgstr "/Datei/Beenden" -#: app/app_procs.c:697 app/app_procs.c:718 -msgid "/File/Quit" -msgstr "/Datei/Beenden" - -#: app/app_procs.c:722 +#: app/app_procs.c:733 msgid "Really Quit?" msgstr "Wirklich Beenden?" -#: app/app_procs.c:730 app/fileops.c:1420 +#: app/app_procs.c:741 app/fileops.c:1576 msgid "Yes" msgstr "Ja" -#: app/app_procs.c:739 app/fileops.c:1421 +#: app/app_procs.c:750 app/fileops.c:1577 msgid "No" msgstr "Nein" -#: app/app_procs.c:747 -msgid "Some files unsaved. Quit the GIMP?" +#: app/app_procs.c:776 +#, fuzzy +msgid "" +"Some files unsaved.\n" +"\n" +"Quit the GIMP?" msgstr "Einige Dateien wurden nicht gesichert. Wirklich beenden?" -#: app/batch.c:69 +#: app/batch.c:65 msgid "script-fu not available: batch mode disabled\n" msgstr "script-fu nicht verfЭgbar: Stapelmodus ausgeschaltet\n" -#: app/batch.c:78 +#: app/batch.c:74 msgid "reading batch commands from stdin\n" msgstr "lese Stapelkommandos aus Standardeingabe\n" -#: app/batch.c:118 +#: app/batch.c:114 msgid "batch command: experienced an execution error.\n" msgstr "Stapelkommando: Ein AusfЭhrungsfehler ist aufgetaucht.\n" -#: app/batch.c:121 +#: app/batch.c:117 msgid "batch command: experienced a calling error.\n" msgstr "Stapelkommando: Ein Aufruffehler ist aufgetaucht.\n" -#: app/batch.c:124 +#: app/batch.c:120 msgid "batch command: executed successfully.\n" msgstr "Stapelkommando: Erfolgreich ausgefЭhrt.\n" -#: app/batch.c:205 +#: app/batch.c:204 msgid "extension_perl_server not available: unable to start the perl server\n" msgstr "" -#: app/batch.c:221 +#: app/batch.c:220 #, fuzzy msgid "perl server: experienced an execution error.\n" msgstr "Stapelkommando: Ein AusfЭhrungsfehler ist aufgetaucht.\n" -#: app/batch.c:224 +#: app/batch.c:223 #, fuzzy msgid "perl server: experienced a calling error.\n" msgstr "Stapelkommando: Ein Aufruffehler ist aufgetaucht.\n" -#: app/batch.c:227 +#: app/batch.c:226 #, fuzzy msgid "perl server: executed successfully.\n" msgstr "Stapelkommando: Erfolgreich ausgefЭhrt.\n" -#: app/bezier_select.c:480 +#: app/bezier_select.c:477 msgid "Bezier path already closed." msgstr "" -#: app/bezier_select.c:501 +#: app/bezier_select.c:498 #, fuzzy msgid "Corrupt curve" msgstr "Korrigierend" -#: app/bezier_select.c:1011 +#: app/bezier_select.c:1012 msgid "tried to edit on open bezier curve in edit selection" msgstr "" -#: app/bezier_select.c:1291 +#: app/bezier_select.c:1292 msgid "Encountered orphaned bezier control point" msgstr "" -#: app/bezier_select.c:1971 app/bezier_select.c:3170 +#: app/bezier_select.c:1975 app/bezier_select.c:3176 msgid "bad bezier segment" msgstr "" -#: app/bezier_select.c:1988 app/bezier_select.c:2630 +#: app/bezier_select.c:1992 app/bezier_select.c:2636 #, c-format msgid "unknown coordinate space: %d" msgstr "Unbekannter Koordinatenraum: %d" -#: app/bezier_select.c:2131 +#: app/bezier_select.c:2135 msgid "tried to convert an open bezier curve" msgstr "" -#: app/bezier_select.c:3126 +#: app/bezier_select.c:3132 #, fuzzy msgid "Paintbrush operation failed." msgstr "эbergang schlug fehl." -#: app/blend.c:261 +#: app/blend.c:264 #, fuzzy msgid "FG to BG (RGB)" msgstr "VG nach HG RGB" -#: app/blend.c:263 +#: app/blend.c:266 #, fuzzy msgid "FG to BG (HSV)" msgstr "VG nach HG HSV" -#: app/blend.c:265 +#: app/blend.c:268 msgid "FG to Transparent" msgstr "VG nach transparent" -#: app/blend.c:267 +#: app/blend.c:270 msgid "Custom from editor" msgstr "Selbsterstellt aus Editor" -#: app/blend.c:273 app/gradient.c:395 +#: app/blend.c:276 app/gradient.c:395 msgid "Linear" msgstr "Linear" -#: app/blend.c:275 +#: app/blend.c:278 msgid "Bi-Linear" msgstr "Bi-Linear" -#: app/blend.c:277 +#: app/blend.c:280 msgid "Radial" msgstr "KreisfЖrmig" -#: app/blend.c:279 +#: app/blend.c:282 msgid "Square" msgstr "Quadratisch" -#: app/blend.c:281 +#: app/blend.c:284 msgid "Conical (symmetric)" msgstr "Konisch (symmetrisch)" -#: app/blend.c:283 +#: app/blend.c:286 msgid "Conical (asymmetric)" msgstr "Konisch (asymmetrisch)" -#: app/blend.c:285 +#: app/blend.c:288 msgid "Shapeburst (angular)" msgstr "Formangepasst (winklig)" -#: app/blend.c:287 +#: app/blend.c:290 msgid "Shapeburst (spherical)" msgstr "Formangepasst (kreisfЖrmig)" -#: app/blend.c:289 +#: app/blend.c:292 msgid "Shapeburst (dimpled)" msgstr "Formangepasst" -#: app/blend.c:291 +#: app/blend.c:294 #, fuzzy msgid "Spiral (clockwise)" msgstr "HSV (Farbton im Uhrzeigersinn)" -#: app/blend.c:293 +#: app/blend.c:296 #, fuzzy msgid "Spiral (anticlockwise)" msgstr "HSV (Farbton im Uhrzeigersinn)" -#: app/blend.c:299 app/preferences_dialog.c:1724 +#: app/blend.c:302 app/preferences_dialog.c:1759 msgid "None" msgstr "Kein" -#: app/blend.c:301 +#: app/blend.c:304 msgid "Sawtooth wave" msgstr "SДgezahnwelle" -#: app/blend.c:303 +#: app/blend.c:306 msgid "Triangular wave" msgstr "Dreieckswelle" -#: app/blend.c:331 +#: app/blend.c:334 msgid "Offset:" msgstr "эberstand:" #. the blend mode menu -#: app/blend.c:349 +#: app/blend.c:352 msgid "Blend:" msgstr "эbergang:" #. the gradient type menu -#: app/blend.c:367 +#: app/blend.c:370 msgid "Gradient:" msgstr "Farbverlauf:" #. the repeat option -#: app/blend.c:385 +#: app/blend.c:388 msgid "Repeat:" msgstr "Wiederholung:" -#: app/blend.c:418 +#: app/blend.c:421 msgid "Adaptive supersampling" msgstr "Anpassende Hochrechnung" #. max depth scale -#: app/blend.c:440 +#: app/blend.c:443 msgid "Max depth:" msgstr "Maximale Tiefe:" #. threshold scale -#: app/blend.c:458 app/bucket_fill.c:137 app/iscissors.c:356 +#: app/blend.c:461 app/bucket_fill.c:136 app/iscissors.c:356 msgid "Threshold:" msgstr "Schwellwert:" -#: app/blend.c:496 +#: app/blend.c:499 msgid "Blend: Invalid for indexed images." msgstr "эbergang: Nicht mЖglich fЭr indizierte Bilder." -#: app/blend.c:521 +#: app/blend.c:524 msgid "Blend: 0, 0" msgstr "эbergang: 0, 0" -#: app/blend.c:583 +#: app/blend.c:587 msgid "Blend operation failed." msgstr "эbergang schlug fehl." -#: app/blend.c:589 +#: app/blend.c:593 #, fuzzy msgid "Blending..." msgstr "Farbverlauf" -#: app/blend.c:639 app/blend.c:649 +#: app/blend.c:643 app/blend.c:653 #, fuzzy msgid "Blend: " msgstr "эbergang:" -#: app/blend.c:1295 +#: app/blend.c:1307 #, c-format msgid "gradient_render_pixel(): unknown gradient type %d" msgstr "gradient_render_pixel(): Unbekannter Verlaufstyp %d" -#: app/blend.c:1430 +#: app/blend.c:1445 #, c-format msgid "gradient_fill_region(): unknown blend mode %d" msgstr "" -#: app/blend.c:1471 +#: app/blend.c:1486 #, c-format msgid "gradient_fill_region(): unknown gradient type %d" msgstr "" -#: app/blend.c:1493 +#: app/blend.c:1508 #, c-format msgid "gradient_fill_region(): unknown repeat mode %d" msgstr "" -#: app/brightness_contrast.c:176 +#: app/brightness_contrast.c:136 msgid "Brightness-Contrast Options" msgstr "Helligkeit-Kontrast Einstellungen" -#: app/brightness_contrast.c:221 +#: app/brightness_contrast.c:172 msgid "Brightness-Contrast does not operate on indexed drawables." msgstr "Helligkeit-Kontrast funktioniert nicht bei indizierten Bildern." #. Action area -#: app/brightness_contrast.c:252 app/channel_ops.c:104 -#: app/channels_dialog.c:1889 app/channels_dialog.c:2062 -#: app/color_balance.c:301 app/color_notebook.c:43 app/color_notebook.c:186 -#: app/color_select.c:154 app/color_select.c:209 app/convert.c:295 -#: app/curves.c:417 app/file_new_dialog.c:288 app/file_new_dialog.c:478 -#: app/hue_saturation.c:411 app/interface.c:877 app/interface.c:1263 -#: app/layers_dialog.c:3218 app/layers_dialog.c:3432 app/layers_dialog.c:3574 -#: app/layers_dialog.c:4049 app/levels.c:373 app/posterize.c:241 -#: app/preferences_dialog.c:1435 app/resize.c:114 app/threshold.c:318 +#: app/brightness_contrast.c:214 app/channel_ops.c:104 +#: app/channels_dialog.c:1864 app/channels_dialog.c:2049 +#: app/color_balance.c:273 app/color_notebook.c:49 app/color_notebook.c:192 +#: app/color_select.c:155 app/color_select.c:210 app/convert.c:295 +#: app/curves.c:517 app/file_new_dialog.c:292 app/file_new_dialog.c:482 +#: app/hue_saturation.c:361 app/interface.c:1009 app/interface.c:1395 +#: app/layers_dialog.c:2901 app/layers_dialog.c:3119 app/layers_dialog.c:3262 +#: app/layers_dialog.c:3738 app/levels.c:335 app/module_db.c:263 +#: app/posterize.c:199 app/preferences_dialog.c:1469 app/resize.c:114 +#: app/threshold.c:278 msgid "OK" msgstr "OK" -#: app/brightness_contrast.c:253 app/channel_ops.c:113 -#: app/channels_dialog.c:1890 app/channels_dialog.c:2063 -#: app/color_balance.c:302 app/color_notebook.c:44 app/color_notebook.c:187 -#: app/color_select.c:155 app/color_select.c:210 app/convert.c:296 -#: app/curves.c:418 app/file_new_dialog.c:290 app/file_new_dialog.c:480 -#: app/gdisplay_ops.c:353 app/gimpprogress.c:135 app/global_edit.c:593 +#: app/brightness_contrast.c:215 app/channel_ops.c:113 +#: app/channels_dialog.c:1865 app/channels_dialog.c:2050 +#: app/color_balance.c:274 app/color_notebook.c:50 app/color_notebook.c:193 +#: app/color_select.c:156 app/color_select.c:211 app/convert.c:296 +#: app/curves.c:518 app/file_new_dialog.c:294 app/file_new_dialog.c:484 +#: app/gdisplay_ops.c:349 app/gimpprogress.c:135 app/global_edit.c:705 #: app/gradient.c:1486 app/gradient.c:4566 app/gradient.c:4921 -#: app/hue_saturation.c:412 app/interface.c:788 app/interface.c:878 -#: app/layers_dialog.c:3219 app/layers_dialog.c:3433 app/layers_dialog.c:3575 -#: app/layers_dialog.c:3722 app/layers_dialog.c:4050 app/levels.c:374 -#: app/posterize.c:242 app/preferences_dialog.c:1439 app/resize.c:115 -#: app/threshold.c:319 +#: app/hue_saturation.c:362 app/interface.c:913 app/interface.c:1010 +#: app/layers_dialog.c:2902 app/layers_dialog.c:3120 app/layers_dialog.c:3263 +#: app/layers_dialog.c:3410 app/layers_dialog.c:3739 app/levels.c:336 +#: app/posterize.c:200 app/preferences_dialog.c:1473 app/resize.c:115 +#: app/threshold.c:279 msgid "Cancel" msgstr "Abbrechen" -#: app/brightness_contrast.c:276 app/tools.c:491 +#: app/brightness_contrast.c:226 app/tools.c:517 msgid "Brightness-Contrast" msgstr "Helligkeit-Kontrast" #. Create the brightness scale widget -#: app/brightness_contrast.c:292 +#: app/brightness_contrast.c:242 msgid "Brightness" msgstr "Helligkeit" #. Create the contrast scale widget -#: app/brightness_contrast.c:325 +#: app/brightness_contrast.c:275 msgid "Contrast" msgstr "Kontrast" #. The preview toggle -#: app/brightness_contrast.c:363 app/color_balance.c:481 app/curves.c:661 -#: app/fileops.c:395 app/hue_saturation.c:620 app/levels.c:583 -#: app/palette.c:2849 app/posterize.c:297 app/threshold.c:404 +#: app/brightness_contrast.c:313 app/color_balance.c:438 app/curves.c:651 +#: app/fileops.c:395 app/hue_saturation.c:572 app/levels.c:531 +#: app/palette.c:2849 app/posterize.c:246 app/threshold.c:354 msgid "Preview" msgstr "Vorschau" #. The close push button -#: app/brush_edit.c:38 app/brush_select.c:133 app/by_color_select.c:678 -#: app/color_notebook.c:181 app/color_picker.c:208 app/color_select.c:204 -#: app/colormap_dialog.i.c:94 app/colormap_dialog.i.c:103 app/crop.c:1011 -#: app/devices.c:124 app/docindexif.c:95 app/errorconsole.c:228 -#: app/gdisplay_ops.c:352 app/gradient.c:646 app/gradient_select.c:76 -#: app/info_window.c:121 app/layers_dialog.c:419 app/palette.c:2235 -#: app/palette_select.c:59 app/pattern_select.c:90 app/tips_dialog.c:146 -#: app/tools.c:716 +#: app/brush_edit.c:38 app/brush_select.c:135 app/by_color_select.c:664 +#: app/color_notebook.c:187 app/color_picker.c:209 app/color_select.c:205 +#: app/colormap_dialog.i.c:94 app/colormap_dialog.i.c:103 app/crop.c:1027 +#: app/devices.c:124 app/docindexif.c:100 app/errorconsole.c:230 +#: app/gdisplay_ops.c:348 app/gradient.c:646 app/gradient_select.c:76 +#: app/histogram_tool.c:262 app/info_window.c:121 app/lc_dialog.c:196 +#: app/palette.c:2235 app/palette_select.c:59 app/pattern_select.c:90 +#: app/tips_dialog.c:146 app/tools.c:874 libgimp/gimpfileselection.c:356 +#: libgimp/gimpunitmenu.c:518 msgid "Close" msgstr "Schlieъen" @@ -415,7 +419,7 @@ msgid "Brush Editor" msgstr "Pinseleditor" #. brush radius scale -#: app/brush_edit.c:240 app/color_picker.c:163 +#: app/brush_edit.c:240 app/color_picker.c:164 app/tool_options.c:284 msgid "Radius:" msgstr "Radius:" @@ -434,70 +438,71 @@ msgstr "Darstellungsverh msgid "Angle:" msgstr "Winkel:" -#: app/brush_select.c:132 app/palette.c:2243 app/pattern_select.c:89 +#: app/brush_select.c:134 app/module_db.c:307 app/palette.c:2243 +#: app/pattern_select.c:89 msgid "Refresh" msgstr "Auffrischen" -#: app/brush_select.c:153 +#: app/brush_select.c:155 msgid "Brush Selection" msgstr "Pinselauswahl" -#: app/brush_select.c:241 app/pattern_select.c:147 +#: app/brush_select.c:244 app/pattern_select.c:147 msgid "Active" msgstr "Aktiv" #. Create the opacity scale widget -#: app/brush_select.c:271 app/layers_dialog.c:756 +#: app/brush_select.c:274 app/layers_dialog.c:334 app/tool_options.c:593 msgid "Opacity:" msgstr "Deckung:" #. Create the paint mode option menu -#: app/brush_select.c:289 app/layers_dialog.c:733 +#: app/brush_select.c:292 app/layers_dialog.c:307 app/tool_options.c:623 msgid "Mode:" msgstr "Modus:" -#: app/brush_select.c:312 +#: app/brush_select.c:315 msgid "Edit Brush" msgstr "VerДndere Pinsel" -#: app/brush_select.c:318 +#: app/brush_select.c:321 msgid "New Brush" msgstr "Neuer Pinsel" -#: app/brush_select.c:340 +#: app/brush_select.c:343 msgid "Spacing:" msgstr "Zwischenraum:" -#: app/brush_select.c:531 +#: app/brush_select.c:536 msgid "failed to run brush callback function" msgstr "" -#: app/brush_select.c:1187 +#: app/brush_select.c:1192 msgid "" "We are all fresh out of brush editors today,\n" "please write your own or try back tomorrow\n" msgstr "" -#: app/bucket_fill.c:114 +#: app/bucket_fill.c:113 #, fuzzy msgid "FG Color Fill" msgstr "FarbfЭllung" -#: app/bucket_fill.c:115 +#: app/bucket_fill.c:114 #, fuzzy msgid "BG Color Fill" msgstr "FarbfЭllung" -#: app/bucket_fill.c:116 +#: app/bucket_fill.c:115 msgid "Pattern Fill" msgstr "MusterfЭllung" -#: app/bucket_fill.c:157 app/color_picker.c:138 +#: app/bucket_fill.c:156 app/color_picker.c:139 app/tool_options.c:358 msgid "Sample Merged" msgstr "" #. fill type -#: app/bucket_fill.c:165 app/file_new_dialog.c:838 +#: app/bucket_fill.c:164 app/file_new_dialog.c:842 msgid "Fill Type" msgstr "FЭllart" @@ -505,61 +510,61 @@ msgstr "F msgid "Bucket Fill operation failed." msgstr "FЭlleimer schlug fehl." -#: app/bucket_fill.c:361 +#: app/bucket_fill.c:344 msgid "No available patterns for this operation." msgstr "Keine Muster verfЭgbar fЭr diese Operation." -#: app/by_color_select.c:557 app/paint_funcs.c:100 +#: app/by_color_select.c:542 app/paint_funcs.c:100 msgid "Replace" msgstr "Ersetzen" -#: app/by_color_select.c:558 app/colormap_dialog.i.c:99 +#: app/by_color_select.c:543 app/colormap_dialog.i.c:99 msgid "Add" msgstr "HinzufЭgen" -#: app/by_color_select.c:559 app/layers_dialog.c:282 +#: app/by_color_select.c:544 app/layers_dialog.c:215 app/tool_options.c:784 msgid "Subtract" msgstr "Subtraktiv" -#: app/by_color_select.c:560 +#: app/by_color_select.c:545 msgid "Intersect" msgstr "Schnitt" -#: app/by_color_select.c:578 +#: app/by_color_select.c:564 msgid "By Color Selection" msgstr "Auswahl nach Farbe" -#: app/by_color_select.c:621 +#: app/by_color_select.c:607 msgid "Inactive" msgstr "Inaktiv" #. Create the selection mode radio box -#: app/by_color_select.c:628 +#: app/by_color_select.c:614 msgid "Selection Mode" msgstr "Auswahlmodus" -#: app/by_color_select.c:652 +#: app/by_color_select.c:638 msgid "Fuzziness Threshold" msgstr "Ungenauigkeitsschwellwert" #. The reset push button -#: app/by_color_select.c:668 app/curves.c:416 app/file_new_dialog.c:479 -#: app/tools.c:715 app/transform_core.c:116 +#: app/by_color_select.c:654 app/curves.c:516 app/file_new_dialog.c:483 +#: app/tools.c:873 app/transform_core.c:116 msgid "Reset" msgstr "ZurЭcksetzen" -#: app/channel.c:190 app/channel.c:192 app/layer.c:314 app/layer.c:316 +#: app/channel.c:191 app/channel.c:193 app/layer.c:316 app/layer.c:318 msgid "copy" msgstr "Kopie" #. formulate the new layer_mask name -#: app/channel.c:198 app/gradient.c:1359 app/layer.c:322 app/layer.c:1481 +#: app/channel.c:199 app/gradient.c:1359 app/layer.c:324 app/layer.c:1486 #, c-format msgid "%s copy" msgstr "%s Kopie" #. Create the new channel -#: app/channel.c:503 +#: app/channel.c:521 msgid "Selection Mask" msgstr "Auswahlmaske" @@ -587,12 +592,12 @@ msgstr "" msgid "Fill Options" msgstr "FЭlleimereinstellungen" -#: app/channel_ops.c:164 app/file_new_dialog.c:133 app/file_new_dialog.c:493 -#: app/layers_dialog.c:3210 +#: app/channel_ops.c:164 app/file_new_dialog.c:135 app/file_new_dialog.c:497 +#: app/layers_dialog.c:2893 msgid "Background" msgstr "Hintergrund" -#: app/channel_ops.c:175 app/file_new_dialog.c:495 app/layers_dialog.c:3212 +#: app/channel_ops.c:175 app/file_new_dialog.c:499 app/layers_dialog.c:2895 msgid "Transparent" msgstr "Durchsichtig" @@ -601,253 +606,278 @@ msgstr "Durchsichtig" msgid "Offset by (x/2),(y/2)" msgstr "" -#: app/channels_dialog.c:159 app/channels_dialog.c:193 -#: app/channels_dialog.c:1936 +#: app/channels_dialog.c:165 app/channels_dialog.c:1911 msgid "New Channel" msgstr "Neuer Kanal" -#: app/channels_dialog.c:161 app/channels_dialog.c:194 +#: app/channels_dialog.c:167 msgid "Raise Channel" msgstr "ErhЖhe Kanal" -#: app/channels_dialog.c:163 app/channels_dialog.c:195 +#: app/channels_dialog.c:169 msgid "Lower Channel" msgstr "Erniedrige Kanal" -#: app/channels_dialog.c:165 app/channels_dialog.c:196 +#: app/channels_dialog.c:171 msgid "Duplicate Channel" msgstr "Dupliziere Kanal" -#: app/channels_dialog.c:167 app/channels_dialog.c:197 -msgid "Delete Channel" -msgstr "LЖsche Kanal" - -#: app/channels_dialog.c:169 -msgid "Channel To Selection" -msgstr "Kanal zur Auswahl" - -#: app/channels_dialog.c:171 -#, fuzzy -msgid "Add To Selection" -msgstr "Auswahl aus Alphakanal" - #: app/channels_dialog.c:173 -#, fuzzy -msgid "Subtract From Selection" -msgstr "Kanal zur Auswahl" - -#: app/channels_dialog.c:175 -#, fuzzy -msgid "Intersect With Selection" -msgstr "Pinselauswahl" - -#: app/channels_dialog.c:198 msgid "" -"Channel To Selection \n" +"Channel to Selection \n" " Add Subtract Intersect" msgstr "" -#: app/channels_dialog.c:633 app/channels_dialog.c:687 +#: app/channels_dialog.c:178 +msgid "Delete Channel" +msgstr "LЖsche Kanal" + +#: app/channels_dialog.c:537 app/menus.c:273 +#, fuzzy +msgid "/New Channel" +msgstr "Neuer Kanal" + +#: app/channels_dialog.c:540 app/menus.c:274 +#, fuzzy +msgid "/Raise Channel" +msgstr "ErhЖhe Kanal" + +#: app/channels_dialog.c:544 app/menus.c:275 +#, fuzzy +msgid "/Lower Channel" +msgstr "Erniedrige Kanal" + +#: app/channels_dialog.c:548 app/menus.c:276 +#, fuzzy +msgid "/Duplicate Channel" +msgstr "Dupliziere Kanal" + +#: app/channels_dialog.c:552 app/menus.c:278 +#, fuzzy +msgid "/Channel to Selection" +msgstr "Kanal zur Auswahl" + +#: app/channels_dialog.c:555 app/menus.c:283 +#, fuzzy +msgid "/Delete Channel" +msgstr "LЖsche Kanal" + +#: app/channels_dialog.c:559 app/menus.c:279 +#, fuzzy +msgid "/Add to Selection" +msgstr "Auswahl aus Alphakanal" + +#: app/channels_dialog.c:560 app/menus.c:280 +#, fuzzy +msgid "/Subtract From Selection" +msgstr "Kanal zur Auswahl" + +#: app/channels_dialog.c:561 app/menus.c:281 +#, fuzzy +msgid "/Intersect With Selection" +msgstr "Pinselauswahl" + +#: app/channels_dialog.c:608 app/channels_dialog.c:662 #, c-format msgid "error in %s at %d: this shouldn't happen." msgstr "" -#: app/channels_dialog.c:1166 app/color_balance.c:413 app/curves.c:424 -#: app/levels.c:282 +#: app/channels_dialog.c:1137 app/color_balance.c:370 app/curves.c:405 +#: app/histogram_tool.c:279 app/levels.c:231 msgid "Red" msgstr "Rot" -#: app/channels_dialog.c:1170 app/color_balance.c:440 app/curves.c:425 -#: app/levels.c:283 +#: app/channels_dialog.c:1141 app/color_balance.c:397 app/curves.c:406 +#: app/histogram_tool.c:280 app/levels.c:232 msgid "Green" msgstr "GrЭn" -#: app/channels_dialog.c:1174 app/color_balance.c:467 app/curves.c:426 -#: app/levels.c:284 +#: app/channels_dialog.c:1145 app/color_balance.c:424 app/curves.c:407 +#: app/histogram_tool.c:281 app/levels.c:233 msgid "Blue" msgstr "Blau" -#: app/channels_dialog.c:1178 +#: app/channels_dialog.c:1149 msgid "Gray" msgstr "Grau" -#: app/channels_dialog.c:1182 +#: app/channels_dialog.c:1153 msgid "Indexed" msgstr "Indiziert" -#: app/channels_dialog.c:1908 +#: app/channels_dialog.c:1883 msgid "New Channel Options" msgstr "Einstellungen fЭr neuen Kanal" #. the name entry hbox, label and entry -#: app/channels_dialog.c:1926 +#: app/channels_dialog.c:1901 msgid "Channel name: " msgstr "Kanalname: " #. the opacity scale -#: app/channels_dialog.c:1940 +#: app/channels_dialog.c:1915 msgid "Fill Opacity: " msgstr "FЭlldeckung: " -#: app/channels_dialog.c:2087 +#: app/channels_dialog.c:2066 msgid "Edit Channel Attributes" msgstr "VerДndere Kanalmerkmale" -#: app/channels_dialog.c:2107 +#: app/channels_dialog.c:2086 msgid "Channel name:" msgstr "Kanalname:" -#: app/channels_dialog.c:2122 +#: app/channels_dialog.c:2101 msgid "Fill Opacity" msgstr "FЭlldeckung" -#: app/clone.c:134 +#: app/clone.c:137 msgid "Image Source" msgstr "Bildquelle" -#: app/clone.c:135 +#: app/clone.c:138 msgid "Pattern Source" msgstr "Musterquelle" -#: app/clone.c:139 +#: app/clone.c:144 #, fuzzy msgid "Non Aligned" msgstr "Ausgerichtet" -#: app/clone.c:140 +#: app/clone.c:145 msgid "Aligned" msgstr "Ausgerichtet" -#: app/clone.c:141 +#: app/clone.c:146 msgid "Registered" msgstr "" #. the radio frame and box -#: app/clone.c:156 +#: app/clone.c:162 msgid "Source" msgstr "Quelle" #. the radio frame and box -#: app/clone.c:181 +#: app/clone.c:187 #, fuzzy msgid "Alignment" msgstr "Ausgerichtet" -#: app/clone.c:308 +#: app/clone.c:314 msgid "No patterns available for this operation." msgstr "Keine Muster vorhanden fЭr diese Funktion." -#: app/color_balance.c:222 +#: app/color_balance.c:184 msgid "Color Balance Options" msgstr "Farbausgleich Einstellungen" -#: app/color_balance.c:269 +#: app/color_balance.c:222 msgid "Color balance operates only on RGB color drawables." msgstr "Farbausgleich funktioniert nur bei Echtfarbbildern." -#: app/color_balance.c:323 +#: app/color_balance.c:279 msgid "Shadows" msgstr "Shatten" -#: app/color_balance.c:324 +#: app/color_balance.c:280 msgid "Midtones" msgstr "Mitten" -#: app/color_balance.c:325 +#: app/color_balance.c:281 msgid "Highlights" msgstr "Glanzlichter" -#: app/color_balance.c:342 app/tools.c:476 +#: app/color_balance.c:299 app/tools.c:502 msgid "Color Balance" msgstr "Farbausgleich" -#: app/color_balance.c:357 +#: app/color_balance.c:314 msgid "Color Levels: " msgstr "Farbwerte: " #. Create the cyan-red scale widget -#: app/color_balance.c:396 +#: app/color_balance.c:353 msgid "Cyan" msgstr "Cyan" #. Create the magenta-green scale widget -#: app/color_balance.c:423 +#: app/color_balance.c:380 msgid "Magenta" msgstr "Magenta" #. Create the yellow-blue scale widget -#: app/color_balance.c:450 +#: app/color_balance.c:407 msgid "Yellow" msgstr "Gelb" #. The preserve luminosity toggle -#: app/color_balance.c:490 +#: app/color_balance.c:447 msgid "Preserve Luminosity" msgstr "" -#: app/color_notebook.c:111 app/color_select.c:186 +#: app/color_notebook.c:117 app/color_select.c:187 msgid "Color Selection" msgstr "Farbauswahl" -#: app/color_notebook.c:182 app/color_select.c:205 +#: app/color_notebook.c:188 app/color_select.c:206 msgid "Revert to Old Color" msgstr "ZurЭck zur alten Farbe" -#: app/color_picker.c:127 +#: app/color_picker.c:128 msgid "Color Picker Options" msgstr "Farbpipetteeinstellungen" -#: app/color_picker.c:153 +#: app/color_picker.c:154 #, fuzzy msgid "Sample Average" msgstr "AbtastgrЖъe:" -#: app/color_picker.c:224 app/tools.c:310 +#: app/color_picker.c:225 app/tools.c:306 msgid "Color Picker" msgstr "Farbpipette" -#: app/color_picker.c:231 app/color_picker.c:241 +#: app/color_picker.c:232 app/color_picker.c:242 #, fuzzy msgid "Red:" msgstr "Rot" -#: app/color_picker.c:232 app/color_picker.c:242 +#: app/color_picker.c:233 app/color_picker.c:243 #, fuzzy msgid "Green:" msgstr "GrЭn" -#: app/color_picker.c:233 app/color_picker.c:243 +#: app/color_picker.c:234 app/color_picker.c:244 #, fuzzy msgid "Blue:" msgstr "Blau" -#: app/color_picker.c:234 app/color_picker.c:240 app/color_picker.c:249 +#: app/color_picker.c:235 app/color_picker.c:241 app/color_picker.c:250 msgid "Alpha:" msgstr "" -#: app/color_picker.c:235 app/color_picker.c:250 app/color_select.c:386 -#: app/colormap_dialog.i.c:199 +#: app/color_picker.c:236 app/color_picker.c:251 app/color_select.c:387 +#: app/colormap_dialog.i.c:201 msgid "Hex Triplet:" msgstr "Hex Triplet:" -#: app/color_picker.c:239 app/colormap_dialog.i.c:192 +#: app/color_picker.c:240 app/colormap_dialog.i.c:194 #, fuzzy msgid "Index:" msgstr "Index" -#: app/color_picker.c:244 +#: app/color_picker.c:245 msgid "Hex Triplet" msgstr "Hex Triplet" -#: app/color_picker.c:248 app/histogram_tool.c:311 +#: app/color_picker.c:249 app/histogram_tool.c:271 #, fuzzy msgid "Intensity:" msgstr "IntensitДt" -#: app/color_picker.c:541 app/color_picker.c:542 app/color_picker.c:543 -#: app/color_picker.c:544 app/color_picker.c:545 app/color_picker.c:546 -#: app/color_picker.c:547 app/color_picker.c:560 app/color_picker.c:572 -#: app/color_picker.c:587 +#: app/color_picker.c:547 app/color_picker.c:548 app/color_picker.c:549 +#: app/color_picker.c:550 app/color_picker.c:551 app/color_picker.c:552 +#: app/color_picker.c:553 app/color_picker.c:566 app/color_picker.c:578 +#: app/color_picker.c:593 msgid "N/A" msgstr "n.v." @@ -862,7 +892,7 @@ msgid "Indexed Color Palette" msgstr "Farbpalette" #. The GIMP image option menu -#: app/colormap_dialog.i.c:136 app/layers_dialog.c:359 +#: app/colormap_dialog.i.c:136 app/lc_dialog.c:131 msgid "Image:" msgstr "Bild:" @@ -870,47 +900,47 @@ msgstr "Bild:" msgid "Operations" msgstr "Funktionen" -#: app/colormap_dialog.i.c:831 app/layers_dialog.c:879 +#: app/colormap_dialog.i.c:833 app/lc_dialog.c:614 msgid "none" msgstr "Kein" -#: app/commands.c:366 +#: app/commands.c:342 msgid "Border Selection" msgstr "Randauswahl" -#: app/commands.c:366 +#: app/commands.c:343 msgid "Border selection by:" msgstr "Randauswahl um:" -#: app/commands.c:384 +#: app/commands.c:360 msgid "Feather Selection" msgstr "Gerundete Auswahl" -#: app/commands.c:384 +#: app/commands.c:361 msgid "Feather selection by:" msgstr "Runde Auswahl um:" -#: app/commands.c:402 +#: app/commands.c:378 msgid "Grow Selection" msgstr "VergrЖъere Auswahl" -#: app/commands.c:402 +#: app/commands.c:379 msgid "Grow selection by:" msgstr "VergrЖъere Auswahl um:" -#: app/commands.c:420 +#: app/commands.c:396 msgid "Shrink Selection" msgstr "Verkleinere Auswahl" -#: app/commands.c:420 +#: app/commands.c:397 msgid "Shrink selection by:" msgstr "Verkleinere Auswahl um:" -#: app/commands.c:1199 +#: app/commands.c:1179 msgid "Resize Error: Both width and height must be greater than zero." msgstr "" -#: app/commands.c:1248 +#: app/commands.c:1228 msgid "Scale Error: Both width and height must be greater than zero." msgstr "" @@ -967,118 +997,118 @@ msgstr "Sch msgid "Convolve Type" msgstr "VerknЭpfen" -#: app/crop.c:169 app/crop.c:1009 +#: app/crop.c:170 app/crop.c:1025 msgid "Crop" msgstr "Zuschneiden" -#: app/crop.c:169 app/crop.c:1010 +#: app/crop.c:170 app/crop.c:1026 msgid "Resize" msgstr "GrЖъe verДndern" -#: app/crop.c:175 +#: app/crop.c:176 #, fuzzy msgid "Crop & Resize Options" msgstr "Zuschneiden Einstellungen" -#: app/crop.c:186 +#: app/crop.c:187 msgid "Current layer only" msgstr "Nur die aktive Schicht" #. enlarge toggle -#: app/crop.c:197 +#: app/crop.c:198 msgid "Allow Enlarging" msgstr "" #. tool toggle -#: app/crop.c:208 app/flip_tool.c:84 +#: app/crop.c:209 app/flip_tool.c:85 msgid "Tool Toggle" msgstr "" -#: app/crop.c:500 app/crop.c:508 +#: app/crop.c:501 app/crop.c:509 #, fuzzy msgid "Crop: " msgstr "Zuschneiden" -#: app/crop.c:997 +#: app/crop.c:1005 msgid "Crop: 0 x 0" msgstr "Zuschneiden: 0 x 0" #. create the info dialog -#: app/crop.c:1025 +#: app/crop.c:1033 #, fuzzy msgid "Crop & Resize Information" msgstr "Zuschneideinformationen" #. add the information fields -#: app/crop.c:1028 +#: app/crop.c:1036 #, fuzzy msgid "Origin X:" msgstr "X Ursprung: " -#: app/crop.c:1031 app/file_new_dialog.c:749 app/resize.c:334 app/resize.c:419 -#: app/resize.c:577 app/rotate_tool.c:108 app/scale_tool.c:99 +#: app/crop.c:1039 app/file_new_dialog.c:753 app/resize.c:334 app/resize.c:419 +#: app/resize.c:577 app/rotate_tool.c:109 app/scale_tool.c:99 #: app/shear_tool.c:83 msgid "Y:" msgstr "" #. the pixel size labels -#: app/crop.c:1059 app/file_new_dialog.c:610 app/file_new_dialog.c:628 +#: app/crop.c:1052 app/file_new_dialog.c:614 app/file_new_dialog.c:632 +#: app/tool_options.c:405 #, fuzzy msgid "Width:" msgstr "Breite: " -#: app/crop.c:1062 app/file_new_dialog.c:616 app/file_new_dialog.c:634 -#: app/layers_dialog.c:3271 app/resize.c:245 app/resize.c:270 app/resize.c:514 -#: app/scale_tool.c:78 app/scale_tool.c:85 +#: app/crop.c:1055 app/file_new_dialog.c:620 app/file_new_dialog.c:638 +#: app/layers_dialog.c:2954 app/resize.c:245 app/resize.c:270 app/resize.c:514 +#: app/scale_tool.c:78 app/scale_tool.c:85 app/tool_options.c:427 #, fuzzy msgid "Height:" msgstr "HЖhe: " -#: app/crop.c:1097 +#: app/crop.c:1077 #, fuzzy msgid "From Selection" msgstr "VergrЖъere Auswahl" -#: app/crop.c:1103 -#, fuzzy -msgid "Automatic" -msgstr "/Automatisch" +#: app/crop.c:1083 +msgid "Auto Shrink" +msgstr "" -#: app/curves.c:373 +#: app/curves.c:368 msgid "Curves Options" msgstr "Kurveneinstellungen" -#: app/curves.c:423 app/layers_dialog.c:288 app/levels.c:281 -#: app/paint_funcs.c:97 +#: app/curves.c:404 app/histogram_tool.c:278 app/layers_dialog.c:227 +#: app/levels.c:230 app/paint_funcs.c:97 app/tool_options.c:790 msgid "Value" msgstr "Wert" -#: app/curves.c:427 app/levels.c:285 +#: app/curves.c:408 app/levels.c:234 msgid "Alpha" msgstr "" -#: app/curves.c:433 -msgid "Smooth" -msgstr "Weich" - -#: app/curves.c:434 -msgid "Free" -msgstr "Frei" - -#: app/curves.c:445 +#: app/curves.c:419 msgid "Curves for indexed drawables cannot be adjusted." msgstr "" -#: app/curves.c:560 app/tools.c:551 +#: app/curves.c:523 +msgid "Smooth" +msgstr "Weich" + +#: app/curves.c:524 +msgid "Free" +msgstr "Frei" + +#: app/curves.c:550 app/tools.c:577 msgid "Curves" msgstr "Kurven" -#: app/curves.c:574 +#: app/curves.c:564 msgid "Modify Curves for Channel: " msgstr "VerДndere Kurven fЭr Kanal: " #. The option menu for selecting the drawing method -#: app/curves.c:648 +#: app/curves.c:638 msgid "Curve Type: " msgstr "Kurvenart: " @@ -1086,7 +1116,7 @@ msgstr "Kurvenart: " msgid "Desaturate operates only on RGB color drawables." msgstr "" -#: app/devices.c:123 app/palette.c:2187 app/preferences_dialog.c:1437 +#: app/devices.c:123 app/palette.c:2187 app/preferences_dialog.c:1471 msgid "Save" msgstr "Sichern" @@ -1122,49 +1152,49 @@ msgstr "Es gibt keine Auswahl, die nach unten verschoben werden kann." msgid "There's no selection to remove." msgstr "Es gibt keine Auswahl, die entfernt werden kann." -#: app/docindexif.c:75 +#: app/docindexif.c:80 msgid "Open" msgstr "жffnen" -#: app/docindexif.c:75 +#: app/docindexif.c:80 msgid "Open a file" msgstr "жffne eine Datei" -#: app/docindexif.c:80 +#: app/docindexif.c:85 msgid "Up" msgstr "Hoch" -#: app/docindexif.c:80 +#: app/docindexif.c:85 msgid "Move the selected entry up in the index" msgstr "Bewege den ausgewДhlten Eintrag nach oben" -#: app/docindexif.c:85 +#: app/docindexif.c:90 msgid "Down" msgstr "Runter" -#: app/docindexif.c:85 +#: app/docindexif.c:90 msgid "Move the selected entry down in the index" msgstr "Bewege den ausgewДhlten Eintrag nach unten" -#: app/docindexif.c:90 +#: app/docindexif.c:95 msgid "Remove" msgstr "Entfernen" -#: app/docindexif.c:90 +#: app/docindexif.c:95 msgid "Remove the selected entry from the index" msgstr "Entferne den ausgewДhlten Eintrag aus der Liste" -#: app/docindexif.c:95 +#: app/docindexif.c:100 msgid "Close the Document Index" msgstr "Schlieъe den Dokumentenindex" #. Set the GOWindow title -#: app/docindexif.c:213 +#: app/docindexif.c:218 msgid "Document Index" msgstr "Dokumentenindex" #. Set the initial status message -#: app/docindexif.c:219 +#: app/docindexif.c:224 msgid "GTK successfully started" msgstr "GTK erfolgreich gestartet" @@ -1172,11 +1202,11 @@ msgstr "GTK erfolgreich gestartet" msgid "drawable_fill called with unknown fill type" msgstr "" -#: app/edit_selection.c:164 +#: app/edit_selection.c:163 msgid "Move: 0, 0" msgstr "Bewegen: 0, 0" -#: app/edit_selection.c:443 app/edit_selection.c:453 +#: app/edit_selection.c:442 app/edit_selection.c:452 #, fuzzy msgid "Move: " msgstr "Modus: " @@ -1191,41 +1221,41 @@ msgid "Hard edge" msgstr "Harte Kante" #. the incremental toggle -#: app/eraser.c:108 app/paintbrush.c:258 +#: app/eraser.c:108 app/paintbrush.c:257 msgid "Incremental" msgstr "Steigernd" -#: app/errorconsole.c:168 +#: app/errorconsole.c:170 #, c-format msgid "Error opening file %s: %s" msgstr "Kann Datei nicht Жffnen %s: %s" -#: app/errorconsole.c:183 +#: app/errorconsole.c:185 msgid "Can't save, nothing selected!" msgstr "Kann nicht sichern, da nichts ausgewДhlt wurde!" -#: app/errorconsole.c:187 +#: app/errorconsole.c:189 msgid "Save error log to file..." msgstr "Sichere Fehlerprotokoll in Datei..." -#: app/errorconsole.c:244 +#: app/errorconsole.c:246 msgid "GIMP Error console" msgstr "GIMP Fehlerkonsole" -#: app/errorconsole.c:259 +#: app/errorconsole.c:261 msgid "Write all errors to file..." msgstr "Schreibe alle Fehler in Datei..." -#: app/errorconsole.c:266 +#: app/errorconsole.c:268 msgid "Write selection to file..." msgstr "Schreibe Auswahl in Datei..." -#: app/file_new_dialog.c:299 +#: app/file_new_dialog.c:303 #, fuzzy msgid "Confirm Image Size" msgstr "BildgrЖъe verДndern" -#: app/file_new_dialog.c:313 +#: app/file_new_dialog.c:317 #, c-format msgid "" "You are trying to create an image which\n" @@ -1241,85 +1271,85 @@ msgid "" "preferences dialog." msgstr "" -#: app/file_new_dialog.c:407 +#: app/file_new_dialog.c:411 #, fuzzy, c-format msgid "%d Bytes" msgstr "Byte" -#: app/file_new_dialog.c:409 +#: app/file_new_dialog.c:413 #, c-format msgid "%.2f KB" msgstr "" -#: app/file_new_dialog.c:411 +#: app/file_new_dialog.c:415 #, c-format msgid "%.1f KB" msgstr "" -#: app/file_new_dialog.c:413 +#: app/file_new_dialog.c:417 #, c-format msgid "%d KB" msgstr "" -#: app/file_new_dialog.c:415 +#: app/file_new_dialog.c:419 #, c-format msgid "%.2f MB" msgstr "" -#: app/file_new_dialog.c:417 +#: app/file_new_dialog.c:421 #, c-format msgid "%.1f MB" msgstr "" #. bytes per pixel #. alpha channel -#: app/file_new_dialog.c:442 +#: app/file_new_dialog.c:446 #, fuzzy, c-format msgid "Image Size: %s" msgstr "BildgrЖъe verДndern" -#: app/file_new_dialog.c:485 app/gdisplay.c:197 app/preferences_dialog.c:1598 +#: app/file_new_dialog.c:489 app/gdisplay.c:202 app/preferences_dialog.c:1633 msgid "RGB" msgstr "Echtfarbe" -#: app/file_new_dialog.c:486 app/info_window.c:50 app/info_window.c:241 -#: app/preferences_dialog.c:1599 +#: app/file_new_dialog.c:490 app/info_window.c:50 app/info_window.c:241 +#: app/preferences_dialog.c:1634 msgid "Grayscale" msgstr "Graustufen" -#: app/file_new_dialog.c:492 app/layers_dialog.c:3209 +#: app/file_new_dialog.c:496 app/layers_dialog.c:2892 msgid "Foreground" msgstr "Vordergrund" -#: app/file_new_dialog.c:494 app/layers_dialog.c:3211 +#: app/file_new_dialog.c:498 app/layers_dialog.c:2894 msgid "White" msgstr "Weiъ" -#: app/file_new_dialog.c:568 +#: app/file_new_dialog.c:572 msgid "New Image" msgstr "Neues Bild" -#: app/file_new_dialog.c:674 app/preferences_dialog.c:1507 +#: app/file_new_dialog.c:678 app/preferences_dialog.c:1542 msgid "Pixels" msgstr "Pixel" #. the resolution labels -#: app/file_new_dialog.c:743 app/resize.c:571 +#: app/file_new_dialog.c:747 app/resize.c:571 #, fuzzy msgid "Resolution X:" msgstr "AuflЖsung" -#: app/file_new_dialog.c:764 app/resize.c:592 +#: app/file_new_dialog.c:768 app/resize.c:592 #, fuzzy msgid "pixels/%a" msgstr "Pixel" #. frame for Image Type -#: app/file_new_dialog.c:808 +#: app/file_new_dialog.c:812 msgid "Image Type" msgstr "Bildart" -#: app/fileops.c:222 app/fileops.c:251 +#: app/fileops.c:224 app/fileops.c:253 msgid "Load Image" msgstr "жffne Bild" @@ -1328,321 +1358,127 @@ msgstr " msgid "Open Options" msgstr "жffnungseinstellungen" -#: app/fileops.c:278 app/fileops.c:479 +#: app/fileops.c:278 app/fileops.c:482 msgid "Determine file type:" msgstr "Bestimme Datentyp:" -#: app/fileops.c:441 app/fileops.c:463 +#: app/fileops.c:443 app/fileops.c:465 msgid "Save Image" msgstr "Sichere Bild" -#: app/fileops.c:471 +#: app/fileops.c:474 msgid "Save Options" msgstr "Sicherungseinstellungen" -#: app/fileops.c:522 +#: app/fileops.c:526 msgid "Can't revert. No filename associated with this image" msgstr "" -#: app/fileops.c:536 +#: app/fileops.c:540 #, fuzzy msgid "Revert failed." msgstr "Sichern schlug fehl: " -#: app/fileops.c:1212 app/fileops.c:1302 +#: app/fileops.c:1364 app/fileops.c:1454 msgid "Open failed: " msgstr "жffnen schlug fehl: " -#: app/fileops.c:1368 +#: app/fileops.c:1520 #, c-format msgid "%s is an irregular file (%s)" msgstr "%s ist eine nicht regulДre Datei (%s)" -#: app/fileops.c:1382 app/fileops.c:1485 +#: app/fileops.c:1534 app/fileops.c:1641 msgid "Save failed: " msgstr "Sichern schlug fehl: " -#: app/fileops.c:1394 app/fileops.c:1407 -msgid "/File/Open" -msgstr "/Datei/жffnen" +#: app/fileops.c:1546 app/fileops.c:1547 app/fileops.c:1559 app/fileops.c:1560 +#: app/menus.c:58 app/menus.c:90 +#, fuzzy +msgid "/File/Open" +msgstr "/Datei/жffnen" -#: app/fileops.c:1395 app/fileops.c:1408 -msgid "/File/Open" -msgstr "/Datei/жffnen" +#: app/fileops.c:1548 app/fileops.c:1564 app/menus.c:91 +#, fuzzy +msgid "/File/Save" +msgstr "/Datei/Sichern" -#: app/fileops.c:1396 app/fileops.c:1409 -msgid "/File/Save" -msgstr "/Datei/Sichern" +#: app/fileops.c:1549 app/fileops.c:1565 app/menus.c:92 +#, fuzzy +msgid "/File/Save as" +msgstr "/Datei/Sichern unter..." -#: app/fileops.c:1397 app/fileops.c:1410 -msgid "/File/Save as" -msgstr "/Datei/Sichern unter..." - -#: app/fileops.c:1430 +#: app/fileops.c:1586 #, c-format msgid "%s exists, overwrite?" msgstr "%s existiert, Эberschreiben?" -#: app/fileops.c:1436 +#: app/fileops.c:1592 msgid "File Exists!" msgstr "Datein Existiert!" -#: app/flip_tool.c:70 app/preferences_dialog.c:1553 -#: app/preferences_dialog.c:2215 +#: app/flip_tool.c:71 app/preferences_dialog.c:1588 +#: app/preferences_dialog.c:2290 msgid "Horizontal" msgstr "Horizontal" -#: app/flip_tool.c:70 app/preferences_dialog.c:1555 -#: app/preferences_dialog.c:2217 +#: app/flip_tool.c:71 app/preferences_dialog.c:1590 +#: app/preferences_dialog.c:2292 msgid "Vertical" msgstr "Vertikal" -#: app/flip_tool.c:76 +#: app/flip_tool.c:77 msgid "Flip Tool Options" msgstr "Spiegel Einstellungen" -#: app/floating_sel.c:108 +#: app/floating_sel.c:107 msgid "" "Cannot anchor this layer because\n" "it is not a floating selection." msgstr "" -#: app/floating_sel.c:174 +#: app/floating_sel.c:173 msgid "" "Cannot create a new layer from the floating\n" "selection because it belongs to a\n" "layer mask or channel." msgstr "" -#: app/free_select.c:220 +#: app/free_select.c:219 msgid "Cannot properly scanline convert polygon!\n" msgstr "" -#: app/gdisplay.c:197 +#: app/gdisplay.c:202 msgid "RGB-empty" msgstr "RGB leer" -#: app/gdisplay.c:200 +#: app/gdisplay.c:205 msgid "grayscale-empty" msgstr "Graustufen leer" -#: app/gdisplay.c:200 +#: app/gdisplay.c:205 msgid "grayscale" msgstr "Graustufen" -#: app/gdisplay.c:203 +#: app/gdisplay.c:208 msgid "indexed-empty" msgstr "Indiziert leer" -#: app/gdisplay.c:203 +#: app/gdisplay.c:208 msgid "indexed" msgstr "Indiziert" -#: app/gdisplay.c:1573 -#, fuzzy -msgid "/Layers/Stack/Previous Layer" -msgstr "/Schichten/Schicht nach vorne" - -#: app/gdisplay.c:1574 -#, fuzzy -msgid "/Layers/Stack/Next Layer" -msgstr "/Schichten/Schicht nach vorne" - -#: app/gdisplay.c:1575 -#, fuzzy -msgid "/Layers/Stack/Raise Layer" -msgstr "/Schichten/Schicht nach vorne" - -#: app/gdisplay.c:1576 -#, fuzzy -msgid "/Layers/Stack/Lower Layer" -msgstr "/Schichten/Schicht nach hinten" - -#: app/gdisplay.c:1577 -#, fuzzy -msgid "/Layers/Stack/Layer to Top" -msgstr "/Schichten/Schicht nach vorne" - -#: app/gdisplay.c:1578 -#, fuzzy -msgid "/Layers/Stack/Layer to Bottom" -msgstr "/Schichten/Schicht nach vorne" - -#: app/gdisplay.c:1579 -msgid "/Layers/Anchor Layer" -msgstr "/Schichten/Schicht verankern" - -#: app/gdisplay.c:1580 -msgid "/Layers/Merge Visible Layers" -msgstr "/Schichten/Sichtbare Schichten vereinen" - -#: app/gdisplay.c:1581 -msgid "/Layers/Flatten Image" -msgstr "/Schichten/Bild zusammenfЭgen" - -#: app/gdisplay.c:1582 -msgid "/Layers/Alpha To Selection" -msgstr "/Schichten/Auswahl aus Alphakanal" - -#: app/gdisplay.c:1583 -msgid "/Layers/Mask To Selection" -msgstr "/Schichten/Auswahl aus Maske" - -#: app/gdisplay.c:1584 -msgid "/Layers/Add Alpha Channel" -msgstr "/Schichten/Neuer Alphakanal" - -#: app/gdisplay.c:1586 -msgid "/Image/RGB" -msgstr "/Bild/RGB" - -#: app/gdisplay.c:1587 -msgid "/Image/Grayscale" -msgstr "/Bild/Graustufen" - -#: app/gdisplay.c:1588 -msgid "/Image/Indexed" -msgstr "/Bild/Indiziert" - -#: app/gdisplay.c:1590 -msgid "/Image/Colors/Threshold" -msgstr "/Bild/Farben/Schwellwert" - -#: app/gdisplay.c:1591 -msgid "/Image/Colors/Posterize" -msgstr "/Bild/Farben/Posterisieren" - -#: app/gdisplay.c:1592 -msgid "/Image/Colors/Equalize" -msgstr "/Bild/Farben/Angleichen" - -#: app/gdisplay.c:1593 -msgid "/Image/Colors/Invert" -msgstr "/Bild/Farben/Invertieren" - -#: app/gdisplay.c:1595 -msgid "/Image/Colors/Color Balance" -msgstr "/Bild/Farben/Ausgleichen" - -#: app/gdisplay.c:1596 -msgid "/Image/Colors/Brightness-Contrast" -msgstr "/Bild/Farben/Helligkeit-Kontrast" - -#: app/gdisplay.c:1597 -msgid "/Image/Colors/Hue-Saturation" -msgstr "/Bild/Farben/Farbton-SДttigung" - -#: app/gdisplay.c:1598 -msgid "/Image/Colors/Curves" -msgstr "/Bild/Farben/Kurven" - -#: app/gdisplay.c:1599 -msgid "/Image/Colors/Levels" -msgstr "/Bild/Farben/Werte" - -#: app/gdisplay.c:1601 -msgid "/Image/Colors/Desaturate" -msgstr "/Bild/Farben/SДttigung vermindern" - -#: app/gdisplay.c:1603 -msgid "/Image/Alpha/Add Alpha Channel" -msgstr "/Bild/Alpha/Erstelle Alphakanal" - -#: app/gdisplay.c:1605 -msgid "/Select" -msgstr "/Auswahl" - -#: app/gdisplay.c:1606 -msgid "/Edit/Cut" -msgstr "/Bearbeiten/Ausschneiden" - -#: app/gdisplay.c:1607 -msgid "/Edit/Copy" -msgstr "/Bearbeiten/Kopieren" - -#: app/gdisplay.c:1608 -msgid "/Edit/Paste" -msgstr "/Bearbeiten/EinfЭgen" - -#: app/gdisplay.c:1609 -msgid "/Edit/Paste Into" -msgstr "/Bearbeiten/EinfЭgen in..." - -#: app/gdisplay.c:1610 -msgid "/Edit/Clear" -msgstr "/Bearbeiten/LЖschen" - -#: app/gdisplay.c:1611 -msgid "/Edit/Fill" -msgstr "/Bearbeiten/FЭllen" - -#: app/gdisplay.c:1612 -msgid "/Edit/Stroke" -msgstr "/Bearbeiten/Nachfahren" - -#: app/gdisplay.c:1613 -msgid "/Edit/Cut Named" -msgstr "/Bearbeiten/Mit Namen ausschneiden" - -#: app/gdisplay.c:1614 -msgid "/Edit/Copy Named" -msgstr "/Bearbeiten/Mit Namen kopieren" - -#: app/gdisplay.c:1615 -msgid "/Edit/Paste Named" -msgstr "/Bearbeiten/Mit Namen einfЭgen" - -#: app/gdisplay.c:1616 -msgid "/Image/Colors" -msgstr "/Bild/Farben" - -#: app/gdisplay.c:1617 -msgid "/Image/Channel Ops/Offset" -msgstr "/Bild/Kanal/эberstand" - -#: app/gdisplay.c:1618 -msgid "/Image/Histogram" -msgstr "/Bild/Histogram" - -#: app/gdisplay.c:1619 -msgid "/Filters" -msgstr "/Filter" - -#. save selection to channel -#: app/gdisplay.c:1622 -msgid "/Select/Save To Channel" -msgstr "/Auswahl/In Kanal sichern" - -#: app/gdisplay.c:1624 -msgid "/View/Toggle Rulers" -msgstr "/Ansicht/Lineale an/aus" - -#: app/gdisplay.c:1625 -msgid "/View/Toggle Guides" -msgstr "/Ansicht/Hilfslinien an/aus" - -#: app/gdisplay.c:1626 -msgid "/View/Snap To Guides" -msgstr "/Ansicht/magnetische Hilfslinien an/aus" - -#: app/gdisplay.c:1627 -msgid "/View/Toggle Statusbar" -msgstr "/Ansicht/Statusleiste an/aus" - -#: app/gdisplay.c:1628 -msgid "/View/Dot for dot" -msgstr "/Ansicht/Punkt fЭr Punkt" - -#: app/gdisplay.c:2063 +#: app/gdisplay.c:2102 msgid "gdisplays_flush() called recursively." msgstr "" -#: app/gdisplay_ops.c:305 app/gdisplay_ops.c:324 app/gdisplay_ops.c:334 -#: app/gdisplay_ops.c:370 -msgid "/File/Close" -msgstr "/Datei/Schlieъen" +#: app/gdisplay_ops.c:305 app/gdisplay_ops.c:320 app/gdisplay_ops.c:330 +#: app/gdisplay_ops.c:366 app/menus.c:97 +#, fuzzy +msgid "/File/Close" +msgstr "/Datei/Schlieъen" -#: app/gdisplay_ops.c:392 +#: app/gdisplay_ops.c:388 #, fuzzy, c-format msgid "Changes were made to %s. Close anyway?" msgstr "Es wurden VerДnderungen vorgenommen an %s. Trotzdem schlieъen?" @@ -1714,41 +1550,41 @@ msgstr "Unbenannt" msgid "Layer type %d not supported." msgstr "" -#: app/gimpimage.c:596 app/gimpimage.c:690 +#: app/gimpimage.c:642 app/gimpimage.c:740 msgid "gimp_image_apply_image sent illegal parameters" msgstr "" -#: app/gimpimage.c:1096 +#: app/gimpimage.c:1172 msgid "Unable to project indexed image." msgstr "Kann indiziertes Bild nicht abbilden." -#: app/gimpimage.c:1966 +#: app/gimpimage.c:2109 msgid "Layer cannot be raised any further" msgstr "Schicht kann nicht weiter erhЖht werden" -#: app/gimpimage.c:2040 +#: app/gimpimage.c:2184 msgid "Layer cannot be lowered any further" msgstr "Schicht kann nicht weiter erniedrigt werden" #. layer_arg is already the top_layer -#: app/gimpimage.c:2069 +#: app/gimpimage.c:2214 msgid "Layer is already on top" msgstr "Schicht ist schon ganz oben" -#: app/gimpimage.c:2074 +#: app/gimpimage.c:2219 msgid "Can't raise Layer without alpha" msgstr "Kann Schicht ohne Alphakanal nicht erhЖhen" #. there is no next layer below layer_arg -#: app/gimpimage.c:2168 +#: app/gimpimage.c:2314 msgid "Layer is already on bottom" msgstr "Schicht ist schon ganz unten" -#: app/gimpimage.c:2181 +#: app/gimpimage.c:2327 msgid "BG has no alpha, layer was placed above" msgstr "" -#: app/gimpimage.c:2243 +#: app/gimpimage.c:2390 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." @@ -1756,65 +1592,65 @@ msgstr "" "Es gibt nicht genЭgend sichtbare Schichten zum Verbinden.\n" "Es mЭssen mindestens zwei sein." -#: app/gimpimage.c:2321 +#: app/gimpimage.c:2468 msgid "There are not enough visible layers for a merge down." msgstr "" -#: app/gimpimage.c:2432 app/gimpimage.c:2465 +#: app/gimpimage.c:2581 app/gimpimage.c:2614 msgid "gimp_image_merge_layers: could not allocate merge layer" msgstr "" -#: app/gimpimage.c:2504 +#: app/gimpimage.c:2653 msgid "gimp_image_merge_layers attempting to merge incompatible layers\n" msgstr "" -#: app/gimpimage.c:2584 +#: app/gimpimage.c:2735 msgid "gimp_image_add_layer: attempt to add layer to wrong image" msgstr "" -#: app/gimpimage.c:2594 +#: app/gimpimage.c:2745 msgid "gimp_image_add_layer: trying to add layer to image twice" msgstr "" -#: app/gimpimage.c:2710 +#: app/gimpimage.c:2864 msgid "" "Unable to add a layer mask since\n" "the layer already has one." msgstr "" -#: app/gimpimage.c:2714 +#: app/gimpimage.c:2868 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." msgstr "" -#: app/gimpimage.c:2718 +#: app/gimpimage.c:2872 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." msgstr "" -#: app/gimpimage.c:2722 +#: app/gimpimage.c:2876 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -#: app/gimpimage.c:2826 +#: app/gimpimage.c:2983 msgid "Channel cannot be raised any further" msgstr "" -#: app/gimpimage.c:2873 +#: app/gimpimage.c:3031 msgid "Channel cannot be lowered any further" msgstr "" -#: app/gimpimage.c:2893 +#: app/gimpimage.c:3053 msgid "gimp_image_add_channel: attempt to add channel to wrong image" msgstr "" -#: app/gimpimage.c:2903 +#: app/gimpimage.c:3063 msgid "gimp_image_add_channel: trying to add channel to image twice" msgstr "" -#: app/gimpimage.c:3029 app/palette.c:525 app/palette.c:550 app/palette.c:909 +#: app/gimpimage.c:3190 app/palette.c:525 app/palette.c:550 app/palette.c:909 #: app/palette.c:913 app/palette.c:2313 app/palette.c:2995 msgid "Untitled" msgstr "Unbenannt" @@ -1823,95 +1659,99 @@ msgstr "Unbenannt" msgid "Progress" msgstr "" -#: app/gimprc.c:353 app/plug_in.c:302 +#: app/gimprc.c:358 app/plug_in.c:305 msgid "Resource configuration" msgstr "Ressourcen Konfiguration" -#: app/gimprc.c:408 +#: app/gimprc.c:413 #, c-format msgid "error parsing: \"%s\"\n" msgstr "Fehler bei Bearbeitung von: \"%s\"\n" -#: app/gimprc.c:409 +#: app/gimprc.c:414 #, c-format msgid " at line %d column %d\n" msgstr "" -#: app/gimprc.c:410 +#: app/gimprc.c:415 #, c-format msgid " unexpected token: %s\n" msgstr "" -#: app/gimprc.c:1300 +#: app/gimprc.c:1305 msgid "error parsing pluginrc" msgstr "" -#: app/gimprc.c:1635 +#: app/gimprc.c:1640 #, c-format msgid "gimprc token referenced but not defined: %s" msgstr "" -#: app/gimprc.c:2518 +#: app/gimprc.c:2522 #, c-format msgid "Can't open %s; %s" msgstr "" -#: app/gimprc.c:2537 +#: app/gimprc.c:2541 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "" -#: app/gimprc.c:2543 +#: app/gimprc.c:2547 #, c-format msgid "Couldn't reopen %s\n" msgstr "" -#: app/gimprc.c:2555 +#: app/gimprc.c:2559 #, c-format msgid "Can't write to %s; %s" msgstr "" #. Make a new floating layer -#: app/global_edit.c:284 +#: app/global_edit.c:289 app/global_edit.c:344 app/global_edit.c:354 #, fuzzy msgid "Pasted Layer" msgstr "ErhЖhe Schicht" -#: app/global_edit.c:591 +#: app/global_edit.c:698 msgid "Paste" msgstr "EinfЭgen" +#: app/global_edit.c:699 +#, fuzzy +msgid "Paste Into" +msgstr "/Bearbeiten/EinfЭgen in..." + +#: app/global_edit.c:700 +msgid "Paste As New" +msgstr "" + #. Buttons -#: app/global_edit.c:592 app/gradient.c:1477 app/palette.c:1429 +#: app/global_edit.c:704 app/gradient.c:1477 app/palette.c:1429 #: app/palette.c:2179 msgid "Delete" msgstr "LЖschen" -#: app/global_edit.c:606 +#: app/global_edit.c:720 #, fuzzy msgid "Paste Named Buffer" msgstr "FЭge benannten Bezierspeicher ein" -#: app/global_edit.c:618 +#: app/global_edit.c:732 #, fuzzy msgid "Select a buffer to paste:" msgstr "WДhlen Sie den zu bearbeitenden Speicher:" -#: app/global_edit.c:637 -#, fuzzy -msgid "Replace Current Selection" -msgstr "Bilde Auswahl nach" - -#: app/global_edit.c:699 +#: app/global_edit.c:820 #, fuzzy msgid "Cut Named" msgstr "/Bearbeiten/Mit Namen ausschneiden" -#: app/global_edit.c:700 app/global_edit.c:732 +#: app/global_edit.c:821 app/global_edit.c:853 msgid "Enter a name for this buffer" msgstr "Geben sie diesem Speicher einen Namen" -#: app/global_edit.c:731 +#: app/global_edit.c:852 #, fuzzy msgid "Copy Named" msgstr "/Bearbeiten/Mit Namen kopieren" @@ -1967,7 +1807,7 @@ msgstr "Farbverl msgid "Gradients: " msgstr "FarbverlДufe: " -#: app/gradient.c:680 app/gradient_select.c:476 app/paintbrush.c:199 +#: app/gradient.c:680 app/gradient_select.c:476 app/paintbrush.c:204 #: app/palette.c:2833 msgid "Gradient" msgstr "Farbverlauf" @@ -2322,99 +2162,114 @@ msgstr "" msgid "Gradient Selection" msgstr "Randauswahl" -#: app/histogram_tool.c:207 +#: app/histogram_tool.c:173 #, fuzzy msgid "Histogram Options" msgstr "Raster Einstellungen" -#: app/histogram_tool.c:307 +#: app/histogram_tool.c:210 +#, fuzzy +msgid "Histogram does not operate on indexed drawables." +msgstr "Angleichen funktioniert nicht mit indizierten Bildern." + +#: app/histogram_tool.c:267 #, fuzzy msgid "Mean:" msgstr "Modus: " -#: app/histogram_tool.c:308 +#: app/histogram_tool.c:268 msgid "Std Dev:" msgstr "" -#: app/histogram_tool.c:309 +#: app/histogram_tool.c:269 #, fuzzy msgid "Median:" msgstr "Modus: " -#: app/histogram_tool.c:310 +#: app/histogram_tool.c:270 #, fuzzy msgid "Pixels:" msgstr "Pixel" -#: app/histogram_tool.c:312 +#: app/histogram_tool.c:272 msgid "Count:" msgstr "" -#: app/histogram_tool.c:313 +#: app/histogram_tool.c:273 #, fuzzy msgid "Percentile:" msgstr "Perspektivisch" -#: app/hue_saturation.c:301 +#: app/histogram_tool.c:296 app/tools.c:607 +msgid "Histogram" +msgstr "Histogram" + +#: app/histogram_tool.c:315 +msgid "Information on Channel:" +msgstr "" + +#: app/hue_saturation.c:260 #, fuzzy msgid "Hue-Saturation Options" msgstr "Farbton-SДttigung" -#: app/hue_saturation.c:348 +#: app/hue_saturation.c:298 #, fuzzy msgid "Hue-Saturation operates only on RGB color drawables." msgstr "Farbausgleich funktioniert nur bei Echtfarbbildern." -#: app/hue_saturation.c:416 +#: app/hue_saturation.c:367 #, fuzzy msgid "Master" msgstr "EinfЭgen" -#: app/hue_saturation.c:417 +#: app/hue_saturation.c:368 msgid "R" msgstr "" -#: app/hue_saturation.c:418 +#: app/hue_saturation.c:369 msgid "Y" msgstr "" -#: app/hue_saturation.c:419 +#: app/hue_saturation.c:370 msgid "G" msgstr "" -#: app/hue_saturation.c:420 +#: app/hue_saturation.c:371 msgid "C" msgstr "" -#: app/hue_saturation.c:421 +#: app/hue_saturation.c:372 msgid "B" msgstr "" -#: app/hue_saturation.c:422 +#: app/hue_saturation.c:373 msgid "M" msgstr "" -#: app/hue_saturation.c:442 app/tools.c:506 +#: app/hue_saturation.c:394 app/tools.c:532 msgid "Hue-Saturation" msgstr "Farbton-SДttigung" -#: app/hue_saturation.c:504 +#: app/hue_saturation.c:456 msgid "Hue / Lightness / Saturation Adjustments" msgstr "" #. Create the hue scale widget -#: app/hue_saturation.c:514 app/layers_dialog.c:285 app/paint_funcs.c:94 +#: app/hue_saturation.c:466 app/layers_dialog.c:221 app/paint_funcs.c:94 +#: app/tool_options.c:787 msgid "Hue" msgstr "Farbton" #. Create the lightness scale widget -#: app/hue_saturation.c:548 +#: app/hue_saturation.c:500 #, fuzzy msgid "Lightness" msgstr "Helligkeit" #. Create the saturation scale widget -#: app/hue_saturation.c:582 app/layers_dialog.c:286 app/paint_funcs.c:95 +#: app/hue_saturation.c:534 app/layers_dialog.c:223 app/paint_funcs.c:95 +#: app/tool_options.c:788 msgid "Saturation" msgstr "SДttigung" @@ -2460,7 +2315,7 @@ msgstr "" msgid "Resolution:" msgstr "AuflЖsung" -#: app/info_window.c:159 +#: app/info_window.c:159 app/tool_options.c:449 #, fuzzy msgid "Unit:" msgstr "Unbenannt" @@ -2510,44 +2365,44 @@ msgid "Indexed Color" msgstr "Indiziert" #. size slider -#: app/ink.c:292 +#: app/ink.c:294 msgid "Size:" msgstr "" #. sens slider -#: app/ink.c:310 app/ink.c:334 app/ink.c:364 +#: app/ink.c:312 app/ink.c:336 app/ink.c:366 msgid "Sensitivity:" msgstr "" #. tilt sens slider -#: app/ink.c:328 +#: app/ink.c:330 msgid "Tilt" msgstr "" #. velocity sens slider -#: app/ink.c:358 +#: app/ink.c:360 msgid "Speed" msgstr "" #. angle adjust slider -#: app/ink.c:388 +#: app/ink.c:390 #, fuzzy msgid "Angle" msgstr "Winkel:" -#: app/ink.c:394 +#: app/ink.c:396 #, fuzzy msgid "Adjust:" msgstr "Winkel:" #. Brush type radiobuttons -#: app/ink.c:417 +#: app/ink.c:419 #, fuzzy msgid "Type" msgstr "FЭllart: " #. Brush shape widget -#: app/ink.c:481 +#: app/ink.c:483 #, fuzzy msgid "Shape" msgstr "SchДrfen" @@ -2869,18 +2724,18 @@ msgid "" "Installation failed. Contact system administrator.\n" msgstr "" -#: app/interface.c:268 +#: app/interface.c:325 msgid "" "Foreground & background colors. The black and white squares reset colors. " "The arrows swap colors. Double click to select a color from a colorrequester." msgstr "" -#: app/interface.c:485 +#: app/interface.c:541 #, fuzzy msgid "The GIMP" msgstr "эber GIMP" -#: app/interface.c:1256 +#: app/interface.c:1388 msgid "GIMP Message" msgstr "" @@ -2904,7 +2759,8 @@ msgstr "Kan msgid "Channel Ops" msgstr "KanДle" -#: app/internal_procs.c:79 app/layers_dialog.c:287 app/paint_funcs.c:96 +#: app/internal_procs.c:79 app/layers_dialog.c:225 app/paint_funcs.c:96 +#: app/tool_options.c:789 msgid "Color" msgstr "Farbe" @@ -2962,7 +2818,7 @@ msgstr "Farbverlauf" msgid "Guide procedures" msgstr "Bildquelle" -#: app/internal_procs.c:118 app/preferences_dialog.c:1686 +#: app/internal_procs.c:118 app/preferences_dialog.c:1721 msgid "Interface" msgstr "OberflДche" @@ -2985,7 +2841,7 @@ msgstr "Palette" msgid "Parasite procedures" msgstr "Bearbeite Kurve" -#: app/internal_procs.c:133 app/layers_dialog.c:407 +#: app/internal_procs.c:133 app/lc_dialog.c:180 #, fuzzy msgid "Paths" msgstr "Muster" @@ -3055,23 +2911,23 @@ msgstr "Elastizit msgid "Convert to Bezier Curve" msgstr "Konvertiere in Bezierkurve" -#: app/iscissors.c:1779 +#: app/iscissors.c:1780 msgid "Boundary contains < 4 points! Cannot bezierify." msgstr "" -#: app/layer.c:246 +#: app/layer.c:248 msgid "Zero width or height layers not allowed." msgstr "" -#: app/layer.c:352 +#: app/layer.c:354 msgid "layer_copy: could not allocate new layer" msgstr "" -#: app/layer.c:429 +#: app/layer.c:431 msgid "layer_from_tiles: could not allocate new layer" msgstr "" -#: app/layer.c:484 +#: app/layer.c:486 #, c-format msgid "%s mask" msgstr "" @@ -3081,289 +2937,333 @@ msgstr "" msgid "Layer Select" msgstr "Bezierauswahl" -#: app/layers_dialog.c:232 app/layers_dialog.c:303 app/layers_dialog.c:3261 -msgid "New Layer" -msgstr "Neue Schicht" - -#: app/layers_dialog.c:234 -msgid "Raise Layer" -msgstr "ErhЖhe Schicht" - -#: app/layers_dialog.c:236 -msgid "Lower Layer" -msgstr "Erniedrige Schicht" - -#: app/layers_dialog.c:238 app/layers_dialog.c:306 -msgid "Duplicate Layer" -msgstr "Dupliziere Schicht" - -#: app/layers_dialog.c:240 app/layers_dialog.c:307 -msgid "Delete Layer" -msgstr "LЖsche Schicht" - -#: app/layers_dialog.c:242 app/resize.c:159 -msgid "Scale Layer" -msgstr "Skaliere Schicht" - -#: app/layers_dialog.c:244 app/resize.c:174 -msgid "Resize Layer" -msgstr "SchichtgrЖъe verДndern" - -#: app/layers_dialog.c:246 -msgid "Add Layer Mask" -msgstr "Schichtmaske hinzufЭgen" - -#: app/layers_dialog.c:248 -msgid "Apply Layer Mask" -msgstr "Schichtmaske anwenden" - -#: app/layers_dialog.c:250 app/layers_dialog.c:308 -msgid "Anchor Layer" -msgstr "Schicht verankern" - -#: app/layers_dialog.c:252 -msgid "Merge Visible Layers" -msgstr "Sichtbare Schichten vereinen" - -#: app/layers_dialog.c:254 -msgid "Merge Down" -msgstr "Nach unten verbinden" - -#: app/layers_dialog.c:256 -msgid "Flatten Image" -msgstr "Bild zusammenfЭgen" - -#: app/layers_dialog.c:258 -msgid "Alpha To Selection" -msgstr "Auswahl aus Alphakanal" - -#: app/layers_dialog.c:260 -msgid "Mask To Selection" -msgstr "Auswahl aus Maske" - -#: app/layers_dialog.c:262 -msgid "Add Alpha Channel" -msgstr "Neuer Alphakanal" - -#: app/layers_dialog.c:264 -msgid "Layer to Top" -msgstr "Schicht nach ganz oben" - -#: app/layers_dialog.c:266 -msgid "Layer to Bottom" -msgstr "Schicht nach ganz hinten" - -#: app/layers_dialog.c:274 app/paint_funcs.c:83 +#: app/layers_dialog.c:199 app/paint_funcs.c:83 app/tool_options.c:775 msgid "Normal" msgstr "Normal" -#: app/layers_dialog.c:275 app/paint_funcs.c:84 +#: app/layers_dialog.c:201 app/paint_funcs.c:84 app/tool_options.c:776 msgid "Dissolve" msgstr "Vernichtend" -#: app/layers_dialog.c:276 app/paint_funcs.c:86 +#: app/layers_dialog.c:203 app/paint_funcs.c:86 app/tool_options.c:778 msgid "Multiply (Burn)" msgstr "" -#: app/layers_dialog.c:277 app/paint_funcs.c:98 +#: app/layers_dialog.c:205 app/paint_funcs.c:98 app/tool_options.c:779 msgid "Divide (Dodge)" msgstr "" -#: app/layers_dialog.c:278 app/paint_funcs.c:87 +#: app/layers_dialog.c:207 app/paint_funcs.c:87 app/tool_options.c:780 msgid "Screen" msgstr "" -#: app/layers_dialog.c:279 app/paint_funcs.c:88 +#: app/layers_dialog.c:209 app/paint_funcs.c:88 app/tool_options.c:781 msgid "Overlay" msgstr "эberlagernd" -#: app/layers_dialog.c:280 app/paint_funcs.c:89 +#: app/layers_dialog.c:211 app/paint_funcs.c:89 app/tool_options.c:782 msgid "Difference" msgstr "Unterschied" -#: app/layers_dialog.c:281 app/paint_funcs.c:90 +#: app/layers_dialog.c:213 app/paint_funcs.c:90 app/tool_options.c:783 msgid "Addition" msgstr "Additiv" -#: app/layers_dialog.c:283 app/paint_funcs.c:92 +#: app/layers_dialog.c:217 app/paint_funcs.c:92 app/tool_options.c:785 msgid "Darken Only" msgstr "Nur Schwarz" -#: app/layers_dialog.c:284 app/paint_funcs.c:93 +#: app/layers_dialog.c:219 app/paint_funcs.c:93 app/tool_options.c:786 msgid "Lighten Only" msgstr "Nur Weiъ" -#: app/layers_dialog.c:304 +#: app/layers_dialog.c:246 app/layers_dialog.c:2944 +msgid "New Layer" +msgstr "Neue Schicht" + +#: app/layers_dialog.c:248 msgid "" "Raise Layer \n" " To Top" msgstr "" -#: app/layers_dialog.c:305 +#: app/layers_dialog.c:251 msgid "" "Lower Layer \n" " To Bottom" msgstr "" -#: app/layers_dialog.c:335 -msgid "Layers & Channels" -msgstr "Schichten und KanДle" +#: app/layers_dialog.c:254 +msgid "Duplicate Layer" +msgstr "Dupliziere Schicht" -#. The Auto-button -#: app/layers_dialog.c:373 -#, fuzzy -msgid "Auto" -msgstr "/Automatisch" +#: app/layers_dialog.c:256 +msgid "Anchor Layer" +msgstr "Schicht verankern" -#: app/layers_dialog.c:391 -msgid "Layers" -msgstr "Schichten" +#: app/layers_dialog.c:258 +msgid "Delete Layer" +msgstr "LЖsche Schicht" -#: app/layers_dialog.c:401 -msgid "Channels" -msgstr "KanДle" - -#: app/layers_dialog.c:744 +#: app/layers_dialog.c:321 #, fuzzy msgid "Keep Trans." msgstr "Behalte Transparenz" -#: app/layers_dialog.c:1489 +#: app/layers_dialog.c:947 app/menus.c:245 +#, fuzzy +msgid "/Stack/Previous Layer" +msgstr "/Schichten/Schicht nach vorne" + +#: app/layers_dialog.c:949 app/menus.c:246 +#, fuzzy +msgid "/Stack/Next Layer" +msgstr "/Schichten/Schicht nach vorne" + +#: app/layers_dialog.c:952 app/menus.c:247 +#, fuzzy +msgid "/Stack/Raise Layer" +msgstr "/Schichten/Schicht nach vorne" + +#: app/layers_dialog.c:957 app/menus.c:248 +#, fuzzy +msgid "/Stack/Lower Layer" +msgstr "/Schichten/Schicht nach hinten" + +#: app/layers_dialog.c:962 app/menus.c:249 +#, fuzzy +msgid "/Stack/Layer to Top" +msgstr "Schicht nach ganz oben" + +#: app/layers_dialog.c:964 app/menus.c:250 +#, fuzzy +msgid "/Stack/Layer to Bottom" +msgstr "Schicht nach ganz hinten" + +#: app/layers_dialog.c:967 app/menus.c:244 +#, fuzzy +msgid "/New Layer" +msgstr "Neue Schicht" + +#: app/layers_dialog.c:970 app/menus.c:251 +#, fuzzy +msgid "/Duplicate Layer" +msgstr "Dupliziere Schicht" + +#: app/layers_dialog.c:974 app/menus.c:252 +#, fuzzy +msgid "/Anchor Layer" +msgstr "Schicht verankern" + +#: app/layers_dialog.c:978 app/menus.c:253 +#, fuzzy +msgid "/Delete Layer" +msgstr "LЖsche Schicht" + +#: app/layers_dialog.c:981 app/menus.c:255 +#, fuzzy +msgid "/Scale Layer" +msgstr "Skaliere Schicht" + +#: app/layers_dialog.c:982 app/menus.c:256 +#, fuzzy +msgid "/Resize Layer" +msgstr "SchichtgrЖъe verДndern" + +#: app/layers_dialog.c:984 app/menus.c:258 +#, fuzzy +msgid "/Merge Visible Layers" +msgstr "Sichtbare Schichten vereinen" + +#: app/layers_dialog.c:986 app/menus.c:259 +#, fuzzy +msgid "/Merge Down" +msgstr "Nach unten verbinden" + +#: app/layers_dialog.c:987 app/menus.c:260 +#, fuzzy +msgid "/Flatten Image" +msgstr "Bild zusammenfЭgen" + +#: app/layers_dialog.c:989 app/menus.c:262 +#, fuzzy +msgid "/Add Layer Mask" +msgstr "Schichtmaske hinzufЭgen" + +#: app/layers_dialog.c:991 app/menus.c:263 +#, fuzzy +msgid "/Apply Layer Mask" +msgstr "Schichtmaske anwenden" + +#: app/layers_dialog.c:993 app/menus.c:264 +#, fuzzy +msgid "/Alpha to Selection" +msgstr "Auswahl aus Alphakanal" + +#: app/layers_dialog.c:995 app/menus.c:265 +#, fuzzy +msgid "/Mask to Selection" +msgstr "Auswahl aus Maske" + +#: app/layers_dialog.c:997 app/menus.c:266 +#, fuzzy +msgid "/Add Alpha Channel" +msgstr "Neuer Alphakanal" + +#: app/layers_dialog.c:1185 msgid "Unknown layer mode" msgstr "Unbekannter Schichtmodus" -#: app/layers_dialog.c:2206 app/layers_dialog.c:3028 app/layers_dialog.c:3471 +#: app/layers_dialog.c:1890 app/layers_dialog.c:2712 app/layers_dialog.c:3157 msgid "Floating Selection" msgstr "Flieъende Auswahl" -#: app/layers_dialog.c:3149 +#: app/layers_dialog.c:2832 msgid "new_layer_query_ok_callback: could not allocate new layer" msgstr "" -#: app/layers_dialog.c:3231 +#: app/layers_dialog.c:2914 msgid "New Layer Options" msgstr "Einstellungen fЭr neue Schicht" #. the name label and entry -#: app/layers_dialog.c:3251 +#: app/layers_dialog.c:2934 #, fuzzy msgid "Layer Name:" msgstr "Schichtname:" #. the size labels -#: app/layers_dialog.c:3265 +#: app/layers_dialog.c:2948 #, fuzzy msgid "Layer Width:" msgstr "Schichtbreite: " #. the radio frame and box -#: app/layers_dialog.c:3324 +#: app/layers_dialog.c:3007 msgid "Layer Fill Type" msgstr "SchichtfЭllart" -#: app/layers_dialog.c:3447 +#: app/layers_dialog.c:3131 msgid "Edit Layer Attributes" msgstr "VerДndere Schichtmerkmale" -#: app/layers_dialog.c:3464 +#: app/layers_dialog.c:3149 msgid "Layer name: " msgstr "Schichtname: " -#: app/layers_dialog.c:3587 +#: app/layers_dialog.c:3275 msgid "White (Full Opacity)" msgstr "Weiъ (volle Deckung)" -#: app/layers_dialog.c:3588 +#: app/layers_dialog.c:3276 msgid "Black (Full Transparency)" msgstr "Schwarz (volle Transparenz)" -#: app/layers_dialog.c:3589 +#: app/layers_dialog.c:3277 msgid "Layer's Alpha Channel" msgstr "Alphakanal der Schicht" -#: app/layers_dialog.c:3606 +#: app/layers_dialog.c:3294 msgid "Add Mask Options" msgstr "Maske hinzufЭgen Einstellungen" #. the name entry hbox, label and entry -#: app/layers_dialog.c:3621 +#: app/layers_dialog.c:3309 msgid "Initialize Layer Mask To:" msgstr "" -#: app/layers_dialog.c:3720 +#: app/layers_dialog.c:3408 msgid "Apply" msgstr "Anwenden" -#: app/layers_dialog.c:3721 +#: app/layers_dialog.c:3409 msgid "Discard" msgstr "Verwerfen" -#: app/layers_dialog.c:3735 +#: app/layers_dialog.c:3423 msgid "Layer Mask Options" msgstr "Schichtmaske Einstellungen" #. the name entry hbox, label and entry -#: app/layers_dialog.c:3751 +#: app/layers_dialog.c:3439 msgid "Apply layer mask?" msgstr "Schichtmaske anwenden?" -#: app/layers_dialog.c:3811 app/layers_dialog.c:3909 +#: app/layers_dialog.c:3499 app/layers_dialog.c:3597 msgid "Invalid width or height. Both must be positive." msgstr "" -#: app/layers_dialog.c:4062 +#: app/layers_dialog.c:3751 msgid "Expanded as necessary" msgstr "Nach Bedarf erweitern" -#: app/layers_dialog.c:4063 +#: app/layers_dialog.c:3752 msgid "Clipped to image" msgstr "Auf Bild beschnitten" -#: app/layers_dialog.c:4064 +#: app/layers_dialog.c:3753 msgid "Clipped to bottom layer" msgstr "Auf oberste Schicht beschnitten" -#: app/layers_dialog.c:4082 +#: app/layers_dialog.c:3771 msgid "Layer Merge Options" msgstr "Schichten vereinen Einstellungen" -#: app/layers_dialog.c:4098 +#: app/layers_dialog.c:3787 msgid "Final, merged layer should be:" msgstr "" -#: app/layers_dialog.c:4100 +#: app/layers_dialog.c:3789 msgid "Final, anchored layer should be:" msgstr "" -#: app/levels.c:239 +#: app/lc_dialog.c:111 +msgid "Layers & Channels" +msgstr "Schichten und KanДle" + +#. The Auto-button +#: app/lc_dialog.c:150 +#, fuzzy +msgid "Auto" +msgstr "/Automatisch" + +#: app/lc_dialog.c:170 +msgid "Layers" +msgstr "Schichten" + +#: app/lc_dialog.c:175 +msgid "Channels" +msgstr "KanДle" + +#: app/levels.c:197 #, fuzzy msgid "Levels Options" msgstr "Kurveneinstellungen" -#: app/levels.c:296 +#: app/levels.c:245 msgid "Levels for indexed drawables cannot be adjusted." msgstr "" -#: app/levels.c:372 +#: app/levels.c:334 #, fuzzy msgid "Auto Levels" msgstr "Werte" -#: app/levels.c:403 app/tools.c:566 +#: app/levels.c:351 app/tools.c:592 msgid "Levels" msgstr "Werte" -#: app/levels.c:418 +#: app/levels.c:366 #, fuzzy msgid "Modify Levels for Channel: " msgstr "VerДndere Kurven fЭr Kanal: " -#: app/levels.c:434 +#: app/levels.c:382 #, fuzzy msgid "Input Levels: " msgstr "Farbwerte: " -#: app/levels.c:522 +#: app/levels.c:470 #, fuzzy msgid "Output Levels: " msgstr "Farbwerte: " @@ -3377,46 +3277,46 @@ msgstr " msgid "Allow Window Resizing" msgstr "" -#: app/main.c:279 +#: app/main.c:287 msgid "GIMP version" msgstr "GIMP Version" -#: app/main.c:283 +#: app/main.c:291 #, fuzzy, c-format msgid "Usage: %s [option ...] [files ...]\n" msgstr "Benutzung: %s [Option ...] [Datei ...]\n" -#: app/main.c:284 +#: app/main.c:292 msgid "Valid options are:\n" msgstr "GЭltige MЖglichkeiten sind:\n" -#: app/main.c:285 +#: app/main.c:293 msgid " -h --help Output this help.\n" msgstr " -h --help Gibt diese Hilfe aus.\n" -#: app/main.c:286 +#: app/main.c:294 msgid " -v --version Output version info.\n" msgstr " -v --version Gibt Versionsinformationen aus.\n" -#: app/main.c:287 +#: app/main.c:295 msgid " -b --batch Run in batch mode.\n" msgstr " -b --batch Startet im Stapelmodus.\n" -#: app/main.c:288 +#: app/main.c:296 msgid " -g --gimprc Use an alternate gimprc file.\n" msgstr " -g --gimprc Benutzt ein alternatives Profil.\n" -#: app/main.c:289 +#: app/main.c:297 msgid " -n --no-interface Run without a user interface.\n" msgstr " -n --no-interface Startet ohne OberflДche.\n" -#: app/main.c:290 +#: app/main.c:298 msgid " -r --restore-session Try to restore saved session.\n" msgstr "" " -r --restore-session Versucht eine abgelegte Sitzung " "wiederherzustellen.\n" -#: app/main.c:291 +#: app/main.c:299 msgid "" " --no-data Do not load patterns, gradients, palettes, " "brushes.\n" @@ -3424,19 +3324,19 @@ msgstr "" " --no-data LДdt keine Muster, FarbverlДufe, Farben und " "Pinsel.\n" -#: app/main.c:292 +#: app/main.c:300 msgid " --verbose Show startup messages.\n" msgstr " --verbose Zeigt Startmeldungen.\n" -#: app/main.c:293 +#: app/main.c:301 msgid " --no-splash Do not show the startup window.\n" msgstr " --no-splash Verbirgt Startfenster.\n" -#: app/main.c:294 +#: app/main.c:302 msgid " --no-splash-image Do not add an image to the startup window.\n" msgstr " --no-splash-image LДdt kein Bild ins Startfenster.\n" -#: app/main.c:295 +#: app/main.c:303 msgid "" " --no-shm Do not use shared memory between GIMP and its " "plugins.\n" @@ -3444,11 +3344,11 @@ msgstr "" " --no-shm Keiner geteilter Speicher zwischen GIMP und " "Plug-ins.\n" -#: app/main.c:296 +#: app/main.c:304 msgid " --no-xshm Do not use the X Shared Memory extension.\n" msgstr " --no-xshm Benutzt nicht die Xshm Erweiterung.\n" -#: app/main.c:297 +#: app/main.c:305 msgid "" " --console-messages Display warnings to console instead of a dialog " "box.\n" @@ -3456,11 +3356,11 @@ msgstr "" " --console-messages Warnungen in einer Konsole statt in einem " "Dialog.\n" -#: app/main.c:298 +#: app/main.c:306 msgid " --debug-handlers Enable debugging signal handlers.\n" msgstr " --debug-handlers Aktiviert Fehlersuchroutinen.\n" -#: app/main.c:299 +#: app/main.c:307 msgid "" " --display Use the designated X display.\n" "\n" @@ -3468,664 +3368,826 @@ msgstr "" " --display Benutzt die angegebene X Anzeige.\n" "\n" -#: app/main.c:300 +#: app/main.c:308 msgid " --system-gimprc Use an alternate system gimprc file.\n" msgstr " --system-gimprc Benutzt alternatives Systemprofil.\n" -#: app/main.c:412 +#: app/main.c:420 msgid "sighup caught" msgstr "sighup erhalten" -#: app/main.c:417 +#: app/main.c:425 msgid "sigint caught" msgstr "sigint erhalten" -#: app/main.c:422 +#: app/main.c:430 msgid "sigquit caught" msgstr "sigquit erhalten" -#: app/main.c:427 +#: app/main.c:435 msgid "sigabrt caught" msgstr "sigabrt erhalten" -#: app/main.c:432 +#: app/main.c:440 msgid "sigbus caught" msgstr "sigbus erhalten" -#: app/main.c:437 +#: app/main.c:445 msgid "sigsegv caught" msgstr "sigsegv erhalten" -#: app/main.c:442 +#: app/main.c:450 msgid "sigpipe caught" msgstr "sigpipe erhalten" -#: app/main.c:447 +#: app/main.c:455 msgid "sigterm caught" msgstr "sigterm erhalten" -#: app/main.c:452 +#: app/main.c:460 msgid "sigfpe caught" msgstr "sigfpe erhalten" -#: app/main.c:456 +#: app/main.c:464 msgid "unknown signal" msgstr "unbekanntes Signal" -#: app/menus.c:43 +#: app/menus.c:46 #, fuzzy msgid "/File/MRU00 " msgstr "/Datei/MRU%02d" -#: app/menus.c:53 app/menus.c:80 +#: app/menus.c:56 app/menus.c:88 +#, fuzzy +msgid "/File/tearoff1" +msgstr "/Datei/Sichern" + +#: app/menus.c:57 app/menus.c:89 #, fuzzy msgid "/File/New" msgstr "/Datei/Neu" -#: app/menus.c:54 app/menus.c:81 -#, fuzzy -msgid "/File/Open" -msgstr "/Datei/жffnen" - -#: app/menus.c:55 +#: app/menus.c:59 #, fuzzy msgid "/File/About..." msgstr "/Datei/эber..." -#: app/menus.c:56 app/menus.c:85 +#: app/menus.c:60 app/menus.c:94 #, fuzzy msgid "/File/Preferences..." msgstr "/Datei/Einstellungen..." -#: app/menus.c:57 +#: app/menus.c:61 #, fuzzy msgid "/File/Tip of the day" msgstr "/Datei/Tip des Tages" -#: app/menus.c:58 +#: app/menus.c:63 #, fuzzy msgid "/File/Dialogs/Brushes..." msgstr "/Datei/Dialoge/Pinsel..." -#: app/menus.c:59 +#: app/menus.c:64 #, fuzzy msgid "/File/Dialogs/Patterns..." msgstr "/Datei/Dialoge/Muster..." -#: app/menus.c:60 +#: app/menus.c:65 #, fuzzy msgid "/File/Dialogs/Palette..." msgstr "/Datei/Dialoge/Farben..." -#: app/menus.c:61 +#: app/menus.c:66 #, fuzzy msgid "/File/Dialogs/Gradient..." msgstr "/Datei/Dialoge/FarbverlДufe..." -#: app/menus.c:62 +#: app/menus.c:67 #, fuzzy msgid "/File/Dialogs/Layers & Channels..." msgstr "/Datei/Dialoge/Schichten und KanДle..." -#: app/menus.c:63 +#: app/menus.c:68 #, fuzzy msgid "/File/Dialogs/Tool Options..." msgstr "/Datei/Dialoge/Werkzeugeinstellungen..." -#: app/menus.c:64 +#: app/menus.c:69 #, fuzzy msgid "/File/Dialogs/Input Devices..." msgstr "/Datei/Dialoge/EingabegerДte..." -#: app/menus.c:65 +#: app/menus.c:70 #, fuzzy msgid "/File/Dialogs/Device Status..." msgstr "/Datei/Dialoge/GerДtestatus..." -#: app/menus.c:66 +#: app/menus.c:71 #, fuzzy msgid "/File/Dialogs/Document Index..." msgstr "/Datei/Dialoge/Dokumentenindex..." -#: app/menus.c:67 +#: app/menus.c:72 #, fuzzy msgid "/File/Dialogs/Error Console..." msgstr "/Datei/Dialoge/Fehlerkonsole..." -#: app/menus.c:68 +#: app/menus.c:74 +msgid "/Xtns/tearoff1" +msgstr "" + +#: app/menus.c:75 #, fuzzy msgid "/Xtns/Module Browser" msgstr "/Datei/Dialoge/Pinsel..." -#: app/menus.c:69 app/menus.c:70 app/menus.c:75 app/menus.c:86 +#: app/menus.c:76 app/menus.c:77 app/menus.c:82 app/menus.c:95 msgid "/File/---" msgstr "/Datei/---" -#: app/menus.c:76 app/menus.c:89 -#, fuzzy -msgid "/File/Quit" -msgstr "/Datei/Beenden" +#: app/menus.c:87 +msgid "/tearoff1" +msgstr "" -#: app/menus.c:82 -#, fuzzy -msgid "/File/Save" -msgstr "/Datei/Sichern" - -#: app/menus.c:83 -#, fuzzy -msgid "/File/Save as" -msgstr "/Datei/Sichern unter..." - -#: app/menus.c:84 +#: app/menus.c:93 #, fuzzy msgid "/File/Revert" msgstr "/Datei/Sichern" -#: app/menus.c:88 -#, fuzzy -msgid "/File/Close" -msgstr "/Datei/Schlieъen" - -#: app/menus.c:90 +#: app/menus.c:99 #, fuzzy msgid "/File/---moved" msgstr "/Datei/---" -#: app/menus.c:92 +#: app/menus.c:101 +#, fuzzy +msgid "/Edit/tearoff1" +msgstr "/Bearbeiten/LЖschen" + +#: app/menus.c:102 #, fuzzy msgid "/Edit/Cut" msgstr "/Bearbeiten/Ausschneiden" -#: app/menus.c:93 +#: app/menus.c:103 #, fuzzy msgid "/Edit/Copy" msgstr "/Bearbeiten/Kopieren" -#: app/menus.c:94 +#: app/menus.c:104 #, fuzzy msgid "/Edit/Paste" msgstr "/Bearbeiten/EinfЭgen" -#: app/menus.c:95 +#: app/menus.c:105 #, fuzzy msgid "/Edit/Paste Into" msgstr "/Bearbeiten/EinfЭgen in..." -#: app/menus.c:96 +#: app/menus.c:106 +#, fuzzy +msgid "/Edit/Paste As New" +msgstr "/Bearbeiten/Mit Namen einfЭgen" + +#: app/menus.c:107 app/menus.c:113 app/menus.c:117 +msgid "/Edit/---" +msgstr "/Bearbeiten/---" + +#: app/menus.c:108 #, fuzzy msgid "/Edit/Clear" msgstr "/Bearbeiten/LЖschen" -#: app/menus.c:97 +#: app/menus.c:109 #, fuzzy msgid "/Edit/Fill" msgstr "/Bearbeiten/FЭllen" -#: app/menus.c:98 +#: app/menus.c:110 #, fuzzy msgid "/Edit/Stroke" msgstr "/Bearbeiten/Nachfahren" -#: app/menus.c:99 +#: app/menus.c:111 #, fuzzy msgid "/Edit/Undo" msgstr "/Bearbeiten/RЭckgДngig" -#: app/menus.c:100 +#: app/menus.c:112 #, fuzzy msgid "/Edit/Redo" msgstr "/Bearbeiten/Wiederholen" -#: app/menus.c:101 app/menus.c:105 -msgid "/Edit/---" -msgstr "/Bearbeiten/---" - -#: app/menus.c:102 +#: app/menus.c:114 #, fuzzy msgid "/Edit/Cut Named" msgstr "/Bearbeiten/Mit Namen ausschneiden" -#: app/menus.c:103 +#: app/menus.c:115 #, fuzzy msgid "/Edit/Copy Named" msgstr "/Bearbeiten/Mit Namen kopieren" -#: app/menus.c:104 +#: app/menus.c:116 #, fuzzy msgid "/Edit/Paste Named" msgstr "/Bearbeiten/Mit Namen einfЭgen" -#: app/menus.c:107 +#: app/menus.c:119 #, fuzzy -msgid "/Select/Toggle" -msgstr "/Auswahl/Umschalten" +msgid "/Select/tearoff1" +msgstr "/Auswahl/VergrЖъern" -#: app/menus.c:108 +#: app/menus.c:120 #, fuzzy msgid "/Select/Invert" msgstr "/Auswahl/Invertieren" -#: app/menus.c:109 +#: app/menus.c:121 #, fuzzy msgid "/Select/All" msgstr "/Auswahl/Alles" -#: app/menus.c:110 +#: app/menus.c:122 #, fuzzy msgid "/Select/None" msgstr "/Auswahl/Nichts" -#: app/menus.c:111 +#: app/menus.c:123 #, fuzzy msgid "/Select/Float" msgstr "/Auswahl/Flieъend" -#: app/menus.c:112 +#: app/menus.c:124 #, fuzzy msgid "/Select/Sharpen" msgstr "/Auswahl/SchДrfen" -#: app/menus.c:113 +#: app/menus.c:125 #, fuzzy msgid "/Select/Border" msgstr "/Auswahl/Rand" -#: app/menus.c:114 +#: app/menus.c:126 #, fuzzy msgid "/Select/Feather" msgstr "/Auswahl/Runden" -#: app/menus.c:115 +#: app/menus.c:127 #, fuzzy msgid "/Select/Grow" msgstr "/Auswahl/VergrЖъern" -#: app/menus.c:116 +#: app/menus.c:128 #, fuzzy msgid "/Select/Shrink" msgstr "/Auswahl/Schrumpfen" -#: app/menus.c:117 +#: app/menus.c:129 #, fuzzy msgid "/Select/Save To Channel" msgstr "/Auswahl/In Kanal sichern" -#: app/menus.c:119 +#: app/menus.c:131 +msgid "/View/tearoff1" +msgstr "" + +#: app/menus.c:132 #, fuzzy msgid "/View/Zoom In" msgstr "/Ansicht/Hineinzoomen" -#: app/menus.c:120 +#: app/menus.c:133 #, fuzzy msgid "/View/Zoom Out" msgstr "/Ansicht/Herauszoomen" -#: app/menus.c:121 +#: app/menus.c:134 #, fuzzy msgid "/View/Zoom/16:1" msgstr "/Ansicht/Zoom/16:!" -#: app/menus.c:122 +#: app/menus.c:135 #, fuzzy msgid "/View/Zoom/8:1" msgstr "/Ansicht/Zoom/8:1" -#: app/menus.c:123 +#: app/menus.c:136 #, fuzzy msgid "/View/Zoom/4:1" msgstr "/Ansicht/Zoom/4:1" -#: app/menus.c:124 +#: app/menus.c:137 #, fuzzy msgid "/View/Zoom/2:1" msgstr "/Ansicht/Zoom/2:1" -#: app/menus.c:125 +#: app/menus.c:138 #, fuzzy msgid "/View/Zoom/1:1" msgstr "/Ansicht/Zoom/1:1" -#: app/menus.c:126 +#: app/menus.c:139 msgid "/View/Zoom/1:2" msgstr "/Ansicht/Zoom/1:2" -#: app/menus.c:127 +#: app/menus.c:140 msgid "/View/Zoom/1:4" msgstr "/Ansicht/Zoom/1:4" -#: app/menus.c:128 +#: app/menus.c:141 msgid "/View/Zoom/1:8" msgstr "/Ansicht/Zoom/1:8" -#: app/menus.c:129 +#: app/menus.c:142 msgid "/View/Zoom/1:16" msgstr "/Ansicht/Zoom/1:16" -#: app/menus.c:130 +#: app/menus.c:143 #, fuzzy msgid "/View/Dot for dot" msgstr "/Ansicht/Punkt fЭr Punkt" -#: app/menus.c:131 +#: app/menus.c:144 #, fuzzy msgid "/View/Window Info..." msgstr "/Ansicht/Fensterinformationen..." -#: app/menus.c:132 +#: app/menus.c:146 app/menus.c:152 +msgid "/View/---" +msgstr "/Ansicht/---" + +#: app/menus.c:147 +#, fuzzy +msgid "/View/Toggle Selection" +msgstr "/Ansicht/Lineale an/aus" + +#: app/menus.c:148 #, fuzzy msgid "/View/Toggle Rulers" msgstr "/Ansicht/Lineale an/aus" -#: app/menus.c:133 +#: app/menus.c:149 #, fuzzy msgid "/View/Toggle Statusbar" msgstr "/Ansicht/Statusleiste an/aus" -#: app/menus.c:134 +#: app/menus.c:150 #, fuzzy msgid "/View/Toggle Guides" msgstr "/Ansicht/Hilfslinien an/aus" -#: app/menus.c:135 +#: app/menus.c:151 #, fuzzy msgid "/View/Snap To Guides" msgstr "/Ansicht/magnetische Hilfslinien an/aus" -#: app/menus.c:136 -msgid "/View/---" -msgstr "/Ansicht/---" - -#: app/menus.c:137 +#: app/menus.c:154 #, fuzzy msgid "/View/New View" msgstr "/Ansicht/Neues Fenster" -#: app/menus.c:138 +#: app/menus.c:155 #, fuzzy msgid "/View/Shrink Wrap" msgstr "/Ansicht/Sicht verkleinern" -#: app/menus.c:140 +#: app/menus.c:157 +#, fuzzy +msgid "/Image/tearoff1" +msgstr "/Bearbeiten/LЖschen" + +#: app/menus.c:158 +#, fuzzy +msgid "/Image/Colors/tearoff1" +msgstr "/Bild/Farben/Invertieren" + +#: app/menus.c:159 #, fuzzy msgid "/Image/Colors/Equalize" msgstr "/Bild/Farben/Angleichen" -#: app/menus.c:141 +#: app/menus.c:160 #, fuzzy msgid "/Image/Colors/Invert" msgstr "/Bild/Farben/Invertieren" -#: app/menus.c:142 +#: app/menus.c:161 msgid "/Image/Colors/---" msgstr "/Bild/Farben/---" -#: app/menus.c:143 +#: app/menus.c:162 #, fuzzy msgid "/Image/Colors/Desaturate" msgstr "/Bild/Farben/SДttigung vermindern" -#: app/menus.c:144 +#: app/menus.c:163 +#, fuzzy +msgid "/Image/Channel Ops/tearoff1" +msgstr "/Bild/Kanal/эberstand" + +#: app/menus.c:164 #, fuzzy msgid "/Image/Channel Ops/Duplicate" msgstr "/Bild/Kanal/Duplizieren" -#: app/menus.c:145 +#: app/menus.c:165 #, fuzzy msgid "/Image/Channel Ops/Offset" msgstr "/Bild/Kanal/эberstand" -#: app/menus.c:146 +#: app/menus.c:166 +#, fuzzy +msgid "/Image/Alpha/tearoff1" +msgstr "/Bild/Skalieren" + +#: app/menus.c:167 #, fuzzy msgid "/Image/Alpha/Add Alpha Channel" msgstr "/Bild/Alpha/Erstelle Alphakanal" -#: app/menus.c:148 app/menus.c:152 app/menus.c:155 +#: app/menus.c:169 app/menus.c:173 app/menus.c:176 msgid "/Image/---" msgstr "/Bild/---" -#: app/menus.c:149 +#: app/menus.c:170 #, fuzzy msgid "/Image/RGB" msgstr "/Bild/RGB" -#: app/menus.c:150 +#: app/menus.c:171 #, fuzzy msgid "/Image/Grayscale" msgstr "/Bild/Graustufen" -#: app/menus.c:151 +#: app/menus.c:172 #, fuzzy msgid "/Image/Indexed" msgstr "/Bild/Indiziert" -#: app/menus.c:153 +#: app/menus.c:174 #, fuzzy msgid "/Image/Resize" msgstr "/Bild/GrЖъe verДndern" -#: app/menus.c:154 +#: app/menus.c:175 #, fuzzy msgid "/Image/Scale" msgstr "/Bild/Skalieren" -#: app/menus.c:157 +#: app/menus.c:178 +#, fuzzy +msgid "/Layers/tearoff1" +msgstr "/Schichten/Schicht nach vorne" + +#: app/menus.c:179 #, fuzzy msgid "/Layers/Layers & Channels..." msgstr "/Schichten/Schichten und KanДle..." -#: app/menus.c:158 +#: app/menus.c:180 +#, fuzzy +msgid "/Layers/Stack/tearoff1" +msgstr "/Schichten/Schicht nach vorne" + +#: app/menus.c:181 #, fuzzy msgid "/Layers/Stack/Previous Layer" msgstr "/Schichten/Schicht nach vorne" -#: app/menus.c:159 +#: app/menus.c:182 #, fuzzy msgid "/Layers/Stack/Next Layer" msgstr "/Schichten/Schicht nach vorne" -#: app/menus.c:160 +#: app/menus.c:183 #, fuzzy msgid "/Layers/Stack/Raise Layer" msgstr "/Schichten/Schicht nach vorne" -#: app/menus.c:161 +#: app/menus.c:184 #, fuzzy msgid "/Layers/Stack/Lower Layer" msgstr "/Schichten/Schicht nach hinten" -#: app/menus.c:162 +#: app/menus.c:185 #, fuzzy msgid "/Layers/Stack/Layer to Top" msgstr "Schicht nach ganz oben" -#: app/menus.c:163 +#: app/menus.c:186 #, fuzzy msgid "/Layers/Stack/Layer to Bottom" msgstr "Schicht nach ganz hinten" -#: app/menus.c:164 +#: app/menus.c:187 app/menus.c:194 #, fuzzy msgid "/Layers/---" msgstr "Schichten" -#: app/menus.c:165 +#: app/menus.c:188 #, fuzzy msgid "/Layers/Anchor Layer" msgstr "/Schichten/Schicht verankern" -#: app/menus.c:166 +#: app/menus.c:189 #, fuzzy msgid "/Layers/Merge Visible Layers" msgstr "/Schichten/Sichtbare Schichten vereinen" -#: app/menus.c:167 +#: app/menus.c:190 #, fuzzy msgid "/Layers/Flatten Image" msgstr "/Schichten/Bild zusammenfЭgen" -#: app/menus.c:168 +#: app/menus.c:191 #, fuzzy msgid "/Layers/Alpha To Selection" msgstr "/Schichten/Auswahl aus Alphakanal" -#: app/menus.c:169 +#: app/menus.c:192 #, fuzzy msgid "/Layers/Mask To Selection" msgstr "/Schichten/Auswahl aus Maske" -#: app/menus.c:170 +#: app/menus.c:193 #, fuzzy msgid "/Layers/Add Alpha Channel" msgstr "/Schichten/Neuer Alphakanal" -#. these are built on the fly -#. -#. { N_("/Tools/Ellipse Select"), "E", tools_select_cmd_callback, ELLIPSE_SELECT }, -#. { N_("/Tools/Free Select"), "F", tools_select_cmd_callback, FREE_SELECT }, -#. { N_("/Tools/Fuzzy Select"), "Z", tools_select_cmd_callback, FUZZY_SELECT }, -#. { N_("/Tools/Bezier Select"), "B", tools_select_cmd_callback, BEZIER_SELECT }, -#. { N_("/Tools/Intelligent Scissors"), "I", tools_select_cmd_callback, ISCISSORS }, -#. { N_("/Tools/Move"), "M", tools_select_cmd_callback, MOVE }, -#. { N_("/Tools/Magnify"), "M", tools_select_cmd_callback, MAGNIFY }, -#. { N_("/Tools/Crop"), "C", tools_select_cmd_callback, CROP }, -#. { N_("/Tools/Transform"), "T", tools_select_cmd_callback, ROTATE }, -#. { N_("/Tools/Flip"), "F", tools_select_cmd_callback, FLIP }, -#. { N_("/Tools/Text"), "T", tools_select_cmd_callback, TEXT }, -#. { N_("/Tools/Color Picker"), "O", tools_select_cmd_callback, COLOR_PICKER }, -#. { N_("/Tools/Bucket Fill"), "B", tools_select_cmd_callback, BUCKET_FILL }, -#. { N_("/Tools/Blend"), "L", tools_select_cmd_callback, BLEND }, -#. { N_("/Tools/Paintbrush"), "P", tools_select_cmd_callback, PAINTBRUSH }, -#. { N_("/Tools/Pencil"), "P", tools_select_cmd_callback, PENCIL }, -#. { N_("/Tools/Eraser"), "E", tools_select_cmd_callback, ERASER }, -#. { N_("/Tools/Airbrush"), "A", tools_select_cmd_callback, AIRBRUSH }, -#. { N_("/Tools/Clone"), "C", tools_select_cmd_callback, CLONE }, -#. { N_("/Tools/Convolve"), "V", tools_select_cmd_callback, CONVOLVE }, -#. { N_("/Tools/Ink"), "K", tools_select_cmd_callback, INK }, -#. { N_("/Tools/Default Colors"), "D", tools_default_colors_cmd_callback, 0 }, -#. { N_("/Tools/Toolbox"), NULL, toolbox_raise_callback, 0 }, -#. { N_("/Tools/---"), NULL, NULL, 0, "" }, -#. { N_("/Tools/Default Colors"), "D", tools_default_colors_cmd_callback, 0 }, -#. { N_("/Tools/Swap Colors"), "X", tools_swap_colors_cmd_callback, 0 }, -#. -#: app/menus.c:203 +#: app/menus.c:196 +#, fuzzy +msgid "/Tools/tearoff1" +msgstr "/Werkzeuge/Radierer" + +#: app/menus.c:197 #, fuzzy msgid "/Tools/Toolbox" msgstr "/Werkzeuge/Werkzeugkasten" -#: app/menus.c:204 +#: app/menus.c:198 #, fuzzy msgid "/Tools/Default Colors" msgstr "/Werkzeuge/Stadardfarben" -#: app/menus.c:205 +#: app/menus.c:199 #, fuzzy msgid "/Tools/Swap Colors" msgstr "/Werkzeuge/Tausche Farben" -#: app/menus.c:206 +#: app/menus.c:200 msgid "/Tools/---" msgstr "/Werkzeuge/---" -#: app/menus.c:208 +#. the tool entries themselves are built on the fly +#: app/menus.c:204 +#, fuzzy +msgid "/Filters/tearoff1" +msgstr "/Filter/---" + +#: app/menus.c:205 app/plug_in.c:1285 #, fuzzy msgid "/Filters/Repeat last" msgstr "/Filter/Wiederhole letzten Vorgang" -#: app/menus.c:209 +#: app/menus.c:206 app/plug_in.c:1286 #, fuzzy msgid "/Filters/Re-show last" msgstr "/Filter/Zeige letzten Vorgang nochmal" -#: app/menus.c:210 +#: app/menus.c:207 msgid "/Filters/---" msgstr "/Filter/---" -#: app/menus.c:212 +#: app/menus.c:209 +#, fuzzy +msgid "/Script-Fu/tearoff1" +msgstr "/Script-Fu/" + +#: app/menus.c:210 msgid "/Script-Fu/" msgstr "/Script-Fu/" -#: app/menus.c:214 +#: app/menus.c:212 +#, fuzzy +msgid "/Dialogs/tearoff1" +msgstr "/Dialoge/Muster..." + +#: app/menus.c:213 #, fuzzy msgid "/Dialogs/Brushes..." msgstr "/Dialoge/Pinsel..." -#: app/menus.c:215 +#: app/menus.c:214 #, fuzzy msgid "/Dialogs/Patterns..." msgstr "/Dialoge/Muster..." -#: app/menus.c:216 +#: app/menus.c:215 #, fuzzy msgid "/Dialogs/Palette..." msgstr "/Dialoge/Farben...." -#: app/menus.c:217 +#: app/menus.c:216 #, fuzzy msgid "/Dialogs/Gradient..." msgstr "/Dialoge/FarbverlДufe..." -#: app/menus.c:218 +#: app/menus.c:217 #, fuzzy msgid "/Dialogs/Layers & Channels..." msgstr "/Dialoge/Schichten und KanДle..." -#: app/menus.c:219 +#: app/menus.c:218 #, fuzzy msgid "/Dialogs/Indexed Palette..." msgstr "/Dialoge/Indizierte Palette..." -#: app/menus.c:220 +#: app/menus.c:219 #, fuzzy msgid "/Dialogs/Tool Options..." msgstr "/Dialoge/Werkzeugeinstellungen..." -#: app/menus.c:221 +#: app/menus.c:220 #, fuzzy msgid "/Dialogs/Input Devices..." msgstr "/Dialoge/EingabegerДte..." -#: app/menus.c:222 +#: app/menus.c:221 #, fuzzy msgid "/Dialogs/Device Status..." msgstr "/Dialoge/GerДtestatus..." -#: app/menus.c:229 +#: app/menus.c:228 msgid "/Automatic" msgstr "/Automatisch" -#: app/menus.c:237 +#: app/menus.c:236 msgid "/By extension" msgstr "/Nach Endung" -#: app/menus.c:436 +#: app/menus.c:290 +#, fuzzy +msgid "/New Path" +msgstr "Neue Farbepalette" + +#: app/menus.c:291 +#, fuzzy +msgid "/Duplicate Path" +msgstr "Dupliziere Schicht" + +#: app/menus.c:292 +#, fuzzy +msgid "/Path to Selection" +msgstr "LЖsche Auswahl" + +#: app/menus.c:293 +msgid "/Stroke Path" +msgstr "" + +#: app/menus.c:294 +#, fuzzy +msgid "/Delete Path" +msgstr "LЖschen" + +#: app/menus.c:296 +#, fuzzy +msgid "/Copy Path" +msgstr "Kopiere Farbverlauf" + +#: app/menus.c:297 +#, fuzzy +msgid "/Paste Path" +msgstr "EinfЭgen" + +#: app/menus.c:298 +#, fuzzy +msgid "/Import Path" +msgstr "Farbpalette importieren" + +#: app/menus.c:299 +#, fuzzy +msgid "/Export Path" +msgstr "Farbpalette importieren" + +#: app/menus.c:596 #, c-format msgid "Error opening file: %s\n" msgstr "Kann Datei nicht Жffnen: %s\n" -#: app/menus.c:458 app/menus.c:539 +#: app/menus.c:618 app/menus.c:699 #, c-format msgid "/File/MRU%02d" msgstr "/Datei/MRU%02d" -#: app/move.c:438 +#: app/module_db.c:269 +#, fuzzy +msgid "Module DB" +msgstr "Modus:" + +#: app/module_db.c:567 +#, c-format +msgid "load module: \"%s\"\n" +msgstr "" + +#: app/module_db.c:574 +#, c-format +msgid "skipping module: \"%s\"\n" +msgstr "" + +#: app/module_db.c:598 +#, c-format +msgid "module load error: %s: %s" +msgstr "" + +#: app/module_db.c:616 +msgid "missing module_init() symbol" +msgstr "" + +#: app/module_db.c:619 +#, c-format +msgid "%s: module_init() symbol not found" +msgstr "" + +#: app/module_db.c:772 +#, fuzzy +msgid "" +msgstr "Modus:" + +#: app/module_db.c:785 app/module_db.c:794 +msgid "on disk" +msgstr "" + +#: app/module_db.c:785 +msgid "only in memory" +msgstr "" + +#: app/module_db.c:794 +msgid "nowhere (click 'refresh')" +msgstr "" + +#: app/module_db.c:830 +msgid "Load" +msgstr "жffnen" + +#: app/module_db.c:839 +#, fuzzy +msgid "Unload" +msgstr "Unbenannt" + +#: app/module_db.c:852 +msgid "Purpose: " +msgstr "" + +#: app/module_db.c:853 +#, fuzzy +msgid "Author: " +msgstr "/Automatisch" + +#: app/module_db.c:854 +#, fuzzy +msgid "Version: " +msgstr "Version" + +#: app/module_db.c:855 +#, fuzzy +msgid "Copyright: " +msgstr "SchichthЖhe: " + +#: app/module_db.c:856 +#, fuzzy +msgid "Date: " +msgstr "Geschwindigkeit: " + +#: app/module_db.c:857 +#, fuzzy +msgid "Location: " +msgstr "Auswahl" + +#: app/module_db.c:858 +#, fuzzy +msgid "State: " +msgstr "Geschwindigkeit: " + +#: app/module_db.c:877 +msgid "Autoload during startup" +msgstr "" + +#: app/move.c:444 #, fuzzy msgid "Move Tool Options" msgstr "Klonwerkzeug Einstellungen" -#: app/paint_core.c:547 +#: app/paint_core.c:586 #, fuzzy msgid "No brushes available for use with this tool." msgstr "Keine Muster vorhanden fЭr diese Funktion." -#: app/paint_core.c:1290 -msgid "paint_core_replace only works in INCREMENTAL mode" -msgstr "" - -#: app/paint_core.c:1427 +#: app/paint_core.c:1574 msgid "set_undo_tiles: undo_tiles is null" msgstr "" -#: app/paint_funcs.c:85 +#: app/paint_funcs.c:85 app/tool_options.c:777 msgid "Behind" msgstr "Hinter" @@ -4143,32 +4205,32 @@ msgstr "Radierer" msgid "Once Forward" msgstr "" -#: app/paintbrush.c:154 +#: app/paintbrush.c:155 msgid "Once Backward" msgstr "" -#: app/paintbrush.c:155 +#: app/paintbrush.c:157 #, fuzzy msgid "Loop Sawtooth" msgstr "SДgezahnwelle" -#: app/paintbrush.c:156 +#: app/paintbrush.c:159 msgid "Loop Triangle" msgstr "" -#: app/paintbrush.c:180 +#: app/paintbrush.c:185 msgid "Fade Out:" msgstr "" -#: app/paintbrush.c:207 +#: app/paintbrush.c:212 msgid "Length:" msgstr "" -#. the radio frame and box -#: app/paintbrush.c:232 +#. the gradient type +#: app/paintbrush.c:237 #, fuzzy -msgid "Gradient Type" -msgstr "Farbverlauf" +msgid "Type:" +msgstr "FЭllart: " #: app/palette.c:484 #, c-format @@ -4357,626 +4419,626 @@ msgstr "Scherung Informationen" msgid "Perspective..." msgstr "Perspektivisch" -#: app/plug_in.c:204 +#: app/plug_in.c:207 msgid "shmget failed...disabling shared memory tile transport" msgstr "" -#: app/plug_in.c:210 +#: app/plug_in.c:213 msgid "shmat failed...disabling shared memory tile transport" msgstr "" -#: app/plug_in.c:309 +#: app/plug_in.c:312 msgid "Plug-ins" msgstr "ErgДnzungen" -#: app/plug_in.c:321 +#: app/plug_in.c:324 #, c-format msgid "query plug-in: \"%s\"\n" msgstr "эberprЭfe ErgДnzung: \"%s\"\n" -#: app/plug_in.c:359 +#: app/plug_in.c:362 #, c-format msgid "writing \"%s\"\n" msgstr "schreibe \"%s\"\n" -#: app/plug_in.c:374 +#: app/plug_in.c:377 msgid "Starting extensions: " msgstr "Starte Erweiterung: " -#: app/plug_in.c:375 +#: app/plug_in.c:378 msgid "Extensions" msgstr "Erweiterung" -#: app/plug_in.c:690 +#: app/plug_in.c:693 #, c-format msgid "\"%s\" executable not found\n" msgstr "" -#: app/plug_in.c:743 +#: app/plug_in.c:746 #, c-format msgid "unable to locate plug-in: \"%s\"" msgstr "Kann ErgДnzung \"%s\" nicht finden" -#: app/plug_in.c:825 +#: app/plug_in.c:828 msgid "unable to open pipe" msgstr "Kann Pipeline nicht Жffnen" -#: app/plug_in.c:914 +#: app/plug_in.c:917 #, fuzzy, c-format msgid "unable to run plug-in: %s" msgstr "Kann ErgДnzung \"%s\" nicht starten\n" -#: app/plug_in.c:1281 -msgid "/Filters/Repeat last" -msgstr "/Filter/Wiederhole letzten Vorgang" - -#: app/plug_in.c:1282 -msgid "/Filters/Re-show last" -msgstr "/Filter/Zeige letzten Vorgang nochmal" - -#: app/plug_in.c:1640 app/plug_in.c:1653 app/plug_in.c:1666 app/plug_in.c:1681 +#: app/plug_in.c:1648 app/plug_in.c:1661 app/plug_in.c:1674 app/plug_in.c:1689 #, c-format msgid "" "plug-in \"%s\" attempted to install procedure \"%s\" which does not take the " "standard plug-in args" msgstr "" -#: app/plug_in.c:1689 +#: app/plug_in.c:1697 #, c-format msgid "" "plug-in \"%s\" attempted to install procedure \"%s\" in an invalid menu " "location. Use either \"\", \"\", \"\", or \"\"." msgstr "" -#: app/plug_in.c:1709 +#: app/plug_in.c:1717 #, c-format msgid "" "plug_in \"%s\" attempted to install procedure \"%s\" which fails to comply " "with the array parameter passing standard. Argument %d is noncompliant." msgstr "" -#: app/plug_in.c:2141 +#: app/plug_in.c:2149 #, c-format msgid "duplicate plug-in: \"%s\" (skipping)\n" msgstr "doppelte ErgДnzung: \"%s\" (wird Эbersprungen)\n" -#: app/plug_in.c:2349 +#: app/plug_in.c:2357 msgid "Unknown procedure type." msgstr "" -#: app/plug_in.c:2430 +#: app/plug_in.c:2438 #, c-format msgid "removing duplicate PDB procedure \"%s\"" msgstr "" -#: app/plug_in.c:2686 app/plug_in.c:2851 app/plug_in.c:2968 app/plug_in.c:3053 +#: app/plug_in.c:2694 app/plug_in.c:2859 app/plug_in.c:2976 app/plug_in.c:3061 msgid "the \"region\" arg type is not currently supported" msgstr "" -#: app/posterize.c:217 +#: app/posterize.c:164 #, fuzzy msgid "Posterize does not operate on indexed drawables." msgstr "Angleichen funktioniert nicht mit indizierten Bildern." -#: app/posterize.c:262 app/tools.c:521 +#: app/posterize.c:211 app/tools.c:547 msgid "Posterize" msgstr "Posterisieren" -#: app/posterize.c:276 +#: app/posterize.c:225 #, fuzzy msgid "Posterize Levels: " msgstr "Farbwerte: " -#: app/preferences_dialog.c:203 +#: app/preferences_dialog.c:205 msgid "Error: Levels of undo must be zero or greater." msgstr "" -#: app/preferences_dialog.c:209 +#: app/preferences_dialog.c:211 msgid "Error: Number of processors must be between 1 and 30." msgstr "" -#: app/preferences_dialog.c:215 +#: app/preferences_dialog.c:217 msgid "Error: Marching speed must be 50 or greater." msgstr "" -#: app/preferences_dialog.c:221 +#: app/preferences_dialog.c:223 msgid "Error: Default width must be one or greater." msgstr "" -#: app/preferences_dialog.c:227 +#: app/preferences_dialog.c:229 msgid "Error: Default height must be one or greater." msgstr "" -#: app/preferences_dialog.c:234 +#: app/preferences_dialog.c:236 msgid "Error: Default unit must be within unit range." msgstr "" -#: app/preferences_dialog.c:241 +#: app/preferences_dialog.c:243 msgid "Error: default resolution must not be zero." msgstr "" -#: app/preferences_dialog.c:249 +#: app/preferences_dialog.c:251 msgid "Error: Default resolution unit must be within unit range." msgstr "" -#: app/preferences_dialog.c:256 +#: app/preferences_dialog.c:258 msgid "Error: Monitor resolution must not be zero." msgstr "" -#: app/preferences_dialog.c:263 +#: app/preferences_dialog.c:265 msgid "Error: Image title format must not be NULL." msgstr "" -#: app/preferences_dialog.c:520 +#: app/preferences_dialog.c:536 msgid "You will need to restart GIMP for these changes to take effect." msgstr "Sie mЭssen GIMP neu starten, damit die VerДnderungen aktiv werden." -#: app/preferences_dialog.c:1433 +#: app/preferences_dialog.c:1467 msgid "Preferences" msgstr "Einstellungen" #. The categories tree -#: app/preferences_dialog.c:1451 +#: app/preferences_dialog.c:1485 msgid "Categories" msgstr "" -#: app/preferences_dialog.c:1477 +#: app/preferences_dialog.c:1512 #, fuzzy msgid "New File Settings" msgstr "OberflДcheneinstellungen" -#: app/preferences_dialog.c:1479 +#: app/preferences_dialog.c:1514 #, fuzzy msgid "New File" msgstr "FЭllart" -#: app/preferences_dialog.c:1489 +#: app/preferences_dialog.c:1524 #, fuzzy msgid "Default Image Size and Unit" msgstr "Standard BildgrЖъe" -#: app/preferences_dialog.c:1503 +#: app/preferences_dialog.c:1538 msgid "Width" msgstr "Breite" -#: app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1540 msgid "Height" msgstr "HЖhe" -#: app/preferences_dialog.c:1532 +#: app/preferences_dialog.c:1567 #, fuzzy msgid "Default Image Resolution and Resolution Unit" msgstr "Standard BildgrЖъe" -#: app/preferences_dialog.c:1557 app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:1592 app/preferences_dialog.c:2294 msgid "dpi" msgstr "dpi" -#: app/preferences_dialog.c:1602 +#: app/preferences_dialog.c:1637 #, fuzzy msgid "Default Image Type:" msgstr "Standard Bildart" -#: app/preferences_dialog.c:1607 +#: app/preferences_dialog.c:1642 #, fuzzy msgid "Display Settings" msgstr "Anzeigeeinstellungen" -#: app/preferences_dialog.c:1609 +#: app/preferences_dialog.c:1644 msgid "Display" msgstr "Anzeige" -#: app/preferences_dialog.c:1616 +#: app/preferences_dialog.c:1651 #, fuzzy msgid "Transparency" msgstr "Durchsichtig" -#: app/preferences_dialog.c:1634 +#: app/preferences_dialog.c:1669 msgid "Light Checks" msgstr "Helle Quadrate" -#: app/preferences_dialog.c:1636 +#: app/preferences_dialog.c:1671 msgid "Mid-Tone Checks" msgstr "Halbhelle Quadrate" -#: app/preferences_dialog.c:1638 +#: app/preferences_dialog.c:1673 msgid "Dark Checks" msgstr "Dunkle Quadrate" -#: app/preferences_dialog.c:1640 +#: app/preferences_dialog.c:1675 msgid "White Only" msgstr "Nur Weiъ" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1677 msgid "Gray Only" msgstr "Nur Grau" -#: app/preferences_dialog.c:1644 +#: app/preferences_dialog.c:1679 msgid "Black Only" msgstr "Nur Schwarz" -#: app/preferences_dialog.c:1648 +#: app/preferences_dialog.c:1683 #, fuzzy msgid "Transparency Type:" msgstr "Durchsichtigkeitsart" -#: app/preferences_dialog.c:1654 app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1689 app/preferences_dialog.c:1760 msgid "Small" msgstr "Klein" -#: app/preferences_dialog.c:1656 app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1691 app/preferences_dialog.c:1761 msgid "Medium" msgstr "Mittel" -#: app/preferences_dialog.c:1658 app/preferences_dialog.c:1727 +#: app/preferences_dialog.c:1693 app/preferences_dialog.c:1762 msgid "Large" msgstr "Groъ" -#: app/preferences_dialog.c:1662 +#: app/preferences_dialog.c:1697 #, fuzzy msgid "Check Size:" msgstr "MarkierungsgrЖъe" -#: app/preferences_dialog.c:1664 app/transform_tool.c:191 +#: app/preferences_dialog.c:1699 app/transform_tool.c:190 msgid "Scaling" msgstr "Skalierung" -#: app/preferences_dialog.c:1673 +#: app/preferences_dialog.c:1708 #, fuzzy msgid "Cubic Interpolation" msgstr "Kubische Interpolierung" -#: app/preferences_dialog.c:1684 +#: app/preferences_dialog.c:1719 #, fuzzy msgid "Interface Settings" msgstr "OberflДcheneinstellungen" -#: app/preferences_dialog.c:1693 +#: app/preferences_dialog.c:1728 #, fuzzy msgid "General" msgstr "Intervall:" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1765 #, fuzzy msgid "Preview Size:" msgstr "VorschaugrЖъe: " -#: app/preferences_dialog.c:1739 +#: app/preferences_dialog.c:1774 #, fuzzy msgid "Levels of Undo:" msgstr "Stufen der RЭckgДngigmachung:" -#: app/preferences_dialog.c:1748 +#: app/preferences_dialog.c:1783 #, fuzzy msgid "Recent Documents List Size:" msgstr "GrЖъe der letzten Dokumentliste:" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1786 msgid "Help System" msgstr "" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1795 #, fuzzy msgid "Show Tool Tips" msgstr "Zeige Hilfen" -#: app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1806 #, fuzzy msgid "Image Windows Settings" msgstr "OberflДcheneinstellungen" -#: app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1808 msgid "Image Windows" msgstr "" -#: app/preferences_dialog.c:1780 +#: app/preferences_dialog.c:1815 msgid "Appearance" msgstr "" -#: app/preferences_dialog.c:1789 +#: app/preferences_dialog.c:1824 #, fuzzy msgid "Resize Window on Zoom" msgstr "VerДndere FenstergrЖъe beim Zoomen" -#: app/preferences_dialog.c:1798 +#: app/preferences_dialog.c:1833 #, fuzzy msgid "Show Rulers" msgstr "Zeige Lineale" -#: app/preferences_dialog.c:1807 +#: app/preferences_dialog.c:1842 #, fuzzy msgid "Show Statusbar" msgstr "Zeige Statusanzeige" -#: app/preferences_dialog.c:1831 +#: app/preferences_dialog.c:1866 #, fuzzy msgid "Marching Ants Speed:" msgstr "Geschwindigkeit der laufenden Ameisen:" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:1839 +#: app/preferences_dialog.c:1874 msgid "Custom" msgstr "Eigene" #. set some commonly used format strings -#: app/preferences_dialog.c:1845 +#: app/preferences_dialog.c:1880 msgid "Standard" msgstr "" -#: app/preferences_dialog.c:1850 +#: app/preferences_dialog.c:1885 msgid "Show zoom percentage" msgstr "" -#: app/preferences_dialog.c:1855 +#: app/preferences_dialog.c:1890 #, fuzzy msgid "Show zoom ratio" msgstr "Zeige Hilfen" -#: app/preferences_dialog.c:1860 +#: app/preferences_dialog.c:1895 msgid "Show reversed zoom ratio" msgstr "" -#: app/preferences_dialog.c:1871 +#: app/preferences_dialog.c:1906 msgid "Image Title Format:" msgstr "" #. End of the title format string -#: app/preferences_dialog.c:1874 +#: app/preferences_dialog.c:1909 msgid "Pointer Movement Feedback" msgstr "" -#: app/preferences_dialog.c:1884 +#: app/preferences_dialog.c:1919 #, fuzzy msgid "Perfect-but-slow Pointer Tracking" msgstr "Genaue aber langsame MauszeigenachfЭhrung" -#: app/preferences_dialog.c:1893 +#: app/preferences_dialog.c:1928 #, fuzzy msgid "Disable Cursor Updating" msgstr "Deaktiviere Mauszeigerposition" -#: app/preferences_dialog.c:1904 +#: app/preferences_dialog.c:1939 #, fuzzy msgid "Tool Options Settings" msgstr "Werkzeugeinstellungen" -#: app/preferences_dialog.c:1906 app/tools.c:726 +#: app/preferences_dialog.c:1941 app/tools.c:884 msgid "Tool Options" msgstr "Werkzeugeinstellungen" -#: app/preferences_dialog.c:1913 +#: app/preferences_dialog.c:1948 #, fuzzy msgid "Paint Options" msgstr "Airbrush Einstellungen" -#: app/preferences_dialog.c:1923 +#: app/preferences_dialog.c:1958 #, fuzzy msgid "Use Global Paint Options" msgstr "Farbausgleich Einstellungen" -#: app/preferences_dialog.c:1933 -msgid "(Switching this off does not yet work consistently.)" +#: app/preferences_dialog.c:1974 +msgid "Display brush and pattern indicators on Toolbar" msgstr "" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1988 #, fuzzy msgid "Environment Settings" msgstr "Umgebungseinstellungen" -#: app/preferences_dialog.c:1945 +#: app/preferences_dialog.c:1990 msgid "Environment" msgstr "Umgebung" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1997 #, fuzzy msgid "Resource Consumption" msgstr "Ressourcen Konfiguration" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:2006 #, fuzzy msgid "Conservative Memory Usage" msgstr "ZurЭckhaltende Speicherausnutzung" -#: app/preferences_dialog.c:2012 app/preferences_dialog.c:2053 +#: app/preferences_dialog.c:2057 app/preferences_dialog.c:2098 msgid "Bytes" msgstr "Byte" -#: app/preferences_dialog.c:2013 app/preferences_dialog.c:2054 +#: app/preferences_dialog.c:2058 app/preferences_dialog.c:2099 msgid "KiloBytes" msgstr "Kilobyte" -#: app/preferences_dialog.c:2014 app/preferences_dialog.c:2055 +#: app/preferences_dialog.c:2059 app/preferences_dialog.c:2100 msgid "MegaBytes" msgstr "Megabyte" -#: app/preferences_dialog.c:2019 +#: app/preferences_dialog.c:2064 #, fuzzy msgid "Tile Cache Size:" msgstr "MarkierungsgrЖъe" -#: app/preferences_dialog.c:2060 +#: app/preferences_dialog.c:2105 msgid "Maximum Image Size:" msgstr "" -#: app/preferences_dialog.c:2070 +#: app/preferences_dialog.c:2115 msgid "Number of Processors to Use:" msgstr "" -#: app/preferences_dialog.c:2074 +#: app/preferences_dialog.c:2119 #, fuzzy msgid "8-Bit Displays" msgstr "Anzeige" -#: app/preferences_dialog.c:2085 +#: app/preferences_dialog.c:2130 #, fuzzy msgid "Install Colormap" msgstr "Installieren" -#: app/preferences_dialog.c:2094 +#: app/preferences_dialog.c:2139 msgid "Colormap Cycling" msgstr "" -#: app/preferences_dialog.c:2105 +#: app/preferences_dialog.c:2148 +msgid "File Previews / Thumbnails" +msgstr "" + +#: app/preferences_dialog.c:2175 +msgid "Try to Write a Thumbnail File:" +msgstr "" + +#: app/preferences_dialog.c:2180 #, fuzzy msgid "Session Management" msgstr "Sitzungsmanagement" -#: app/preferences_dialog.c:2107 +#: app/preferences_dialog.c:2182 msgid "Session" msgstr "Sitzung" -#: app/preferences_dialog.c:2114 +#: app/preferences_dialog.c:2189 #, fuzzy msgid "Window Positions" msgstr "LЖsche gesicherte Fensterpositionen" -#: app/preferences_dialog.c:2123 +#: app/preferences_dialog.c:2198 #, fuzzy msgid "Save Window Positions on Exit" msgstr "Sichere Fensterpositionen beim Beenden" -#: app/preferences_dialog.c:2137 +#: app/preferences_dialog.c:2212 #, fuzzy msgid "Clear Saved Window Positions" msgstr "LЖsche gesicherte Fensterpositionen" -#: app/preferences_dialog.c:2144 +#: app/preferences_dialog.c:2219 #, fuzzy msgid "Always Try to Restore Session" msgstr "Versuche immer Sitzung wiederherzustellen" -#: app/preferences_dialog.c:2153 +#: app/preferences_dialog.c:2228 #, fuzzy msgid "Devices" msgstr "GerДtestatus" -#: app/preferences_dialog.c:2162 +#: app/preferences_dialog.c:2237 #, fuzzy msgid "Save Device Status on Exit" msgstr "Sichere GerДtestatus beim Beenden" -#: app/preferences_dialog.c:2173 +#: app/preferences_dialog.c:2248 #, fuzzy msgid "Monitor Information" msgstr "Monitor Informationen" -#: app/preferences_dialog.c:2175 +#: app/preferences_dialog.c:2250 msgid "Monitor" msgstr "Monitor" -#: app/preferences_dialog.c:2182 +#: app/preferences_dialog.c:2257 #, fuzzy msgid "Get Monitor Resolution" msgstr "Hole MonitorauflЖsung" -#: app/preferences_dialog.c:2197 +#: app/preferences_dialog.c:2272 #, fuzzy, c-format msgid "(Currently %d x %d dpi)" msgstr "(augenblicklich %d x %d dpi)" -#: app/preferences_dialog.c:2244 +#: app/preferences_dialog.c:2319 #, fuzzy msgid "From X Server" msgstr "von X Server" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2334 #, fuzzy msgid "Manually:" msgstr "von Hand:" -#: app/preferences_dialog.c:2272 +#: app/preferences_dialog.c:2347 #, fuzzy msgid "Directories Settings" msgstr "Verzeichniseinstellungen" -#: app/preferences_dialog.c:2274 +#: app/preferences_dialog.c:2349 msgid "Directories" msgstr "Verzeichnisse" -#: app/preferences_dialog.c:2287 +#: app/preferences_dialog.c:2362 #, fuzzy msgid "Temp Dir:" msgstr "Zwischenverzeichnis:" -#: app/preferences_dialog.c:2287 +#: app/preferences_dialog.c:2362 msgid "Select Temp Dir" msgstr "" -#: app/preferences_dialog.c:2288 +#: app/preferences_dialog.c:2363 #, fuzzy msgid "Swap Dir:" msgstr "Auslagerverzeichnis:" -#: app/preferences_dialog.c:2288 +#: app/preferences_dialog.c:2363 #, fuzzy msgid "Select Swap Dir" msgstr "/Auswahl/SchДrfen" -#: app/preferences_dialog.c:2320 +#: app/preferences_dialog.c:2395 #, fuzzy msgid "Brushes Directories" msgstr "Verzeichnisse" -#: app/preferences_dialog.c:2320 +#: app/preferences_dialog.c:2395 #, fuzzy msgid "Select Brushes Dir" msgstr "Pinselverzeichnis:" -#: app/preferences_dialog.c:2322 +#: app/preferences_dialog.c:2397 #, fuzzy msgid "Patterns Directories" msgstr "Verzeichnisse" -#: app/preferences_dialog.c:2322 +#: app/preferences_dialog.c:2397 #, fuzzy msgid "Select Patterns Dir" msgstr "Musterverzeichnis:" -#: app/preferences_dialog.c:2324 +#: app/preferences_dialog.c:2399 #, fuzzy msgid "Palettes Directories" msgstr "Verzeichnisse" -#: app/preferences_dialog.c:2324 +#: app/preferences_dialog.c:2399 #, fuzzy msgid "Select Palettes Dir" msgstr "LЖsche Farbpalette" -#: app/preferences_dialog.c:2326 +#: app/preferences_dialog.c:2401 #, fuzzy msgid "Gradients Directories" msgstr "FarbverlДufeeditor" -#: app/preferences_dialog.c:2326 +#: app/preferences_dialog.c:2401 #, fuzzy msgid "Select Gradients Dir" msgstr "Sichere FarbverlДufe" -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 #, fuzzy msgid "Plug-Ins" msgstr "ErgДnzungen" -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 #, fuzzy msgid "Plug-Ins Directories" msgstr "Verzeichnisse" -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 msgid "Select Plug-Ins Dir" msgstr "" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 #, fuzzy msgid "Modules" msgstr "Modus:" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 #, fuzzy msgid "Modules Directories" msgstr "Verzeichnisse" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 #, fuzzy msgid "Select Modules Dir" msgstr "Auswahlmodus" @@ -4997,27 +5059,31 @@ msgid "" "Argument %d to '%s' should be a %s, but got passed a %s" msgstr "" -#: app/rect_select.c:179 +#: app/rect_select.c:180 msgid "Selection: ADD" msgstr "Auswahl: HinzufЭgen" -#: app/rect_select.c:182 +#: app/rect_select.c:183 msgid "Selection: SUBTRACT" msgstr "Auswahl: Abziehen" -#: app/rect_select.c:185 +#: app/rect_select.c:186 msgid "Selection: INTERSECT" msgstr "Auswahl: Schnitt" -#: app/rect_select.c:188 +#: app/rect_select.c:189 msgid "Selection: REPLACE" msgstr "Auswahl: Ersetzen" -#: app/rect_select.c:404 app/rect_select.c:411 +#: app/rect_select.c:405 app/rect_select.c:412 #, fuzzy msgid "Selection: " msgstr "Auswahl" +#: app/resize.c:159 +msgid "Scale Layer" +msgstr "Skaliere Schicht" + #: app/resize.c:160 app/resize.c:181 #, fuzzy msgid "Size" @@ -5032,6 +5098,10 @@ msgstr "Bildskalierung" msgid "Pixel Dimensions" msgstr "Erweiterung" +#: app/resize.c:174 +msgid "Resize Layer" +msgstr "SchichtgrЖъe verДndern" + #: app/resize.c:178 msgid "Image Resize" msgstr "BildgrЖъe verДndern" @@ -5067,12 +5137,12 @@ msgstr "" msgid "Rotation Information" msgstr "Rotation Informationen" -#: app/rotate_tool.c:105 +#: app/rotate_tool.c:106 #, fuzzy msgid "Center X:" msgstr "Zentrum X: " -#: app/rotate_tool.c:400 +#: app/rotate_tool.c:401 #, fuzzy msgid "Rotating..." msgstr "Rotation" @@ -5122,66 +5192,66 @@ msgstr "X Scherneigung: " msgid "Shearing..." msgstr "Scherung" -#: app/text_tool.c:158 +#: app/text_tool.c:157 #, fuzzy msgid "Text Tool Options" msgstr "Texteinstellungen" -#: app/text_tool.c:169 +#: app/text_tool.c:168 app/tool_options.c:317 msgid "Antialiasing" msgstr "KantenglДttung" -#: app/text_tool.c:183 +#: app/text_tool.c:182 #, fuzzy msgid "Border:" msgstr "Rand: " -#: app/text_tool.c:209 +#: app/text_tool.c:208 msgid "Use Dynamic Text" msgstr "" -#: app/text_tool.c:285 +#: app/text_tool.c:278 msgid "text_call_gdyntext: gDynText procedure lookup failed" msgstr "" #. Create the shell -#: app/text_tool.c:408 app/text_tool.c:410 +#: app/text_tool.c:399 app/text_tool.c:401 msgid "Text Tool" msgstr "Textwerkzeug" -#: app/text_tool.c:617 +#: app/text_tool.c:609 #, c-format msgid "Font '%s' not found.%s" msgstr "" -#: app/text_tool.c:619 +#: app/text_tool.c:611 msgid "" "\n" "If you don't have scalable fonts, try turning off antialiasing in the tool " "options." msgstr "" -#: app/text_tool.c:730 +#: app/text_tool.c:722 msgid "Text Layer" msgstr "Text Schicht" -#: app/text_tool.c:773 +#: app/text_tool.c:765 msgid "text_render: could not allocate image" msgstr "" -#: app/threshold.c:234 +#: app/threshold.c:189 msgid "Threshold Options" msgstr "Schwellwerteinstellungen" -#: app/threshold.c:283 +#: app/threshold.c:232 msgid "Threshold does not operate on indexed drawables." msgstr "" -#: app/threshold.c:341 app/tools.c:536 +#: app/threshold.c:291 app/tools.c:562 msgid "Threshold" msgstr "Schwellwert" -#: app/threshold.c:356 +#: app/threshold.c:306 msgid "Threshold Range: " msgstr "Schwellwertreichweite: " @@ -5189,21 +5259,21 @@ msgstr "Schwellwertreichweite: " msgid "starting tile preswapper\n" msgstr "" -#: app/tile_swap.c:379 +#: app/tile_swap.c:381 msgid "unable to open swap file...BAD THINGS WILL HAPPEN SOON" msgstr "" -#: app/tile_swap.c:499 app/tile_swap.c:560 +#: app/tile_swap.c:501 app/tile_swap.c:562 #, c-format msgid "unable to seek to tile location on disk: %d" msgstr "" -#: app/tile_swap.c:518 +#: app/tile_swap.c:520 #, c-format msgid "unable to read tile data from disk: %d/%d ( %d ) bytes read" msgstr "" -#: app/tile_swap.c:573 +#: app/tile_swap.c:575 #, c-format msgid "unable to write tile data to disk: %d ( %d ) bytes written" msgstr "" @@ -5236,315 +5306,427 @@ msgid "" "GIMP data directory. Please check your installation." msgstr "" -#: app/tools.c:85 +#: app/tools.c:81 msgid "Rect Select" msgstr "Rechteckige Auswahl" -#: app/tools.c:87 +#: app/tools.c:83 msgid "/Tools/Rect Select" msgstr "/Werkzeuge/Rechteckige Auswahl" -#: app/tools.c:90 +#: app/tools.c:86 msgid "Select rectangular regions" msgstr "WДhle rechteckigen Bereich" -#: app/tools.c:100 +#: app/tools.c:96 msgid "Ellipse Select" msgstr "Elliptische Auswahl" -#: app/tools.c:102 +#: app/tools.c:98 msgid "/Tools/Ellipse Select" msgstr "/Werkzeuge/Elliptische Auswahl" -#: app/tools.c:105 +#: app/tools.c:101 msgid "Select elliptical regions" msgstr "WДhle elliptischen Bereich" -#: app/tools.c:115 +#: app/tools.c:111 msgid "Free Select" msgstr "Freie Auswahl" -#: app/tools.c:117 +#: app/tools.c:113 msgid "/Tools/Free Select" msgstr "/Werkzeuge/Freie Auswahl" -#: app/tools.c:120 +#: app/tools.c:116 msgid "Select hand-drawn regions" msgstr "WДhle Bereich frei Hand" -#: app/tools.c:130 +#: app/tools.c:126 msgid "Fuzzy Select" msgstr "Ungenaue Auswahl" -#: app/tools.c:132 +#: app/tools.c:128 msgid "/Tools/Fuzzy Select" msgstr "/Werkzeuge/Ungenaue Auswahl" -#: app/tools.c:135 +#: app/tools.c:131 msgid "Select contiguous regions" msgstr "WДhle zusammenhДngenden Bereich" -#: app/tools.c:145 +#: app/tools.c:141 msgid "Bezier Select" msgstr "Bezierauswahl" -#: app/tools.c:147 +#: app/tools.c:143 msgid "/Tools/Bezier Select" msgstr "/Werkzeuge/Bezierauswahl" -#: app/tools.c:150 +#: app/tools.c:146 msgid "Select regions using Bezier curves" msgstr "WДhle Bereich mittels Bezierkurven" -#: app/tools.c:160 +#: app/tools.c:156 msgid "Intelligent Scissors" msgstr "Intelligente Messer" -#: app/tools.c:162 +#: app/tools.c:158 msgid "/Tools/Intelligent Scissors" msgstr "/Werkzeuge/Intelligente Messer" -#: app/tools.c:165 +#: app/tools.c:161 msgid "Select shapes from image" msgstr "WДhle Objekt aus Bild" -#: app/tools.c:175 +#: app/tools.c:171 msgid "Move" msgstr "Bewege" -#: app/tools.c:177 +#: app/tools.c:173 msgid "/Tools/Move" msgstr "/Werkzeuge/Bewege" -#: app/tools.c:180 +#: app/tools.c:176 msgid "Move layers & selections" msgstr "Bewege Schichten und Auswahlen" -#: app/tools.c:190 +#: app/tools.c:186 msgid "Magnify" msgstr "VergrЖъerung" -#: app/tools.c:192 +#: app/tools.c:188 msgid "/Tools/Magnify" msgstr "/Werkzeuge/VergrЖъerung" -#: app/tools.c:195 +#: app/tools.c:191 msgid "Zoom in & out" msgstr "Zoome hinein und heraus" -#: app/tools.c:205 +#: app/tools.c:201 #, fuzzy msgid "Crop & Resize" msgstr "GrЖъe verДndern" -#: app/tools.c:207 +#: app/tools.c:203 #, fuzzy msgid "/Tools/Crop & Resize" msgstr "/Werkzeuge/Zuschneiden" -#: app/tools.c:210 +#: app/tools.c:206 #, fuzzy msgid "Crop or resize the image" msgstr "Beschneide das Bild" #. the first radio frame and box, for transform type -#: app/tools.c:220 app/tools.c:235 app/tools.c:250 app/tools.c:265 +#: app/tools.c:216 app/tools.c:231 app/tools.c:246 app/tools.c:261 #: app/transform_core.c:125 app/transform_tool.c:224 msgid "Transform" msgstr "Transformierung" -#: app/tools.c:222 +#: app/tools.c:218 msgid "/Tools/Transform" msgstr "/Werkzeuge/Transformierung" -#: app/tools.c:225 +#: app/tools.c:221 msgid "Transform the layer or selection" msgstr "Transformiere die Schicht oder Auswahl" -#: app/tools.c:280 +#: app/tools.c:276 msgid "Flip" msgstr "Spiegelung" -#: app/tools.c:282 +#: app/tools.c:278 msgid "/Tools/Flip" msgstr "/Werkzeuge/Spiegelung" -#: app/tools.c:285 +#: app/tools.c:281 msgid "Flip the layer or selection" msgstr "Spiegle die Schicht oder Auswahl" -#: app/tools.c:295 +#: app/tools.c:291 msgid "Text" msgstr "Text" -#: app/tools.c:297 +#: app/tools.c:293 msgid "/Tools/Text" msgstr "/Werkzeuge/Text" -#: app/tools.c:300 +#: app/tools.c:296 msgid "Add text to the image" msgstr "FЭge Text zum Bild hinzu" -#: app/tools.c:312 +#: app/tools.c:308 msgid "/Tools/Color Picker" msgstr "/Werkzeuge/Farbpipette" -#: app/tools.c:315 +#: app/tools.c:311 msgid "Pick colors from the image" msgstr "Nimm Farben aus dem Bild" -#: app/tools.c:325 +#: app/tools.c:321 msgid "Bucket Fill" msgstr "FЭlleimer" -#: app/tools.c:327 +#: app/tools.c:323 msgid "/Tools/Bucket Fill" msgstr "/Werkzeuge/FЭlleimer" -#: app/tools.c:330 +#: app/tools.c:326 msgid "Fill with a color or pattern" msgstr "FЭllt mit Farbe oder Muster" -#: app/tools.c:340 +#: app/tools.c:336 msgid "Blend" msgstr "Farbverlauf" -#: app/tools.c:342 +#: app/tools.c:338 msgid "/Tools/Blend" msgstr "/Werkzeuge/FarbverlДufe" -#: app/tools.c:345 +#: app/tools.c:341 msgid "Fill with a color gradient" msgstr "FЭllt mit einem Farbverlauf" -#: app/tools.c:355 +#: app/tools.c:351 msgid "Pencil" msgstr "Stift" -#: app/tools.c:357 +#: app/tools.c:353 msgid "/Tools/Pencil" msgstr "/Werkzeuge/Stift" -#: app/tools.c:360 +#: app/tools.c:356 msgid "Draw sharp pencil strokes" msgstr "Zeichnet scharfe Pinselstriche" -#: app/tools.c:370 +#: app/tools.c:366 msgid "Paintbrush" msgstr "Pinsel" -#: app/tools.c:372 +#: app/tools.c:368 msgid "/Tools/Paintbrush" msgstr "/Werkzeuge/Pinsel" -#: app/tools.c:375 +#: app/tools.c:371 msgid "Paint fuzzy brush strokes" msgstr "Malt ungenaue Pinselstriche" -#: app/tools.c:385 +#: app/tools.c:381 msgid "Eraser" msgstr "Radierer" -#: app/tools.c:387 +#: app/tools.c:383 msgid "/Tools/Eraser" msgstr "/Werkzeuge/Radierer" -#: app/tools.c:390 +#: app/tools.c:386 msgid "Erase to background or transparency" msgstr "LЖscht bis zum Hintergrund oder Transparenz" -#: app/tools.c:400 +#: app/tools.c:396 msgid "Airbrush" msgstr "Airbrush" -#: app/tools.c:402 +#: app/tools.c:398 msgid "/Tools/Airbrush" msgstr "/Werkzeuge/Airbrush" -#: app/tools.c:405 +#: app/tools.c:401 msgid "Airbrush with variable pressure" msgstr "Airbrush mit variablem Druck" -#: app/tools.c:415 +#: app/tools.c:411 msgid "Clone" msgstr "Klonen" -#: app/tools.c:417 +#: app/tools.c:413 msgid "/Tools/Clone" msgstr "/Werkzeuge/Klonen" -#: app/tools.c:420 +#: app/tools.c:416 msgid "Paint using patterns or image regions" msgstr "Malt mit Mustern oder Bildteilen" -#: app/tools.c:430 +#: app/tools.c:426 msgid "Convolve" msgstr "VerknЭpfen" -#: app/tools.c:432 +#: app/tools.c:428 msgid "/Tools/Convolve" msgstr "/Werkzeuge/VerknЭpfen" -#: app/tools.c:435 +#: app/tools.c:431 msgid "Blur or sharpen" msgstr "Weichzeichnen oder SchДrfen" -#: app/tools.c:445 +#: app/tools.c:441 msgid "Ink" msgstr "Tinte" -#: app/tools.c:447 +#: app/tools.c:443 msgid "/Tools/Ink" msgstr "/Werkzeuge/Tinte" -#: app/tools.c:450 +#: app/tools.c:446 msgid "Draw in ink" msgstr "Zeichne in Tinte" -#: app/tools.c:461 +#: app/tools.c:456 app/tools.c:461 +msgid "Dodge or Burn" +msgstr "" + +#: app/tools.c:458 +#, fuzzy +msgid "/Tools/DodgeBurn" +msgstr "/Werkzeuge/Bewege" + +#: app/tools.c:471 app/tools.c:476 +msgid "Smudge" +msgstr "" + +#: app/tools.c:473 +#, fuzzy +msgid "/Tools/Smudge" +msgstr "/Werkzeuge/Bewege" + +#: app/tools.c:487 msgid "By Color Select" msgstr "Nach Farbe Auswahl" -#: app/tools.c:463 +#: app/tools.c:489 msgid "/Select/By Color..." msgstr "/Auswahl/Nach Farbe..." -#: app/tools.c:478 +#: app/tools.c:504 msgid "/Image/Colors/Color Balance" msgstr "/Bild/Farben/Ausgleichen" -#: app/tools.c:493 +#: app/tools.c:519 msgid "/Image/Colors/Brightness-Contrast" msgstr "/Bild/Farben/Helligkeit-Kontrast" -#: app/tools.c:508 +#: app/tools.c:534 msgid "/Image/Colors/Hue-Saturation" msgstr "/Bild/Farben/Farbton-SДttigung" -#: app/tools.c:523 +#: app/tools.c:549 msgid "/Image/Colors/Posterize" msgstr "/Bild/Farben/Posterisieren" -#: app/tools.c:538 +#: app/tools.c:564 msgid "/Image/Colors/Threshold" msgstr "/Bild/Farben/Schwellwert" -#: app/tools.c:553 +#: app/tools.c:579 msgid "/Image/Colors/Curves" msgstr "/Bild/Farben/Kurven" -#: app/tools.c:568 +#: app/tools.c:594 msgid "/Image/Colors/Levels" msgstr "/Bild/Farben/Werte" -#: app/tools.c:581 -msgid "Histogram" -msgstr "Histogram" - -#: app/tools.c:583 +#: app/tools.c:609 msgid "/Image/Histogram" msgstr "/Bild/Histogram" +#: app/tool_options.c:206 app/tool_options.c:688 +msgid "This tool has no options." +msgstr "Dieses Werkzeug hat keine Einstellungen" + +#: app/tool_options.c:230 +msgid "Rectangular Select Options" +msgstr "Rechteckige Auswahl Einstellungen" + +#: app/tool_options.c:232 +msgid "Elliptical Selection Options" +msgstr "Elliptische Auswahl Einstellungen" + +#: app/tool_options.c:234 +msgid "Free-hand Selection Options" +msgstr "Freihand Auswahl Einstellungen" + +#: app/tool_options.c:236 +msgid "Fuzzy Selection Options" +msgstr "Ungenaue Auswahl Einstellungen" + +#: app/tool_options.c:238 +msgid "Bezier Selection Options" +msgstr "Bezierauswahl Einstellungen" + +#: app/tool_options.c:240 +msgid "Intelligent Scissors Options" +msgstr "Intelligente Messer Einstellungen" + +#: app/tool_options.c:242 +msgid "By-Color Select Options" +msgstr "Nach-Farbe Auswahl Einstellungen" + +#: app/tool_options.c:243 +msgid "ERROR: Unknown Selection Type" +msgstr "" + +#: app/tool_options.c:273 +msgid "Feather" +msgstr "Runden" + +#: app/tool_options.c:381 +msgid "Fixed size / aspect ratio" +msgstr "" + +#: app/tool_options.c:552 +msgid "Bucket Fill Options" +msgstr "FЭlleimereinstellungen" + +#: app/tool_options.c:554 +msgid "Blend Options" +msgstr "Farbverlauf Einstellungen" + +#: app/tool_options.c:556 +#, fuzzy +msgid "Pencil Options" +msgstr "жffnungseinstellungen" + +#: app/tool_options.c:558 +#, fuzzy +msgid "Paintbrush Options" +msgstr "Airbrush Einstellungen" + +#: app/tool_options.c:560 +#, fuzzy +msgid "Erazer Options" +msgstr "Radierer Einstellungen" + +#: app/tool_options.c:562 +msgid "Airbrush Options" +msgstr "Airbrush Einstellungen" + +#: app/tool_options.c:564 +msgid "Clone Tool Options" +msgstr "Klonwerkzeug Einstellungen" + +#: app/tool_options.c:566 +msgid "Convolver Options" +msgstr "VerknЭpfung Einstellungen" + +#: app/tool_options.c:568 +#, fuzzy +msgid "Ink Options" +msgstr "жffnungseinstellungen" + +#: app/tool_options.c:570 +#, fuzzy +msgid "Dodge or Burn Options" +msgstr "Farbausgleich Einstellungen" + +#: app/tool_options.c:572 +#, fuzzy +msgid "Smudge Options" +msgstr "Sicherungseinstellungen" + +#: app/tool_options.c:573 +msgid "ERROR: Unknown Paint Type" +msgstr "" + #: app/transform_core.c:122 msgid "Rotate" msgstr "Rotieren" @@ -5563,24 +5745,24 @@ msgid "" "layers that contain layer masks." msgstr "" -#: app/transform_core.c:1132 +#: app/transform_core.c:1140 msgid "homogeneous coordinate = 0...\n" msgstr "" -#: app/transform_core.c:1387 +#: app/transform_core.c:1395 #, fuzzy msgid "Transformation" msgstr "Transformierung" -#: app/transform_tool.c:190 +#: app/transform_tool.c:189 msgid "Rotation" msgstr "Rotation" -#: app/transform_tool.c:192 +#: app/transform_tool.c:191 msgid "Shearing" msgstr "Scherung" -#: app/transform_tool.c:193 +#: app/transform_tool.c:192 msgid "Perspective" msgstr "Perspektivisch" @@ -5701,6 +5883,100 @@ msgstr "" msgid "unable to read tile data from xcf file: %d ( %d ) bytes read" msgstr "" +#. pseudo unit +#: libgimp/gimpunit.c:44 +#, fuzzy +msgid "pixel" +msgstr "Pixel" + +#: libgimp/gimpunit.c:44 +#, fuzzy +msgid "pixels" +msgstr "Pixel" + +#. standard units +#: libgimp/gimpunit.c:47 +msgid "inch" +msgstr "Inch" + +#: libgimp/gimpunit.c:47 +msgid "inches" +msgstr "Inch" + +#: libgimp/gimpunit.c:48 +msgid "millimeter" +msgstr "" + +#: libgimp/gimpunit.c:48 +#, fuzzy +msgid "millimeters" +msgstr "/Filter/" + +#. professional units +#: libgimp/gimpunit.c:51 +#, fuzzy +msgid "point" +msgstr "Trennen" + +#: libgimp/gimpunit.c:51 +msgid "points" +msgstr "" + +#: libgimp/gimpunit.c:52 +#, fuzzy +msgid "pica" +msgstr "Nachbilden" + +#: libgimp/gimpunit.c:52 +msgid "picas" +msgstr "" + +#: libgimp/gimpunit.c:59 +#, fuzzy +msgid "percent" +msgstr "Perspektivisch" + +#: libgimp/gimpfileselection.c:352 +#, fuzzy +msgid "Select File" +msgstr "Auswahl" + +#: libgimp/gimpfileselection.c:355 libgimp/gimpunitmenu.c:510 +#, fuzzy +msgid "Select" +msgstr "/Auswahl/Alles" + +#: libgimp/gimpenv.c:82 +msgid "warning: no home directory." +msgstr "" + +#: libgimp/gimpunitmenu.c:207 +msgid "More..." +msgstr "" + +#: libgimp/gimpunitmenu.c:333 +msgid "unit-menu-format string ended within %%-sequence" +msgstr "" + +#: libgimp/gimpunitmenu.c:366 +msgid "unit-menu-format contains unknownformat sequence '%%%c'" +msgstr "" + +#: libgimp/gimpunitmenu.c:453 +#, fuzzy +msgid "Unit Selection" +msgstr "Auswahl" + +#: libgimp/gimpunitmenu.c:479 +#, fuzzy +msgid "Unit " +msgstr "Unbenannt" + +#: libgimp/gimpunitmenu.c:481 +#, fuzzy +msgid "Factor" +msgstr "Runden" + #: app/regex.c:976 msgid "Success" msgstr "Erfolg" @@ -5789,6 +6065,205 @@ msgstr "" msgid "No previous regular expression" msgstr "" +#~ msgid "/File/Quit" +#~ msgstr "/Datei/Beenden" + +#~ msgid "/File/Quit" +#~ msgstr "/Datei/Beenden" + +#, fuzzy +#~ msgid "Automatic" +#~ msgstr "/Automatisch" + +#~ msgid "/File/Open" +#~ msgstr "/Datei/жffnen" + +#~ msgid "/File/Open" +#~ msgstr "/Datei/жffnen" + +#~ msgid "/File/Save" +#~ msgstr "/Datei/Sichern" + +#~ msgid "/File/Save as" +#~ msgstr "/Datei/Sichern unter..." + +#, fuzzy +#~ msgid "/Layers/Stack/Previous Layer" +#~ msgstr "/Schichten/Schicht nach vorne" + +#, fuzzy +#~ msgid "/Layers/Stack/Next Layer" +#~ msgstr "/Schichten/Schicht nach vorne" + +#, fuzzy +#~ msgid "/Layers/Stack/Raise Layer" +#~ msgstr "/Schichten/Schicht nach vorne" + +#, fuzzy +#~ msgid "/Layers/Stack/Lower Layer" +#~ msgstr "/Schichten/Schicht nach hinten" + +#, fuzzy +#~ msgid "/Layers/Stack/Layer to Top" +#~ msgstr "/Schichten/Schicht nach vorne" + +#, fuzzy +#~ msgid "/Layers/Stack/Layer to Bottom" +#~ msgstr "/Schichten/Schicht nach vorne" + +#~ msgid "/Layers/Anchor Layer" +#~ msgstr "/Schichten/Schicht verankern" + +#~ msgid "/Layers/Merge Visible Layers" +#~ msgstr "/Schichten/Sichtbare Schichten vereinen" + +#~ msgid "/Layers/Flatten Image" +#~ msgstr "/Schichten/Bild zusammenfЭgen" + +#~ msgid "/Layers/Alpha To Selection" +#~ msgstr "/Schichten/Auswahl aus Alphakanal" + +#~ msgid "/Layers/Mask To Selection" +#~ msgstr "/Schichten/Auswahl aus Maske" + +#~ msgid "/Layers/Add Alpha Channel" +#~ msgstr "/Schichten/Neuer Alphakanal" + +#~ msgid "/Image/RGB" +#~ msgstr "/Bild/RGB" + +#~ msgid "/Image/Grayscale" +#~ msgstr "/Bild/Graustufen" + +#~ msgid "/Image/Indexed" +#~ msgstr "/Bild/Indiziert" + +#~ msgid "/Image/Colors/Threshold" +#~ msgstr "/Bild/Farben/Schwellwert" + +#~ msgid "/Image/Colors/Posterize" +#~ msgstr "/Bild/Farben/Posterisieren" + +#~ msgid "/Image/Colors/Equalize" +#~ msgstr "/Bild/Farben/Angleichen" + +#~ msgid "/Image/Colors/Invert" +#~ msgstr "/Bild/Farben/Invertieren" + +#~ msgid "/Image/Colors/Color Balance" +#~ msgstr "/Bild/Farben/Ausgleichen" + +#~ msgid "/Image/Colors/Brightness-Contrast" +#~ msgstr "/Bild/Farben/Helligkeit-Kontrast" + +#~ msgid "/Image/Colors/Hue-Saturation" +#~ msgstr "/Bild/Farben/Farbton-SДttigung" + +#~ msgid "/Image/Colors/Curves" +#~ msgstr "/Bild/Farben/Kurven" + +#~ msgid "/Image/Colors/Levels" +#~ msgstr "/Bild/Farben/Werte" + +#~ msgid "/Image/Colors/Desaturate" +#~ msgstr "/Bild/Farben/SДttigung vermindern" + +#~ msgid "/Image/Alpha/Add Alpha Channel" +#~ msgstr "/Bild/Alpha/Erstelle Alphakanal" + +#~ msgid "/Select" +#~ msgstr "/Auswahl" + +#~ msgid "/Edit/Cut" +#~ msgstr "/Bearbeiten/Ausschneiden" + +#~ msgid "/Edit/Copy" +#~ msgstr "/Bearbeiten/Kopieren" + +#~ msgid "/Edit/Paste" +#~ msgstr "/Bearbeiten/EinfЭgen" + +#~ msgid "/Edit/Paste Into" +#~ msgstr "/Bearbeiten/EinfЭgen in..." + +#~ msgid "/Edit/Fill" +#~ msgstr "/Bearbeiten/FЭllen" + +#~ msgid "/Edit/Stroke" +#~ msgstr "/Bearbeiten/Nachfahren" + +#~ msgid "/Edit/Cut Named" +#~ msgstr "/Bearbeiten/Mit Namen ausschneiden" + +#~ msgid "/Edit/Copy Named" +#~ msgstr "/Bearbeiten/Mit Namen kopieren" + +#~ msgid "/Edit/Paste Named" +#~ msgstr "/Bearbeiten/Mit Namen einfЭgen" + +#~ msgid "/Image/Colors" +#~ msgstr "/Bild/Farben" + +#~ msgid "/Image/Channel Ops/Offset" +#~ msgstr "/Bild/Kanal/эberstand" + +#~ msgid "/Image/Histogram" +#~ msgstr "/Bild/Histogram" + +#~ msgid "/Filters" +#~ msgstr "/Filter" + +#~ msgid "/Select/Save To Channel" +#~ msgstr "/Auswahl/In Kanal sichern" + +#~ msgid "/View/Toggle Rulers" +#~ msgstr "/Ansicht/Lineale an/aus" + +#~ msgid "/View/Toggle Guides" +#~ msgstr "/Ansicht/Hilfslinien an/aus" + +#~ msgid "/View/Snap To Guides" +#~ msgstr "/Ansicht/magnetische Hilfslinien an/aus" + +#~ msgid "/View/Toggle Statusbar" +#~ msgstr "/Ansicht/Statusleiste an/aus" + +#~ msgid "/View/Dot for dot" +#~ msgstr "/Ansicht/Punkt fЭr Punkt" + +#~ msgid "/File/Close" +#~ msgstr "/Datei/Schlieъen" + +#, fuzzy +#~ msgid "Replace Current Selection" +#~ msgstr "Bilde Auswahl nach" + +#~ msgid "Raise Layer" +#~ msgstr "ErhЖhe Schicht" + +#~ msgid "Lower Layer" +#~ msgstr "Erniedrige Schicht" + +#~ msgid "Layer to Top" +#~ msgstr "Schicht nach ganz oben" + +#~ msgid "Layer to Bottom" +#~ msgstr "Schicht nach ganz hinten" + +#, fuzzy +#~ msgid "/Select/Toggle" +#~ msgstr "/Auswahl/Umschalten" + +#, fuzzy +#~ msgid "Gradient Type" +#~ msgstr "Farbverlauf" + +#~ msgid "/Filters/Repeat last" +#~ msgstr "/Filter/Wiederhole letzten Vorgang" + +#~ msgid "/Filters/Re-show last" +#~ msgstr "/Filter/Zeige letzten Vorgang nochmal" + #, fuzzy #~ msgid "Add Channel To Selection" #~ msgstr "Kanal zur Auswahl" @@ -5840,9 +6315,6 @@ msgstr "" #~ msgid "\t\tplug-ins.\n" #~ msgstr "\t\tErgДnzungen.\n" -#~ msgid "Layer height: " -#~ msgstr "SchichthЖhe: " - #~ msgid "" #~ "Unable to set sensitivity for menu which doesn't exist:\n" #~ "%s" @@ -5868,15 +6340,6 @@ msgstr "" #~ msgid "# GIMP sessionrc\n" #~ msgstr "GIMP Version\n" -#~ msgid "Airbrush Options" -#~ msgstr "Airbrush Einstellungen" - -#~ msgid "Blend Options" -#~ msgstr "Farbverlauf Einstellungen" - -#~ msgid "Bucket Fill Options" -#~ msgstr "FЭlleimereinstellungen" - #~ msgid "Fill Threshold: " #~ msgstr "FЭllschwellwert: " @@ -5886,35 +6349,19 @@ msgstr "" #~ msgid "Fill Type: " #~ msgstr "FЭllart: " -#~ msgid "Clone Tool Options" -#~ msgstr "Klonwerkzeug Einstellungen" - #~ msgid "Index" #~ msgstr "Index" #~ msgid "Intensity" #~ msgstr "IntensitДt" -#~ msgid "Convolver Options" -#~ msgstr "VerknЭpfung Einstellungen" - -#~ msgid "Selection" -#~ msgstr "Auswahl" - #~ msgid "Y Origin: " #~ msgstr "Y Ursprung: " -#~ msgid "Eraser Options" -#~ msgstr "Radierer Einstellungen" - #, fuzzy #~ msgid "pixels per " #~ msgstr " Pixel pro " -#, fuzzy -#~ msgid "Ink Options" -#~ msgstr "жffnungseinstellungen" - #, fuzzy #~ msgid "Layer procedures" #~ msgstr "Interne GIMP Funktion" @@ -5931,12 +6378,6 @@ msgstr "" #~ msgid "Image procedures" #~ msgstr "Bildquelle" -#~ msgid "Intelligent Scissors Options" -#~ msgstr "Intelligente Messer Einstellungen" - -#~ msgid "Feather" -#~ msgstr "Runden" - #~ msgid "Feather Radius: " #~ msgstr "Rundungsradius: " @@ -5955,10 +6396,6 @@ msgstr "" #~ msgid "/_Edit" #~ msgstr "Bearbeiten" -#, fuzzy -#~ msgid "/_Select" -#~ msgstr "/Auswahl/Alles" - #, fuzzy #~ msgid "/_View" #~ msgstr "/Ansicht/---" @@ -5975,26 +6412,14 @@ msgstr "" #~ msgid "/Image/C_hannel Ops" #~ msgstr "/Bild/Kanal/эberstand" -#, fuzzy -#~ msgid "/Image/_Alpha" -#~ msgstr "/Bild/Skalieren" - #, fuzzy #~ msgid "/_Tools" #~ msgstr "/Werkzeuge/---" -#, fuzzy -#~ msgid "/Filte_rs" -#~ msgstr "/Filter/" - #, fuzzy #~ msgid "Gradient Length" #~ msgstr "Farbverlauf" -#, fuzzy -#~ msgid "Pencil Options" -#~ msgstr "жffnungseinstellungen" - #, fuzzy #~ msgid "Posterize Options" #~ msgstr "Raster Einstellungen" @@ -6017,24 +6442,6 @@ msgstr "" #~ msgid "GIMP Extension" #~ msgstr "GIMP Erweiterung" -#~ msgid "Rectangular Select Options" -#~ msgstr "Rechteckige Auswahl Einstellungen" - -#~ msgid "Elliptical Selection Options" -#~ msgstr "Elliptische Auswahl Einstellungen" - -#~ msgid "Free-hand Selection Options" -#~ msgstr "Freihand Auswahl Einstellungen" - -#~ msgid "Fuzzy Selection Options" -#~ msgstr "Ungenaue Auswahl Einstellungen" - -#~ msgid "Bezier Selection Options" -#~ msgstr "Bezierauswahl Einstellungen" - -#~ msgid "By-Color Select Options" -#~ msgstr "Nach-Farbe Auswahl Einstellungen" - #~ msgid "New height:" #~ msgstr "Neue HЖhe:" @@ -6065,9 +6472,6 @@ msgstr "" #~ msgid "Y Shear Magnitude: " #~ msgstr "Y Scherneigung: " -#~ msgid "This tool has no options." -#~ msgstr "Dieses Werkzeug hat keine Einstellungen" - #~ msgid "reading %s\n" #~ msgstr "lese %s\n" @@ -6101,9 +6505,6 @@ msgstr "" #~ msgid "Remove Point" #~ msgstr "Punkt entfernen" -#~ msgid "Load" -#~ msgstr "жffnen" - #~ msgid "Paste Bezier Named Buffer" #~ msgstr "FЭge benannten Bezierspeicher ein" @@ -6119,15 +6520,9 @@ msgstr "" #~ msgid "Move: %d, %d" #~ msgstr "Bewegen: %d, %d" -#~ msgid "inches" -#~ msgstr "Inch" - #~ msgid "cm" #~ msgstr "cm" -#~ msgid "inch" -#~ msgstr "Inch" - #~ msgid "No home directory--skipping GIMP user installation." #~ msgstr "Kein Heimverzeichnis--Эberspringe Benutzerinstallation." diff --git a/po/fi.po b/po/fi.po index 0486998fed..ad36f08b0f 100644 --- a/po/fi.po +++ b/po/fi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 1999-06-05 15:50-0700\n" +"POT-Creation-Date: 1999-07-17 11:23-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: fi \n" @@ -14,28 +14,28 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: app/about_dialog.c:153 +#: app/about_dialog.c:156 msgid "About the GIMP" msgstr "Tietoja GIMPstД" -#: app/about_dialog.c:196 +#: app/about_dialog.c:199 msgid "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-*-*" msgstr "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-*-*" -#: app/about_dialog.c:199 +#: app/about_dialog.c:202 msgid "Version " msgstr "Versio" -#: app/about_dialog.c:200 +#: app/about_dialog.c:203 msgid " brought to you by" msgstr " Julkaisi teille" -#: app/about_dialog.c:206 +#: app/about_dialog.c:209 #, fuzzy msgid "Spencer Kimball & Peter Mattis" msgstr "Spencer Kimball ja Peter Mattis" -#: app/about_dialog.c:239 +#: app/about_dialog.c:242 msgid "Please visit http://www.gimp.org/ for more info" msgstr "KДy hakemassa http://www.gimp.org/ :sta lisДД tietoa" @@ -53,353 +53,354 @@ msgstr "" msgid "killing stray timer, please report to lewing@gimp.org" msgstr "" -#: app/app_procs.c:355 +#: app/app_procs.c:358 msgid "GIMP Startup" msgstr "" -#: app/app_procs.c:468 app/gimprc.c:389 +#: app/app_procs.c:471 app/gimprc.c:394 #, c-format msgid "parsing \"%s\"\n" msgstr "" #. initialize the xcf file format routines -#: app/app_procs.c:524 +#: app/app_procs.c:526 msgid "Looking for data files" msgstr "" -#: app/app_procs.c:524 +#: app/app_procs.c:526 #, fuzzy msgid "Parasites" msgstr "/Muokkaa/Liimaa" #. initialize the global parasite table -#: app/app_procs.c:526 app/internal_procs.c:70 app/preferences_dialog.c:2320 +#: app/app_procs.c:528 app/internal_procs.c:70 app/preferences_dialog.c:2395 msgid "Brushes" msgstr "" #. initialize the list of gimp brushes -#: app/app_procs.c:528 app/internal_procs.c:139 app/preferences_dialog.c:2322 +#: app/app_procs.c:530 app/internal_procs.c:139 app/preferences_dialog.c:2397 msgid "Patterns" msgstr "" #. initialize the list of gimp patterns -#: app/app_procs.c:530 app/preferences_dialog.c:2324 +#: app/app_procs.c:532 app/preferences_dialog.c:2399 msgid "Palettes" msgstr "" #. initialize the list of gimp palettes -#: app/app_procs.c:532 app/gradient_select.c:557 app/internal_procs.c:109 -#: app/preferences_dialog.c:2326 +#: app/app_procs.c:534 app/gradient_select.c:557 app/internal_procs.c:109 +#: app/preferences_dialog.c:2401 msgid "Gradients" msgstr "" -#: app/app_procs.c:696 app/app_procs.c:717 +#: app/app_procs.c:702 app/app_procs.c:703 app/app_procs.c:728 +#: app/app_procs.c:729 app/menus.c:83 app/menus.c:98 #, fuzzy -msgid "/File/Quit" +msgid "/File/Quit" msgstr "/Tiedosto/Poistu" -#: app/app_procs.c:697 app/app_procs.c:718 -#, fuzzy -msgid "/File/Quit" -msgstr "/Tiedosto/Poistu" - -#: app/app_procs.c:722 +#: app/app_procs.c:733 msgid "Really Quit?" msgstr "" -#: app/app_procs.c:730 app/fileops.c:1420 +#: app/app_procs.c:741 app/fileops.c:1576 msgid "Yes" msgstr "" -#: app/app_procs.c:739 app/fileops.c:1421 +#: app/app_procs.c:750 app/fileops.c:1577 msgid "No" msgstr "" -#: app/app_procs.c:747 -msgid "Some files unsaved. Quit the GIMP?" +#: app/app_procs.c:776 +msgid "" +"Some files unsaved.\n" +"\n" +"Quit the GIMP?" msgstr "" -#: app/batch.c:69 +#: app/batch.c:65 msgid "script-fu not available: batch mode disabled\n" msgstr "" -#: app/batch.c:78 +#: app/batch.c:74 msgid "reading batch commands from stdin\n" msgstr "" -#: app/batch.c:118 +#: app/batch.c:114 msgid "batch command: experienced an execution error.\n" msgstr "" -#: app/batch.c:121 +#: app/batch.c:117 msgid "batch command: experienced a calling error.\n" msgstr "" -#: app/batch.c:124 +#: app/batch.c:120 msgid "batch command: executed successfully.\n" msgstr "" -#: app/batch.c:205 +#: app/batch.c:204 msgid "extension_perl_server not available: unable to start the perl server\n" msgstr "" -#: app/batch.c:221 +#: app/batch.c:220 msgid "perl server: experienced an execution error.\n" msgstr "" -#: app/batch.c:224 +#: app/batch.c:223 msgid "perl server: experienced a calling error.\n" msgstr "" -#: app/batch.c:227 +#: app/batch.c:226 msgid "perl server: executed successfully.\n" msgstr "" -#: app/bezier_select.c:480 +#: app/bezier_select.c:477 msgid "Bezier path already closed." msgstr "" -#: app/bezier_select.c:501 +#: app/bezier_select.c:498 msgid "Corrupt curve" msgstr "" -#: app/bezier_select.c:1011 +#: app/bezier_select.c:1012 msgid "tried to edit on open bezier curve in edit selection" msgstr "" -#: app/bezier_select.c:1291 +#: app/bezier_select.c:1292 msgid "Encountered orphaned bezier control point" msgstr "" -#: app/bezier_select.c:1971 app/bezier_select.c:3170 +#: app/bezier_select.c:1975 app/bezier_select.c:3176 msgid "bad bezier segment" msgstr "" -#: app/bezier_select.c:1988 app/bezier_select.c:2630 +#: app/bezier_select.c:1992 app/bezier_select.c:2636 #, c-format msgid "unknown coordinate space: %d" msgstr "" -#: app/bezier_select.c:2131 +#: app/bezier_select.c:2135 msgid "tried to convert an open bezier curve" msgstr "" -#: app/bezier_select.c:3126 +#: app/bezier_select.c:3132 #, fuzzy msgid "Paintbrush operation failed." msgstr "/Tasot/Maski valinnaksi" -#: app/blend.c:261 +#: app/blend.c:264 msgid "FG to BG (RGB)" msgstr "" -#: app/blend.c:263 +#: app/blend.c:266 msgid "FG to BG (HSV)" msgstr "" -#: app/blend.c:265 +#: app/blend.c:268 msgid "FG to Transparent" msgstr "" -#: app/blend.c:267 +#: app/blend.c:270 msgid "Custom from editor" msgstr "" -#: app/blend.c:273 app/gradient.c:395 +#: app/blend.c:276 app/gradient.c:395 msgid "Linear" msgstr "" -#: app/blend.c:275 +#: app/blend.c:278 msgid "Bi-Linear" msgstr "" -#: app/blend.c:277 +#: app/blend.c:280 msgid "Radial" msgstr "" -#: app/blend.c:279 +#: app/blend.c:282 msgid "Square" msgstr "" -#: app/blend.c:281 +#: app/blend.c:284 msgid "Conical (symmetric)" msgstr "" -#: app/blend.c:283 +#: app/blend.c:286 msgid "Conical (asymmetric)" msgstr "" -#: app/blend.c:285 +#: app/blend.c:288 msgid "Shapeburst (angular)" msgstr "" -#: app/blend.c:287 +#: app/blend.c:290 msgid "Shapeburst (spherical)" msgstr "" -#: app/blend.c:289 +#: app/blend.c:292 msgid "Shapeburst (dimpled)" msgstr "" -#: app/blend.c:291 +#: app/blend.c:294 msgid "Spiral (clockwise)" msgstr "" -#: app/blend.c:293 +#: app/blend.c:296 msgid "Spiral (anticlockwise)" msgstr "" -#: app/blend.c:299 app/preferences_dialog.c:1724 +#: app/blend.c:302 app/preferences_dialog.c:1759 msgid "None" msgstr "" -#: app/blend.c:301 +#: app/blend.c:304 msgid "Sawtooth wave" msgstr "" -#: app/blend.c:303 +#: app/blend.c:306 msgid "Triangular wave" msgstr "" -#: app/blend.c:331 +#: app/blend.c:334 msgid "Offset:" msgstr "" #. the blend mode menu -#: app/blend.c:349 +#: app/blend.c:352 msgid "Blend:" msgstr "" #. the gradient type menu -#: app/blend.c:367 +#: app/blend.c:370 msgid "Gradient:" msgstr "" #. the repeat option -#: app/blend.c:385 +#: app/blend.c:388 msgid "Repeat:" msgstr "" -#: app/blend.c:418 +#: app/blend.c:421 msgid "Adaptive supersampling" msgstr "" #. max depth scale -#: app/blend.c:440 +#: app/blend.c:443 msgid "Max depth:" msgstr "" #. threshold scale -#: app/blend.c:458 app/bucket_fill.c:137 app/iscissors.c:356 +#: app/blend.c:461 app/bucket_fill.c:136 app/iscissors.c:356 msgid "Threshold:" msgstr "" -#: app/blend.c:496 +#: app/blend.c:499 msgid "Blend: Invalid for indexed images." msgstr "" -#: app/blend.c:521 +#: app/blend.c:524 msgid "Blend: 0, 0" msgstr "" -#: app/blend.c:583 +#: app/blend.c:587 msgid "Blend operation failed." msgstr "" -#: app/blend.c:589 +#: app/blend.c:593 msgid "Blending..." msgstr "" -#: app/blend.c:639 app/blend.c:649 +#: app/blend.c:643 app/blend.c:653 msgid "Blend: " msgstr "" -#: app/blend.c:1295 +#: app/blend.c:1307 #, c-format msgid "gradient_render_pixel(): unknown gradient type %d" msgstr "" -#: app/blend.c:1430 +#: app/blend.c:1445 #, c-format msgid "gradient_fill_region(): unknown blend mode %d" msgstr "" -#: app/blend.c:1471 +#: app/blend.c:1486 #, c-format msgid "gradient_fill_region(): unknown gradient type %d" msgstr "" -#: app/blend.c:1493 +#: app/blend.c:1508 #, c-format msgid "gradient_fill_region(): unknown repeat mode %d" msgstr "" -#: app/brightness_contrast.c:176 +#: app/brightness_contrast.c:136 msgid "Brightness-Contrast Options" msgstr "" -#: app/brightness_contrast.c:221 +#: app/brightness_contrast.c:172 msgid "Brightness-Contrast does not operate on indexed drawables." msgstr "" #. Action area -#: app/brightness_contrast.c:252 app/channel_ops.c:104 -#: app/channels_dialog.c:1889 app/channels_dialog.c:2062 -#: app/color_balance.c:301 app/color_notebook.c:43 app/color_notebook.c:186 -#: app/color_select.c:154 app/color_select.c:209 app/convert.c:295 -#: app/curves.c:417 app/file_new_dialog.c:288 app/file_new_dialog.c:478 -#: app/hue_saturation.c:411 app/interface.c:877 app/interface.c:1263 -#: app/layers_dialog.c:3218 app/layers_dialog.c:3432 app/layers_dialog.c:3574 -#: app/layers_dialog.c:4049 app/levels.c:373 app/posterize.c:241 -#: app/preferences_dialog.c:1435 app/resize.c:114 app/threshold.c:318 +#: app/brightness_contrast.c:214 app/channel_ops.c:104 +#: app/channels_dialog.c:1864 app/channels_dialog.c:2049 +#: app/color_balance.c:273 app/color_notebook.c:49 app/color_notebook.c:192 +#: app/color_select.c:155 app/color_select.c:210 app/convert.c:295 +#: app/curves.c:517 app/file_new_dialog.c:292 app/file_new_dialog.c:482 +#: app/hue_saturation.c:361 app/interface.c:1009 app/interface.c:1395 +#: app/layers_dialog.c:2901 app/layers_dialog.c:3119 app/layers_dialog.c:3262 +#: app/layers_dialog.c:3738 app/levels.c:335 app/module_db.c:263 +#: app/posterize.c:199 app/preferences_dialog.c:1469 app/resize.c:114 +#: app/threshold.c:278 msgid "OK" msgstr "" -#: app/brightness_contrast.c:253 app/channel_ops.c:113 -#: app/channels_dialog.c:1890 app/channels_dialog.c:2063 -#: app/color_balance.c:302 app/color_notebook.c:44 app/color_notebook.c:187 -#: app/color_select.c:155 app/color_select.c:210 app/convert.c:296 -#: app/curves.c:418 app/file_new_dialog.c:290 app/file_new_dialog.c:480 -#: app/gdisplay_ops.c:353 app/gimpprogress.c:135 app/global_edit.c:593 +#: app/brightness_contrast.c:215 app/channel_ops.c:113 +#: app/channels_dialog.c:1865 app/channels_dialog.c:2050 +#: app/color_balance.c:274 app/color_notebook.c:50 app/color_notebook.c:193 +#: app/color_select.c:156 app/color_select.c:211 app/convert.c:296 +#: app/curves.c:518 app/file_new_dialog.c:294 app/file_new_dialog.c:484 +#: app/gdisplay_ops.c:349 app/gimpprogress.c:135 app/global_edit.c:705 #: app/gradient.c:1486 app/gradient.c:4566 app/gradient.c:4921 -#: app/hue_saturation.c:412 app/interface.c:788 app/interface.c:878 -#: app/layers_dialog.c:3219 app/layers_dialog.c:3433 app/layers_dialog.c:3575 -#: app/layers_dialog.c:3722 app/layers_dialog.c:4050 app/levels.c:374 -#: app/posterize.c:242 app/preferences_dialog.c:1439 app/resize.c:115 -#: app/threshold.c:319 +#: app/hue_saturation.c:362 app/interface.c:913 app/interface.c:1010 +#: app/layers_dialog.c:2902 app/layers_dialog.c:3120 app/layers_dialog.c:3263 +#: app/layers_dialog.c:3410 app/layers_dialog.c:3739 app/levels.c:336 +#: app/posterize.c:200 app/preferences_dialog.c:1473 app/resize.c:115 +#: app/threshold.c:279 msgid "Cancel" msgstr "" -#: app/brightness_contrast.c:276 app/tools.c:491 +#: app/brightness_contrast.c:226 app/tools.c:517 msgid "Brightness-Contrast" msgstr "" #. Create the brightness scale widget -#: app/brightness_contrast.c:292 +#: app/brightness_contrast.c:242 msgid "Brightness" msgstr "" #. Create the contrast scale widget -#: app/brightness_contrast.c:325 +#: app/brightness_contrast.c:275 msgid "Contrast" msgstr "" #. The preview toggle -#: app/brightness_contrast.c:363 app/color_balance.c:481 app/curves.c:661 -#: app/fileops.c:395 app/hue_saturation.c:620 app/levels.c:583 -#: app/palette.c:2849 app/posterize.c:297 app/threshold.c:404 +#: app/brightness_contrast.c:313 app/color_balance.c:438 app/curves.c:651 +#: app/fileops.c:395 app/hue_saturation.c:572 app/levels.c:531 +#: app/palette.c:2849 app/posterize.c:246 app/threshold.c:354 msgid "Preview" msgstr "" #. The close push button -#: app/brush_edit.c:38 app/brush_select.c:133 app/by_color_select.c:678 -#: app/color_notebook.c:181 app/color_picker.c:208 app/color_select.c:204 -#: app/colormap_dialog.i.c:94 app/colormap_dialog.i.c:103 app/crop.c:1011 -#: app/devices.c:124 app/docindexif.c:95 app/errorconsole.c:228 -#: app/gdisplay_ops.c:352 app/gradient.c:646 app/gradient_select.c:76 -#: app/info_window.c:121 app/layers_dialog.c:419 app/palette.c:2235 -#: app/palette_select.c:59 app/pattern_select.c:90 app/tips_dialog.c:146 -#: app/tools.c:716 +#: app/brush_edit.c:38 app/brush_select.c:135 app/by_color_select.c:664 +#: app/color_notebook.c:187 app/color_picker.c:209 app/color_select.c:205 +#: app/colormap_dialog.i.c:94 app/colormap_dialog.i.c:103 app/crop.c:1027 +#: app/devices.c:124 app/docindexif.c:100 app/errorconsole.c:230 +#: app/gdisplay_ops.c:348 app/gradient.c:646 app/gradient_select.c:76 +#: app/histogram_tool.c:262 app/info_window.c:121 app/lc_dialog.c:196 +#: app/palette.c:2235 app/palette_select.c:59 app/pattern_select.c:90 +#: app/tips_dialog.c:146 app/tools.c:874 libgimp/gimpfileselection.c:356 +#: libgimp/gimpunitmenu.c:518 #, fuzzy msgid "Close" msgstr "/Tiedosto/Sulje" @@ -409,7 +410,7 @@ msgid "Brush Editor" msgstr "" #. brush radius scale -#: app/brush_edit.c:240 app/color_picker.c:163 +#: app/brush_edit.c:240 app/color_picker.c:164 app/tool_options.c:284 msgid "Radius:" msgstr "" @@ -428,69 +429,70 @@ msgstr "" msgid "Angle:" msgstr "" -#: app/brush_select.c:132 app/palette.c:2243 app/pattern_select.c:89 +#: app/brush_select.c:134 app/module_db.c:307 app/palette.c:2243 +#: app/pattern_select.c:89 msgid "Refresh" msgstr "" -#: app/brush_select.c:153 +#: app/brush_select.c:155 #, fuzzy msgid "Brush Selection" msgstr "/Tasot/Alpha valinnaksi" -#: app/brush_select.c:241 app/pattern_select.c:147 +#: app/brush_select.c:244 app/pattern_select.c:147 msgid "Active" msgstr "" #. Create the opacity scale widget -#: app/brush_select.c:271 app/layers_dialog.c:756 +#: app/brush_select.c:274 app/layers_dialog.c:334 app/tool_options.c:593 msgid "Opacity:" msgstr "" #. Create the paint mode option menu -#: app/brush_select.c:289 app/layers_dialog.c:733 +#: app/brush_select.c:292 app/layers_dialog.c:307 app/tool_options.c:623 msgid "Mode:" msgstr "" -#: app/brush_select.c:312 +#: app/brush_select.c:315 msgid "Edit Brush" msgstr "" -#: app/brush_select.c:318 +#: app/brush_select.c:321 msgid "New Brush" msgstr "" -#: app/brush_select.c:340 +#: app/brush_select.c:343 msgid "Spacing:" msgstr "" -#: app/brush_select.c:531 +#: app/brush_select.c:536 msgid "failed to run brush callback function" msgstr "" -#: app/brush_select.c:1187 +#: app/brush_select.c:1192 msgid "" "We are all fresh out of brush editors today,\n" "please write your own or try back tomorrow\n" msgstr "" -#: app/bucket_fill.c:114 +#: app/bucket_fill.c:113 msgid "FG Color Fill" msgstr "" -#: app/bucket_fill.c:115 +#: app/bucket_fill.c:114 msgid "BG Color Fill" msgstr "" -#: app/bucket_fill.c:116 +#: app/bucket_fill.c:115 msgid "Pattern Fill" msgstr "" -#: app/bucket_fill.c:157 app/color_picker.c:138 +#: app/bucket_fill.c:156 app/color_picker.c:139 app/tool_options.c:358 msgid "Sample Merged" msgstr "" #. fill type -#: app/bucket_fill.c:165 app/file_new_dialog.c:838 +#: app/bucket_fill.c:164 app/file_new_dialog.c:842 msgid "Fill Type" msgstr "" @@ -498,63 +500,63 @@ msgstr "" msgid "Bucket Fill operation failed." msgstr "" -#: app/bucket_fill.c:361 +#: app/bucket_fill.c:344 msgid "No available patterns for this operation." msgstr "" -#: app/by_color_select.c:557 app/paint_funcs.c:100 +#: app/by_color_select.c:542 app/paint_funcs.c:100 msgid "Replace" msgstr "" -#: app/by_color_select.c:558 app/colormap_dialog.i.c:99 +#: app/by_color_select.c:543 app/colormap_dialog.i.c:99 msgid "Add" msgstr "" -#: app/by_color_select.c:559 app/layers_dialog.c:282 +#: app/by_color_select.c:544 app/layers_dialog.c:215 app/tool_options.c:784 msgid "Subtract" msgstr "" -#: app/by_color_select.c:560 +#: app/by_color_select.c:545 msgid "Intersect" msgstr "" -#: app/by_color_select.c:578 +#: app/by_color_select.c:564 #, fuzzy msgid "By Color Selection" msgstr "/Tasot/Maski valinnaksi" -#: app/by_color_select.c:621 +#: app/by_color_select.c:607 msgid "Inactive" msgstr "" #. Create the selection mode radio box -#: app/by_color_select.c:628 +#: app/by_color_select.c:614 #, fuzzy msgid "Selection Mode" msgstr "/Valitse/Ei mitДДn" -#: app/by_color_select.c:652 +#: app/by_color_select.c:638 msgid "Fuzziness Threshold" msgstr "" #. The reset push button -#: app/by_color_select.c:668 app/curves.c:416 app/file_new_dialog.c:479 -#: app/tools.c:715 app/transform_core.c:116 +#: app/by_color_select.c:654 app/curves.c:516 app/file_new_dialog.c:483 +#: app/tools.c:873 app/transform_core.c:116 msgid "Reset" msgstr "" -#: app/channel.c:190 app/channel.c:192 app/layer.c:314 app/layer.c:316 +#: app/channel.c:191 app/channel.c:193 app/layer.c:316 app/layer.c:318 msgid "copy" msgstr "" #. formulate the new layer_mask name -#: app/channel.c:198 app/gradient.c:1359 app/layer.c:322 app/layer.c:1481 +#: app/channel.c:199 app/gradient.c:1359 app/layer.c:324 app/layer.c:1486 #, c-format msgid "%s copy" msgstr "" #. Create the new channel -#: app/channel.c:503 +#: app/channel.c:521 #, fuzzy msgid "Selection Mask" msgstr "/Valitse/PienennД" @@ -582,12 +584,12 @@ msgstr "" msgid "Fill Options" msgstr "/Tiedosto/Dialogit/TyЖkalujen Asetukset..." -#: app/channel_ops.c:164 app/file_new_dialog.c:133 app/file_new_dialog.c:493 -#: app/layers_dialog.c:3210 +#: app/channel_ops.c:164 app/file_new_dialog.c:135 app/file_new_dialog.c:497 +#: app/layers_dialog.c:2893 msgid "Background" msgstr "" -#: app/channel_ops.c:175 app/file_new_dialog.c:495 app/layers_dialog.c:3212 +#: app/channel_ops.c:175 app/file_new_dialog.c:499 app/layers_dialog.c:2895 msgid "Transparent" msgstr "" @@ -596,252 +598,276 @@ msgstr "" msgid "Offset by (x/2),(y/2)" msgstr "" -#: app/channels_dialog.c:159 app/channels_dialog.c:193 -#: app/channels_dialog.c:1936 +#: app/channels_dialog.c:165 app/channels_dialog.c:1911 msgid "New Channel" msgstr "" -#: app/channels_dialog.c:161 app/channels_dialog.c:194 +#: app/channels_dialog.c:167 msgid "Raise Channel" msgstr "" -#: app/channels_dialog.c:163 app/channels_dialog.c:195 +#: app/channels_dialog.c:169 msgid "Lower Channel" msgstr "" -#: app/channels_dialog.c:165 app/channels_dialog.c:196 +#: app/channels_dialog.c:171 #, fuzzy msgid "Duplicate Channel" msgstr "/Valitse/Talleta kanavalle" -#: app/channels_dialog.c:167 app/channels_dialog.c:197 +#: app/channels_dialog.c:173 +msgid "" +"Channel to Selection \n" +" Add Subtract Intersect" +msgstr "" + +#: app/channels_dialog.c:178 #, fuzzy msgid "Delete Channel" msgstr "/Valitse/Talleta kanavalle" -#: app/channels_dialog.c:169 +#: app/channels_dialog.c:537 app/menus.c:273 #, fuzzy -msgid "Channel To Selection" +msgid "/New Channel" +msgstr "/Valitse/Talleta kanavalle" + +#: app/channels_dialog.c:540 app/menus.c:274 +#, fuzzy +msgid "/Raise Channel" +msgstr "/Valitse/Talleta kanavalle" + +#: app/channels_dialog.c:544 app/menus.c:275 +#, fuzzy +msgid "/Lower Channel" +msgstr "/Tasot/Tasot & Kanavat..." + +#: app/channels_dialog.c:548 app/menus.c:276 +#, fuzzy +msgid "/Duplicate Channel" +msgstr "/Valitse/Talleta kanavalle" + +#: app/channels_dialog.c:552 app/menus.c:278 +#, fuzzy +msgid "/Channel to Selection" msgstr "/Tasot/Alpha valinnaksi" -#: app/channels_dialog.c:171 +#: app/channels_dialog.c:555 app/menus.c:283 #, fuzzy -msgid "Add To Selection" +msgid "/Delete Channel" +msgstr "/Valitse/Talleta kanavalle" + +#: app/channels_dialog.c:559 app/menus.c:279 +#, fuzzy +msgid "/Add to Selection" msgstr "/Tasot/Alpha valinnaksi" -#: app/channels_dialog.c:173 +#: app/channels_dialog.c:560 app/menus.c:280 #, fuzzy -msgid "Subtract From Selection" +msgid "/Subtract From Selection" msgstr "/Tasot/Alpha valinnaksi" -#: app/channels_dialog.c:175 +#: app/channels_dialog.c:561 app/menus.c:281 #, fuzzy -msgid "Intersect With Selection" +msgid "/Intersect With Selection" msgstr "/Tasot/Alpha valinnaksi" -#: app/channels_dialog.c:198 -msgid "" -"Channel To Selection \n" -" Add Subtract Intersect" -msgstr "" - -#: app/channels_dialog.c:633 app/channels_dialog.c:687 +#: app/channels_dialog.c:608 app/channels_dialog.c:662 #, c-format msgid "error in %s at %d: this shouldn't happen." msgstr "" -#: app/channels_dialog.c:1166 app/color_balance.c:413 app/curves.c:424 -#: app/levels.c:282 +#: app/channels_dialog.c:1137 app/color_balance.c:370 app/curves.c:405 +#: app/histogram_tool.c:279 app/levels.c:231 msgid "Red" msgstr "" -#: app/channels_dialog.c:1170 app/color_balance.c:440 app/curves.c:425 -#: app/levels.c:283 +#: app/channels_dialog.c:1141 app/color_balance.c:397 app/curves.c:406 +#: app/histogram_tool.c:280 app/levels.c:232 msgid "Green" msgstr "" -#: app/channels_dialog.c:1174 app/color_balance.c:467 app/curves.c:426 -#: app/levels.c:284 +#: app/channels_dialog.c:1145 app/color_balance.c:424 app/curves.c:407 +#: app/histogram_tool.c:281 app/levels.c:233 msgid "Blue" msgstr "" -#: app/channels_dialog.c:1178 +#: app/channels_dialog.c:1149 msgid "Gray" msgstr "" -#: app/channels_dialog.c:1182 +#: app/channels_dialog.c:1153 #, fuzzy msgid "Indexed" msgstr "/Kuva/Indeksoitu" -#: app/channels_dialog.c:1908 +#: app/channels_dialog.c:1883 msgid "New Channel Options" msgstr "" #. the name entry hbox, label and entry -#: app/channels_dialog.c:1926 +#: app/channels_dialog.c:1901 msgid "Channel name: " msgstr "" #. the opacity scale -#: app/channels_dialog.c:1940 +#: app/channels_dialog.c:1915 msgid "Fill Opacity: " msgstr "" -#: app/channels_dialog.c:2087 +#: app/channels_dialog.c:2066 msgid "Edit Channel Attributes" msgstr "" -#: app/channels_dialog.c:2107 +#: app/channels_dialog.c:2086 msgid "Channel name:" msgstr "" -#: app/channels_dialog.c:2122 +#: app/channels_dialog.c:2101 msgid "Fill Opacity" msgstr "" -#: app/clone.c:134 +#: app/clone.c:137 #, fuzzy msgid "Image Source" msgstr "/Kuva/Skaalaa" -#: app/clone.c:135 +#: app/clone.c:138 msgid "Pattern Source" msgstr "" -#: app/clone.c:139 +#: app/clone.c:144 msgid "Non Aligned" msgstr "" -#: app/clone.c:140 +#: app/clone.c:145 msgid "Aligned" msgstr "" -#: app/clone.c:141 +#: app/clone.c:146 msgid "Registered" msgstr "" #. the radio frame and box -#: app/clone.c:156 +#: app/clone.c:162 #, fuzzy msgid "Source" msgstr "Onnistui" #. the radio frame and box -#: app/clone.c:181 +#: app/clone.c:187 msgid "Alignment" msgstr "" -#: app/clone.c:308 +#: app/clone.c:314 msgid "No patterns available for this operation." msgstr "" -#: app/color_balance.c:222 +#: app/color_balance.c:184 msgid "Color Balance Options" msgstr "" -#: app/color_balance.c:269 +#: app/color_balance.c:222 msgid "Color balance operates only on RGB color drawables." msgstr "" -#: app/color_balance.c:323 +#: app/color_balance.c:279 msgid "Shadows" msgstr "" -#: app/color_balance.c:324 +#: app/color_balance.c:280 msgid "Midtones" msgstr "" -#: app/color_balance.c:325 +#: app/color_balance.c:281 msgid "Highlights" msgstr "" -#: app/color_balance.c:342 app/tools.c:476 +#: app/color_balance.c:299 app/tools.c:502 msgid "Color Balance" msgstr "" -#: app/color_balance.c:357 +#: app/color_balance.c:314 msgid "Color Levels: " msgstr "" #. Create the cyan-red scale widget -#: app/color_balance.c:396 +#: app/color_balance.c:353 msgid "Cyan" msgstr "" #. Create the magenta-green scale widget -#: app/color_balance.c:423 +#: app/color_balance.c:380 msgid "Magenta" msgstr "" #. Create the yellow-blue scale widget -#: app/color_balance.c:450 +#: app/color_balance.c:407 msgid "Yellow" msgstr "" #. The preserve luminosity toggle -#: app/color_balance.c:490 +#: app/color_balance.c:447 msgid "Preserve Luminosity" msgstr "" -#: app/color_notebook.c:111 app/color_select.c:186 +#: app/color_notebook.c:117 app/color_select.c:187 msgid "Color Selection" msgstr "" -#: app/color_notebook.c:182 app/color_select.c:205 +#: app/color_notebook.c:188 app/color_select.c:206 msgid "Revert to Old Color" msgstr "" -#: app/color_picker.c:127 +#: app/color_picker.c:128 msgid "Color Picker Options" msgstr "" -#: app/color_picker.c:153 +#: app/color_picker.c:154 msgid "Sample Average" msgstr "" -#: app/color_picker.c:224 app/tools.c:310 +#: app/color_picker.c:225 app/tools.c:306 msgid "Color Picker" msgstr "" -#: app/color_picker.c:231 app/color_picker.c:241 +#: app/color_picker.c:232 app/color_picker.c:242 msgid "Red:" msgstr "" -#: app/color_picker.c:232 app/color_picker.c:242 +#: app/color_picker.c:233 app/color_picker.c:243 msgid "Green:" msgstr "" -#: app/color_picker.c:233 app/color_picker.c:243 +#: app/color_picker.c:234 app/color_picker.c:244 msgid "Blue:" msgstr "" -#: app/color_picker.c:234 app/color_picker.c:240 app/color_picker.c:249 +#: app/color_picker.c:235 app/color_picker.c:241 app/color_picker.c:250 msgid "Alpha:" msgstr "" -#: app/color_picker.c:235 app/color_picker.c:250 app/color_select.c:386 -#: app/colormap_dialog.i.c:199 +#: app/color_picker.c:236 app/color_picker.c:251 app/color_select.c:387 +#: app/colormap_dialog.i.c:201 msgid "Hex Triplet:" msgstr "" -#: app/color_picker.c:239 app/colormap_dialog.i.c:192 +#: app/color_picker.c:240 app/colormap_dialog.i.c:194 #, fuzzy msgid "Index:" msgstr "/Kuva/Indeksoitu" -#: app/color_picker.c:244 +#: app/color_picker.c:245 msgid "Hex Triplet" msgstr "" -#: app/color_picker.c:248 app/histogram_tool.c:311 +#: app/color_picker.c:249 app/histogram_tool.c:271 msgid "Intensity:" msgstr "" -#: app/color_picker.c:541 app/color_picker.c:542 app/color_picker.c:543 -#: app/color_picker.c:544 app/color_picker.c:545 app/color_picker.c:546 -#: app/color_picker.c:547 app/color_picker.c:560 app/color_picker.c:572 -#: app/color_picker.c:587 +#: app/color_picker.c:547 app/color_picker.c:548 app/color_picker.c:549 +#: app/color_picker.c:550 app/color_picker.c:551 app/color_picker.c:552 +#: app/color_picker.c:553 app/color_picker.c:566 app/color_picker.c:578 +#: app/color_picker.c:593 msgid "N/A" msgstr "" @@ -857,7 +883,7 @@ msgid "Indexed Color Palette" msgstr "/Dialogit/Indeksoitu paletti..." #. The GIMP image option menu -#: app/colormap_dialog.i.c:136 app/layers_dialog.c:359 +#: app/colormap_dialog.i.c:136 app/lc_dialog.c:131 #, fuzzy msgid "Image:" msgstr "/Kuva/---" @@ -867,49 +893,49 @@ msgstr "/Kuva/---" msgid "Operations" msgstr "/Dialogit/TyЖkalujen asetukset" -#: app/colormap_dialog.i.c:831 app/layers_dialog.c:879 +#: app/colormap_dialog.i.c:833 app/lc_dialog.c:614 msgid "none" msgstr "" -#: app/commands.c:366 +#: app/commands.c:342 msgid "Border Selection" msgstr "" -#: app/commands.c:366 +#: app/commands.c:343 msgid "Border selection by:" msgstr "" -#: app/commands.c:384 +#: app/commands.c:360 #, fuzzy msgid "Feather Selection" msgstr "/Tasot/Maski valinnaksi" -#: app/commands.c:384 +#: app/commands.c:361 msgid "Feather selection by:" msgstr "" -#: app/commands.c:402 +#: app/commands.c:378 #, fuzzy msgid "Grow Selection" msgstr "/Valitse/Ei mitДДn" -#: app/commands.c:402 +#: app/commands.c:379 msgid "Grow selection by:" msgstr "" -#: app/commands.c:420 +#: app/commands.c:396 msgid "Shrink Selection" msgstr "" -#: app/commands.c:420 +#: app/commands.c:397 msgid "Shrink selection by:" msgstr "" -#: app/commands.c:1199 +#: app/commands.c:1179 msgid "Resize Error: Both width and height must be greater than zero." msgstr "" -#: app/commands.c:1248 +#: app/commands.c:1228 msgid "Scale Error: Both width and height must be greater than zero." msgstr "" @@ -966,115 +992,115 @@ msgstr "/Valitse/Ter msgid "Convolve Type" msgstr "" -#: app/crop.c:169 app/crop.c:1009 +#: app/crop.c:170 app/crop.c:1025 msgid "Crop" msgstr "" -#: app/crop.c:169 app/crop.c:1010 +#: app/crop.c:170 app/crop.c:1026 #, fuzzy msgid "Resize" msgstr "/Kuva/Muokkaa kokoa" -#: app/crop.c:175 +#: app/crop.c:176 #, fuzzy msgid "Crop & Resize Options" msgstr "/Dialogit/TyЖkalujen asetukset" -#: app/crop.c:186 +#: app/crop.c:187 msgid "Current layer only" msgstr "" #. enlarge toggle -#: app/crop.c:197 +#: app/crop.c:198 msgid "Allow Enlarging" msgstr "" #. tool toggle -#: app/crop.c:208 app/flip_tool.c:84 +#: app/crop.c:209 app/flip_tool.c:85 msgid "Tool Toggle" msgstr "" -#: app/crop.c:500 app/crop.c:508 +#: app/crop.c:501 app/crop.c:509 msgid "Crop: " msgstr "" -#: app/crop.c:997 +#: app/crop.c:1005 msgid "Crop: 0 x 0" msgstr "" #. create the info dialog -#: app/crop.c:1025 +#: app/crop.c:1033 #, fuzzy msgid "Crop & Resize Information" msgstr "/Dialogit/TyЖkalujen asetukset" #. add the information fields -#: app/crop.c:1028 +#: app/crop.c:1036 msgid "Origin X:" msgstr "" -#: app/crop.c:1031 app/file_new_dialog.c:749 app/resize.c:334 app/resize.c:419 -#: app/resize.c:577 app/rotate_tool.c:108 app/scale_tool.c:99 +#: app/crop.c:1039 app/file_new_dialog.c:753 app/resize.c:334 app/resize.c:419 +#: app/resize.c:577 app/rotate_tool.c:109 app/scale_tool.c:99 #: app/shear_tool.c:83 msgid "Y:" msgstr "" #. the pixel size labels -#: app/crop.c:1059 app/file_new_dialog.c:610 app/file_new_dialog.c:628 +#: app/crop.c:1052 app/file_new_dialog.c:614 app/file_new_dialog.c:632 +#: app/tool_options.c:405 msgid "Width:" msgstr "" -#: app/crop.c:1062 app/file_new_dialog.c:616 app/file_new_dialog.c:634 -#: app/layers_dialog.c:3271 app/resize.c:245 app/resize.c:270 app/resize.c:514 -#: app/scale_tool.c:78 app/scale_tool.c:85 +#: app/crop.c:1055 app/file_new_dialog.c:620 app/file_new_dialog.c:638 +#: app/layers_dialog.c:2954 app/resize.c:245 app/resize.c:270 app/resize.c:514 +#: app/scale_tool.c:78 app/scale_tool.c:85 app/tool_options.c:427 msgid "Height:" msgstr "" -#: app/crop.c:1097 +#: app/crop.c:1077 #, fuzzy msgid "From Selection" msgstr "/Valitse/Ei mitДДn" -#: app/crop.c:1103 -#, fuzzy -msgid "Automatic" -msgstr "/Automaattinen" +#: app/crop.c:1083 +msgid "Auto Shrink" +msgstr "" -#: app/curves.c:373 +#: app/curves.c:368 msgid "Curves Options" msgstr "" -#: app/curves.c:423 app/layers_dialog.c:288 app/levels.c:281 -#: app/paint_funcs.c:97 +#: app/curves.c:404 app/histogram_tool.c:278 app/layers_dialog.c:227 +#: app/levels.c:230 app/paint_funcs.c:97 app/tool_options.c:790 msgid "Value" msgstr "" -#: app/curves.c:427 app/levels.c:285 +#: app/curves.c:408 app/levels.c:234 msgid "Alpha" msgstr "" -#: app/curves.c:433 -msgid "Smooth" -msgstr "" - -#: app/curves.c:434 -msgid "Free" -msgstr "" - -#: app/curves.c:445 +#: app/curves.c:419 msgid "Curves for indexed drawables cannot be adjusted." msgstr "" -#: app/curves.c:560 app/tools.c:551 +#: app/curves.c:523 +msgid "Smooth" +msgstr "" + +#: app/curves.c:524 +msgid "Free" +msgstr "" + +#: app/curves.c:550 app/tools.c:577 msgid "Curves" msgstr "" -#: app/curves.c:574 +#: app/curves.c:564 msgid "Modify Curves for Channel: " msgstr "" #. The option menu for selecting the drawing method -#: app/curves.c:648 +#: app/curves.c:638 msgid "Curve Type: " msgstr "" @@ -1082,7 +1108,7 @@ msgstr "" msgid "Desaturate operates only on RGB color drawables." msgstr "" -#: app/devices.c:123 app/palette.c:2187 app/preferences_dialog.c:1437 +#: app/devices.c:123 app/palette.c:2187 app/preferences_dialog.c:1471 msgid "Save" msgstr "" @@ -1119,51 +1145,51 @@ msgstr "" msgid "There's no selection to remove." msgstr "" -#: app/docindexif.c:75 +#: app/docindexif.c:80 msgid "Open" msgstr "" -#: app/docindexif.c:75 +#: app/docindexif.c:80 msgid "Open a file" msgstr "" -#: app/docindexif.c:80 +#: app/docindexif.c:85 msgid "Up" msgstr "" -#: app/docindexif.c:80 +#: app/docindexif.c:85 msgid "Move the selected entry up in the index" msgstr "" -#: app/docindexif.c:85 +#: app/docindexif.c:90 msgid "Down" msgstr "" -#: app/docindexif.c:85 +#: app/docindexif.c:90 msgid "Move the selected entry down in the index" msgstr "" -#: app/docindexif.c:90 +#: app/docindexif.c:95 msgid "Remove" msgstr "" -#: app/docindexif.c:90 +#: app/docindexif.c:95 msgid "Remove the selected entry from the index" msgstr "" -#: app/docindexif.c:95 +#: app/docindexif.c:100 #, fuzzy msgid "Close the Document Index" msgstr "/Tiedosto/Dialogit/Dokumenttien indexi..." #. Set the GOWindow title -#: app/docindexif.c:213 +#: app/docindexif.c:218 #, fuzzy msgid "Document Index" msgstr "/Tiedosto/Dialogit/Dokumenttien indexi..." #. Set the initial status message -#: app/docindexif.c:219 +#: app/docindexif.c:224 msgid "GTK successfully started" msgstr "" @@ -1171,11 +1197,11 @@ msgstr "" msgid "drawable_fill called with unknown fill type" msgstr "" -#: app/edit_selection.c:164 +#: app/edit_selection.c:163 msgid "Move: 0, 0" msgstr "" -#: app/edit_selection.c:443 app/edit_selection.c:453 +#: app/edit_selection.c:442 app/edit_selection.c:452 msgid "Move: " msgstr "" @@ -1189,41 +1215,41 @@ msgid "Hard edge" msgstr "" #. the incremental toggle -#: app/eraser.c:108 app/paintbrush.c:258 +#: app/eraser.c:108 app/paintbrush.c:257 msgid "Incremental" msgstr "" -#: app/errorconsole.c:168 +#: app/errorconsole.c:170 #, fuzzy, c-format msgid "Error opening file %s: %s" msgstr "Virhe tiedoston avauksessa: %s\n" -#: app/errorconsole.c:183 +#: app/errorconsole.c:185 msgid "Can't save, nothing selected!" msgstr "" -#: app/errorconsole.c:187 +#: app/errorconsole.c:189 msgid "Save error log to file..." msgstr "" -#: app/errorconsole.c:244 +#: app/errorconsole.c:246 msgid "GIMP Error console" msgstr "" -#: app/errorconsole.c:259 +#: app/errorconsole.c:261 msgid "Write all errors to file..." msgstr "" -#: app/errorconsole.c:266 +#: app/errorconsole.c:268 msgid "Write selection to file..." msgstr "" -#: app/file_new_dialog.c:299 +#: app/file_new_dialog.c:303 #, fuzzy msgid "Confirm Image Size" msgstr "/Kuva/Muokkaa kokoa" -#: app/file_new_dialog.c:313 +#: app/file_new_dialog.c:317 #, c-format msgid "" "You are trying to create an image which\n" @@ -1239,85 +1265,85 @@ msgid "" "preferences dialog." msgstr "" -#: app/file_new_dialog.c:407 +#: app/file_new_dialog.c:411 #, c-format msgid "%d Bytes" msgstr "" -#: app/file_new_dialog.c:409 +#: app/file_new_dialog.c:413 #, c-format msgid "%.2f KB" msgstr "" -#: app/file_new_dialog.c:411 +#: app/file_new_dialog.c:415 #, c-format msgid "%.1f KB" msgstr "" -#: app/file_new_dialog.c:413 +#: app/file_new_dialog.c:417 #, c-format msgid "%d KB" msgstr "" -#: app/file_new_dialog.c:415 +#: app/file_new_dialog.c:419 #, c-format msgid "%.2f MB" msgstr "" -#: app/file_new_dialog.c:417 +#: app/file_new_dialog.c:421 #, c-format msgid "%.1f MB" msgstr "" #. bytes per pixel #. alpha channel -#: app/file_new_dialog.c:442 +#: app/file_new_dialog.c:446 #, fuzzy, c-format msgid "Image Size: %s" msgstr "/Kuva/Muokkaa kokoa" -#: app/file_new_dialog.c:485 app/gdisplay.c:197 app/preferences_dialog.c:1598 +#: app/file_new_dialog.c:489 app/gdisplay.c:202 app/preferences_dialog.c:1633 msgid "RGB" msgstr "" -#: app/file_new_dialog.c:486 app/info_window.c:50 app/info_window.c:241 -#: app/preferences_dialog.c:1599 +#: app/file_new_dialog.c:490 app/info_window.c:50 app/info_window.c:241 +#: app/preferences_dialog.c:1634 #, fuzzy msgid "Grayscale" msgstr "/Kuva/HarmaasДvy" -#: app/file_new_dialog.c:492 app/layers_dialog.c:3209 +#: app/file_new_dialog.c:496 app/layers_dialog.c:2892 msgid "Foreground" msgstr "" -#: app/file_new_dialog.c:494 app/layers_dialog.c:3211 +#: app/file_new_dialog.c:498 app/layers_dialog.c:2894 msgid "White" msgstr "" -#: app/file_new_dialog.c:568 +#: app/file_new_dialog.c:572 msgid "New Image" msgstr "" -#: app/file_new_dialog.c:674 app/preferences_dialog.c:1507 +#: app/file_new_dialog.c:678 app/preferences_dialog.c:1542 msgid "Pixels" msgstr "" #. the resolution labels -#: app/file_new_dialog.c:743 app/resize.c:571 +#: app/file_new_dialog.c:747 app/resize.c:571 #, fuzzy msgid "Resolution X:" msgstr "/Valitse/Ei mitДДn" -#: app/file_new_dialog.c:764 app/resize.c:592 +#: app/file_new_dialog.c:768 app/resize.c:592 msgid "pixels/%a" msgstr "" #. frame for Image Type -#: app/file_new_dialog.c:808 +#: app/file_new_dialog.c:812 msgid "Image Type" msgstr "" -#: app/fileops.c:222 app/fileops.c:251 +#: app/fileops.c:224 app/fileops.c:253 msgid "Load Image" msgstr "" @@ -1326,366 +1352,128 @@ msgstr "" msgid "Open Options" msgstr "" -#: app/fileops.c:278 app/fileops.c:479 +#: app/fileops.c:278 app/fileops.c:482 msgid "Determine file type:" msgstr "" -#: app/fileops.c:441 app/fileops.c:463 +#: app/fileops.c:443 app/fileops.c:465 msgid "Save Image" msgstr "" -#: app/fileops.c:471 +#: app/fileops.c:474 msgid "Save Options" msgstr "" -#: app/fileops.c:522 +#: app/fileops.c:526 msgid "Can't revert. No filename associated with this image" msgstr "" -#: app/fileops.c:536 +#: app/fileops.c:540 msgid "Revert failed." msgstr "" -#: app/fileops.c:1212 app/fileops.c:1302 +#: app/fileops.c:1364 app/fileops.c:1454 msgid "Open failed: " msgstr "" -#: app/fileops.c:1368 +#: app/fileops.c:1520 #, c-format msgid "%s is an irregular file (%s)" msgstr "" -#: app/fileops.c:1382 app/fileops.c:1485 +#: app/fileops.c:1534 app/fileops.c:1641 msgid "Save failed: " msgstr "" -#: app/fileops.c:1394 app/fileops.c:1407 +#: app/fileops.c:1546 app/fileops.c:1547 app/fileops.c:1559 app/fileops.c:1560 +#: app/menus.c:58 app/menus.c:90 #, fuzzy -msgid "/File/Open" +msgid "/File/Open" msgstr "/Tiedosto/Avaa" -#: app/fileops.c:1395 app/fileops.c:1408 +#: app/fileops.c:1548 app/fileops.c:1564 app/menus.c:91 #, fuzzy -msgid "/File/Open" -msgstr "/Tiedosto/Avaa" - -#: app/fileops.c:1396 app/fileops.c:1409 -#, fuzzy -msgid "/File/Save" +msgid "/File/Save" msgstr "/Tiedosto/Talleta" -#: app/fileops.c:1397 app/fileops.c:1410 +#: app/fileops.c:1549 app/fileops.c:1565 app/menus.c:92 #, fuzzy -msgid "/File/Save as" +msgid "/File/Save as" msgstr "/Tiedosto/Talleta nimellД" -#: app/fileops.c:1430 +#: app/fileops.c:1586 #, c-format msgid "%s exists, overwrite?" msgstr "" -#: app/fileops.c:1436 +#: app/fileops.c:1592 msgid "File Exists!" msgstr "" -#: app/flip_tool.c:70 app/preferences_dialog.c:1553 -#: app/preferences_dialog.c:2215 +#: app/flip_tool.c:71 app/preferences_dialog.c:1588 +#: app/preferences_dialog.c:2290 msgid "Horizontal" msgstr "" -#: app/flip_tool.c:70 app/preferences_dialog.c:1555 -#: app/preferences_dialog.c:2217 +#: app/flip_tool.c:71 app/preferences_dialog.c:1590 +#: app/preferences_dialog.c:2292 msgid "Vertical" msgstr "" -#: app/flip_tool.c:76 +#: app/flip_tool.c:77 #, fuzzy msgid "Flip Tool Options" msgstr "/Tiedosto/Dialogit/TyЖkalujen Asetukset..." -#: app/floating_sel.c:108 +#: app/floating_sel.c:107 msgid "" "Cannot anchor this layer because\n" "it is not a floating selection." msgstr "" -#: app/floating_sel.c:174 +#: app/floating_sel.c:173 msgid "" "Cannot create a new layer from the floating\n" "selection because it belongs to a\n" "layer mask or channel." msgstr "" -#: app/free_select.c:220 +#: app/free_select.c:219 msgid "Cannot properly scanline convert polygon!\n" msgstr "" -#: app/gdisplay.c:197 +#: app/gdisplay.c:202 msgid "RGB-empty" msgstr "" -#: app/gdisplay.c:200 +#: app/gdisplay.c:205 msgid "grayscale-empty" msgstr "" -#: app/gdisplay.c:200 +#: app/gdisplay.c:205 #, fuzzy msgid "grayscale" msgstr "/Kuva/HarmaasДvy" -#: app/gdisplay.c:203 +#: app/gdisplay.c:208 msgid "indexed-empty" msgstr "" -#: app/gdisplay.c:203 +#: app/gdisplay.c:208 msgid "indexed" msgstr "" -#: app/gdisplay.c:1573 -#, fuzzy -msgid "/Layers/Stack/Previous Layer" -msgstr "/Tasot/Nosta taso" - -#: app/gdisplay.c:1574 -#, fuzzy -msgid "/Layers/Stack/Next Layer" -msgstr "/Tasot/Nosta taso" - -#: app/gdisplay.c:1575 -#, fuzzy -msgid "/Layers/Stack/Raise Layer" -msgstr "/Tasot/Nosta taso" - -#: app/gdisplay.c:1576 -#, fuzzy -msgid "/Layers/Stack/Lower Layer" -msgstr "/Tasot/Alenna taso" - -#: app/gdisplay.c:1577 -#, fuzzy -msgid "/Layers/Stack/Layer to Top" -msgstr "/Tasot/Nosta taso" - -#: app/gdisplay.c:1578 -#, fuzzy -msgid "/Layers/Stack/Layer to Bottom" -msgstr "/Tasot/Nosta taso" - -#: app/gdisplay.c:1579 -#, fuzzy -msgid "/Layers/Anchor Layer" -msgstr "/Tasot/Ankkuroi taso" - -#: app/gdisplay.c:1580 -#, fuzzy -msgid "/Layers/Merge Visible Layers" -msgstr "/Tasot/YhdistД nДkyvДt tasot" - -#: app/gdisplay.c:1581 -#, fuzzy -msgid "/Layers/Flatten Image" -msgstr "/Tasot/YhdistД kuva" - -#: app/gdisplay.c:1582 -#, fuzzy -msgid "/Layers/Alpha To Selection" -msgstr "/Tasot/Alpha valinnaksi" - -#: app/gdisplay.c:1583 -#, fuzzy -msgid "/Layers/Mask To Selection" -msgstr "/Tasot/Maski valinnaksi" - -#: app/gdisplay.c:1584 -#, fuzzy -msgid "/Layers/Add Alpha Channel" -msgstr "/Tasot/LisДД alpha kanava" - -#: app/gdisplay.c:1586 -#, fuzzy -msgid "/Image/RGB" -msgstr "/Kuva/RGB" - -#: app/gdisplay.c:1587 -#, fuzzy -msgid "/Image/Grayscale" -msgstr "/Kuva/HarmaasДvy" - -#: app/gdisplay.c:1588 -#, fuzzy -msgid "/Image/Indexed" -msgstr "/Kuva/Indeksoitu" - -#: app/gdisplay.c:1590 -#, fuzzy -msgid "/Image/Colors/Threshold" -msgstr "/Kuva/VДrit/Invertoi" - -#: app/gdisplay.c:1591 -#, fuzzy -msgid "/Image/Colors/Posterize" -msgstr "/Kuva/VДrit/Desaturate" - -#: app/gdisplay.c:1592 -#, fuzzy -msgid "/Image/Colors/Equalize" -msgstr "/Kuva/VДrit/Equalize" - -#: app/gdisplay.c:1593 -#, fuzzy -msgid "/Image/Colors/Invert" -msgstr "/Kuva/VДrit/Invertoi" - -#: app/gdisplay.c:1595 -#, fuzzy -msgid "/Image/Colors/Color Balance" -msgstr "/Kuva/VДrit/Equalize" - -#: app/gdisplay.c:1596 -#, fuzzy -msgid "/Image/Colors/Brightness-Contrast" -msgstr "/Kuva/VДrit/Desaturate" - -#: app/gdisplay.c:1597 -#, fuzzy -msgid "/Image/Colors/Hue-Saturation" -msgstr "/Kuva/VДrit/Desaturate" - -#: app/gdisplay.c:1598 -#, fuzzy -msgid "/Image/Colors/Curves" -msgstr "/Kuva/VДrit/Invertoi" - -#: app/gdisplay.c:1599 -#, fuzzy -msgid "/Image/Colors/Levels" -msgstr "/Kuva/VДrit/Invertoi" - -#: app/gdisplay.c:1601 -#, fuzzy -msgid "/Image/Colors/Desaturate" -msgstr "/Kuva/VДrit/Desaturate" - -#: app/gdisplay.c:1603 -#, fuzzy -msgid "/Image/Alpha/Add Alpha Channel" -msgstr "/Kuva/Alpha/LisДД alpha kanava" - -#: app/gdisplay.c:1605 -#, fuzzy -msgid "/Select" -msgstr "/Kuva/Skaalaa" - -#: app/gdisplay.c:1606 -#, fuzzy -msgid "/Edit/Cut" -msgstr "/Muokkaa/Leikkaa" - -#: app/gdisplay.c:1607 -#, fuzzy -msgid "/Edit/Copy" -msgstr "/Muokkaa/Kopioi" - -#: app/gdisplay.c:1608 -#, fuzzy -msgid "/Edit/Paste" -msgstr "/Muokkaa/Liimaa" - -#: app/gdisplay.c:1609 -#, fuzzy -msgid "/Edit/Paste Into" -msgstr "/Muokkaa/Liimaa johonkin" - -#: app/gdisplay.c:1610 -#, fuzzy -msgid "/Edit/Clear" -msgstr "/Muokkaa/TyhjennД" - -#: app/gdisplay.c:1611 -#, fuzzy -msgid "/Edit/Fill" -msgstr "/Muokkaa/TДytД" - -#: app/gdisplay.c:1612 -#, fuzzy -msgid "/Edit/Stroke" -msgstr "/Muokkaa/PiirrД" - -#: app/gdisplay.c:1613 -#, fuzzy -msgid "/Edit/Cut Named" -msgstr "/Muokkaa/Leikkaa nimetty" - -#: app/gdisplay.c:1614 -#, fuzzy -msgid "/Edit/Copy Named" -msgstr "/Muokkaa/Kopioi nimetty" - -#: app/gdisplay.c:1615 -#, fuzzy -msgid "/Edit/Paste Named" -msgstr "/Muokkaa/Liimaa nimetty" - -#: app/gdisplay.c:1616 -#, fuzzy -msgid "/Image/Colors" -msgstr "/Kuva/VДrit/---" - -#: app/gdisplay.c:1617 -#, fuzzy -msgid "/Image/Channel Ops/Offset" -msgstr "/Kuva/Kanava operaatiot/Offset" - -#: app/gdisplay.c:1618 -msgid "/Image/Histogram" -msgstr "" - -#: app/gdisplay.c:1619 -#, fuzzy -msgid "/Filters" -msgstr "/Suotimet/" - -#. save selection to channel -#: app/gdisplay.c:1622 -#, fuzzy -msgid "/Select/Save To Channel" -msgstr "/Valitse/Talleta kanavalle" - -#: app/gdisplay.c:1624 -#, fuzzy -msgid "/View/Toggle Rulers" -msgstr "/NДytД/Vaihda viivottimet" - -#: app/gdisplay.c:1625 -#, fuzzy -msgid "/View/Toggle Guides" -msgstr "/NДytД/Vaihda apuviivat" - -#: app/gdisplay.c:1626 -#, fuzzy -msgid "/View/Snap To Guides" -msgstr "/NДytД/Nappaa apuviivoihin" - -#: app/gdisplay.c:1627 -#, fuzzy -msgid "/View/Toggle Statusbar" -msgstr "/NДytД/Vaihda infopalkki" - -#: app/gdisplay.c:1628 -msgid "/View/Dot for dot" -msgstr "" - -#: app/gdisplay.c:2063 +#: app/gdisplay.c:2102 msgid "gdisplays_flush() called recursively." msgstr "" -#: app/gdisplay_ops.c:305 app/gdisplay_ops.c:324 app/gdisplay_ops.c:334 -#: app/gdisplay_ops.c:370 +#: app/gdisplay_ops.c:305 app/gdisplay_ops.c:320 app/gdisplay_ops.c:330 +#: app/gdisplay_ops.c:366 app/menus.c:97 #, fuzzy -msgid "/File/Close" +msgid "/File/Close" msgstr "/Tiedosto/Sulje" -#: app/gdisplay_ops.c:392 +#: app/gdisplay_ops.c:388 #, c-format msgid "Changes were made to %s. Close anyway?" msgstr "" @@ -1756,105 +1544,105 @@ msgstr "" msgid "Layer type %d not supported." msgstr "" -#: app/gimpimage.c:596 app/gimpimage.c:690 +#: app/gimpimage.c:642 app/gimpimage.c:740 msgid "gimp_image_apply_image sent illegal parameters" msgstr "" -#: app/gimpimage.c:1096 +#: app/gimpimage.c:1172 msgid "Unable to project indexed image." msgstr "" -#: app/gimpimage.c:1966 +#: app/gimpimage.c:2109 msgid "Layer cannot be raised any further" msgstr "" -#: app/gimpimage.c:2040 +#: app/gimpimage.c:2184 msgid "Layer cannot be lowered any further" msgstr "" #. layer_arg is already the top_layer -#: app/gimpimage.c:2069 +#: app/gimpimage.c:2214 msgid "Layer is already on top" msgstr "" -#: app/gimpimage.c:2074 +#: app/gimpimage.c:2219 msgid "Can't raise Layer without alpha" msgstr "" #. there is no next layer below layer_arg -#: app/gimpimage.c:2168 +#: app/gimpimage.c:2314 msgid "Layer is already on bottom" msgstr "" -#: app/gimpimage.c:2181 +#: app/gimpimage.c:2327 msgid "BG has no alpha, layer was placed above" msgstr "" -#: app/gimpimage.c:2243 +#: app/gimpimage.c:2390 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." msgstr "" -#: app/gimpimage.c:2321 +#: app/gimpimage.c:2468 msgid "There are not enough visible layers for a merge down." msgstr "" -#: app/gimpimage.c:2432 app/gimpimage.c:2465 +#: app/gimpimage.c:2581 app/gimpimage.c:2614 msgid "gimp_image_merge_layers: could not allocate merge layer" msgstr "" -#: app/gimpimage.c:2504 +#: app/gimpimage.c:2653 msgid "gimp_image_merge_layers attempting to merge incompatible layers\n" msgstr "" -#: app/gimpimage.c:2584 +#: app/gimpimage.c:2735 msgid "gimp_image_add_layer: attempt to add layer to wrong image" msgstr "" -#: app/gimpimage.c:2594 +#: app/gimpimage.c:2745 msgid "gimp_image_add_layer: trying to add layer to image twice" msgstr "" -#: app/gimpimage.c:2710 +#: app/gimpimage.c:2864 msgid "" "Unable to add a layer mask since\n" "the layer already has one." msgstr "" -#: app/gimpimage.c:2714 +#: app/gimpimage.c:2868 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." msgstr "" -#: app/gimpimage.c:2718 +#: app/gimpimage.c:2872 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." msgstr "" -#: app/gimpimage.c:2722 +#: app/gimpimage.c:2876 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -#: app/gimpimage.c:2826 +#: app/gimpimage.c:2983 msgid "Channel cannot be raised any further" msgstr "" -#: app/gimpimage.c:2873 +#: app/gimpimage.c:3031 msgid "Channel cannot be lowered any further" msgstr "" -#: app/gimpimage.c:2893 +#: app/gimpimage.c:3053 msgid "gimp_image_add_channel: attempt to add channel to wrong image" msgstr "" -#: app/gimpimage.c:2903 +#: app/gimpimage.c:3063 msgid "gimp_image_add_channel: trying to add channel to image twice" msgstr "" -#: app/gimpimage.c:3029 app/palette.c:525 app/palette.c:550 app/palette.c:909 +#: app/gimpimage.c:3190 app/palette.c:525 app/palette.c:550 app/palette.c:909 #: app/palette.c:913 app/palette.c:2313 app/palette.c:2995 msgid "Untitled" msgstr "" @@ -1863,95 +1651,99 @@ msgstr "" msgid "Progress" msgstr "" -#: app/gimprc.c:353 app/plug_in.c:302 +#: app/gimprc.c:358 app/plug_in.c:305 msgid "Resource configuration" msgstr "" -#: app/gimprc.c:408 +#: app/gimprc.c:413 #, fuzzy, c-format msgid "error parsing: \"%s\"\n" msgstr "Virhe tiedoston avauksessa: %s\n" -#: app/gimprc.c:409 +#: app/gimprc.c:414 #, c-format msgid " at line %d column %d\n" msgstr "" -#: app/gimprc.c:410 +#: app/gimprc.c:415 #, c-format msgid " unexpected token: %s\n" msgstr "" -#: app/gimprc.c:1300 +#: app/gimprc.c:1305 msgid "error parsing pluginrc" msgstr "" -#: app/gimprc.c:1635 +#: app/gimprc.c:1640 #, c-format msgid "gimprc token referenced but not defined: %s" msgstr "" -#: app/gimprc.c:2518 +#: app/gimprc.c:2522 #, c-format msgid "Can't open %s; %s" msgstr "" -#: app/gimprc.c:2537 +#: app/gimprc.c:2541 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "" -#: app/gimprc.c:2543 +#: app/gimprc.c:2547 #, c-format msgid "Couldn't reopen %s\n" msgstr "" -#: app/gimprc.c:2555 +#: app/gimprc.c:2559 #, c-format msgid "Can't write to %s; %s" msgstr "" #. Make a new floating layer -#: app/global_edit.c:284 +#: app/global_edit.c:289 app/global_edit.c:344 app/global_edit.c:354 #, fuzzy msgid "Pasted Layer" msgstr "/Tasot/Nosta taso" -#: app/global_edit.c:591 +#: app/global_edit.c:698 #, fuzzy msgid "Paste" msgstr "/Muokkaa/Liimaa" +#: app/global_edit.c:699 +#, fuzzy +msgid "Paste Into" +msgstr "/Muokkaa/Liimaa johonkin" + +#: app/global_edit.c:700 +msgid "Paste As New" +msgstr "" + #. Buttons -#: app/global_edit.c:592 app/gradient.c:1477 app/palette.c:1429 +#: app/global_edit.c:704 app/gradient.c:1477 app/palette.c:1429 #: app/palette.c:2179 msgid "Delete" msgstr "" -#: app/global_edit.c:606 +#: app/global_edit.c:720 #, fuzzy msgid "Paste Named Buffer" msgstr "/Muokkaa/Liimaa nimetty" -#: app/global_edit.c:618 +#: app/global_edit.c:732 msgid "Select a buffer to paste:" msgstr "" -#: app/global_edit.c:637 -#, fuzzy -msgid "Replace Current Selection" -msgstr "/Tasot/Maski valinnaksi" - -#: app/global_edit.c:699 +#: app/global_edit.c:820 #, fuzzy msgid "Cut Named" msgstr "/Muokkaa/Leikkaa nimetty" -#: app/global_edit.c:700 app/global_edit.c:732 +#: app/global_edit.c:821 app/global_edit.c:853 msgid "Enter a name for this buffer" msgstr "" -#: app/global_edit.c:731 +#: app/global_edit.c:852 #, fuzzy msgid "Copy Named" msgstr "/Muokkaa/Kopioi nimetty" @@ -2008,7 +1800,7 @@ msgstr "/Dialogit/Liukuv msgid "Gradients: " msgstr "" -#: app/gradient.c:680 app/gradient_select.c:476 app/paintbrush.c:199 +#: app/gradient.c:680 app/gradient_select.c:476 app/paintbrush.c:204 #: app/palette.c:2833 msgid "Gradient" msgstr "" @@ -2361,92 +2153,106 @@ msgstr "" msgid "Gradient Selection" msgstr "/Valitse/Ei mitДДn" -#: app/histogram_tool.c:207 +#: app/histogram_tool.c:173 #, fuzzy msgid "Histogram Options" msgstr "/Dialogit/TyЖkalujen asetukset" -#: app/histogram_tool.c:307 +#: app/histogram_tool.c:210 +msgid "Histogram does not operate on indexed drawables." +msgstr "" + +#: app/histogram_tool.c:267 msgid "Mean:" msgstr "" -#: app/histogram_tool.c:308 +#: app/histogram_tool.c:268 msgid "Std Dev:" msgstr "" -#: app/histogram_tool.c:309 +#: app/histogram_tool.c:269 msgid "Median:" msgstr "" -#: app/histogram_tool.c:310 +#: app/histogram_tool.c:270 msgid "Pixels:" msgstr "" -#: app/histogram_tool.c:312 +#: app/histogram_tool.c:272 msgid "Count:" msgstr "" -#: app/histogram_tool.c:313 +#: app/histogram_tool.c:273 msgid "Percentile:" msgstr "" -#: app/hue_saturation.c:301 +#: app/histogram_tool.c:296 app/tools.c:607 +msgid "Histogram" +msgstr "" + +#: app/histogram_tool.c:315 +msgid "Information on Channel:" +msgstr "" + +#: app/hue_saturation.c:260 msgid "Hue-Saturation Options" msgstr "" -#: app/hue_saturation.c:348 +#: app/hue_saturation.c:298 msgid "Hue-Saturation operates only on RGB color drawables." msgstr "" -#: app/hue_saturation.c:416 +#: app/hue_saturation.c:367 #, fuzzy msgid "Master" msgstr "/Muokkaa/Liimaa" -#: app/hue_saturation.c:417 +#: app/hue_saturation.c:368 msgid "R" msgstr "" -#: app/hue_saturation.c:418 +#: app/hue_saturation.c:369 msgid "Y" msgstr "" -#: app/hue_saturation.c:419 +#: app/hue_saturation.c:370 msgid "G" msgstr "" -#: app/hue_saturation.c:420 +#: app/hue_saturation.c:371 msgid "C" msgstr "" -#: app/hue_saturation.c:421 +#: app/hue_saturation.c:372 msgid "B" msgstr "" -#: app/hue_saturation.c:422 +#: app/hue_saturation.c:373 msgid "M" msgstr "" -#: app/hue_saturation.c:442 app/tools.c:506 +#: app/hue_saturation.c:394 app/tools.c:532 msgid "Hue-Saturation" msgstr "" -#: app/hue_saturation.c:504 +#: app/hue_saturation.c:456 msgid "Hue / Lightness / Saturation Adjustments" msgstr "" #. Create the hue scale widget -#: app/hue_saturation.c:514 app/layers_dialog.c:285 app/paint_funcs.c:94 +#: app/hue_saturation.c:466 app/layers_dialog.c:221 app/paint_funcs.c:94 +#: app/tool_options.c:787 msgid "Hue" msgstr "" #. Create the lightness scale widget -#: app/hue_saturation.c:548 +#: app/hue_saturation.c:500 msgid "Lightness" msgstr "" #. Create the saturation scale widget -#: app/hue_saturation.c:582 app/layers_dialog.c:286 app/paint_funcs.c:95 +#: app/hue_saturation.c:534 app/layers_dialog.c:223 app/paint_funcs.c:95 +#: app/tool_options.c:788 msgid "Saturation" msgstr "" @@ -2490,7 +2296,7 @@ msgstr "" msgid "Resolution:" msgstr "/Valitse/Ei mitДДn" -#: app/info_window.c:159 +#: app/info_window.c:159 app/tool_options.c:449 msgid "Unit:" msgstr "" @@ -2534,41 +2340,41 @@ msgid "Indexed Color" msgstr "/Kuva/Indeksoitu" #. size slider -#: app/ink.c:292 +#: app/ink.c:294 msgid "Size:" msgstr "" #. sens slider -#: app/ink.c:310 app/ink.c:334 app/ink.c:364 +#: app/ink.c:312 app/ink.c:336 app/ink.c:366 msgid "Sensitivity:" msgstr "" #. tilt sens slider -#: app/ink.c:328 +#: app/ink.c:330 msgid "Tilt" msgstr "" #. velocity sens slider -#: app/ink.c:358 +#: app/ink.c:360 msgid "Speed" msgstr "" #. angle adjust slider -#: app/ink.c:388 +#: app/ink.c:390 msgid "Angle" msgstr "" -#: app/ink.c:394 +#: app/ink.c:396 msgid "Adjust:" msgstr "" #. Brush type radiobuttons -#: app/ink.c:417 +#: app/ink.c:419 msgid "Type" msgstr "" #. Brush shape widget -#: app/ink.c:481 +#: app/ink.c:483 #, fuzzy msgid "Shape" msgstr "/Valitse/TerДvЖitД" @@ -2879,18 +2685,18 @@ msgid "" "Installation failed. Contact system administrator.\n" msgstr "" -#: app/interface.c:268 +#: app/interface.c:325 msgid "" "Foreground & background colors. The black and white squares reset colors. " "The arrows swap colors. Double click to select a color from a colorrequester." msgstr "" -#: app/interface.c:485 +#: app/interface.c:541 #, fuzzy msgid "The GIMP" msgstr "Tietoja GIMPstД" -#: app/interface.c:1256 +#: app/interface.c:1388 msgid "GIMP Message" msgstr "" @@ -2912,7 +2718,8 @@ msgstr "/Valitse/Talleta kanavalle" msgid "Channel Ops" msgstr "/Kuva/Kanava operaatiot/Offset" -#: app/internal_procs.c:79 app/layers_dialog.c:287 app/paint_funcs.c:96 +#: app/internal_procs.c:79 app/layers_dialog.c:225 app/paint_funcs.c:96 +#: app/tool_options.c:789 msgid "Color" msgstr "" @@ -2968,7 +2775,7 @@ msgstr "/Valitse/Ei mit msgid "Guide procedures" msgstr "/Kuva/Skaalaa" -#: app/internal_procs.c:118 app/preferences_dialog.c:1686 +#: app/internal_procs.c:118 app/preferences_dialog.c:1721 msgid "Interface" msgstr "" @@ -2992,7 +2799,7 @@ msgstr "/Muokkaa/Liimaa" msgid "Parasite procedures" msgstr "/Muokkaa/Leikkaa" -#: app/internal_procs.c:133 app/layers_dialog.c:407 +#: app/internal_procs.c:133 app/lc_dialog.c:180 #, fuzzy msgid "Paths" msgstr "/Muokkaa/Liimaa" @@ -3055,23 +2862,23 @@ msgstr "" msgid "Convert to Bezier Curve" msgstr "" -#: app/iscissors.c:1779 +#: app/iscissors.c:1780 msgid "Boundary contains < 4 points! Cannot bezierify." msgstr "" -#: app/layer.c:246 +#: app/layer.c:248 msgid "Zero width or height layers not allowed." msgstr "" -#: app/layer.c:352 +#: app/layer.c:354 msgid "layer_copy: could not allocate new layer" msgstr "" -#: app/layer.c:429 +#: app/layer.c:431 msgid "layer_from_tiles: could not allocate new layer" msgstr "" -#: app/layer.c:484 +#: app/layer.c:486 #, c-format msgid "%s mask" msgstr "" @@ -3081,296 +2888,330 @@ msgstr "" msgid "Layer Select" msgstr "/Tasot/Maski valinnaksi" -#: app/layers_dialog.c:232 app/layers_dialog.c:303 app/layers_dialog.c:3261 -msgid "New Layer" -msgstr "" - -#: app/layers_dialog.c:234 -#, fuzzy -msgid "Raise Layer" -msgstr "/Tasot/Nosta taso" - -#: app/layers_dialog.c:236 -#, fuzzy -msgid "Lower Layer" -msgstr "/Tasot/Alenna taso" - -#: app/layers_dialog.c:238 app/layers_dialog.c:306 -msgid "Duplicate Layer" -msgstr "" - -#: app/layers_dialog.c:240 app/layers_dialog.c:307 -msgid "Delete Layer" -msgstr "" - -#: app/layers_dialog.c:242 app/resize.c:159 -msgid "Scale Layer" -msgstr "" - -#: app/layers_dialog.c:244 app/resize.c:174 -#, fuzzy -msgid "Resize Layer" -msgstr "/Tasot/Nosta taso" - -#: app/layers_dialog.c:246 -msgid "Add Layer Mask" -msgstr "" - -#: app/layers_dialog.c:248 -msgid "Apply Layer Mask" -msgstr "" - -#: app/layers_dialog.c:250 app/layers_dialog.c:308 -#, fuzzy -msgid "Anchor Layer" -msgstr "/Tasot/Ankkuroi taso" - -#: app/layers_dialog.c:252 -#, fuzzy -msgid "Merge Visible Layers" -msgstr "/Tasot/YhdistД nДkyvДt tasot" - -#: app/layers_dialog.c:254 -msgid "Merge Down" -msgstr "" - -#: app/layers_dialog.c:256 -#, fuzzy -msgid "Flatten Image" -msgstr "/Tasot/YhdistД kuva" - -#: app/layers_dialog.c:258 -#, fuzzy -msgid "Alpha To Selection" -msgstr "/Tasot/Alpha valinnaksi" - -#: app/layers_dialog.c:260 -#, fuzzy -msgid "Mask To Selection" -msgstr "/Tasot/Maski valinnaksi" - -#: app/layers_dialog.c:262 -#, fuzzy -msgid "Add Alpha Channel" -msgstr "/Tasot/LisДД alpha kanava" - -#: app/layers_dialog.c:264 -msgid "Layer to Top" -msgstr "" - -#: app/layers_dialog.c:266 -msgid "Layer to Bottom" -msgstr "" - -#: app/layers_dialog.c:274 app/paint_funcs.c:83 +#: app/layers_dialog.c:199 app/paint_funcs.c:83 app/tool_options.c:775 msgid "Normal" msgstr "" -#: app/layers_dialog.c:275 app/paint_funcs.c:84 +#: app/layers_dialog.c:201 app/paint_funcs.c:84 app/tool_options.c:776 msgid "Dissolve" msgstr "" -#: app/layers_dialog.c:276 app/paint_funcs.c:86 +#: app/layers_dialog.c:203 app/paint_funcs.c:86 app/tool_options.c:778 msgid "Multiply (Burn)" msgstr "" -#: app/layers_dialog.c:277 app/paint_funcs.c:98 +#: app/layers_dialog.c:205 app/paint_funcs.c:98 app/tool_options.c:779 msgid "Divide (Dodge)" msgstr "" -#: app/layers_dialog.c:278 app/paint_funcs.c:87 +#: app/layers_dialog.c:207 app/paint_funcs.c:87 app/tool_options.c:780 msgid "Screen" msgstr "" -#: app/layers_dialog.c:279 app/paint_funcs.c:88 +#: app/layers_dialog.c:209 app/paint_funcs.c:88 app/tool_options.c:781 msgid "Overlay" msgstr "" -#: app/layers_dialog.c:280 app/paint_funcs.c:89 +#: app/layers_dialog.c:211 app/paint_funcs.c:89 app/tool_options.c:782 msgid "Difference" msgstr "" -#: app/layers_dialog.c:281 app/paint_funcs.c:90 +#: app/layers_dialog.c:213 app/paint_funcs.c:90 app/tool_options.c:783 msgid "Addition" msgstr "" -#: app/layers_dialog.c:283 app/paint_funcs.c:92 +#: app/layers_dialog.c:217 app/paint_funcs.c:92 app/tool_options.c:785 msgid "Darken Only" msgstr "" -#: app/layers_dialog.c:284 app/paint_funcs.c:93 +#: app/layers_dialog.c:219 app/paint_funcs.c:93 app/tool_options.c:786 msgid "Lighten Only" msgstr "" -#: app/layers_dialog.c:304 +#: app/layers_dialog.c:246 app/layers_dialog.c:2944 +msgid "New Layer" +msgstr "" + +#: app/layers_dialog.c:248 msgid "" "Raise Layer \n" " To Top" msgstr "" -#: app/layers_dialog.c:305 +#: app/layers_dialog.c:251 msgid "" "Lower Layer \n" " To Bottom" msgstr "" -#: app/layers_dialog.c:335 -#, fuzzy -msgid "Layers & Channels" -msgstr "/Tasot/Tasot & Kanavat..." - -#. The Auto-button -#: app/layers_dialog.c:373 -#, fuzzy -msgid "Auto" -msgstr "/Automaattinen" - -#: app/layers_dialog.c:391 -msgid "Layers" +#: app/layers_dialog.c:254 +msgid "Duplicate Layer" msgstr "" -#: app/layers_dialog.c:401 -msgid "Channels" +#: app/layers_dialog.c:256 +#, fuzzy +msgid "Anchor Layer" +msgstr "/Tasot/Ankkuroi taso" + +#: app/layers_dialog.c:258 +msgid "Delete Layer" msgstr "" -#: app/layers_dialog.c:744 +#: app/layers_dialog.c:321 msgid "Keep Trans." msgstr "" -#: app/layers_dialog.c:1489 +#: app/layers_dialog.c:947 app/menus.c:245 +#, fuzzy +msgid "/Stack/Previous Layer" +msgstr "/Tasot/Nosta taso" + +#: app/layers_dialog.c:949 app/menus.c:246 +#, fuzzy +msgid "/Stack/Next Layer" +msgstr "/Tasot/Nosta taso" + +#: app/layers_dialog.c:952 app/menus.c:247 +#, fuzzy +msgid "/Stack/Raise Layer" +msgstr "/Tasot/Nosta taso" + +#: app/layers_dialog.c:957 app/menus.c:248 +#, fuzzy +msgid "/Stack/Lower Layer" +msgstr "/Tasot/Alenna taso" + +#: app/layers_dialog.c:962 app/menus.c:249 +#, fuzzy +msgid "/Stack/Layer to Top" +msgstr "/Tasot/Nosta taso" + +#: app/layers_dialog.c:964 app/menus.c:250 +#, fuzzy +msgid "/Stack/Layer to Bottom" +msgstr "/Tasot/Nosta taso" + +#: app/layers_dialog.c:967 app/menus.c:244 +#, fuzzy +msgid "/New Layer" +msgstr "/Tasot/Nosta taso" + +#: app/layers_dialog.c:970 app/menus.c:251 +#, fuzzy +msgid "/Duplicate Layer" +msgstr "/Valitse/Talleta kanavalle" + +#: app/layers_dialog.c:974 app/menus.c:252 +#, fuzzy +msgid "/Anchor Layer" +msgstr "/Tasot/Ankkuroi taso" + +#: app/layers_dialog.c:978 app/menus.c:253 +#, fuzzy +msgid "/Delete Layer" +msgstr "/Tasot/Nosta taso" + +#: app/layers_dialog.c:981 app/menus.c:255 +#, fuzzy +msgid "/Scale Layer" +msgstr "/Tasot/Nosta taso" + +#: app/layers_dialog.c:982 app/menus.c:256 +#, fuzzy +msgid "/Resize Layer" +msgstr "/Tasot/Nosta taso" + +#: app/layers_dialog.c:984 app/menus.c:258 +#, fuzzy +msgid "/Merge Visible Layers" +msgstr "/Tasot/YhdistД nДkyvДt tasot" + +#: app/layers_dialog.c:986 app/menus.c:259 +msgid "/Merge Down" +msgstr "" + +#: app/layers_dialog.c:987 app/menus.c:260 +#, fuzzy +msgid "/Flatten Image" +msgstr "/Tasot/YhdistД kuva" + +#: app/layers_dialog.c:989 app/menus.c:262 +#, fuzzy +msgid "/Add Layer Mask" +msgstr "/Tasot/Maski valinnaksi" + +#: app/layers_dialog.c:991 app/menus.c:263 +msgid "/Apply Layer Mask" +msgstr "" + +#: app/layers_dialog.c:993 app/menus.c:264 +#, fuzzy +msgid "/Alpha to Selection" +msgstr "/Tasot/Alpha valinnaksi" + +#: app/layers_dialog.c:995 app/menus.c:265 +#, fuzzy +msgid "/Mask to Selection" +msgstr "/Tasot/Maski valinnaksi" + +#: app/layers_dialog.c:997 app/menus.c:266 +#, fuzzy +msgid "/Add Alpha Channel" +msgstr "/Tasot/LisДД alpha kanava" + +#: app/layers_dialog.c:1185 msgid "Unknown layer mode" msgstr "" -#: app/layers_dialog.c:2206 app/layers_dialog.c:3028 app/layers_dialog.c:3471 +#: app/layers_dialog.c:1890 app/layers_dialog.c:2712 app/layers_dialog.c:3157 msgid "Floating Selection" msgstr "" -#: app/layers_dialog.c:3149 +#: app/layers_dialog.c:2832 msgid "new_layer_query_ok_callback: could not allocate new layer" msgstr "" -#: app/layers_dialog.c:3231 +#: app/layers_dialog.c:2914 msgid "New Layer Options" msgstr "" #. the name label and entry -#: app/layers_dialog.c:3251 +#: app/layers_dialog.c:2934 #, fuzzy msgid "Layer Name:" msgstr "/Tasot/Nosta taso" #. the size labels -#: app/layers_dialog.c:3265 +#: app/layers_dialog.c:2948 msgid "Layer Width:" msgstr "" #. the radio frame and box -#: app/layers_dialog.c:3324 +#: app/layers_dialog.c:3007 msgid "Layer Fill Type" msgstr "" -#: app/layers_dialog.c:3447 +#: app/layers_dialog.c:3131 msgid "Edit Layer Attributes" msgstr "" -#: app/layers_dialog.c:3464 +#: app/layers_dialog.c:3149 msgid "Layer name: " msgstr "" -#: app/layers_dialog.c:3587 +#: app/layers_dialog.c:3275 msgid "White (Full Opacity)" msgstr "" -#: app/layers_dialog.c:3588 +#: app/layers_dialog.c:3276 msgid "Black (Full Transparency)" msgstr "" -#: app/layers_dialog.c:3589 +#: app/layers_dialog.c:3277 #, fuzzy msgid "Layer's Alpha Channel" msgstr "/Tasot/LisДД alpha kanava" -#: app/layers_dialog.c:3606 +#: app/layers_dialog.c:3294 msgid "Add Mask Options" msgstr "" #. the name entry hbox, label and entry -#: app/layers_dialog.c:3621 +#: app/layers_dialog.c:3309 msgid "Initialize Layer Mask To:" msgstr "" -#: app/layers_dialog.c:3720 +#: app/layers_dialog.c:3408 msgid "Apply" msgstr "" -#: app/layers_dialog.c:3721 +#: app/layers_dialog.c:3409 msgid "Discard" msgstr "" -#: app/layers_dialog.c:3735 +#: app/layers_dialog.c:3423 #, fuzzy msgid "Layer Mask Options" msgstr "/Tasot/Maski valinnaksi" #. the name entry hbox, label and entry -#: app/layers_dialog.c:3751 +#: app/layers_dialog.c:3439 msgid "Apply layer mask?" msgstr "" -#: app/layers_dialog.c:3811 app/layers_dialog.c:3909 +#: app/layers_dialog.c:3499 app/layers_dialog.c:3597 msgid "Invalid width or height. Both must be positive." msgstr "" -#: app/layers_dialog.c:4062 +#: app/layers_dialog.c:3751 msgid "Expanded as necessary" msgstr "" -#: app/layers_dialog.c:4063 +#: app/layers_dialog.c:3752 msgid "Clipped to image" msgstr "" -#: app/layers_dialog.c:4064 +#: app/layers_dialog.c:3753 msgid "Clipped to bottom layer" msgstr "" -#: app/layers_dialog.c:4082 +#: app/layers_dialog.c:3771 msgid "Layer Merge Options" msgstr "" -#: app/layers_dialog.c:4098 +#: app/layers_dialog.c:3787 msgid "Final, merged layer should be:" msgstr "" -#: app/layers_dialog.c:4100 +#: app/layers_dialog.c:3789 msgid "Final, anchored layer should be:" msgstr "" -#: app/levels.c:239 +#: app/lc_dialog.c:111 +#, fuzzy +msgid "Layers & Channels" +msgstr "/Tasot/Tasot & Kanavat..." + +#. The Auto-button +#: app/lc_dialog.c:150 +#, fuzzy +msgid "Auto" +msgstr "/Automaattinen" + +#: app/lc_dialog.c:170 +msgid "Layers" +msgstr "" + +#: app/lc_dialog.c:175 +msgid "Channels" +msgstr "" + +#: app/levels.c:197 #, fuzzy msgid "Levels Options" msgstr "/Dialogit/TyЖkalujen asetukset" -#: app/levels.c:296 +#: app/levels.c:245 msgid "Levels for indexed drawables cannot be adjusted." msgstr "" -#: app/levels.c:372 +#: app/levels.c:334 msgid "Auto Levels" msgstr "" -#: app/levels.c:403 app/tools.c:566 +#: app/levels.c:351 app/tools.c:592 msgid "Levels" msgstr "" -#: app/levels.c:418 +#: app/levels.c:366 msgid "Modify Levels for Channel: " msgstr "" -#: app/levels.c:434 +#: app/levels.c:382 msgid "Input Levels: " msgstr "" -#: app/levels.c:522 +#: app/levels.c:470 msgid "Output Levels: " msgstr "" @@ -3383,44 +3224,44 @@ msgstr "/Tasot/Maski valinnaksi" msgid "Allow Window Resizing" msgstr "" -#: app/main.c:279 +#: app/main.c:287 msgid "GIMP version" msgstr "GIMP:n versio" -#: app/main.c:283 +#: app/main.c:291 #, fuzzy, c-format msgid "Usage: %s [option ...] [files ...]\n" msgstr "KДyttЖ: %s [asetus ...] [tiedostot ...]\n" -#: app/main.c:284 +#: app/main.c:292 msgid "Valid options are:\n" msgstr "Oikeat asetukset ovat:\n" -#: app/main.c:285 +#: app/main.c:293 msgid " -h --help Output this help.\n" msgstr " -h --help Tulostaa tДmДn avun.\n" -#: app/main.c:286 +#: app/main.c:294 msgid " -v --version Output version info.\n" msgstr " -v --version Tulostaa versio tiedot.\n" -#: app/main.c:287 +#: app/main.c:295 msgid " -b --batch Run in batch mode.\n" msgstr " -b --batch Aja batch moodissa*.\n" -#: app/main.c:288 +#: app/main.c:296 msgid " -g --gimprc Use an alternate gimprc file.\n" msgstr " -g --gimprc KДytД toista gimprc tiedostoa.\n" -#: app/main.c:289 +#: app/main.c:297 msgid " -n --no-interface Run without a user interface.\n" msgstr " -n --no-interface Aja ilman kДyttЖliittymДД.\n" -#: app/main.c:290 +#: app/main.c:298 msgid " -r --restore-session Try to restore saved session.\n" msgstr " -r --restore-session YritД palauttaa talletettua istunto.\n" -#: app/main.c:291 +#: app/main.c:299 msgid "" " --no-data Do not load patterns, gradients, palettes, " "brushes.\n" @@ -3428,19 +3269,19 @@ msgstr "" " --no-data\t\t дlД lataa kuvioita, murrettujasДvyjД, paletteja " "jasiveltimiД.\n" -#: app/main.c:292 +#: app/main.c:300 msgid " --verbose Show startup messages.\n" msgstr " --verbose NДytД kДynnistys tiedot.\n" -#: app/main.c:293 +#: app/main.c:301 msgid " --no-splash Do not show the startup window.\n" msgstr " --no-splash дlД nДytД alkuikkunaa.\n" -#: app/main.c:294 +#: app/main.c:302 msgid " --no-splash-image Do not add an image to the startup window.\n" msgstr " --no-splash-image дlД lisДД kuvaa alkuikkunaan.\n" -#: app/main.c:295 +#: app/main.c:303 msgid "" " --no-shm Do not use shared memory between GIMP and its " "plugins.\n" @@ -3448,11 +3289,11 @@ msgstr "" " --no-shm дlД kДytД jaettua muistia GIMP:in ja sen " "lisДosien vДlillД.\n" -#: app/main.c:296 +#: app/main.c:304 msgid " --no-xshm Do not use the X Shared Memory extension.\n" msgstr " --no-xshm дlД kДytД X Shared Memory lisДystД.\n" -#: app/main.c:297 +#: app/main.c:305 msgid "" " --console-messages Display warnings to console instead of a dialog " "box.\n" @@ -3460,11 +3301,11 @@ msgstr "" " --console-messages Tulosta varoitukset konsoliin graafisten " "dialogiensijasta.\n" -#: app/main.c:298 +#: app/main.c:306 msgid " --debug-handlers Enable debugging signal handlers.\n" msgstr " --debug-handlers \n" -#: app/main.c:299 +#: app/main.c:307 msgid "" " --display Use the designated X display.\n" "\n" @@ -3472,664 +3313,819 @@ msgstr "" " --display KДytД osoitettua X nДyttЖД.\n" "\n" -#: app/main.c:300 +#: app/main.c:308 msgid " --system-gimprc Use an alternate system gimprc file.\n" msgstr "" " --system-gimprc KДytД alternatiivista jДrjestelmДn gimprc " "tiedostoa.\n" -#: app/main.c:412 +#: app/main.c:420 msgid "sighup caught" msgstr "sighup napattu" -#: app/main.c:417 +#: app/main.c:425 msgid "sigint caught" msgstr "sigint napattu" -#: app/main.c:422 +#: app/main.c:430 msgid "sigquit caught" msgstr "sigquit napattu" -#: app/main.c:427 +#: app/main.c:435 msgid "sigabrt caught" msgstr "sigabrt napattu" -#: app/main.c:432 +#: app/main.c:440 msgid "sigbus caught" msgstr "sigbus napattu" -#: app/main.c:437 +#: app/main.c:445 msgid "sigsegv caught" msgstr "sigsegv napattu" -#: app/main.c:442 +#: app/main.c:450 msgid "sigpipe caught" msgstr "sigpipe napattu" -#: app/main.c:447 +#: app/main.c:455 msgid "sigterm caught" msgstr "sigterm napattu" -#: app/main.c:452 +#: app/main.c:460 msgid "sigfpe caught" msgstr "sigfpe napattu" -#: app/main.c:456 +#: app/main.c:464 msgid "unknown signal" msgstr "tuntematon signaali" -#: app/menus.c:43 +#: app/menus.c:46 #, fuzzy msgid "/File/MRU00 " msgstr "/Tiedosto/MRU%02d" -#: app/menus.c:53 app/menus.c:80 +#: app/menus.c:56 app/menus.c:88 +#, fuzzy +msgid "/File/tearoff1" +msgstr "/Tiedosto/Talleta" + +#: app/menus.c:57 app/menus.c:89 #, fuzzy msgid "/File/New" msgstr "/Tiedosto/Uusi" -#: app/menus.c:54 app/menus.c:81 -#, fuzzy -msgid "/File/Open" -msgstr "/Tiedosto/Avaa" - -#: app/menus.c:55 +#: app/menus.c:59 #, fuzzy msgid "/File/About..." msgstr "/Tiedosto/Tietoja..." -#: app/menus.c:56 app/menus.c:85 +#: app/menus.c:60 app/menus.c:94 #, fuzzy msgid "/File/Preferences..." msgstr "/Tiedosto/Asetukset..." -#: app/menus.c:57 +#: app/menus.c:61 #, fuzzy msgid "/File/Tip of the day" msgstr "/Tiedosto/PДivДn vihje" -#: app/menus.c:58 +#: app/menus.c:63 #, fuzzy msgid "/File/Dialogs/Brushes..." msgstr "/Tiedosto/Dialogit/Siveltimet..." -#: app/menus.c:59 +#: app/menus.c:64 #, fuzzy msgid "/File/Dialogs/Patterns..." msgstr "/Tiedosto/Dialogit/Kuviot..." -#: app/menus.c:60 +#: app/menus.c:65 #, fuzzy msgid "/File/Dialogs/Palette..." msgstr "/Tiedosto/Dialogit/Paletit..." -#: app/menus.c:61 +#: app/menus.c:66 #, fuzzy msgid "/File/Dialogs/Gradient..." msgstr "/Tiedosto/Dialogit/LiukuvДrien muokkain..." -#: app/menus.c:62 +#: app/menus.c:67 #, fuzzy msgid "/File/Dialogs/Layers & Channels..." msgstr "/Tiedosto/Dialogit/Tasot & Kanavat..." -#: app/menus.c:63 +#: app/menus.c:68 #, fuzzy msgid "/File/Dialogs/Tool Options..." msgstr "/Tiedosto/Dialogit/TyЖkalujen Asetukset..." -#: app/menus.c:64 +#: app/menus.c:69 #, fuzzy msgid "/File/Dialogs/Input Devices..." msgstr "/Tiedosto/Dialogs/Piirtolaitteet..." -#: app/menus.c:65 +#: app/menus.c:70 #, fuzzy msgid "/File/Dialogs/Device Status..." msgstr "/Tiedosto/Dialogit/Laitteiden tila..." -#: app/menus.c:66 +#: app/menus.c:71 #, fuzzy msgid "/File/Dialogs/Document Index..." msgstr "/Tiedosto/Dialogit/Dokumenttien indexi..." -#: app/menus.c:67 +#: app/menus.c:72 #, fuzzy msgid "/File/Dialogs/Error Console..." msgstr "/Tiedosto/Dialogit/Konsoli virheilmoituksille..." -#: app/menus.c:68 +#: app/menus.c:74 +msgid "/Xtns/tearoff1" +msgstr "" + +#: app/menus.c:75 #, fuzzy msgid "/Xtns/Module Browser" msgstr "/Tiedosto/Dialogit/Siveltimet..." -#: app/menus.c:69 app/menus.c:70 app/menus.c:75 app/menus.c:86 +#: app/menus.c:76 app/menus.c:77 app/menus.c:82 app/menus.c:95 msgid "/File/---" msgstr "/Tiedosto/---" -#: app/menus.c:76 app/menus.c:89 -#, fuzzy -msgid "/File/Quit" -msgstr "/Tiedosto/Poistu" +#: app/menus.c:87 +msgid "/tearoff1" +msgstr "" -#: app/menus.c:82 -#, fuzzy -msgid "/File/Save" -msgstr "/Tiedosto/Talleta" - -#: app/menus.c:83 -#, fuzzy -msgid "/File/Save as" -msgstr "/Tiedosto/Talleta nimellД" - -#: app/menus.c:84 +#: app/menus.c:93 #, fuzzy msgid "/File/Revert" msgstr "/Tiedosto/Talleta" -#: app/menus.c:88 -#, fuzzy -msgid "/File/Close" -msgstr "/Tiedosto/Sulje" - -#: app/menus.c:90 +#: app/menus.c:99 #, fuzzy msgid "/File/---moved" msgstr "/Tiedosto/---" -#: app/menus.c:92 +#: app/menus.c:101 +#, fuzzy +msgid "/Edit/tearoff1" +msgstr "/Muokkaa/TyhjennД" + +#: app/menus.c:102 #, fuzzy msgid "/Edit/Cut" msgstr "/Muokkaa/Leikkaa" -#: app/menus.c:93 +#: app/menus.c:103 #, fuzzy msgid "/Edit/Copy" msgstr "/Muokkaa/Kopioi" -#: app/menus.c:94 +#: app/menus.c:104 #, fuzzy msgid "/Edit/Paste" msgstr "/Muokkaa/Liimaa" -#: app/menus.c:95 +#: app/menus.c:105 #, fuzzy msgid "/Edit/Paste Into" msgstr "/Muokkaa/Liimaa johonkin" -#: app/menus.c:96 +#: app/menus.c:106 +#, fuzzy +msgid "/Edit/Paste As New" +msgstr "/Muokkaa/Liimaa nimetty" + +#: app/menus.c:107 app/menus.c:113 app/menus.c:117 +msgid "/Edit/---" +msgstr "/Muokkaa/---" + +#: app/menus.c:108 #, fuzzy msgid "/Edit/Clear" msgstr "/Muokkaa/TyhjennД" -#: app/menus.c:97 +#: app/menus.c:109 #, fuzzy msgid "/Edit/Fill" msgstr "/Muokkaa/TДytД" -#: app/menus.c:98 +#: app/menus.c:110 #, fuzzy msgid "/Edit/Stroke" msgstr "/Muokkaa/PiirrД" -#: app/menus.c:99 +#: app/menus.c:111 #, fuzzy msgid "/Edit/Undo" msgstr "/Tiedosto/Kumoa" -#: app/menus.c:100 +#: app/menus.c:112 #, fuzzy msgid "/Edit/Redo" msgstr "/Muokkaa/Uudelleen" -#: app/menus.c:101 app/menus.c:105 -msgid "/Edit/---" -msgstr "/Muokkaa/---" - -#: app/menus.c:102 +#: app/menus.c:114 #, fuzzy msgid "/Edit/Cut Named" msgstr "/Muokkaa/Leikkaa nimetty" -#: app/menus.c:103 +#: app/menus.c:115 #, fuzzy msgid "/Edit/Copy Named" msgstr "/Muokkaa/Kopioi nimetty" -#: app/menus.c:104 +#: app/menus.c:116 #, fuzzy msgid "/Edit/Paste Named" msgstr "/Muokkaa/Liimaa nimetty" -#: app/menus.c:107 +#: app/menus.c:119 #, fuzzy -msgid "/Select/Toggle" -msgstr "/Valitse/Vaihda" +msgid "/Select/tearoff1" +msgstr "/Valitse/Kasvata" -#: app/menus.c:108 +#: app/menus.c:120 #, fuzzy msgid "/Select/Invert" msgstr "/Valitse/Invertoi" -#: app/menus.c:109 +#: app/menus.c:121 #, fuzzy msgid "/Select/All" msgstr "/Valitse/Kaikki" -#: app/menus.c:110 +#: app/menus.c:122 #, fuzzy msgid "/Select/None" msgstr "/Valitse/Ei mitДДn" -#: app/menus.c:111 +#: app/menus.c:123 #, fuzzy msgid "/Select/Float" msgstr "/Valitse/Leijuva" -#: app/menus.c:112 +#: app/menus.c:124 #, fuzzy msgid "/Select/Sharpen" msgstr "/Valitse/TerДvЖitД" -#: app/menus.c:113 +#: app/menus.c:125 #, fuzzy msgid "/Select/Border" msgstr "/Valitse/Reuna" -#: app/menus.c:114 +#: app/menus.c:126 #, fuzzy msgid "/Select/Feather" msgstr "/Valitse/HЖyhen" -#: app/menus.c:115 +#: app/menus.c:127 #, fuzzy msgid "/Select/Grow" msgstr "/Valitse/Kasvata" -#: app/menus.c:116 +#: app/menus.c:128 #, fuzzy msgid "/Select/Shrink" msgstr "/Valitse/PienennД" -#: app/menus.c:117 +#: app/menus.c:129 #, fuzzy msgid "/Select/Save To Channel" msgstr "/Valitse/Talleta kanavalle" -#: app/menus.c:119 +#: app/menus.c:131 +msgid "/View/tearoff1" +msgstr "" + +#: app/menus.c:132 #, fuzzy msgid "/View/Zoom In" msgstr "/NДytД/Zoomaa sisДДn" -#: app/menus.c:120 +#: app/menus.c:133 #, fuzzy msgid "/View/Zoom Out" msgstr "/NДytД/Zoomaa ulos" -#: app/menus.c:121 +#: app/menus.c:134 #, fuzzy msgid "/View/Zoom/16:1" msgstr "/NДytД/Zoom/16:1" -#: app/menus.c:122 +#: app/menus.c:135 #, fuzzy msgid "/View/Zoom/8:1" msgstr "/NДytД/Zoom/8:1" -#: app/menus.c:123 +#: app/menus.c:136 #, fuzzy msgid "/View/Zoom/4:1" msgstr "/NДytД/Zoom/4:1" -#: app/menus.c:124 +#: app/menus.c:137 #, fuzzy msgid "/View/Zoom/2:1" msgstr "/NДytД/Zoom/2:1" -#: app/menus.c:125 +#: app/menus.c:138 #, fuzzy msgid "/View/Zoom/1:1" msgstr "/NДytД/Zoom/1:1" -#: app/menus.c:126 +#: app/menus.c:139 msgid "/View/Zoom/1:2" msgstr "/NДytД/Zoom/1:2" -#: app/menus.c:127 +#: app/menus.c:140 msgid "/View/Zoom/1:4" msgstr "/NДytД/Zoom/1:4" -#: app/menus.c:128 +#: app/menus.c:141 msgid "/View/Zoom/1:8" msgstr "/NДytД/Zoom/1:8" -#: app/menus.c:129 +#: app/menus.c:142 msgid "/View/Zoom/1:16" msgstr "/NДytД/Zoom/1:16" -#: app/menus.c:130 +#: app/menus.c:143 #, fuzzy msgid "/View/Dot for dot" msgstr "/NДytД/Zoomaa ulos" -#: app/menus.c:131 +#: app/menus.c:144 #, fuzzy msgid "/View/Window Info..." msgstr "/NДytД/Ikkunan tiedot..." -#: app/menus.c:132 +#: app/menus.c:146 app/menus.c:152 +msgid "/View/---" +msgstr "/NДytД/---" + +#: app/menus.c:147 +#, fuzzy +msgid "/View/Toggle Selection" +msgstr "/NДytД/Vaihda viivottimet" + +#: app/menus.c:148 #, fuzzy msgid "/View/Toggle Rulers" msgstr "/NДytД/Vaihda viivottimet" -#: app/menus.c:133 +#: app/menus.c:149 #, fuzzy msgid "/View/Toggle Statusbar" msgstr "/NДytД/Vaihda infopalkki" -#: app/menus.c:134 +#: app/menus.c:150 #, fuzzy msgid "/View/Toggle Guides" msgstr "/NДytД/Vaihda apuviivat" -#: app/menus.c:135 +#: app/menus.c:151 #, fuzzy msgid "/View/Snap To Guides" msgstr "/NДytД/Nappaa apuviivoihin" -#: app/menus.c:136 -msgid "/View/---" -msgstr "/NДytД/---" - -#: app/menus.c:137 +#: app/menus.c:154 #, fuzzy msgid "/View/New View" msgstr "/NДytД/Uusi nДkymД" -#: app/menus.c:138 +#: app/menus.c:155 #, fuzzy msgid "/View/Shrink Wrap" msgstr "/NДytД/Koko kuva" -#: app/menus.c:140 +#: app/menus.c:157 +#, fuzzy +msgid "/Image/tearoff1" +msgstr "/Muokkaa/TyhjennД" + +#: app/menus.c:158 +#, fuzzy +msgid "/Image/Colors/tearoff1" +msgstr "/Kuva/VДrit/Invertoi" + +#: app/menus.c:159 #, fuzzy msgid "/Image/Colors/Equalize" msgstr "/Kuva/VДrit/Equalize" -#: app/menus.c:141 +#: app/menus.c:160 #, fuzzy msgid "/Image/Colors/Invert" msgstr "/Kuva/VДrit/Invertoi" -#: app/menus.c:142 +#: app/menus.c:161 msgid "/Image/Colors/---" msgstr "/Kuva/VДrit/---" -#: app/menus.c:143 +#: app/menus.c:162 #, fuzzy msgid "/Image/Colors/Desaturate" msgstr "/Kuva/VДrit/Desaturate" -#: app/menus.c:144 +#: app/menus.c:163 +#, fuzzy +msgid "/Image/Channel Ops/tearoff1" +msgstr "/Kuva/Kanava operaatiot/Offset" + +#: app/menus.c:164 #, fuzzy msgid "/Image/Channel Ops/Duplicate" msgstr "/Kuva/Kanava operaatiot/Duplicate" -#: app/menus.c:145 +#: app/menus.c:165 #, fuzzy msgid "/Image/Channel Ops/Offset" msgstr "/Kuva/Kanava operaatiot/Offset" -#: app/menus.c:146 +#: app/menus.c:166 +#, fuzzy +msgid "/Image/Alpha/tearoff1" +msgstr "/Kuva/Skaalaa" + +#: app/menus.c:167 #, fuzzy msgid "/Image/Alpha/Add Alpha Channel" msgstr "/Kuva/Alpha/LisДД alpha kanava" -#: app/menus.c:148 app/menus.c:152 app/menus.c:155 +#: app/menus.c:169 app/menus.c:173 app/menus.c:176 msgid "/Image/---" msgstr "/Kuva/---" -#: app/menus.c:149 +#: app/menus.c:170 #, fuzzy msgid "/Image/RGB" msgstr "/Kuva/RGB" -#: app/menus.c:150 +#: app/menus.c:171 #, fuzzy msgid "/Image/Grayscale" msgstr "/Kuva/HarmaasДvy" -#: app/menus.c:151 +#: app/menus.c:172 #, fuzzy msgid "/Image/Indexed" msgstr "/Kuva/Indeksoitu" -#: app/menus.c:153 +#: app/menus.c:174 #, fuzzy msgid "/Image/Resize" msgstr "/Kuva/Muokkaa kokoa" -#: app/menus.c:154 +#: app/menus.c:175 #, fuzzy msgid "/Image/Scale" msgstr "/Kuva/Skaalaa" -#: app/menus.c:157 +#: app/menus.c:178 +#, fuzzy +msgid "/Layers/tearoff1" +msgstr "/Tasot/Nosta taso" + +#: app/menus.c:179 #, fuzzy msgid "/Layers/Layers & Channels..." msgstr "/Tasot/Tasot & Kanavat..." -#: app/menus.c:158 +#: app/menus.c:180 +#, fuzzy +msgid "/Layers/Stack/tearoff1" +msgstr "/Tasot/Nosta taso" + +#: app/menus.c:181 #, fuzzy msgid "/Layers/Stack/Previous Layer" msgstr "/Tasot/Nosta taso" -#: app/menus.c:159 +#: app/menus.c:182 #, fuzzy msgid "/Layers/Stack/Next Layer" msgstr "/Tasot/Nosta taso" -#: app/menus.c:160 +#: app/menus.c:183 #, fuzzy msgid "/Layers/Stack/Raise Layer" msgstr "/Tasot/Nosta taso" -#: app/menus.c:161 +#: app/menus.c:184 #, fuzzy msgid "/Layers/Stack/Lower Layer" msgstr "/Tasot/Alenna taso" -#: app/menus.c:162 +#: app/menus.c:185 #, fuzzy msgid "/Layers/Stack/Layer to Top" msgstr "/Tasot/Nosta taso" -#: app/menus.c:163 +#: app/menus.c:186 msgid "/Layers/Stack/Layer to Bottom" msgstr "" -#: app/menus.c:164 +#: app/menus.c:187 app/menus.c:194 #, fuzzy msgid "/Layers/---" msgstr "/Tasot/Nosta taso" -#: app/menus.c:165 +#: app/menus.c:188 #, fuzzy msgid "/Layers/Anchor Layer" msgstr "/Tasot/Ankkuroi taso" -#: app/menus.c:166 +#: app/menus.c:189 #, fuzzy msgid "/Layers/Merge Visible Layers" msgstr "/Tasot/YhdistД nДkyvДt tasot" -#: app/menus.c:167 +#: app/menus.c:190 #, fuzzy msgid "/Layers/Flatten Image" msgstr "/Tasot/YhdistД kuva" -#: app/menus.c:168 +#: app/menus.c:191 #, fuzzy msgid "/Layers/Alpha To Selection" msgstr "/Tasot/Alpha valinnaksi" -#: app/menus.c:169 +#: app/menus.c:192 #, fuzzy msgid "/Layers/Mask To Selection" msgstr "/Tasot/Maski valinnaksi" -#: app/menus.c:170 +#: app/menus.c:193 #, fuzzy msgid "/Layers/Add Alpha Channel" msgstr "/Tasot/LisДД alpha kanava" -#. these are built on the fly -#. -#. { N_("/Tools/Ellipse Select"), "E", tools_select_cmd_callback, ELLIPSE_SELECT }, -#. { N_("/Tools/Free Select"), "F", tools_select_cmd_callback, FREE_SELECT }, -#. { N_("/Tools/Fuzzy Select"), "Z", tools_select_cmd_callback, FUZZY_SELECT }, -#. { N_("/Tools/Bezier Select"), "B", tools_select_cmd_callback, BEZIER_SELECT }, -#. { N_("/Tools/Intelligent Scissors"), "I", tools_select_cmd_callback, ISCISSORS }, -#. { N_("/Tools/Move"), "M", tools_select_cmd_callback, MOVE }, -#. { N_("/Tools/Magnify"), "M", tools_select_cmd_callback, MAGNIFY }, -#. { N_("/Tools/Crop"), "C", tools_select_cmd_callback, CROP }, -#. { N_("/Tools/Transform"), "T", tools_select_cmd_callback, ROTATE }, -#. { N_("/Tools/Flip"), "F", tools_select_cmd_callback, FLIP }, -#. { N_("/Tools/Text"), "T", tools_select_cmd_callback, TEXT }, -#. { N_("/Tools/Color Picker"), "O", tools_select_cmd_callback, COLOR_PICKER }, -#. { N_("/Tools/Bucket Fill"), "B", tools_select_cmd_callback, BUCKET_FILL }, -#. { N_("/Tools/Blend"), "L", tools_select_cmd_callback, BLEND }, -#. { N_("/Tools/Paintbrush"), "P", tools_select_cmd_callback, PAINTBRUSH }, -#. { N_("/Tools/Pencil"), "P", tools_select_cmd_callback, PENCIL }, -#. { N_("/Tools/Eraser"), "E", tools_select_cmd_callback, ERASER }, -#. { N_("/Tools/Airbrush"), "A", tools_select_cmd_callback, AIRBRUSH }, -#. { N_("/Tools/Clone"), "C", tools_select_cmd_callback, CLONE }, -#. { N_("/Tools/Convolve"), "V", tools_select_cmd_callback, CONVOLVE }, -#. { N_("/Tools/Ink"), "K", tools_select_cmd_callback, INK }, -#. { N_("/Tools/Default Colors"), "D", tools_default_colors_cmd_callback, 0 }, -#. { N_("/Tools/Toolbox"), NULL, toolbox_raise_callback, 0 }, -#. { N_("/Tools/---"), NULL, NULL, 0, "" }, -#. { N_("/Tools/Default Colors"), "D", tools_default_colors_cmd_callback, 0 }, -#. { N_("/Tools/Swap Colors"), "X", tools_swap_colors_cmd_callback, 0 }, -#. -#: app/menus.c:203 +#: app/menus.c:196 +#, fuzzy +msgid "/Tools/tearoff1" +msgstr "/TyЖkalut/---" + +#: app/menus.c:197 #, fuzzy msgid "/Tools/Toolbox" msgstr "/TyЖkalut/TyЖkalulaatikko" -#: app/menus.c:204 +#: app/menus.c:198 #, fuzzy msgid "/Tools/Default Colors" msgstr "/TyЖkalut/Oletus vДrit" -#: app/menus.c:205 +#: app/menus.c:199 #, fuzzy msgid "/Tools/Swap Colors" msgstr "/TyЖkalut/Vaihda VДrit" -#: app/menus.c:206 +#: app/menus.c:200 msgid "/Tools/---" msgstr "/TyЖkalut/---" -#: app/menus.c:208 +#. the tool entries themselves are built on the fly +#: app/menus.c:204 +#, fuzzy +msgid "/Filters/tearoff1" +msgstr "/Suotimet/---" + +#: app/menus.c:205 app/plug_in.c:1285 #, fuzzy msgid "/Filters/Repeat last" msgstr "/Suotimet/Toista edellinen" -#: app/menus.c:209 +#: app/menus.c:206 app/plug_in.c:1286 #, fuzzy msgid "/Filters/Re-show last" msgstr "/Suotimet/NДytД uudelleen edellinen" -#: app/menus.c:210 +#: app/menus.c:207 msgid "/Filters/---" msgstr "/Suotimet/---" -#: app/menus.c:212 +#: app/menus.c:209 +#, fuzzy +msgid "/Script-Fu/tearoff1" +msgstr "/Script-Fu/" + +#: app/menus.c:210 msgid "/Script-Fu/" msgstr "/Script-Fu/" -#: app/menus.c:214 +#: app/menus.c:212 +#, fuzzy +msgid "/Dialogs/tearoff1" +msgstr "/Dialogit/Kuviot..." + +#: app/menus.c:213 #, fuzzy msgid "/Dialogs/Brushes..." msgstr "/Dialogit/Siveltimet..." -#: app/menus.c:215 +#: app/menus.c:214 #, fuzzy msgid "/Dialogs/Patterns..." msgstr "/Dialogit/Kuviot..." -#: app/menus.c:216 +#: app/menus.c:215 #, fuzzy msgid "/Dialogs/Palette..." msgstr "/Dialogit/Paletit..." -#: app/menus.c:217 +#: app/menus.c:216 #, fuzzy msgid "/Dialogs/Gradient..." msgstr "/Dialogit/LiukuvДrien muokkain..." -#: app/menus.c:218 +#: app/menus.c:217 #, fuzzy msgid "/Dialogs/Layers & Channels..." msgstr "/Dialogit/Tasot & Kanavat..." -#: app/menus.c:219 +#: app/menus.c:218 #, fuzzy msgid "/Dialogs/Indexed Palette..." msgstr "/Dialogit/Indeksoitu paletti..." -#: app/menus.c:220 +#: app/menus.c:219 #, fuzzy msgid "/Dialogs/Tool Options..." msgstr "/Dialogit/TyЖkalujen asetukset" -#: app/menus.c:221 +#: app/menus.c:220 #, fuzzy msgid "/Dialogs/Input Devices..." msgstr "/Dialogit/Piirtolaitteet..." -#: app/menus.c:222 +#: app/menus.c:221 #, fuzzy msgid "/Dialogs/Device Status..." msgstr "/Dialogit/Laitteiden tila..." -#: app/menus.c:229 +#: app/menus.c:228 msgid "/Automatic" msgstr "/Automaattinen" -#: app/menus.c:237 +#: app/menus.c:236 msgid "/By extension" msgstr "/Laajennus" -#: app/menus.c:436 +#: app/menus.c:290 +msgid "/New Path" +msgstr "" + +#: app/menus.c:291 +#, fuzzy +msgid "/Duplicate Path" +msgstr "/Valitse/Talleta kanavalle" + +#: app/menus.c:292 +#, fuzzy +msgid "/Path to Selection" +msgstr "/Tasot/Maski valinnaksi" + +#: app/menus.c:293 +msgid "/Stroke Path" +msgstr "" + +#: app/menus.c:294 +#, fuzzy +msgid "/Delete Path" +msgstr "/Valitse/HЖyhen" + +#: app/menus.c:296 +#, fuzzy +msgid "/Copy Path" +msgstr "/Muokkaa/Kopioi nimetty" + +#: app/menus.c:297 +#, fuzzy +msgid "/Paste Path" +msgstr "/Muokkaa/Liimaa" + +#: app/menus.c:298 +msgid "/Import Path" +msgstr "" + +#: app/menus.c:299 +msgid "/Export Path" +msgstr "" + +#: app/menus.c:596 #, c-format msgid "Error opening file: %s\n" msgstr "Virhe tiedoston avauksessa: %s\n" -#: app/menus.c:458 app/menus.c:539 +#: app/menus.c:618 app/menus.c:699 #, c-format msgid "/File/MRU%02d" msgstr "/Tiedosto/MRU%02d" -#: app/move.c:438 +#: app/module_db.c:269 +msgid "Module DB" +msgstr "" + +#: app/module_db.c:567 +#, c-format +msgid "load module: \"%s\"\n" +msgstr "" + +#: app/module_db.c:574 +#, c-format +msgid "skipping module: \"%s\"\n" +msgstr "" + +#: app/module_db.c:598 +#, c-format +msgid "module load error: %s: %s" +msgstr "" + +#: app/module_db.c:616 +msgid "missing module_init() symbol" +msgstr "" + +#: app/module_db.c:619 +#, c-format +msgid "%s: module_init() symbol not found" +msgstr "" + +#: app/module_db.c:772 +msgid "" +msgstr "" + +#: app/module_db.c:785 app/module_db.c:794 +msgid "on disk" +msgstr "" + +#: app/module_db.c:785 +msgid "only in memory" +msgstr "" + +#: app/module_db.c:794 +msgid "nowhere (click 'refresh')" +msgstr "" + +#: app/module_db.c:830 +msgid "Load" +msgstr "" + +#: app/module_db.c:839 +msgid "Unload" +msgstr "" + +#: app/module_db.c:852 +msgid "Purpose: " +msgstr "" + +#: app/module_db.c:853 +#, fuzzy +msgid "Author: " +msgstr "/Automaattinen" + +#: app/module_db.c:854 +#, fuzzy +msgid "Version: " +msgstr "Versio" + +#: app/module_db.c:855 +msgid "Copyright: " +msgstr "" + +#: app/module_db.c:856 +#, fuzzy +msgid "Date: " +msgstr "/Muokkaa/Liimaa" + +#: app/module_db.c:857 +#, fuzzy +msgid "Location: " +msgstr "/Valitse/Ei mitДДn" + +#: app/module_db.c:858 +#, fuzzy +msgid "State: " +msgstr "/Muokkaa/Liimaa" + +#: app/module_db.c:877 +msgid "Autoload during startup" +msgstr "" + +#: app/move.c:444 #, fuzzy msgid "Move Tool Options" msgstr "/Dialogit/TyЖkalujen asetukset" -#: app/paint_core.c:547 +#: app/paint_core.c:586 msgid "No brushes available for use with this tool." msgstr "" -#: app/paint_core.c:1290 -msgid "paint_core_replace only works in INCREMENTAL mode" -msgstr "" - -#: app/paint_core.c:1427 +#: app/paint_core.c:1574 msgid "set_undo_tiles: undo_tiles is null" msgstr "" -#: app/paint_funcs.c:85 +#: app/paint_funcs.c:85 app/tool_options.c:777 msgid "Behind" msgstr "" @@ -4147,31 +4143,30 @@ msgstr "/Muokkaa/Liimaa" msgid "Once Forward" msgstr "" -#: app/paintbrush.c:154 +#: app/paintbrush.c:155 msgid "Once Backward" msgstr "" -#: app/paintbrush.c:155 +#: app/paintbrush.c:157 msgid "Loop Sawtooth" msgstr "" -#: app/paintbrush.c:156 +#: app/paintbrush.c:159 msgid "Loop Triangle" msgstr "" -#: app/paintbrush.c:180 +#: app/paintbrush.c:185 msgid "Fade Out:" msgstr "" -#: app/paintbrush.c:207 +#: app/paintbrush.c:212 msgid "Length:" msgstr "" -#. the radio frame and box -#: app/paintbrush.c:232 -#, fuzzy -msgid "Gradient Type" -msgstr "/Valitse/Ei mitДДn" +#. the gradient type +#: app/paintbrush.c:237 +msgid "Type:" +msgstr "" #: app/palette.c:484 #, c-format @@ -4356,587 +4351,585 @@ msgstr "" msgid "Perspective..." msgstr "" -#: app/plug_in.c:204 +#: app/plug_in.c:207 msgid "shmget failed...disabling shared memory tile transport" msgstr "" -#: app/plug_in.c:210 +#: app/plug_in.c:213 msgid "shmat failed...disabling shared memory tile transport" msgstr "" -#: app/plug_in.c:309 +#: app/plug_in.c:312 msgid "Plug-ins" msgstr "" -#: app/plug_in.c:321 +#: app/plug_in.c:324 #, c-format msgid "query plug-in: \"%s\"\n" msgstr "" -#: app/plug_in.c:359 +#: app/plug_in.c:362 #, c-format msgid "writing \"%s\"\n" msgstr "" -#: app/plug_in.c:374 +#: app/plug_in.c:377 msgid "Starting extensions: " msgstr "" -#: app/plug_in.c:375 +#: app/plug_in.c:378 #, fuzzy msgid "Extensions" msgstr "/Laajennus" -#: app/plug_in.c:690 +#: app/plug_in.c:693 #, c-format msgid "\"%s\" executable not found\n" msgstr "" -#: app/plug_in.c:743 +#: app/plug_in.c:746 #, c-format msgid "unable to locate plug-in: \"%s\"" msgstr "" -#: app/plug_in.c:825 +#: app/plug_in.c:828 msgid "unable to open pipe" msgstr "" -#: app/plug_in.c:914 +#: app/plug_in.c:917 #, c-format msgid "unable to run plug-in: %s" msgstr "" -#: app/plug_in.c:1281 -#, fuzzy -msgid "/Filters/Repeat last" -msgstr "/Suotimet/Toista edellinen" - -#: app/plug_in.c:1282 -#, fuzzy -msgid "/Filters/Re-show last" -msgstr "/Suotimet/NДytД uudelleen edellinen" - -#: app/plug_in.c:1640 app/plug_in.c:1653 app/plug_in.c:1666 app/plug_in.c:1681 +#: app/plug_in.c:1648 app/plug_in.c:1661 app/plug_in.c:1674 app/plug_in.c:1689 #, c-format msgid "" "plug-in \"%s\" attempted to install procedure \"%s\" which does not take the " "standard plug-in args" msgstr "" -#: app/plug_in.c:1689 +#: app/plug_in.c:1697 #, c-format msgid "" "plug-in \"%s\" attempted to install procedure \"%s\" in an invalid menu " "location. Use either \"\", \"\", \"\", or \"\"." msgstr "" -#: app/plug_in.c:1709 +#: app/plug_in.c:1717 #, c-format msgid "" "plug_in \"%s\" attempted to install procedure \"%s\" which fails to comply " "with the array parameter passing standard. Argument %d is noncompliant." msgstr "" -#: app/plug_in.c:2141 +#: app/plug_in.c:2149 #, c-format msgid "duplicate plug-in: \"%s\" (skipping)\n" msgstr "" -#: app/plug_in.c:2349 +#: app/plug_in.c:2357 msgid "Unknown procedure type." msgstr "" -#: app/plug_in.c:2430 +#: app/plug_in.c:2438 #, c-format msgid "removing duplicate PDB procedure \"%s\"" msgstr "" -#: app/plug_in.c:2686 app/plug_in.c:2851 app/plug_in.c:2968 app/plug_in.c:3053 +#: app/plug_in.c:2694 app/plug_in.c:2859 app/plug_in.c:2976 app/plug_in.c:3061 msgid "the \"region\" arg type is not currently supported" msgstr "" -#: app/posterize.c:217 +#: app/posterize.c:164 msgid "Posterize does not operate on indexed drawables." msgstr "" -#: app/posterize.c:262 app/tools.c:521 +#: app/posterize.c:211 app/tools.c:547 msgid "Posterize" msgstr "" -#: app/posterize.c:276 +#: app/posterize.c:225 msgid "Posterize Levels: " msgstr "" -#: app/preferences_dialog.c:203 +#: app/preferences_dialog.c:205 msgid "Error: Levels of undo must be zero or greater." msgstr "" -#: app/preferences_dialog.c:209 +#: app/preferences_dialog.c:211 msgid "Error: Number of processors must be between 1 and 30." msgstr "" -#: app/preferences_dialog.c:215 +#: app/preferences_dialog.c:217 msgid "Error: Marching speed must be 50 or greater." msgstr "" -#: app/preferences_dialog.c:221 +#: app/preferences_dialog.c:223 msgid "Error: Default width must be one or greater." msgstr "" -#: app/preferences_dialog.c:227 +#: app/preferences_dialog.c:229 msgid "Error: Default height must be one or greater." msgstr "" -#: app/preferences_dialog.c:234 +#: app/preferences_dialog.c:236 msgid "Error: Default unit must be within unit range." msgstr "" -#: app/preferences_dialog.c:241 +#: app/preferences_dialog.c:243 msgid "Error: default resolution must not be zero." msgstr "" -#: app/preferences_dialog.c:249 +#: app/preferences_dialog.c:251 msgid "Error: Default resolution unit must be within unit range." msgstr "" -#: app/preferences_dialog.c:256 +#: app/preferences_dialog.c:258 msgid "Error: Monitor resolution must not be zero." msgstr "" -#: app/preferences_dialog.c:263 +#: app/preferences_dialog.c:265 msgid "Error: Image title format must not be NULL." msgstr "" -#: app/preferences_dialog.c:520 +#: app/preferences_dialog.c:536 msgid "You will need to restart GIMP for these changes to take effect." msgstr "" -#: app/preferences_dialog.c:1433 +#: app/preferences_dialog.c:1467 #, fuzzy msgid "Preferences" msgstr "/Tiedosto/Asetukset..." #. The categories tree -#: app/preferences_dialog.c:1451 +#: app/preferences_dialog.c:1485 msgid "Categories" msgstr "" -#: app/preferences_dialog.c:1477 +#: app/preferences_dialog.c:1512 msgid "New File Settings" msgstr "" -#: app/preferences_dialog.c:1479 +#: app/preferences_dialog.c:1514 #, fuzzy msgid "New File" msgstr "/Tiedosto/Uusi" -#: app/preferences_dialog.c:1489 +#: app/preferences_dialog.c:1524 msgid "Default Image Size and Unit" msgstr "" -#: app/preferences_dialog.c:1503 +#: app/preferences_dialog.c:1538 msgid "Width" msgstr "" -#: app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1540 msgid "Height" msgstr "" -#: app/preferences_dialog.c:1532 +#: app/preferences_dialog.c:1567 msgid "Default Image Resolution and Resolution Unit" msgstr "" -#: app/preferences_dialog.c:1557 app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:1592 app/preferences_dialog.c:2294 msgid "dpi" msgstr "" -#: app/preferences_dialog.c:1602 +#: app/preferences_dialog.c:1637 msgid "Default Image Type:" msgstr "" -#: app/preferences_dialog.c:1607 +#: app/preferences_dialog.c:1642 msgid "Display Settings" msgstr "" -#: app/preferences_dialog.c:1609 +#: app/preferences_dialog.c:1644 msgid "Display" msgstr "" -#: app/preferences_dialog.c:1616 +#: app/preferences_dialog.c:1651 msgid "Transparency" msgstr "" -#: app/preferences_dialog.c:1634 +#: app/preferences_dialog.c:1669 msgid "Light Checks" msgstr "" -#: app/preferences_dialog.c:1636 +#: app/preferences_dialog.c:1671 msgid "Mid-Tone Checks" msgstr "" -#: app/preferences_dialog.c:1638 +#: app/preferences_dialog.c:1673 msgid "Dark Checks" msgstr "" -#: app/preferences_dialog.c:1640 +#: app/preferences_dialog.c:1675 msgid "White Only" msgstr "" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1677 msgid "Gray Only" msgstr "" -#: app/preferences_dialog.c:1644 +#: app/preferences_dialog.c:1679 msgid "Black Only" msgstr "" -#: app/preferences_dialog.c:1648 +#: app/preferences_dialog.c:1683 msgid "Transparency Type:" msgstr "" -#: app/preferences_dialog.c:1654 app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1689 app/preferences_dialog.c:1760 msgid "Small" msgstr "" -#: app/preferences_dialog.c:1656 app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1691 app/preferences_dialog.c:1761 msgid "Medium" msgstr "" -#: app/preferences_dialog.c:1658 app/preferences_dialog.c:1727 +#: app/preferences_dialog.c:1693 app/preferences_dialog.c:1762 msgid "Large" msgstr "" -#: app/preferences_dialog.c:1662 +#: app/preferences_dialog.c:1697 msgid "Check Size:" msgstr "" -#: app/preferences_dialog.c:1664 app/transform_tool.c:191 +#: app/preferences_dialog.c:1699 app/transform_tool.c:190 msgid "Scaling" msgstr "" -#: app/preferences_dialog.c:1673 +#: app/preferences_dialog.c:1708 #, fuzzy msgid "Cubic Interpolation" msgstr "/Valitse/Ei mitДДn" -#: app/preferences_dialog.c:1684 +#: app/preferences_dialog.c:1719 msgid "Interface Settings" msgstr "" -#: app/preferences_dialog.c:1693 +#: app/preferences_dialog.c:1728 msgid "General" msgstr "" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1765 msgid "Preview Size:" msgstr "" -#: app/preferences_dialog.c:1739 +#: app/preferences_dialog.c:1774 #, fuzzy msgid "Levels of Undo:" msgstr "/Dialogit/TyЖkalujen asetukset" -#: app/preferences_dialog.c:1748 +#: app/preferences_dialog.c:1783 msgid "Recent Documents List Size:" msgstr "" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1786 msgid "Help System" msgstr "" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1795 msgid "Show Tool Tips" msgstr "" -#: app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1806 msgid "Image Windows Settings" msgstr "" -#: app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1808 msgid "Image Windows" msgstr "" -#: app/preferences_dialog.c:1780 +#: app/preferences_dialog.c:1815 msgid "Appearance" msgstr "" -#: app/preferences_dialog.c:1789 +#: app/preferences_dialog.c:1824 #, fuzzy msgid "Resize Window on Zoom" msgstr "/NДytД/Ikkunan tiedot..." -#: app/preferences_dialog.c:1798 +#: app/preferences_dialog.c:1833 msgid "Show Rulers" msgstr "" -#: app/preferences_dialog.c:1807 +#: app/preferences_dialog.c:1842 #, fuzzy msgid "Show Statusbar" msgstr "/NДytД/Vaihda infopalkki" -#: app/preferences_dialog.c:1831 +#: app/preferences_dialog.c:1866 msgid "Marching Ants Speed:" msgstr "" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:1839 +#: app/preferences_dialog.c:1874 msgid "Custom" msgstr "" #. set some commonly used format strings -#: app/preferences_dialog.c:1845 +#: app/preferences_dialog.c:1880 msgid "Standard" msgstr "" -#: app/preferences_dialog.c:1850 +#: app/preferences_dialog.c:1885 msgid "Show zoom percentage" msgstr "" -#: app/preferences_dialog.c:1855 +#: app/preferences_dialog.c:1890 msgid "Show zoom ratio" msgstr "" -#: app/preferences_dialog.c:1860 +#: app/preferences_dialog.c:1895 msgid "Show reversed zoom ratio" msgstr "" -#: app/preferences_dialog.c:1871 +#: app/preferences_dialog.c:1906 msgid "Image Title Format:" msgstr "" #. End of the title format string -#: app/preferences_dialog.c:1874 +#: app/preferences_dialog.c:1909 msgid "Pointer Movement Feedback" msgstr "" -#: app/preferences_dialog.c:1884 +#: app/preferences_dialog.c:1919 msgid "Perfect-but-slow Pointer Tracking" msgstr "" -#: app/preferences_dialog.c:1893 +#: app/preferences_dialog.c:1928 msgid "Disable Cursor Updating" msgstr "" -#: app/preferences_dialog.c:1904 +#: app/preferences_dialog.c:1939 #, fuzzy msgid "Tool Options Settings" msgstr "/Dialogit/TyЖkalujen asetukset" -#: app/preferences_dialog.c:1906 app/tools.c:726 +#: app/preferences_dialog.c:1941 app/tools.c:884 #, fuzzy msgid "Tool Options" msgstr "/Dialogit/TyЖkalujen asetukset" -#: app/preferences_dialog.c:1913 +#: app/preferences_dialog.c:1948 #, fuzzy msgid "Paint Options" msgstr "/Tasot/Maski valinnaksi" -#: app/preferences_dialog.c:1923 +#: app/preferences_dialog.c:1958 #, fuzzy msgid "Use Global Paint Options" msgstr "/Tasot/Maski valinnaksi" -#: app/preferences_dialog.c:1933 -msgid "(Switching this off does not yet work consistently.)" +#: app/preferences_dialog.c:1974 +msgid "Display brush and pattern indicators on Toolbar" msgstr "" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1988 msgid "Environment Settings" msgstr "" -#: app/preferences_dialog.c:1945 +#: app/preferences_dialog.c:1990 msgid "Environment" msgstr "" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1997 msgid "Resource Consumption" msgstr "" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:2006 msgid "Conservative Memory Usage" msgstr "" -#: app/preferences_dialog.c:2012 app/preferences_dialog.c:2053 +#: app/preferences_dialog.c:2057 app/preferences_dialog.c:2098 msgid "Bytes" msgstr "" -#: app/preferences_dialog.c:2013 app/preferences_dialog.c:2054 +#: app/preferences_dialog.c:2058 app/preferences_dialog.c:2099 msgid "KiloBytes" msgstr "" -#: app/preferences_dialog.c:2014 app/preferences_dialog.c:2055 +#: app/preferences_dialog.c:2059 app/preferences_dialog.c:2100 msgid "MegaBytes" msgstr "" -#: app/preferences_dialog.c:2019 +#: app/preferences_dialog.c:2064 msgid "Tile Cache Size:" msgstr "" -#: app/preferences_dialog.c:2060 +#: app/preferences_dialog.c:2105 msgid "Maximum Image Size:" msgstr "" -#: app/preferences_dialog.c:2070 +#: app/preferences_dialog.c:2115 msgid "Number of Processors to Use:" msgstr "" -#: app/preferences_dialog.c:2074 +#: app/preferences_dialog.c:2119 msgid "8-Bit Displays" msgstr "" -#: app/preferences_dialog.c:2085 +#: app/preferences_dialog.c:2130 msgid "Install Colormap" msgstr "" -#: app/preferences_dialog.c:2094 +#: app/preferences_dialog.c:2139 msgid "Colormap Cycling" msgstr "" -#: app/preferences_dialog.c:2105 +#: app/preferences_dialog.c:2148 +msgid "File Previews / Thumbnails" +msgstr "" + +#: app/preferences_dialog.c:2175 +msgid "Try to Write a Thumbnail File:" +msgstr "" + +#: app/preferences_dialog.c:2180 msgid "Session Management" msgstr "" -#: app/preferences_dialog.c:2107 +#: app/preferences_dialog.c:2182 #, fuzzy msgid "Session" msgstr "Versio" -#: app/preferences_dialog.c:2114 +#: app/preferences_dialog.c:2189 msgid "Window Positions" msgstr "" -#: app/preferences_dialog.c:2123 +#: app/preferences_dialog.c:2198 msgid "Save Window Positions on Exit" msgstr "" -#: app/preferences_dialog.c:2137 +#: app/preferences_dialog.c:2212 msgid "Clear Saved Window Positions" msgstr "" -#: app/preferences_dialog.c:2144 +#: app/preferences_dialog.c:2219 msgid "Always Try to Restore Session" msgstr "" -#: app/preferences_dialog.c:2153 +#: app/preferences_dialog.c:2228 #, fuzzy msgid "Devices" msgstr "/Dialogit/Laitteiden tila..." -#: app/preferences_dialog.c:2162 +#: app/preferences_dialog.c:2237 #, fuzzy msgid "Save Device Status on Exit" msgstr "/Dialogit/Laitteiden tila..." -#: app/preferences_dialog.c:2173 +#: app/preferences_dialog.c:2248 #, fuzzy msgid "Monitor Information" msgstr "/Dialogit/TyЖkalujen asetukset" -#: app/preferences_dialog.c:2175 +#: app/preferences_dialog.c:2250 msgid "Monitor" msgstr "" -#: app/preferences_dialog.c:2182 +#: app/preferences_dialog.c:2257 msgid "Get Monitor Resolution" msgstr "" -#: app/preferences_dialog.c:2197 +#: app/preferences_dialog.c:2272 #, c-format msgid "(Currently %d x %d dpi)" msgstr "" -#: app/preferences_dialog.c:2244 +#: app/preferences_dialog.c:2319 msgid "From X Server" msgstr "" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2334 msgid "Manually:" msgstr "" -#: app/preferences_dialog.c:2272 +#: app/preferences_dialog.c:2347 msgid "Directories Settings" msgstr "" -#: app/preferences_dialog.c:2274 +#: app/preferences_dialog.c:2349 msgid "Directories" msgstr "" -#: app/preferences_dialog.c:2287 +#: app/preferences_dialog.c:2362 msgid "Temp Dir:" msgstr "" -#: app/preferences_dialog.c:2287 +#: app/preferences_dialog.c:2362 msgid "Select Temp Dir" msgstr "" -#: app/preferences_dialog.c:2288 +#: app/preferences_dialog.c:2363 msgid "Swap Dir:" msgstr "" -#: app/preferences_dialog.c:2288 +#: app/preferences_dialog.c:2363 #, fuzzy msgid "Select Swap Dir" msgstr "/Valitse/TerДvЖitД" -#: app/preferences_dialog.c:2320 +#: app/preferences_dialog.c:2395 msgid "Brushes Directories" msgstr "" -#: app/preferences_dialog.c:2320 +#: app/preferences_dialog.c:2395 #, fuzzy msgid "Select Brushes Dir" msgstr "/Valitse/Reuna" -#: app/preferences_dialog.c:2322 +#: app/preferences_dialog.c:2397 #, fuzzy msgid "Patterns Directories" msgstr "/Tasot/Maski valinnaksi" -#: app/preferences_dialog.c:2322 +#: app/preferences_dialog.c:2397 msgid "Select Patterns Dir" msgstr "" -#: app/preferences_dialog.c:2324 +#: app/preferences_dialog.c:2399 #, fuzzy msgid "Palettes Directories" msgstr "/Tasot/Maski valinnaksi" -#: app/preferences_dialog.c:2324 +#: app/preferences_dialog.c:2399 msgid "Select Palettes Dir" msgstr "" -#: app/preferences_dialog.c:2326 +#: app/preferences_dialog.c:2401 #, fuzzy msgid "Gradients Directories" msgstr "/Dialogit/LiukuvДrien muokkain..." -#: app/preferences_dialog.c:2326 +#: app/preferences_dialog.c:2401 #, fuzzy msgid "Select Gradients Dir" msgstr "/Dialogit/LiukuvДrien muokkain..." -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 msgid "Plug-Ins" msgstr "" -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 msgid "Plug-Ins Directories" msgstr "" -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 msgid "Select Plug-Ins Dir" msgstr "" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 msgid "Modules" msgstr "" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 msgid "Modules Directories" msgstr "" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 #, fuzzy msgid "Select Modules Dir" msgstr "/Valitse/Ei mitДДn" @@ -4957,28 +4950,32 @@ msgid "" "Argument %d to '%s' should be a %s, but got passed a %s" msgstr "" -#: app/rect_select.c:179 +#: app/rect_select.c:180 #, fuzzy msgid "Selection: ADD" msgstr "/Valitse/Ei mitДДn" -#: app/rect_select.c:182 +#: app/rect_select.c:183 msgid "Selection: SUBTRACT" msgstr "" -#: app/rect_select.c:185 +#: app/rect_select.c:186 msgid "Selection: INTERSECT" msgstr "" -#: app/rect_select.c:188 +#: app/rect_select.c:189 msgid "Selection: REPLACE" msgstr "" -#: app/rect_select.c:404 app/rect_select.c:411 +#: app/rect_select.c:405 app/rect_select.c:412 #, fuzzy msgid "Selection: " msgstr "/Valitse/Ei mitДДn" +#: app/resize.c:159 +msgid "Scale Layer" +msgstr "" + #: app/resize.c:160 app/resize.c:181 #, fuzzy msgid "Size" @@ -4994,6 +4991,11 @@ msgstr "/Kuva/Skaalaa" msgid "Pixel Dimensions" msgstr "/Laajennus" +#: app/resize.c:174 +#, fuzzy +msgid "Resize Layer" +msgstr "/Tasot/Nosta taso" + #: app/resize.c:178 #, fuzzy msgid "Image Resize" @@ -5027,11 +5029,11 @@ msgstr "" msgid "Rotation Information" msgstr "" -#: app/rotate_tool.c:105 +#: app/rotate_tool.c:106 msgid "Center X:" msgstr "" -#: app/rotate_tool.c:400 +#: app/rotate_tool.c:401 msgid "Rotating..." msgstr "" @@ -5075,65 +5077,65 @@ msgstr "" msgid "Shearing..." msgstr "" -#: app/text_tool.c:158 +#: app/text_tool.c:157 #, fuzzy msgid "Text Tool Options" msgstr "/Dialogit/TyЖkalujen asetukset" -#: app/text_tool.c:169 +#: app/text_tool.c:168 app/tool_options.c:317 msgid "Antialiasing" msgstr "" -#: app/text_tool.c:183 +#: app/text_tool.c:182 msgid "Border:" msgstr "" -#: app/text_tool.c:209 +#: app/text_tool.c:208 msgid "Use Dynamic Text" msgstr "" -#: app/text_tool.c:285 +#: app/text_tool.c:278 msgid "text_call_gdyntext: gDynText procedure lookup failed" msgstr "" #. Create the shell -#: app/text_tool.c:408 app/text_tool.c:410 +#: app/text_tool.c:399 app/text_tool.c:401 msgid "Text Tool" msgstr "" -#: app/text_tool.c:617 +#: app/text_tool.c:609 #, c-format msgid "Font '%s' not found.%s" msgstr "" -#: app/text_tool.c:619 +#: app/text_tool.c:611 msgid "" "\n" "If you don't have scalable fonts, try turning off antialiasing in the tool " "options." msgstr "" -#: app/text_tool.c:730 +#: app/text_tool.c:722 msgid "Text Layer" msgstr "" -#: app/text_tool.c:773 +#: app/text_tool.c:765 msgid "text_render: could not allocate image" msgstr "" -#: app/threshold.c:234 +#: app/threshold.c:189 msgid "Threshold Options" msgstr "" -#: app/threshold.c:283 +#: app/threshold.c:232 msgid "Threshold does not operate on indexed drawables." msgstr "" -#: app/threshold.c:341 app/tools.c:536 +#: app/threshold.c:291 app/tools.c:562 msgid "Threshold" msgstr "" -#: app/threshold.c:356 +#: app/threshold.c:306 msgid "Threshold Range: " msgstr "" @@ -5141,21 +5143,21 @@ msgstr "" msgid "starting tile preswapper\n" msgstr "" -#: app/tile_swap.c:379 +#: app/tile_swap.c:381 msgid "unable to open swap file...BAD THINGS WILL HAPPEN SOON" msgstr "" -#: app/tile_swap.c:499 app/tile_swap.c:560 +#: app/tile_swap.c:501 app/tile_swap.c:562 #, c-format msgid "unable to seek to tile location on disk: %d" msgstr "" -#: app/tile_swap.c:518 +#: app/tile_swap.c:520 #, c-format msgid "unable to read tile data from disk: %d/%d ( %d ) bytes read" msgstr "" -#: app/tile_swap.c:573 +#: app/tile_swap.c:575 #, c-format msgid "unable to write tile data to disk: %d ( %d ) bytes written" msgstr "" @@ -5188,332 +5190,454 @@ msgid "" "GIMP data directory. Please check your installation." msgstr "" -#: app/tools.c:85 +#: app/tools.c:81 msgid "Rect Select" msgstr "" -#: app/tools.c:87 +#: app/tools.c:83 msgid "/Tools/Rect Select" msgstr "" -#: app/tools.c:90 +#: app/tools.c:86 msgid "Select rectangular regions" msgstr "" -#: app/tools.c:100 +#: app/tools.c:96 msgid "Ellipse Select" msgstr "" -#: app/tools.c:102 +#: app/tools.c:98 msgid "/Tools/Ellipse Select" msgstr "" -#: app/tools.c:105 +#: app/tools.c:101 msgid "Select elliptical regions" msgstr "" -#: app/tools.c:115 +#: app/tools.c:111 msgid "Free Select" msgstr "" -#: app/tools.c:117 +#: app/tools.c:113 msgid "/Tools/Free Select" msgstr "" -#: app/tools.c:120 +#: app/tools.c:116 msgid "Select hand-drawn regions" msgstr "" -#: app/tools.c:130 +#: app/tools.c:126 msgid "Fuzzy Select" msgstr "" -#: app/tools.c:132 +#: app/tools.c:128 msgid "/Tools/Fuzzy Select" msgstr "" -#: app/tools.c:135 +#: app/tools.c:131 msgid "Select contiguous regions" msgstr "" -#: app/tools.c:145 +#: app/tools.c:141 msgid "Bezier Select" msgstr "" -#: app/tools.c:147 +#: app/tools.c:143 msgid "/Tools/Bezier Select" msgstr "" -#: app/tools.c:150 +#: app/tools.c:146 msgid "Select regions using Bezier curves" msgstr "" -#: app/tools.c:160 +#: app/tools.c:156 msgid "Intelligent Scissors" msgstr "" -#: app/tools.c:162 +#: app/tools.c:158 msgid "/Tools/Intelligent Scissors" msgstr "" -#: app/tools.c:165 +#: app/tools.c:161 msgid "Select shapes from image" msgstr "" -#: app/tools.c:175 +#: app/tools.c:171 msgid "Move" msgstr "" -#: app/tools.c:177 +#: app/tools.c:173 #, fuzzy msgid "/Tools/Move" msgstr "/TyЖkalut/---" -#: app/tools.c:180 +#: app/tools.c:176 #, fuzzy msgid "Move layers & selections" msgstr "/Tasot/Maski valinnaksi" -#: app/tools.c:190 +#: app/tools.c:186 msgid "Magnify" msgstr "" -#: app/tools.c:192 +#: app/tools.c:188 msgid "/Tools/Magnify" msgstr "" -#: app/tools.c:195 +#: app/tools.c:191 msgid "Zoom in & out" msgstr "" -#: app/tools.c:205 +#: app/tools.c:201 #, fuzzy msgid "Crop & Resize" msgstr "/Kuva/Muokkaa kokoa" -#: app/tools.c:207 +#: app/tools.c:203 #, fuzzy msgid "/Tools/Crop & Resize" msgstr "/TyЖkalut/---" -#: app/tools.c:210 +#: app/tools.c:206 msgid "Crop or resize the image" msgstr "" #. the first radio frame and box, for transform type -#: app/tools.c:220 app/tools.c:235 app/tools.c:250 app/tools.c:265 +#: app/tools.c:216 app/tools.c:231 app/tools.c:246 app/tools.c:261 #: app/transform_core.c:125 app/transform_tool.c:224 msgid "Transform" msgstr "" -#: app/tools.c:222 +#: app/tools.c:218 #, fuzzy msgid "/Tools/Transform" msgstr "/TyЖkalut/TyЖkalulaatikko" -#: app/tools.c:225 +#: app/tools.c:221 msgid "Transform the layer or selection" msgstr "" -#: app/tools.c:280 +#: app/tools.c:276 msgid "Flip" msgstr "" -#: app/tools.c:282 +#: app/tools.c:278 #, fuzzy msgid "/Tools/Flip" msgstr "/TyЖkalut/---" -#: app/tools.c:285 +#: app/tools.c:281 msgid "Flip the layer or selection" msgstr "" -#: app/tools.c:295 +#: app/tools.c:291 msgid "Text" msgstr "" -#: app/tools.c:297 +#: app/tools.c:293 #, fuzzy msgid "/Tools/Text" msgstr "/TyЖkalut/TyЖkalulaatikko" -#: app/tools.c:300 +#: app/tools.c:296 msgid "Add text to the image" msgstr "" -#: app/tools.c:312 +#: app/tools.c:308 #, fuzzy msgid "/Tools/Color Picker" msgstr "/TyЖkalut/Vaihda VДrit" -#: app/tools.c:315 +#: app/tools.c:311 msgid "Pick colors from the image" msgstr "" -#: app/tools.c:325 +#: app/tools.c:321 msgid "Bucket Fill" msgstr "" -#: app/tools.c:327 +#: app/tools.c:323 msgid "/Tools/Bucket Fill" msgstr "" -#: app/tools.c:330 +#: app/tools.c:326 msgid "Fill with a color or pattern" msgstr "" -#: app/tools.c:340 +#: app/tools.c:336 msgid "Blend" msgstr "" -#: app/tools.c:342 +#: app/tools.c:338 #, fuzzy msgid "/Tools/Blend" msgstr "/TyЖkalut/---" -#: app/tools.c:345 +#: app/tools.c:341 msgid "Fill with a color gradient" msgstr "" -#: app/tools.c:355 +#: app/tools.c:351 msgid "Pencil" msgstr "" -#: app/tools.c:357 +#: app/tools.c:353 #, fuzzy msgid "/Tools/Pencil" msgstr "/TyЖkalut/---" -#: app/tools.c:360 +#: app/tools.c:356 msgid "Draw sharp pencil strokes" msgstr "" -#: app/tools.c:370 +#: app/tools.c:366 msgid "Paintbrush" msgstr "" -#: app/tools.c:372 +#: app/tools.c:368 msgid "/Tools/Paintbrush" msgstr "" -#: app/tools.c:375 +#: app/tools.c:371 msgid "Paint fuzzy brush strokes" msgstr "" -#: app/tools.c:385 +#: app/tools.c:381 msgid "Eraser" msgstr "" -#: app/tools.c:387 +#: app/tools.c:383 #, fuzzy msgid "/Tools/Eraser" msgstr "/TyЖkalut/---" -#: app/tools.c:390 +#: app/tools.c:386 msgid "Erase to background or transparency" msgstr "" -#: app/tools.c:400 +#: app/tools.c:396 msgid "Airbrush" msgstr "" -#: app/tools.c:402 +#: app/tools.c:398 msgid "/Tools/Airbrush" msgstr "" -#: app/tools.c:405 +#: app/tools.c:401 msgid "Airbrush with variable pressure" msgstr "" -#: app/tools.c:415 +#: app/tools.c:411 msgid "Clone" msgstr "" -#: app/tools.c:417 +#: app/tools.c:413 #, fuzzy msgid "/Tools/Clone" msgstr "/TyЖkalut/TyЖkalulaatikko" -#: app/tools.c:420 +#: app/tools.c:416 msgid "Paint using patterns or image regions" msgstr "" -#: app/tools.c:430 +#: app/tools.c:426 msgid "Convolve" msgstr "" -#: app/tools.c:432 +#: app/tools.c:428 #, fuzzy msgid "/Tools/Convolve" msgstr "/TyЖkalut/TyЖkalulaatikko" -#: app/tools.c:435 +#: app/tools.c:431 msgid "Blur or sharpen" msgstr "" -#: app/tools.c:445 +#: app/tools.c:441 msgid "Ink" msgstr "" -#: app/tools.c:447 +#: app/tools.c:443 #, fuzzy msgid "/Tools/Ink" msgstr "/TyЖkalut/---" -#: app/tools.c:450 +#: app/tools.c:446 msgid "Draw in ink" msgstr "" -#: app/tools.c:461 +#: app/tools.c:456 app/tools.c:461 +msgid "Dodge or Burn" +msgstr "" + +#: app/tools.c:458 +#, fuzzy +msgid "/Tools/DodgeBurn" +msgstr "/TyЖkalut/---" + +#: app/tools.c:471 app/tools.c:476 +msgid "Smudge" +msgstr "" + +#: app/tools.c:473 +#, fuzzy +msgid "/Tools/Smudge" +msgstr "/TyЖkalut/---" + +#: app/tools.c:487 msgid "By Color Select" msgstr "" -#: app/tools.c:463 +#: app/tools.c:489 #, fuzzy msgid "/Select/By Color..." msgstr "/Valitse/Reuna" -#: app/tools.c:478 +#: app/tools.c:504 #, fuzzy msgid "/Image/Colors/Color Balance" msgstr "/Kuva/VДrit/Equalize" -#: app/tools.c:493 +#: app/tools.c:519 #, fuzzy msgid "/Image/Colors/Brightness-Contrast" msgstr "/Kuva/VДrit/Desaturate" -#: app/tools.c:508 +#: app/tools.c:534 #, fuzzy msgid "/Image/Colors/Hue-Saturation" msgstr "/Kuva/VДrit/Desaturate" -#: app/tools.c:523 +#: app/tools.c:549 #, fuzzy msgid "/Image/Colors/Posterize" msgstr "/Kuva/VДrit/Desaturate" -#: app/tools.c:538 +#: app/tools.c:564 #, fuzzy msgid "/Image/Colors/Threshold" msgstr "/Kuva/VДrit/---" -#: app/tools.c:553 +#: app/tools.c:579 #, fuzzy msgid "/Image/Colors/Curves" msgstr "/Kuva/VДrit/Invertoi" -#: app/tools.c:568 +#: app/tools.c:594 #, fuzzy msgid "/Image/Colors/Levels" msgstr "/Kuva/VДrit/Invertoi" -#: app/tools.c:581 -msgid "Histogram" +#: app/tools.c:609 +msgid "/Image/Histogram" msgstr "" -#: app/tools.c:583 -msgid "/Image/Histogram" +#: app/tool_options.c:206 app/tool_options.c:688 +msgid "This tool has no options." +msgstr "" + +#: app/tool_options.c:230 +#, fuzzy +msgid "Rectangular Select Options" +msgstr "/Tasot/Maski valinnaksi" + +#: app/tool_options.c:232 +msgid "Elliptical Selection Options" +msgstr "" + +#: app/tool_options.c:234 +msgid "Free-hand Selection Options" +msgstr "" + +#: app/tool_options.c:236 +#, fuzzy +msgid "Fuzzy Selection Options" +msgstr "/Tiedosto/Dialogit/TyЖkalujen Asetukset..." + +#: app/tool_options.c:238 +#, fuzzy +msgid "Bezier Selection Options" +msgstr "/Tasot/Maski valinnaksi" + +#: app/tool_options.c:240 +msgid "Intelligent Scissors Options" +msgstr "" + +#: app/tool_options.c:242 +#, fuzzy +msgid "By-Color Select Options" +msgstr "/Tasot/Maski valinnaksi" + +#: app/tool_options.c:243 +msgid "ERROR: Unknown Selection Type" +msgstr "" + +#: app/tool_options.c:273 +#, fuzzy +msgid "Feather" +msgstr "/Valitse/HЖyhen" + +#: app/tool_options.c:381 +msgid "Fixed size / aspect ratio" +msgstr "" + +#: app/tool_options.c:552 +#, fuzzy +msgid "Bucket Fill Options" +msgstr "/Tiedosto/Dialogit/TyЖkalujen Asetukset..." + +#: app/tool_options.c:554 +#, fuzzy +msgid "Blend Options" +msgstr "/Dialogit/TyЖkalujen asetukset" + +#: app/tool_options.c:556 +#, fuzzy +msgid "Pencil Options" +msgstr "/Dialogit/TyЖkalujen asetukset" + +#: app/tool_options.c:558 +#, fuzzy +msgid "Paintbrush Options" +msgstr "/Tasot/Maski valinnaksi" + +#: app/tool_options.c:560 +#, fuzzy +msgid "Erazer Options" +msgstr "/Tasot/Maski valinnaksi" + +#: app/tool_options.c:562 +#, fuzzy +msgid "Airbrush Options" +msgstr "/Tiedosto/Dialogit/TyЖkalujen Asetukset..." + +#: app/tool_options.c:564 +#, fuzzy +msgid "Clone Tool Options" +msgstr "/Dialogit/TyЖkalujen asetukset" + +#: app/tool_options.c:566 +#, fuzzy +msgid "Convolver Options" +msgstr "/Dialogit/TyЖkalujen asetukset" + +#: app/tool_options.c:568 +#, fuzzy +msgid "Ink Options" +msgstr "/Dialogit/TyЖkalujen asetukset" + +#: app/tool_options.c:570 +#, fuzzy +msgid "Dodge or Burn Options" +msgstr "/Dialogit/TyЖkalujen asetukset" + +#: app/tool_options.c:572 +#, fuzzy +msgid "Smudge Options" +msgstr "/Dialogit/TyЖkalujen asetukset" + +#: app/tool_options.c:573 +msgid "ERROR: Unknown Paint Type" msgstr "" #: app/transform_core.c:122 @@ -5534,24 +5658,24 @@ msgid "" "layers that contain layer masks." msgstr "" -#: app/transform_core.c:1132 +#: app/transform_core.c:1140 msgid "homogeneous coordinate = 0...\n" msgstr "" -#: app/transform_core.c:1387 +#: app/transform_core.c:1395 #, fuzzy msgid "Transformation" msgstr "/Dialogit/TyЖkalujen asetukset" -#: app/transform_tool.c:190 +#: app/transform_tool.c:189 msgid "Rotation" msgstr "" -#: app/transform_tool.c:192 +#: app/transform_tool.c:191 msgid "Shearing" msgstr "" -#: app/transform_tool.c:193 +#: app/transform_tool.c:192 msgid "Perspective" msgstr "" @@ -5672,6 +5796,95 @@ msgstr "" msgid "unable to read tile data from xcf file: %d ( %d ) bytes read" msgstr "" +#. pseudo unit +#: libgimp/gimpunit.c:44 +msgid "pixel" +msgstr "" + +#: libgimp/gimpunit.c:44 +msgid "pixels" +msgstr "" + +#. standard units +#: libgimp/gimpunit.c:47 +msgid "inch" +msgstr "" + +#: libgimp/gimpunit.c:47 +#, fuzzy +msgid "inches" +msgstr "/Dialogit/Laitteiden tila..." + +#: libgimp/gimpunit.c:48 +msgid "millimeter" +msgstr "" + +#: libgimp/gimpunit.c:48 +#, fuzzy +msgid "millimeters" +msgstr "/Suotimet/" + +#. professional units +#: libgimp/gimpunit.c:51 +msgid "point" +msgstr "" + +#: libgimp/gimpunit.c:51 +msgid "points" +msgstr "" + +#: libgimp/gimpunit.c:52 +msgid "pica" +msgstr "" + +#: libgimp/gimpunit.c:52 +msgid "picas" +msgstr "" + +#: libgimp/gimpunit.c:59 +msgid "percent" +msgstr "" + +#: libgimp/gimpfileselection.c:352 +#, fuzzy +msgid "Select File" +msgstr "/Valitse/Ei mitДДn" + +#: libgimp/gimpfileselection.c:355 libgimp/gimpunitmenu.c:510 +#, fuzzy +msgid "Select" +msgstr "/Valitse/Kaikki" + +#: libgimp/gimpenv.c:82 +msgid "warning: no home directory." +msgstr "" + +#: libgimp/gimpunitmenu.c:207 +msgid "More..." +msgstr "" + +#: libgimp/gimpunitmenu.c:333 +msgid "unit-menu-format string ended within %%-sequence" +msgstr "" + +#: libgimp/gimpunitmenu.c:366 +msgid "unit-menu-format contains unknownformat sequence '%%%c'" +msgstr "" + +#: libgimp/gimpunitmenu.c:453 +#, fuzzy +msgid "Unit Selection" +msgstr "/Valitse/Ei mitДДn" + +#: libgimp/gimpunitmenu.c:479 +msgid "Unit " +msgstr "" + +#: libgimp/gimpunitmenu.c:481 +#, fuzzy +msgid "Factor" +msgstr "/Valitse/HЖyhen" + #: app/regex.c:976 msgid "Success" msgstr "Onnistui" @@ -5760,6 +5973,234 @@ msgstr "Ei l msgid "No previous regular expression" msgstr "Ei ole edellistД sДДnnЖllistД lauseketta" +#, fuzzy +#~ msgid "/File/Quit" +#~ msgstr "/Tiedosto/Poistu" + +#, fuzzy +#~ msgid "/File/Quit" +#~ msgstr "/Tiedosto/Poistu" + +#, fuzzy +#~ msgid "Automatic" +#~ msgstr "/Automaattinen" + +#, fuzzy +#~ msgid "/File/Open" +#~ msgstr "/Tiedosto/Avaa" + +#, fuzzy +#~ msgid "/File/Open" +#~ msgstr "/Tiedosto/Avaa" + +#, fuzzy +#~ msgid "/File/Save" +#~ msgstr "/Tiedosto/Talleta" + +#, fuzzy +#~ msgid "/File/Save as" +#~ msgstr "/Tiedosto/Talleta nimellД" + +#, fuzzy +#~ msgid "/Layers/Stack/Previous Layer" +#~ msgstr "/Tasot/Nosta taso" + +#, fuzzy +#~ msgid "/Layers/Stack/Next Layer" +#~ msgstr "/Tasot/Nosta taso" + +#, fuzzy +#~ msgid "/Layers/Stack/Raise Layer" +#~ msgstr "/Tasot/Nosta taso" + +#, fuzzy +#~ msgid "/Layers/Stack/Lower Layer" +#~ msgstr "/Tasot/Alenna taso" + +#, fuzzy +#~ msgid "/Layers/Stack/Layer to Top" +#~ msgstr "/Tasot/Nosta taso" + +#, fuzzy +#~ msgid "/Layers/Anchor Layer" +#~ msgstr "/Tasot/Ankkuroi taso" + +#, fuzzy +#~ msgid "/Layers/Merge Visible Layers" +#~ msgstr "/Tasot/YhdistД nДkyvДt tasot" + +#, fuzzy +#~ msgid "/Layers/Flatten Image" +#~ msgstr "/Tasot/YhdistД kuva" + +#, fuzzy +#~ msgid "/Layers/Alpha To Selection" +#~ msgstr "/Tasot/Alpha valinnaksi" + +#, fuzzy +#~ msgid "/Layers/Mask To Selection" +#~ msgstr "/Tasot/Maski valinnaksi" + +#, fuzzy +#~ msgid "/Layers/Add Alpha Channel" +#~ msgstr "/Tasot/LisДД alpha kanava" + +#, fuzzy +#~ msgid "/Image/RGB" +#~ msgstr "/Kuva/RGB" + +#, fuzzy +#~ msgid "/Image/Grayscale" +#~ msgstr "/Kuva/HarmaasДvy" + +#, fuzzy +#~ msgid "/Image/Indexed" +#~ msgstr "/Kuva/Indeksoitu" + +#, fuzzy +#~ msgid "/Image/Colors/Threshold" +#~ msgstr "/Kuva/VДrit/Invertoi" + +#, fuzzy +#~ msgid "/Image/Colors/Posterize" +#~ msgstr "/Kuva/VДrit/Desaturate" + +#, fuzzy +#~ msgid "/Image/Colors/Equalize" +#~ msgstr "/Kuva/VДrit/Equalize" + +#, fuzzy +#~ msgid "/Image/Colors/Invert" +#~ msgstr "/Kuva/VДrit/Invertoi" + +#, fuzzy +#~ msgid "/Image/Colors/Color Balance" +#~ msgstr "/Kuva/VДrit/Equalize" + +#, fuzzy +#~ msgid "/Image/Colors/Brightness-Contrast" +#~ msgstr "/Kuva/VДrit/Desaturate" + +#, fuzzy +#~ msgid "/Image/Colors/Hue-Saturation" +#~ msgstr "/Kuva/VДrit/Desaturate" + +#, fuzzy +#~ msgid "/Image/Colors/Curves" +#~ msgstr "/Kuva/VДrit/Invertoi" + +#, fuzzy +#~ msgid "/Image/Colors/Levels" +#~ msgstr "/Kuva/VДrit/Invertoi" + +#, fuzzy +#~ msgid "/Image/Colors/Desaturate" +#~ msgstr "/Kuva/VДrit/Desaturate" + +#, fuzzy +#~ msgid "/Image/Alpha/Add Alpha Channel" +#~ msgstr "/Kuva/Alpha/LisДД alpha kanava" + +#, fuzzy +#~ msgid "/Select" +#~ msgstr "/Kuva/Skaalaa" + +#, fuzzy +#~ msgid "/Edit/Cut" +#~ msgstr "/Muokkaa/Leikkaa" + +#, fuzzy +#~ msgid "/Edit/Copy" +#~ msgstr "/Muokkaa/Kopioi" + +#, fuzzy +#~ msgid "/Edit/Paste" +#~ msgstr "/Muokkaa/Liimaa" + +#, fuzzy +#~ msgid "/Edit/Paste Into" +#~ msgstr "/Muokkaa/Liimaa johonkin" + +#, fuzzy +#~ msgid "/Edit/Fill" +#~ msgstr "/Muokkaa/TДytД" + +#, fuzzy +#~ msgid "/Edit/Stroke" +#~ msgstr "/Muokkaa/PiirrД" + +#, fuzzy +#~ msgid "/Edit/Cut Named" +#~ msgstr "/Muokkaa/Leikkaa nimetty" + +#, fuzzy +#~ msgid "/Edit/Copy Named" +#~ msgstr "/Muokkaa/Kopioi nimetty" + +#, fuzzy +#~ msgid "/Edit/Paste Named" +#~ msgstr "/Muokkaa/Liimaa nimetty" + +#, fuzzy +#~ msgid "/Image/Colors" +#~ msgstr "/Kuva/VДrit/---" + +#, fuzzy +#~ msgid "/Image/Channel Ops/Offset" +#~ msgstr "/Kuva/Kanava operaatiot/Offset" + +#, fuzzy +#~ msgid "/Filters" +#~ msgstr "/Suotimet/" + +#, fuzzy +#~ msgid "/Select/Save To Channel" +#~ msgstr "/Valitse/Talleta kanavalle" + +#, fuzzy +#~ msgid "/View/Toggle Rulers" +#~ msgstr "/NДytД/Vaihda viivottimet" + +#, fuzzy +#~ msgid "/View/Toggle Guides" +#~ msgstr "/NДytД/Vaihda apuviivat" + +#, fuzzy +#~ msgid "/View/Snap To Guides" +#~ msgstr "/NДytД/Nappaa apuviivoihin" + +#, fuzzy +#~ msgid "/View/Toggle Statusbar" +#~ msgstr "/NДytД/Vaihda infopalkki" + +#, fuzzy +#~ msgid "/File/Close" +#~ msgstr "/Tiedosto/Sulje" + +#, fuzzy +#~ msgid "Replace Current Selection" +#~ msgstr "/Tasot/Maski valinnaksi" + +#, fuzzy +#~ msgid "Lower Layer" +#~ msgstr "/Tasot/Alenna taso" + +#, fuzzy +#~ msgid "/Select/Toggle" +#~ msgstr "/Valitse/Vaihda" + +#, fuzzy +#~ msgid "Gradient Type" +#~ msgstr "/Valitse/Ei mitДДn" + +#, fuzzy +#~ msgid "/Filters/Repeat last" +#~ msgstr "/Suotimet/Toista edellinen" + +#, fuzzy +#~ msgid "/Filters/Re-show last" +#~ msgstr "/Suotimet/NДytД uudelleen edellinen" + #, fuzzy #~ msgid "Add Channel To Selection" #~ msgstr "/Tasot/Alpha valinnaksi" @@ -5791,26 +6232,10 @@ msgstr "Ei ole edellist #~ msgid "# GIMP sessionrc\n" #~ msgstr "GIMP:n versio" -#, fuzzy -#~ msgid "Clone Tool Options" -#~ msgstr "/Dialogit/TyЖkalujen asetukset" - -#, fuzzy -#~ msgid "Selection" -#~ msgstr "/Valitse/Ei mitДДn" - -#, fuzzy -#~ msgid "Ink Options" -#~ msgstr "/Dialogit/TyЖkalujen asetukset" - #, fuzzy #~ msgid "Image procedures" #~ msgstr "/Kuva/Skaalaa" -#, fuzzy -#~ msgid "Feather" -#~ msgstr "/Valitse/HЖyhen" - #, fuzzy #~ msgid "/_File" #~ msgstr "/Tiedosto/Uusi" @@ -5823,10 +6248,6 @@ msgstr "Ei ole edellist #~ msgid "/_Edit" #~ msgstr "/Muokkaa/Leikkaa" -#, fuzzy -#~ msgid "/_Select" -#~ msgstr "/Valitse/Kaikki" - #, fuzzy #~ msgid "/_View" #~ msgstr "/NДytД/---" @@ -5839,26 +6260,14 @@ msgstr "Ei ole edellist #~ msgid "/Image/_Colors" #~ msgstr "/Kuva/VДrit/---" -#, fuzzy -#~ msgid "/Image/_Alpha" -#~ msgstr "/Kuva/Skaalaa" - #, fuzzy #~ msgid "/_Tools" #~ msgstr "/TyЖkalut/---" -#, fuzzy -#~ msgid "/Filte_rs" -#~ msgstr "/Suotimet/" - #, fuzzy #~ msgid "Gradient Length" #~ msgstr "/Dialogit/LiukuvДrien muokkain..." -#, fuzzy -#~ msgid "Pencil Options" -#~ msgstr "/Dialogit/TyЖkalujen asetukset" - #, fuzzy #~ msgid "GIMP Extension" #~ msgstr "GIMP:n versio" diff --git a/po/fr.po b/po/fr.po index 2be9620224..10d873a566 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gimp VERSION\n" -"POT-Creation-Date: 1999-06-24 13:12+0200\n" +"POT-Creation-Date: 1999-07-17 11:23-0700\n" "PO-Revision-Date: 1999-03-18 19:00+0100\n" "Last-Translator: Vincent Renardias \n" "Language-Team: Vincent Renardias \n" @@ -14,27 +14,27 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: app/about_dialog.c:153 +#: app/about_dialog.c:156 msgid "About the GIMP" msgstr "ю Propos de GIMP" -#: app/about_dialog.c:196 +#: app/about_dialog.c:199 msgid "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-*-*" msgstr "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-*-*" -#: app/about_dialog.c:199 +#: app/about_dialog.c:202 msgid "Version " msgstr "Version " -#: app/about_dialog.c:200 +#: app/about_dialog.c:203 msgid " brought to you by" msgstr " prИsentИe par" -#: app/about_dialog.c:206 +#: app/about_dialog.c:209 msgid "Spencer Kimball & Peter Mattis" msgstr "Spencer Kimball et Peter Mattis" -#: app/about_dialog.c:239 +#: app/about_dialog.c:242 msgid "Please visit http://www.gimp.org/ for more info" msgstr "Visitez http://www.gimp.org/ pour plus d'informations" @@ -52,64 +52,68 @@ msgid "killing stray timer, please report to lewing@gimp.org" msgstr "" "Erreur Interne. Veuillez signaler \"killing stray timer\" Ю lewing@gimp.org." -#: app/app_procs.c:356 +#: app/app_procs.c:358 msgid "GIMP Startup" msgstr "Lancement de GIMP" -#: app/app_procs.c:469 app/gimprc.c:394 +#: app/app_procs.c:471 app/gimprc.c:394 #, c-format msgid "parsing \"%s\"\n" msgstr "lecture de \"%s\"\n" #. initialize the xcf file format routines -#: app/app_procs.c:524 +#: app/app_procs.c:526 msgid "Looking for data files" msgstr "Recherche des fichiers de donnИes" -#: app/app_procs.c:524 +#: app/app_procs.c:526 msgid "Parasites" msgstr "Parasites" #. initialize the global parasite table -#: app/app_procs.c:526 app/internal_procs.c:70 app/preferences_dialog.c:2401 +#: app/app_procs.c:528 app/internal_procs.c:70 app/preferences_dialog.c:2395 msgid "Brushes" msgstr "Brosses" #. initialize the list of gimp brushes -#: app/app_procs.c:528 app/internal_procs.c:139 app/preferences_dialog.c:2403 +#: app/app_procs.c:530 app/internal_procs.c:139 app/preferences_dialog.c:2397 msgid "Patterns" msgstr "Motifs" #. initialize the list of gimp patterns -#: app/app_procs.c:530 app/preferences_dialog.c:2405 +#: app/app_procs.c:532 app/preferences_dialog.c:2399 msgid "Palettes" msgstr "Palettes" #. initialize the list of gimp palettes -#: app/app_procs.c:532 app/gradient_select.c:557 app/internal_procs.c:109 -#: app/preferences_dialog.c:2407 +#: app/app_procs.c:534 app/gradient_select.c:557 app/internal_procs.c:109 +#: app/preferences_dialog.c:2401 msgid "Gradients" msgstr "DИgradИs" -#: app/app_procs.c:700 app/app_procs.c:701 app/app_procs.c:721 -#: app/app_procs.c:722 app/menus.c:83 app/menus.c:98 +#: app/app_procs.c:702 app/app_procs.c:703 app/app_procs.c:728 +#: app/app_procs.c:729 app/menus.c:83 app/menus.c:98 msgid "/File/Quit" msgstr "/Fichier/Quitter" -#: app/app_procs.c:726 +#: app/app_procs.c:733 msgid "Really Quit?" msgstr "Vraiment Quitter?" -#: app/app_procs.c:734 app/fileops.c:1576 +#: app/app_procs.c:741 app/fileops.c:1576 msgid "Yes" msgstr "Oui" -#: app/app_procs.c:743 app/fileops.c:1577 +#: app/app_procs.c:750 app/fileops.c:1577 msgid "No" msgstr "Non" -#: app/app_procs.c:751 -msgid "Some files unsaved. Quit the GIMP?" +#: app/app_procs.c:776 +#, fuzzy +msgid "" +"Some files unsaved.\n" +"\n" +"Quit the GIMP?" msgstr "Certains fichiers n'ont pas ИtИ sauvИs. Quitter The GIMP?" #: app/batch.c:65 @@ -148,11 +152,11 @@ msgstr "serveur Perl: erreur d'appel.\n" msgid "perl server: executed successfully.\n" msgstr "serveur Perl: exИcution rИussie.\n" -#: app/bezier_select.c:480 +#: app/bezier_select.c:477 msgid "Bezier path already closed." msgstr "Chemin BИzier dИjЮ fermИ." -#: app/bezier_select.c:501 +#: app/bezier_select.c:498 msgid "Corrupt curve" msgstr "Courbe endommagИe" @@ -284,7 +288,7 @@ msgid "Max depth:" msgstr "Profondeur maximale:" #. threshold scale -#: app/blend.c:461 app/bucket_fill.c:138 app/iscissors.c:356 +#: app/blend.c:461 app/bucket_fill.c:136 app/iscissors.c:356 msgid "Threshold:" msgstr "Seuil:" @@ -296,105 +300,105 @@ msgstr "M msgid "Blend: 0, 0" msgstr "MИlange: 0, 0" -#: app/blend.c:586 +#: app/blend.c:587 msgid "Blend operation failed." msgstr "иchec de l'opИration de mИlange." -#: app/blend.c:592 +#: app/blend.c:593 msgid "Blending..." msgstr "MИlange en cours..." -#: app/blend.c:642 app/blend.c:652 +#: app/blend.c:643 app/blend.c:653 msgid "Blend: " msgstr "MИlange: " -#: app/blend.c:1303 +#: app/blend.c:1307 #, c-format msgid "gradient_render_pixel(): unknown gradient type %d" msgstr "gradient_render_pixel(): %d est un type de gradient inconnu" -#: app/blend.c:1438 +#: app/blend.c:1445 #, c-format msgid "gradient_fill_region(): unknown blend mode %d" msgstr "gradient_fill_region(): %d est un type de mИlange inconnu" -#: app/blend.c:1479 +#: app/blend.c:1486 #, c-format msgid "gradient_fill_region(): unknown gradient type %d" msgstr "gradient_fill_region(): %d est un type de gradient inconnu" -#: app/blend.c:1501 +#: app/blend.c:1508 #, c-format msgid "gradient_fill_region(): unknown repeat mode %d" msgstr "gradient_fill_region(): %d est un mode de rИpИtition inconnu" -#: app/brightness_contrast.c:176 +#: app/brightness_contrast.c:136 msgid "Brightness-Contrast Options" msgstr "Options LuminositИ-Contraste" -#: app/brightness_contrast.c:222 +#: app/brightness_contrast.c:172 msgid "Brightness-Contrast does not operate on indexed drawables." msgstr "LuminositИ-Contraste ne peux opИrer sur des images indexИes." #. Action area -#: app/brightness_contrast.c:264 app/channel_ops.c:104 +#: app/brightness_contrast.c:214 app/channel_ops.c:104 #: app/channels_dialog.c:1864 app/channels_dialog.c:2049 -#: app/color_balance.c:309 app/color_notebook.c:44 app/color_notebook.c:187 +#: app/color_balance.c:273 app/color_notebook.c:49 app/color_notebook.c:192 #: app/color_select.c:155 app/color_select.c:210 app/convert.c:295 -#: app/curves.c:526 app/file_new_dialog.c:292 app/file_new_dialog.c:482 -#: app/hue_saturation.c:411 app/interface.c:873 app/interface.c:1259 -#: app/layers_dialog.c:2900 app/layers_dialog.c:3118 app/layers_dialog.c:3261 -#: app/layers_dialog.c:3737 app/levels.c:385 app/module_db.c:263 -#: app/posterize.c:247 app/preferences_dialog.c:1469 app/resize.c:114 -#: app/threshold.c:325 +#: app/curves.c:517 app/file_new_dialog.c:292 app/file_new_dialog.c:482 +#: app/hue_saturation.c:361 app/interface.c:1009 app/interface.c:1395 +#: app/layers_dialog.c:2901 app/layers_dialog.c:3119 app/layers_dialog.c:3262 +#: app/layers_dialog.c:3738 app/levels.c:335 app/module_db.c:263 +#: app/posterize.c:199 app/preferences_dialog.c:1469 app/resize.c:114 +#: app/threshold.c:278 msgid "OK" msgstr "OK" -#: app/brightness_contrast.c:265 app/channel_ops.c:113 +#: app/brightness_contrast.c:215 app/channel_ops.c:113 #: app/channels_dialog.c:1865 app/channels_dialog.c:2050 -#: app/color_balance.c:310 app/color_notebook.c:45 app/color_notebook.c:188 +#: app/color_balance.c:274 app/color_notebook.c:50 app/color_notebook.c:193 #: app/color_select.c:156 app/color_select.c:211 app/convert.c:296 -#: app/curves.c:527 app/file_new_dialog.c:294 app/file_new_dialog.c:484 -#: app/gdisplay_ops.c:349 app/gimpprogress.c:135 app/global_edit.c:593 +#: app/curves.c:518 app/file_new_dialog.c:294 app/file_new_dialog.c:484 +#: app/gdisplay_ops.c:349 app/gimpprogress.c:135 app/global_edit.c:705 #: app/gradient.c:1486 app/gradient.c:4566 app/gradient.c:4921 -#: app/hue_saturation.c:412 app/interface.c:784 app/interface.c:874 -#: app/layers_dialog.c:2901 app/layers_dialog.c:3119 app/layers_dialog.c:3262 -#: app/layers_dialog.c:3409 app/layers_dialog.c:3738 app/levels.c:386 -#: app/posterize.c:248 app/preferences_dialog.c:1473 app/resize.c:115 -#: app/threshold.c:326 +#: app/hue_saturation.c:362 app/interface.c:913 app/interface.c:1010 +#: app/layers_dialog.c:2902 app/layers_dialog.c:3120 app/layers_dialog.c:3263 +#: app/layers_dialog.c:3410 app/layers_dialog.c:3739 app/levels.c:336 +#: app/posterize.c:200 app/preferences_dialog.c:1473 app/resize.c:115 +#: app/threshold.c:279 msgid "Cancel" msgstr "Annuler" -#: app/brightness_contrast.c:276 app/tools.c:484 +#: app/brightness_contrast.c:226 app/tools.c:517 msgid "Brightness-Contrast" msgstr "LuminositИ-Contraste" #. Create the brightness scale widget -#: app/brightness_contrast.c:292 +#: app/brightness_contrast.c:242 msgid "Brightness" msgstr "LuminositИ" #. Create the contrast scale widget -#: app/brightness_contrast.c:325 +#: app/brightness_contrast.c:275 msgid "Contrast" msgstr "Contraste" #. The preview toggle -#: app/brightness_contrast.c:363 app/color_balance.c:489 app/curves.c:660 -#: app/fileops.c:395 app/hue_saturation.c:622 app/levels.c:581 -#: app/palette.c:2849 app/posterize.c:294 app/threshold.c:401 +#: app/brightness_contrast.c:313 app/color_balance.c:438 app/curves.c:651 +#: app/fileops.c:395 app/hue_saturation.c:572 app/levels.c:531 +#: app/palette.c:2849 app/posterize.c:246 app/threshold.c:354 msgid "Preview" msgstr "PrИvisualisation" #. The close push button -#: app/brush_edit.c:38 app/brush_select.c:133 app/by_color_select.c:680 -#: app/color_notebook.c:182 app/color_picker.c:209 app/color_select.c:205 -#: app/colormap_dialog.i.c:94 app/colormap_dialog.i.c:103 app/crop.c:1016 -#: app/devices.c:124 app/docindexif.c:95 app/errorconsole.c:230 +#: app/brush_edit.c:38 app/brush_select.c:135 app/by_color_select.c:664 +#: app/color_notebook.c:187 app/color_picker.c:209 app/color_select.c:205 +#: app/colormap_dialog.i.c:94 app/colormap_dialog.i.c:103 app/crop.c:1027 +#: app/devices.c:124 app/docindexif.c:100 app/errorconsole.c:230 #: app/gdisplay_ops.c:348 app/gradient.c:646 app/gradient_select.c:76 -#: app/histogram_tool.c:312 app/info_window.c:121 app/lc_dialog.c:201 +#: app/histogram_tool.c:262 app/info_window.c:121 app/lc_dialog.c:196 #: app/palette.c:2235 app/palette_select.c:59 app/pattern_select.c:90 -#: app/tips_dialog.c:150 app/tools.c:681 libgimp/gimpfileselection.c:356 +#: app/tips_dialog.c:146 app/tools.c:874 libgimp/gimpfileselection.c:356 #: libgimp/gimpunitmenu.c:518 msgid "Close" msgstr "Fermer" @@ -404,7 +408,7 @@ msgid "Brush Editor" msgstr "иditeur de brosse" #. brush radius scale -#: app/brush_edit.c:240 app/color_picker.c:164 app/tool_options.c:290 +#: app/brush_edit.c:240 app/color_picker.c:164 app/tool_options.c:284 msgid "Radius:" msgstr "Rayon:" @@ -423,116 +427,116 @@ msgstr "Rapport hauteur/largeur:" msgid "Angle:" msgstr "Angle:" -#: app/brush_select.c:132 app/module_db.c:307 app/palette.c:2243 +#: app/brush_select.c:134 app/module_db.c:307 app/palette.c:2243 #: app/pattern_select.c:89 msgid "Refresh" msgstr "RafraНchir" -#: app/brush_select.c:153 +#: app/brush_select.c:155 msgid "Brush Selection" msgstr "SИlection de la brosse" -#: app/brush_select.c:241 app/pattern_select.c:147 +#: app/brush_select.c:244 app/pattern_select.c:147 msgid "Active" msgstr "Active" #. Create the opacity scale widget -#: app/brush_select.c:271 app/layers_dialog.c:334 app/tool_options.c:596 +#: app/brush_select.c:274 app/layers_dialog.c:334 app/tool_options.c:593 msgid "Opacity:" msgstr "OpacitИ:" #. Create the paint mode option menu -#: app/brush_select.c:289 app/layers_dialog.c:307 app/tool_options.c:625 +#: app/brush_select.c:292 app/layers_dialog.c:307 app/tool_options.c:623 msgid "Mode:" msgstr "Mode:" -#: app/brush_select.c:312 +#: app/brush_select.c:315 msgid "Edit Brush" msgstr "иdition de Brosse" -#: app/brush_select.c:318 +#: app/brush_select.c:321 msgid "New Brush" msgstr "Nouvelle brosse" -#: app/brush_select.c:340 +#: app/brush_select.c:343 msgid "Spacing:" msgstr "Espacement:" -#: app/brush_select.c:531 +#: app/brush_select.c:536 msgid "failed to run brush callback function" msgstr "Иchec de l'appel de la fonction de rappel de brosse" -#: app/brush_select.c:1187 +#: app/brush_select.c:1192 msgid "" "We are all fresh out of brush editors today,\n" "please write your own or try back tomorrow\n" msgstr "иditeur de brosse non disponible.\n" -#: app/bucket_fill.c:115 +#: app/bucket_fill.c:113 msgid "FG Color Fill" msgstr "Remplissage par couleur AV" -#: app/bucket_fill.c:116 +#: app/bucket_fill.c:114 msgid "BG Color Fill" msgstr "Remplissage par couleur AR" -#: app/bucket_fill.c:117 +#: app/bucket_fill.c:115 msgid "Pattern Fill" msgstr "Remplissage par motif" -#: app/bucket_fill.c:158 app/color_picker.c:139 app/tool_options.c:364 +#: app/bucket_fill.c:156 app/color_picker.c:139 app/tool_options.c:358 msgid "Sample Merged" msgstr "иchantillons mИlangИs" #. fill type -#: app/bucket_fill.c:166 app/file_new_dialog.c:842 +#: app/bucket_fill.c:164 app/file_new_dialog.c:842 msgid "Fill Type" msgstr "Type de Remplissage" -#: app/bucket_fill.c:243 +#: app/bucket_fill.c:242 msgid "Bucket Fill operation failed." msgstr "L'opИration de remplissage a ИchouИ" -#: app/bucket_fill.c:361 +#: app/bucket_fill.c:344 msgid "No available patterns for this operation." msgstr "Aucun motif disponible pour cette opИration." -#: app/by_color_select.c:558 app/paint_funcs.c:100 +#: app/by_color_select.c:542 app/paint_funcs.c:100 msgid "Replace" msgstr "Remplacer" -#: app/by_color_select.c:559 app/colormap_dialog.i.c:99 +#: app/by_color_select.c:543 app/colormap_dialog.i.c:99 msgid "Add" msgstr "Ajouter" -#: app/by_color_select.c:560 app/layers_dialog.c:215 app/tool_options.c:793 +#: app/by_color_select.c:544 app/layers_dialog.c:215 app/tool_options.c:784 msgid "Subtract" msgstr "Soustraction" -#: app/by_color_select.c:561 +#: app/by_color_select.c:545 msgid "Intersect" msgstr "Intersection" -#: app/by_color_select.c:580 +#: app/by_color_select.c:564 msgid "By Color Selection" msgstr "SИlection par Couleur" -#: app/by_color_select.c:623 +#: app/by_color_select.c:607 msgid "Inactive" msgstr "Inactif" #. Create the selection mode radio box -#: app/by_color_select.c:630 +#: app/by_color_select.c:614 msgid "Selection Mode" msgstr "Mode de sИlection" -#: app/by_color_select.c:654 +#: app/by_color_select.c:638 msgid "Fuzziness Threshold" msgstr "Seuil de Flou" #. The reset push button -#: app/by_color_select.c:670 app/curves.c:525 app/file_new_dialog.c:483 -#: app/tools.c:680 app/transform_core.c:116 +#: app/by_color_select.c:654 app/curves.c:516 app/file_new_dialog.c:483 +#: app/tools.c:873 app/transform_core.c:116 msgid "Reset" msgstr "R.Ю.Z." @@ -541,13 +545,13 @@ msgid "copy" msgstr "copier" #. formulate the new layer_mask name -#: app/channel.c:199 app/gradient.c:1359 app/layer.c:324 app/layer.c:1485 +#: app/channel.c:199 app/gradient.c:1359 app/layer.c:324 app/layer.c:1486 #, c-format msgid "%s copy" msgstr "Copie de %s" #. Create the new channel -#: app/channel.c:503 +#: app/channel.c:521 msgid "Selection Mask" msgstr "Masque de sИlection" @@ -574,11 +578,11 @@ msgid "Fill Options" msgstr "Options du remplissage" #: app/channel_ops.c:164 app/file_new_dialog.c:135 app/file_new_dialog.c:497 -#: app/layers_dialog.c:2892 +#: app/layers_dialog.c:2893 msgid "Background" msgstr "Fond" -#: app/channel_ops.c:175 app/file_new_dialog.c:499 app/layers_dialog.c:2894 +#: app/channel_ops.c:175 app/file_new_dialog.c:499 app/layers_dialog.c:2895 msgid "Transparent" msgstr "Transparent" @@ -615,39 +619,39 @@ msgstr "" msgid "Delete Channel" msgstr "Effacer Canal" -#: app/channels_dialog.c:537 app/menus.c:271 +#: app/channels_dialog.c:537 app/menus.c:273 msgid "/New Channel" msgstr "/Nouveau Canal" -#: app/channels_dialog.c:540 app/menus.c:272 +#: app/channels_dialog.c:540 app/menus.c:274 msgid "/Raise Channel" msgstr "/Remonter Canal" -#: app/channels_dialog.c:544 app/menus.c:273 +#: app/channels_dialog.c:544 app/menus.c:275 msgid "/Lower Channel" msgstr "/Descendre Canal" -#: app/channels_dialog.c:548 app/menus.c:274 +#: app/channels_dialog.c:548 app/menus.c:276 msgid "/Duplicate Channel" msgstr "/Dupliquer Canal" -#: app/channels_dialog.c:552 app/menus.c:276 +#: app/channels_dialog.c:552 app/menus.c:278 msgid "/Channel to Selection" msgstr "/Canal vers SИlection" -#: app/channels_dialog.c:555 app/menus.c:281 +#: app/channels_dialog.c:555 app/menus.c:283 msgid "/Delete Channel" msgstr "/Effacer Canal" -#: app/channels_dialog.c:559 app/menus.c:277 +#: app/channels_dialog.c:559 app/menus.c:279 msgid "/Add to Selection" msgstr "/Ajouter Ю la SИlection" -#: app/channels_dialog.c:560 app/menus.c:278 +#: app/channels_dialog.c:560 app/menus.c:280 msgid "/Subtract From Selection" msgstr "/Soustraire de la SИlection" -#: app/channels_dialog.c:561 app/menus.c:279 +#: app/channels_dialog.c:561 app/menus.c:281 msgid "/Intersect With Selection" msgstr "/Intersection avec la SИlection" @@ -656,18 +660,18 @@ msgstr "/Intersection avec la S msgid "error in %s at %d: this shouldn't happen." msgstr "erreur dans %s Ю %d: cela ne devrait jamais arriver." -#: app/channels_dialog.c:1137 app/color_balance.c:421 app/curves.c:413 -#: app/histogram_tool.c:329 app/levels.c:281 +#: app/channels_dialog.c:1137 app/color_balance.c:370 app/curves.c:405 +#: app/histogram_tool.c:279 app/levels.c:231 msgid "Red" msgstr "Rouge" -#: app/channels_dialog.c:1141 app/color_balance.c:448 app/curves.c:414 -#: app/histogram_tool.c:330 app/levels.c:282 +#: app/channels_dialog.c:1141 app/color_balance.c:397 app/curves.c:406 +#: app/histogram_tool.c:280 app/levels.c:232 msgid "Green" msgstr "Vert" -#: app/channels_dialog.c:1145 app/color_balance.c:475 app/curves.c:415 -#: app/histogram_tool.c:331 app/levels.c:283 +#: app/channels_dialog.c:1145 app/color_balance.c:424 app/curves.c:407 +#: app/histogram_tool.c:281 app/levels.c:233 msgid "Blue" msgstr "Bleu" @@ -739,59 +743,59 @@ msgstr "Alignement" msgid "No patterns available for this operation." msgstr "Pas de motif disponible pour cette opИration." -#: app/color_balance.c:230 +#: app/color_balance.c:184 msgid "Color Balance Options" msgstr "Options de la Balance des Couleurs" -#: app/color_balance.c:277 +#: app/color_balance.c:222 msgid "Color balance operates only on RGB color drawables." msgstr "La balance des couleurs fonctionne seulement sur les images RVB" -#: app/color_balance.c:331 +#: app/color_balance.c:279 msgid "Shadows" msgstr "Ombres" -#: app/color_balance.c:332 +#: app/color_balance.c:280 msgid "Midtones" msgstr "Demi-Teintes" -#: app/color_balance.c:333 +#: app/color_balance.c:281 msgid "Highlights" msgstr "Tons vifs" -#: app/color_balance.c:350 app/tools.c:469 +#: app/color_balance.c:299 app/tools.c:502 msgid "Color Balance" msgstr "Balance de couleurs" -#: app/color_balance.c:365 +#: app/color_balance.c:314 msgid "Color Levels: " msgstr "Niveaux de Couleurs: " #. Create the cyan-red scale widget -#: app/color_balance.c:404 +#: app/color_balance.c:353 msgid "Cyan" msgstr "Cyan" #. Create the magenta-green scale widget -#: app/color_balance.c:431 +#: app/color_balance.c:380 msgid "Magenta" msgstr "Magenta" #. Create the yellow-blue scale widget -#: app/color_balance.c:458 +#: app/color_balance.c:407 msgid "Yellow" msgstr "Jaune" #. The preserve luminosity toggle -#: app/color_balance.c:498 +#: app/color_balance.c:447 msgid "Preserve Luminosity" msgstr "PrИserver la luminositИ" -#: app/color_notebook.c:112 app/color_select.c:187 +#: app/color_notebook.c:117 app/color_select.c:187 msgid "Color Selection" msgstr "SИlection de couleur" -#: app/color_notebook.c:183 app/color_select.c:206 +#: app/color_notebook.c:188 app/color_select.c:206 msgid "Revert to Old Color" msgstr "Revenir Ю l'ancienne couleur" @@ -803,7 +807,7 @@ msgstr "Options de la Pipette msgid "Sample Average" msgstr "иchantillons mИlangИs" -#: app/color_picker.c:225 app/tools.c:303 +#: app/color_picker.c:225 app/tools.c:306 msgid "Color Picker" msgstr "Pipette Ю Couleurs" @@ -836,7 +840,7 @@ msgstr "Index:" msgid "Hex Triplet" msgstr "Triplet HИxa" -#: app/color_picker.c:249 app/histogram_tool.c:321 +#: app/color_picker.c:249 app/histogram_tool.c:271 msgid "Intensity:" msgstr "IntensitИ:" @@ -857,7 +861,7 @@ msgid "Indexed Color Palette" msgstr "Palette des couleurs indexИes" #. The GIMP image option menu -#: app/colormap_dialog.i.c:136 app/lc_dialog.c:136 +#: app/colormap_dialog.i.c:136 app/lc_dialog.c:131 msgid "Image:" msgstr "Image:" @@ -865,49 +869,49 @@ msgstr "Image:" msgid "Operations" msgstr "OpИrations" -#: app/colormap_dialog.i.c:833 app/lc_dialog.c:627 +#: app/colormap_dialog.i.c:833 app/lc_dialog.c:614 msgid "none" msgstr "aucun" -#: app/commands.c:332 +#: app/commands.c:342 msgid "Border Selection" msgstr "SИlection du bord" -#: app/commands.c:333 +#: app/commands.c:343 msgid "Border selection by:" msgstr "иpaisseur du bord Ю sИlectionner :" -#: app/commands.c:350 +#: app/commands.c:360 msgid "Feather Selection" msgstr "Adoucir" -#: app/commands.c:351 +#: app/commands.c:361 msgid "Feather selection by:" msgstr "Largeur de la zone adoucie :" -#: app/commands.c:368 +#: app/commands.c:378 msgid "Grow Selection" msgstr "Agrandir" -#: app/commands.c:369 +#: app/commands.c:379 msgid "Grow selection by:" msgstr "Agrandir la sИlection de :" -#: app/commands.c:386 +#: app/commands.c:396 msgid "Shrink Selection" msgstr "Rapetisser" -#: app/commands.c:387 +#: app/commands.c:397 msgid "Shrink selection by:" msgstr "Rapetisser la sИlection de :" -#: app/commands.c:1151 +#: app/commands.c:1179 msgid "Resize Error: Both width and height must be greater than zero." msgstr "" "Erreur de redimensionnement: Les hauteurs et largeurs doivent Йtre " "supИrieures Ю zИro." -#: app/commands.c:1200 +#: app/commands.c:1228 msgid "Scale Error: Both width and height must be greater than zero." msgstr "" "Erreur de redimensionnement: Les hauteurs et largeurs doivent Йtre " @@ -965,111 +969,111 @@ msgstr "Faire ressortir les formes" msgid "Convolve Type" msgstr "Type de convolution" -#: app/crop.c:169 app/crop.c:1014 +#: app/crop.c:170 app/crop.c:1025 msgid "Crop" msgstr "Rogner" -#: app/crop.c:169 app/crop.c:1015 +#: app/crop.c:170 app/crop.c:1026 msgid "Resize" msgstr "Redimensionner" -#: app/crop.c:175 +#: app/crop.c:176 msgid "Crop & Resize Options" msgstr "Options de Rognage et de Redimensionnement" -#: app/crop.c:186 +#: app/crop.c:187 msgid "Current layer only" msgstr "Calque courant seulement" #. enlarge toggle -#: app/crop.c:197 +#: app/crop.c:198 msgid "Allow Enlarging" msgstr "Permettre d'Иlargir" #. tool toggle -#: app/crop.c:208 app/flip_tool.c:85 +#: app/crop.c:209 app/flip_tool.c:85 msgid "Tool Toggle" msgstr "Fonctionnement de l'outil" -#: app/crop.c:500 app/crop.c:508 +#: app/crop.c:501 app/crop.c:509 msgid "Crop: " msgstr "Rogner: " -#: app/crop.c:1002 +#: app/crop.c:1005 msgid "Crop: 0 x 0" msgstr "Rogner: 0 x 0" #. create the info dialog -#: app/crop.c:1030 +#: app/crop.c:1033 msgid "Crop & Resize Information" msgstr "Rognage & Redimensionnement, information" #. add the information fields -#: app/crop.c:1033 +#: app/crop.c:1036 msgid "Origin X:" msgstr "Origine X:" -#: app/crop.c:1036 app/file_new_dialog.c:753 app/resize.c:334 app/resize.c:419 -#: app/resize.c:577 app/rotate_tool.c:108 app/scale_tool.c:99 +#: app/crop.c:1039 app/file_new_dialog.c:753 app/resize.c:334 app/resize.c:419 +#: app/resize.c:577 app/rotate_tool.c:109 app/scale_tool.c:99 #: app/shear_tool.c:83 msgid "Y:" msgstr "Y:" #. the pixel size labels -#: app/crop.c:1064 app/file_new_dialog.c:614 app/file_new_dialog.c:632 -#: app/tool_options.c:411 +#: app/crop.c:1052 app/file_new_dialog.c:614 app/file_new_dialog.c:632 +#: app/tool_options.c:405 msgid "Width:" msgstr "Largeur:" -#: app/crop.c:1067 app/file_new_dialog.c:620 app/file_new_dialog.c:638 -#: app/layers_dialog.c:2953 app/resize.c:245 app/resize.c:270 app/resize.c:514 -#: app/scale_tool.c:78 app/scale_tool.c:85 app/tool_options.c:433 +#: app/crop.c:1055 app/file_new_dialog.c:620 app/file_new_dialog.c:638 +#: app/layers_dialog.c:2954 app/resize.c:245 app/resize.c:270 app/resize.c:514 +#: app/scale_tool.c:78 app/scale_tool.c:85 app/tool_options.c:427 msgid "Height:" msgstr "Hauteur:" -#: app/crop.c:1102 +#: app/crop.c:1077 msgid "From Selection" msgstr "D'aprХs la sИlection" -#: app/crop.c:1108 -msgid "Automatic" -msgstr "Automatique" +#: app/crop.c:1083 +msgid "Auto Shrink" +msgstr "" -#: app/curves.c:370 +#: app/curves.c:368 msgid "Curves Options" msgstr "Options de courbure" -#: app/curves.c:412 app/histogram_tool.c:328 app/layers_dialog.c:227 -#: app/levels.c:280 app/paint_funcs.c:97 app/tool_options.c:799 +#: app/curves.c:404 app/histogram_tool.c:278 app/layers_dialog.c:227 +#: app/levels.c:230 app/paint_funcs.c:97 app/tool_options.c:790 msgid "Value" msgstr "Valeur" -#: app/curves.c:416 app/levels.c:284 +#: app/curves.c:408 app/levels.c:234 msgid "Alpha" msgstr "Alpha" -#: app/curves.c:427 +#: app/curves.c:419 msgid "Curves for indexed drawables cannot be adjusted." msgstr "Les courbes des images indexИes ne peuvent pas Йtre ajustИes." -#: app/curves.c:532 +#: app/curves.c:523 msgid "Smooth" msgstr "RИgulariser" -#: app/curves.c:533 +#: app/curves.c:524 msgid "Free" msgstr "Libre" -#: app/curves.c:559 app/tools.c:544 +#: app/curves.c:550 app/tools.c:577 msgid "Curves" msgstr "Courbes" -#: app/curves.c:573 +#: app/curves.c:564 msgid "Modify Curves for Channel: " msgstr "Modifier les courbes pour le canal: " #. The option menu for selecting the drawing method -#: app/curves.c:647 +#: app/curves.c:638 msgid "Curve Type: " msgstr "Type de courbe: " @@ -1113,49 +1117,49 @@ msgstr "Il n'y a pas de s msgid "There's no selection to remove." msgstr "Il n'y a pas de sИlection Ю enlever." -#: app/docindexif.c:75 +#: app/docindexif.c:80 msgid "Open" msgstr "Ouvrir" -#: app/docindexif.c:75 +#: app/docindexif.c:80 msgid "Open a file" msgstr "Ouvrir un fichier" -#: app/docindexif.c:80 +#: app/docindexif.c:85 msgid "Up" msgstr "Haut" -#: app/docindexif.c:80 +#: app/docindexif.c:85 msgid "Move the selected entry up in the index" msgstr "DИplacer l'entrИe sИlectionnИe vers le haut de l'index" -#: app/docindexif.c:85 +#: app/docindexif.c:90 msgid "Down" msgstr "Bas" -#: app/docindexif.c:85 +#: app/docindexif.c:90 msgid "Move the selected entry down in the index" msgstr "DИplacer l'entrИe sИlectionnИe vers le bas de l'index" -#: app/docindexif.c:90 +#: app/docindexif.c:95 msgid "Remove" msgstr "Enlever" -#: app/docindexif.c:90 +#: app/docindexif.c:95 msgid "Remove the selected entry from the index" msgstr "Enlever l'entrИe sИlectionnИe de l'index" -#: app/docindexif.c:95 +#: app/docindexif.c:100 msgid "Close the Document Index" msgstr "Fermer l'Index des Documents" #. Set the GOWindow title -#: app/docindexif.c:213 +#: app/docindexif.c:218 msgid "Document Index" msgstr "Index des Documents" #. Set the initial status message -#: app/docindexif.c:219 +#: app/docindexif.c:224 msgid "GTK successfully started" msgstr "rИussite du dИmarrage de GTK" @@ -1181,7 +1185,7 @@ msgid "Hard edge" msgstr "Contour dur" #. the incremental toggle -#: app/eraser.c:108 app/paintbrush.c:259 +#: app/eraser.c:108 app/paintbrush.c:257 msgid "Incremental" msgstr "IncrИmental" @@ -1279,7 +1283,7 @@ msgstr "%.1f Mo" msgid "Image Size: %s" msgstr "Taille d'image : %s" -#: app/file_new_dialog.c:489 app/gdisplay.c:197 app/preferences_dialog.c:1633 +#: app/file_new_dialog.c:489 app/gdisplay.c:202 app/preferences_dialog.c:1633 msgid "RGB" msgstr "RVB" @@ -1288,11 +1292,11 @@ msgstr "RVB" msgid "Grayscale" msgstr "Niveaux de gris" -#: app/file_new_dialog.c:496 app/layers_dialog.c:2891 +#: app/file_new_dialog.c:496 app/layers_dialog.c:2892 msgid "Foreground" msgstr "Avant-Plan" -#: app/file_new_dialog.c:498 app/layers_dialog.c:2893 +#: app/file_new_dialog.c:498 app/layers_dialog.c:2894 msgid "White" msgstr "Blanc" @@ -1385,12 +1389,12 @@ msgid "File Exists!" msgstr "Le fichier existe!" #: app/flip_tool.c:71 app/preferences_dialog.c:1588 -#: app/preferences_dialog.c:2296 +#: app/preferences_dialog.c:2290 msgid "Horizontal" msgstr "Horizontal" #: app/flip_tool.c:71 app/preferences_dialog.c:1590 -#: app/preferences_dialog.c:2298 +#: app/preferences_dialog.c:2292 msgid "Vertical" msgstr "Vertical" @@ -1421,27 +1425,27 @@ msgid "Cannot properly scanline convert polygon!\n" msgstr "" "Je n'arrive pas Ю convertir le polygone en lignes horizontales de trame.\n" -#: app/gdisplay.c:197 +#: app/gdisplay.c:202 msgid "RGB-empty" msgstr "RVB-vide" -#: app/gdisplay.c:200 +#: app/gdisplay.c:205 msgid "grayscale-empty" msgstr "niveau-de-gris-vide" -#: app/gdisplay.c:200 +#: app/gdisplay.c:205 msgid "grayscale" msgstr "niveaux de gris" -#: app/gdisplay.c:203 +#: app/gdisplay.c:208 msgid "indexed-empty" msgstr "indexИ-vide" -#: app/gdisplay.c:203 +#: app/gdisplay.c:208 msgid "indexed" msgstr "indexИ" -#: app/gdisplay.c:2090 +#: app/gdisplay.c:2102 msgid "gdisplays_flush() called recursively." msgstr "gdisplays_flush() appelИ rИcursivement." @@ -1455,22 +1459,22 @@ msgstr "/Fichier/Fermer" msgid "Changes were made to %s. Close anyway?" msgstr "Changements effectuИs sur %s. Fermer quand mЙme?" -#: app/gimage_mask.c:212 +#: app/gimage_mask.c:213 msgid "" "Unable to cut/copy because the selected\n" "region is empty." msgstr "Impossible de copier/coller car la rИgion sИlectionnИe est vide." -#: app/gimage_mask.c:342 +#: app/gimage_mask.c:343 msgid "Float Selection: No selection to float." msgstr "Faire flotter la sИlection: pas de sИlection." #. Create a new layer from the buffer -#: app/gimage_mask.c:353 +#: app/gimage_mask.c:354 msgid "Floated Layer" msgstr "Calque Flottant" -#: app/gimage_mask.c:490 +#: app/gimage_mask.c:491 msgid "" "The active layer has no alpha channel\n" "to convert to a selection." @@ -1478,7 +1482,7 @@ msgstr "" "Le calque actif n'a pas de canal alpha\n" "Ю convertir en sИlection." -#: app/gimage_mask.c:509 +#: app/gimage_mask.c:510 msgid "" "The active layer has no mask\n" "to convert to a selection." @@ -1486,7 +1490,7 @@ msgstr "" "Le calque actif n'a pas de masque\n" "Ю convertir en sИlection." -#: app/gimage_mask.c:556 +#: app/gimage_mask.c:557 msgid "No selection to stroke!" msgstr "Aucune sИlection Ю entourer d'un coup de brosse !" @@ -1524,41 +1528,41 @@ msgstr "sansnom" msgid "Layer type %d not supported." msgstr "Type de calque %d non supportИ." -#: app/gimpimage.c:596 app/gimpimage.c:690 +#: app/gimpimage.c:642 app/gimpimage.c:740 msgid "gimp_image_apply_image sent illegal parameters" msgstr "gimp_image_apply_image a envoyИ des paramХtres illИgaux" -#: app/gimpimage.c:1096 +#: app/gimpimage.c:1172 msgid "Unable to project indexed image." msgstr "Impossible de projeter une image indexИe." -#: app/gimpimage.c:1966 +#: app/gimpimage.c:2109 msgid "Layer cannot be raised any further" msgstr "Impossible de remonter encore ce calque" -#: app/gimpimage.c:2040 +#: app/gimpimage.c:2184 msgid "Layer cannot be lowered any further" msgstr "Impossible de descendre encore ce calque" #. layer_arg is already the top_layer -#: app/gimpimage.c:2069 +#: app/gimpimage.c:2214 msgid "Layer is already on top" msgstr "Calque dИjЮ en haut" -#: app/gimpimage.c:2074 +#: app/gimpimage.c:2219 msgid "Can't raise Layer without alpha" msgstr "Impossible de remonter un Calque sans alpha" #. there is no next layer below layer_arg -#: app/gimpimage.c:2168 +#: app/gimpimage.c:2314 msgid "Layer is already on bottom" msgstr "Calque dИjЮ en bas" -#: app/gimpimage.c:2181 +#: app/gimpimage.c:2327 msgid "BG has no alpha, layer was placed above" msgstr "Fond sans alpha, calque placИ par dessus" -#: app/gimpimage.c:2243 +#: app/gimpimage.c:2390 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." @@ -1566,30 +1570,30 @@ msgstr "" "Il n'y a pas assez de calques visibles pour une\n" "fusion. Il en faut au moins deux." -#: app/gimpimage.c:2321 +#: app/gimpimage.c:2468 msgid "There are not enough visible layers for a merge down." msgstr "Il n'y a pas assez de calques visibles pour une fusion." -#: app/gimpimage.c:2432 app/gimpimage.c:2465 +#: app/gimpimage.c:2581 app/gimpimage.c:2614 msgid "gimp_image_merge_layers: could not allocate merge layer" msgstr "gimp_image_merge_layers: impossible d'allouer le calque pour la fusion" -#: app/gimpimage.c:2504 +#: app/gimpimage.c:2653 msgid "gimp_image_merge_layers attempting to merge incompatible layers\n" msgstr "" "gimp_image_merge_layers a tentИ de fusionner des calques incompatibles\n" -#: app/gimpimage.c:2584 +#: app/gimpimage.c:2735 msgid "gimp_image_add_layer: attempt to add layer to wrong image" msgstr "" "gimp_image_add_layer: tentative d'ajouter un calque Ю la mauvaise image" -#: app/gimpimage.c:2594 +#: app/gimpimage.c:2745 msgid "gimp_image_add_layer: trying to add layer to image twice" msgstr "" "gimp_image_add_layer: tentative d'ajouter un calque deux fois Ю la mЙme image" -#: app/gimpimage.c:2710 +#: app/gimpimage.c:2864 msgid "" "Unable to add a layer mask since\n" "the layer already has one." @@ -1597,7 +1601,7 @@ msgstr "" "Impossible d'ajouter un masque au\n" "calque car il en a dИjЮ un." -#: app/gimpimage.c:2714 +#: app/gimpimage.c:2868 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." @@ -1605,7 +1609,7 @@ msgstr "" "Impossible d'ajouter un masque\n" "au calque dans une image indexИe." -#: app/gimpimage.c:2718 +#: app/gimpimage.c:2872 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." @@ -1613,31 +1617,31 @@ msgstr "" "Impossible d'ajouter un masque\n" "dans un calque sans canal alpha." -#: app/gimpimage.c:2722 +#: app/gimpimage.c:2876 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Impossible d'ajouter un masque de calque de dimensions diffИrente que le " "calque spИcifiИ." -#: app/gimpimage.c:2826 +#: app/gimpimage.c:2983 msgid "Channel cannot be raised any further" msgstr "Le canal ne peux pas Йtre plus remontИ" -#: app/gimpimage.c:2873 +#: app/gimpimage.c:3031 msgid "Channel cannot be lowered any further" msgstr "Le canal ne peux pas Йtre abaissИ plus" -#: app/gimpimage.c:2893 +#: app/gimpimage.c:3053 msgid "gimp_image_add_channel: attempt to add channel to wrong image" msgstr "" "gimp_image_add_channel: tentative d'ajouter un canal Ю la mauvaise image" -#: app/gimpimage.c:2903 +#: app/gimpimage.c:3063 msgid "gimp_image_add_channel: trying to add channel to image twice" msgstr "" "gimp_image_add_channel: tentative d'ajouter un canal Ю l'image deux fois" -#: app/gimpimage.c:3029 app/palette.c:525 app/palette.c:550 app/palette.c:909 +#: app/gimpimage.c:3190 app/palette.c:525 app/palette.c:550 app/palette.c:909 #: app/palette.c:913 app/palette.c:2313 app/palette.c:2995 msgid "Untitled" msgstr "SansTitre" @@ -1674,62 +1678,67 @@ msgstr "erreur d'analyse dans pluginrc" msgid "gimprc token referenced but not defined: %s" msgstr "lexХme de gimprc rИfИrencИ mais non dИfini: %s" -#: app/gimprc.c:2523 +#: app/gimprc.c:2522 #, c-format msgid "Can't open %s; %s" msgstr "Je ne puis ouvrir %s; %s" -#: app/gimprc.c:2542 +#: app/gimprc.c:2541 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "Je ne puis renommer %s en %s.old; %s" -#: app/gimprc.c:2548 +#: app/gimprc.c:2547 #, c-format msgid "Couldn't reopen %s\n" msgstr "Je ne peux rИouvrir %s\n" -#: app/gimprc.c:2560 +#: app/gimprc.c:2559 #, c-format msgid "Can't write to %s; %s" msgstr "Je ne puis Иcrire dans %s; %s" #. Make a new floating layer -#: app/global_edit.c:284 +#: app/global_edit.c:289 app/global_edit.c:344 app/global_edit.c:354 msgid "Pasted Layer" msgstr "Calque CopiИ" -#: app/global_edit.c:591 +#: app/global_edit.c:698 msgid "Paste" msgstr "Coller" +#: app/global_edit.c:699 +#, fuzzy +msgid "Paste Into" +msgstr "/иdition/Coller dans" + +#: app/global_edit.c:700 +msgid "Paste As New" +msgstr "" + #. Buttons -#: app/global_edit.c:592 app/gradient.c:1477 app/palette.c:1429 +#: app/global_edit.c:704 app/gradient.c:1477 app/palette.c:1429 #: app/palette.c:2179 msgid "Delete" msgstr "Effacer" -#: app/global_edit.c:606 +#: app/global_edit.c:720 msgid "Paste Named Buffer" msgstr "Coller un tampon nommИ" -#: app/global_edit.c:618 +#: app/global_edit.c:732 msgid "Select a buffer to paste:" msgstr "SИlectionnez un tampon Ю coller:" -#: app/global_edit.c:637 -msgid "Replace Current Selection" -msgstr "Remplacer la sИlection courante" - -#: app/global_edit.c:699 +#: app/global_edit.c:820 msgid "Cut Named" msgstr "Couper (nommИ)" -#: app/global_edit.c:700 app/global_edit.c:732 +#: app/global_edit.c:821 app/global_edit.c:853 msgid "Enter a name for this buffer" msgstr "Entrez un nom pour ce tampon" -#: app/global_edit.c:731 +#: app/global_edit.c:852 msgid "Copy Named" msgstr "Copier (nommИ)" @@ -1784,7 +1793,7 @@ msgstr "Editeur de D msgid "Gradients: " msgstr "DИgradИ: " -#: app/gradient.c:680 app/gradient_select.c:476 app/paintbrush.c:200 +#: app/gradient.c:680 app/gradient_select.c:476 app/paintbrush.c:204 #: app/palette.c:2833 msgid "Gradient" msgstr "DИgradИ" @@ -2150,104 +2159,104 @@ msgstr "" msgid "Gradient Selection" msgstr "SИlection de DИgradИ" -#: app/histogram_tool.c:214 +#: app/histogram_tool.c:173 msgid "Histogram Options" msgstr "Options d'histogramme" -#: app/histogram_tool.c:260 +#: app/histogram_tool.c:210 msgid "Histogram does not operate on indexed drawables." msgstr "L'histogramme n'opХre pas sur les images indexИes." -#: app/histogram_tool.c:317 +#: app/histogram_tool.c:267 msgid "Mean:" msgstr "Moyenne:" -#: app/histogram_tool.c:318 +#: app/histogram_tool.c:268 msgid "Std Dev:" msgstr "Dev Std:" -#: app/histogram_tool.c:319 +#: app/histogram_tool.c:269 msgid "Median:" msgstr "MИdiane:" -#: app/histogram_tool.c:320 +#: app/histogram_tool.c:270 msgid "Pixels:" msgstr "Pixels:" -#: app/histogram_tool.c:322 +#: app/histogram_tool.c:272 msgid "Count:" msgstr "Compte:" -#: app/histogram_tool.c:323 +#: app/histogram_tool.c:273 msgid "Percentile:" msgstr "%-ile: " -#: app/histogram_tool.c:346 app/tools.c:574 +#: app/histogram_tool.c:296 app/tools.c:607 msgid "Histogram" msgstr "Histogramme" -#: app/histogram_tool.c:365 +#: app/histogram_tool.c:315 msgid "Information on Channel:" msgstr "Informations sur le Canal:" -#: app/hue_saturation.c:300 +#: app/hue_saturation.c:260 msgid "Hue-Saturation Options" msgstr "Options de Teinte-Saturation" -#: app/hue_saturation.c:348 +#: app/hue_saturation.c:298 msgid "Hue-Saturation operates only on RGB color drawables." msgstr "Teinte-Saturation opХre seulement sur des images RVB." -#: app/hue_saturation.c:417 +#: app/hue_saturation.c:367 msgid "Master" msgstr "MaНtre" -#: app/hue_saturation.c:418 +#: app/hue_saturation.c:368 msgid "R" msgstr "R" -#: app/hue_saturation.c:419 +#: app/hue_saturation.c:369 msgid "Y" msgstr "J" -#: app/hue_saturation.c:420 +#: app/hue_saturation.c:370 msgid "G" msgstr "V" -#: app/hue_saturation.c:421 +#: app/hue_saturation.c:371 msgid "C" msgstr "C" -#: app/hue_saturation.c:422 +#: app/hue_saturation.c:372 msgid "B" msgstr "B" -#: app/hue_saturation.c:423 +#: app/hue_saturation.c:373 msgid "M" msgstr "M" -#: app/hue_saturation.c:444 app/tools.c:499 +#: app/hue_saturation.c:394 app/tools.c:532 msgid "Hue-Saturation" msgstr "Teinte-Saturation" -#: app/hue_saturation.c:506 +#: app/hue_saturation.c:456 msgid "Hue / Lightness / Saturation Adjustments" msgstr "Teinte / LuminositИ / Ajustements de la Saturation" #. Create the hue scale widget -#: app/hue_saturation.c:516 app/layers_dialog.c:221 app/paint_funcs.c:94 -#: app/tool_options.c:796 +#: app/hue_saturation.c:466 app/layers_dialog.c:221 app/paint_funcs.c:94 +#: app/tool_options.c:787 msgid "Hue" msgstr "Teinte" #. Create the lightness scale widget -#: app/hue_saturation.c:550 +#: app/hue_saturation.c:500 msgid "Lightness" msgstr "LuminositИ" #. Create the saturation scale widget -#: app/hue_saturation.c:584 app/layers_dialog.c:223 app/paint_funcs.c:95 -#: app/tool_options.c:797 +#: app/hue_saturation.c:534 app/layers_dialog.c:223 app/paint_funcs.c:95 +#: app/tool_options.c:788 msgid "Saturation" msgstr "Saturation" @@ -2292,7 +2301,7 @@ msgstr "Dimensions (l x h):" msgid "Resolution:" msgstr "RИsolution:" -#: app/info_window.c:159 app/tool_options.c:455 +#: app/info_window.c:159 app/tool_options.c:449 msgid "Unit:" msgstr "UnitИ:" @@ -2786,7 +2795,7 @@ msgstr "" "\n" "иchec de l'installation. Contactez votre administrateur systХme.\n" -#: app/interface.c:265 +#: app/interface.c:325 msgid "" "Foreground & background colors. The black and white squares reset colors. " "The arrows swap colors. Double click to select a color from a colorrequester." @@ -2796,11 +2805,11 @@ msgstr "" "intervertissent. Double-cliquez pour sИlectionner une couleur dans un " "dialogue de sИlection de couleurs." -#: app/interface.c:481 +#: app/interface.c:541 msgid "The GIMP" msgstr "The GIMP" -#: app/interface.c:1252 +#: app/interface.c:1388 msgid "GIMP Message" msgstr "Message GIMP" @@ -2821,7 +2830,7 @@ msgid "Channel Ops" msgstr "OpИrations de canaux" #: app/internal_procs.c:79 app/layers_dialog.c:225 app/paint_funcs.c:96 -#: app/tool_options.c:798 +#: app/tool_options.c:789 msgid "Color" msgstr "Couleur" @@ -2890,7 +2899,7 @@ msgstr "Palette" msgid "Parasite procedures" msgstr "ProcИdures sur les parasites" -#: app/internal_procs.c:133 app/lc_dialog.c:185 +#: app/internal_procs.c:133 app/lc_dialog.c:180 msgid "Paths" msgstr "Chemins" @@ -2949,7 +2958,7 @@ msgstr " msgid "Convert to Bezier Curve" msgstr "Convertir en courbe de BИzier" -#: app/iscissors.c:1785 +#: app/iscissors.c:1780 msgid "Boundary contains < 4 points! Cannot bezierify." msgstr "" "Le pourtour contient < 4 points ! Je ne peux le transformer en courbe de " @@ -2976,47 +2985,47 @@ msgstr "masque %s" msgid "Layer Select" msgstr "SИlection de Calque" -#: app/layers_dialog.c:199 app/paint_funcs.c:83 app/tool_options.c:784 +#: app/layers_dialog.c:199 app/paint_funcs.c:83 app/tool_options.c:775 msgid "Normal" msgstr "Normal" -#: app/layers_dialog.c:201 app/paint_funcs.c:84 app/tool_options.c:785 +#: app/layers_dialog.c:201 app/paint_funcs.c:84 app/tool_options.c:776 msgid "Dissolve" msgstr "Dissoudre" -#: app/layers_dialog.c:203 app/paint_funcs.c:86 app/tool_options.c:787 +#: app/layers_dialog.c:203 app/paint_funcs.c:86 app/tool_options.c:778 msgid "Multiply (Burn)" msgstr "Multiplier (BrШler)" -#: app/layers_dialog.c:205 app/paint_funcs.c:98 app/tool_options.c:788 +#: app/layers_dialog.c:205 app/paint_funcs.c:98 app/tool_options.c:779 msgid "Divide (Dodge)" msgstr "Diviser" -#: app/layers_dialog.c:207 app/paint_funcs.c:87 app/tool_options.c:789 +#: app/layers_dialog.c:207 app/paint_funcs.c:87 app/tool_options.c:780 msgid "Screen" msgstr "иcran" -#: app/layers_dialog.c:209 app/paint_funcs.c:88 app/tool_options.c:790 +#: app/layers_dialog.c:209 app/paint_funcs.c:88 app/tool_options.c:781 msgid "Overlay" msgstr "Superposer" -#: app/layers_dialog.c:211 app/paint_funcs.c:89 app/tool_options.c:791 +#: app/layers_dialog.c:211 app/paint_funcs.c:89 app/tool_options.c:782 msgid "Difference" msgstr "DiffИrence" -#: app/layers_dialog.c:213 app/paint_funcs.c:90 app/tool_options.c:792 +#: app/layers_dialog.c:213 app/paint_funcs.c:90 app/tool_options.c:783 msgid "Addition" msgstr "Addition" -#: app/layers_dialog.c:217 app/paint_funcs.c:92 app/tool_options.c:794 +#: app/layers_dialog.c:217 app/paint_funcs.c:92 app/tool_options.c:785 msgid "Darken Only" msgstr "Noircir seulement" -#: app/layers_dialog.c:219 app/paint_funcs.c:93 app/tool_options.c:795 +#: app/layers_dialog.c:219 app/paint_funcs.c:93 app/tool_options.c:786 msgid "Lighten Only" msgstr "иclaircir seulement" -#: app/layers_dialog.c:246 app/layers_dialog.c:2943 +#: app/layers_dialog.c:246 app/layers_dialog.c:2944 msgid "New Layer" msgstr "Nouveau Calque" @@ -3052,83 +3061,83 @@ msgstr "Effacer Calque" msgid "Keep Trans." msgstr "Garder trans." -#: app/layers_dialog.c:947 app/menus.c:243 +#: app/layers_dialog.c:947 app/menus.c:245 msgid "/Stack/Previous Layer" msgstr "/Pile/Calque prИcИdent" -#: app/layers_dialog.c:949 app/menus.c:244 +#: app/layers_dialog.c:949 app/menus.c:246 msgid "/Stack/Next Layer" msgstr "/Pile/Calque suivant" -#: app/layers_dialog.c:952 app/menus.c:245 +#: app/layers_dialog.c:952 app/menus.c:247 msgid "/Stack/Raise Layer" msgstr "/Pile/Remonter calque" -#: app/layers_dialog.c:957 app/menus.c:246 +#: app/layers_dialog.c:957 app/menus.c:248 msgid "/Stack/Lower Layer" msgstr "/Pile/Descendre calque" -#: app/layers_dialog.c:962 app/menus.c:247 +#: app/layers_dialog.c:962 app/menus.c:249 msgid "/Stack/Layer to Top" msgstr "/Pile/Calque vers le sommet" -#: app/layers_dialog.c:964 app/menus.c:248 +#: app/layers_dialog.c:964 app/menus.c:250 msgid "/Stack/Layer to Bottom" msgstr "/Pile/Calque vers le fond" -#: app/layers_dialog.c:967 app/menus.c:242 +#: app/layers_dialog.c:967 app/menus.c:244 msgid "/New Layer" msgstr "/Nouveau Calque" -#: app/layers_dialog.c:970 app/menus.c:249 +#: app/layers_dialog.c:970 app/menus.c:251 msgid "/Duplicate Layer" msgstr "/Dupliquer Calque" -#: app/layers_dialog.c:974 app/menus.c:250 +#: app/layers_dialog.c:974 app/menus.c:252 msgid "/Anchor Layer" msgstr "/Ancrer calque" -#: app/layers_dialog.c:978 app/menus.c:251 +#: app/layers_dialog.c:978 app/menus.c:253 msgid "/Delete Layer" msgstr "/Effacer Calque" -#: app/layers_dialog.c:981 app/menus.c:253 +#: app/layers_dialog.c:981 app/menus.c:255 msgid "/Scale Layer" msgstr "/Mettre calque Ю l'Иchelle" -#: app/layers_dialog.c:982 app/menus.c:254 +#: app/layers_dialog.c:982 app/menus.c:256 msgid "/Resize Layer" msgstr "/Redimensionner calque" -#: app/layers_dialog.c:984 app/menus.c:256 +#: app/layers_dialog.c:984 app/menus.c:258 msgid "/Merge Visible Layers" msgstr "/Fusionner les calques visibles" -#: app/layers_dialog.c:986 app/menus.c:257 +#: app/layers_dialog.c:986 app/menus.c:259 msgid "/Merge Down" msgstr "/Fusionner vers le bas" -#: app/layers_dialog.c:987 app/menus.c:258 +#: app/layers_dialog.c:987 app/menus.c:260 msgid "/Flatten Image" msgstr "/Aplatir l'image" -#: app/layers_dialog.c:989 app/menus.c:260 +#: app/layers_dialog.c:989 app/menus.c:262 msgid "/Add Layer Mask" msgstr "/Ajouter un masque de calque" -#: app/layers_dialog.c:991 app/menus.c:261 +#: app/layers_dialog.c:991 app/menus.c:263 msgid "/Apply Layer Mask" msgstr "/Appliquer le masque de calque" -#: app/layers_dialog.c:993 app/menus.c:262 +#: app/layers_dialog.c:993 app/menus.c:264 msgid "/Alpha to Selection" msgstr "/Alpha vers SИlection" -#: app/layers_dialog.c:995 app/menus.c:263 +#: app/layers_dialog.c:995 app/menus.c:265 msgid "/Mask to Selection" msgstr "/Masque vers SИlection" -#: app/layers_dialog.c:997 app/menus.c:264 +#: app/layers_dialog.c:997 app/menus.c:266 msgid "/Add Alpha Channel" msgstr "/Ajouter Canal Alpha" @@ -3136,149 +3145,149 @@ msgstr "/Ajouter Canal Alpha" msgid "Unknown layer mode" msgstr "Mode de calque inconnu" -#: app/layers_dialog.c:1890 app/layers_dialog.c:2711 app/layers_dialog.c:3156 +#: app/layers_dialog.c:1890 app/layers_dialog.c:2712 app/layers_dialog.c:3157 msgid "Floating Selection" msgstr "SИlection Flottante" -#: app/layers_dialog.c:2831 +#: app/layers_dialog.c:2832 msgid "new_layer_query_ok_callback: could not allocate new layer" msgstr "new_layer_query_ok_callback: je n'ai pu allouer de nouveau calque" -#: app/layers_dialog.c:2913 +#: app/layers_dialog.c:2914 msgid "New Layer Options" msgstr "Options de Nouveau Calque" #. the name label and entry -#: app/layers_dialog.c:2933 +#: app/layers_dialog.c:2934 msgid "Layer Name:" msgstr "Nom du calque: " #. the size labels -#: app/layers_dialog.c:2947 +#: app/layers_dialog.c:2948 msgid "Layer Width:" msgstr "Largeur du Calque: " #. the radio frame and box -#: app/layers_dialog.c:3006 +#: app/layers_dialog.c:3007 msgid "Layer Fill Type" msgstr "Type de Remplissage de Calque" -#: app/layers_dialog.c:3130 +#: app/layers_dialog.c:3131 msgid "Edit Layer Attributes" msgstr "иditer les Attributs du Calque" -#: app/layers_dialog.c:3148 +#: app/layers_dialog.c:3149 msgid "Layer name: " msgstr "Nom du calque: " -#: app/layers_dialog.c:3274 +#: app/layers_dialog.c:3275 msgid "White (Full Opacity)" msgstr "Blanc (OpacitИ ComplХte)" -#: app/layers_dialog.c:3275 +#: app/layers_dialog.c:3276 msgid "Black (Full Transparency)" msgstr "Noir (Transparence Totale)" -#: app/layers_dialog.c:3276 +#: app/layers_dialog.c:3277 msgid "Layer's Alpha Channel" msgstr "Canal Alpha du Calque" -#: app/layers_dialog.c:3293 +#: app/layers_dialog.c:3294 msgid "Add Mask Options" msgstr "Options d'Ajout de masque" #. the name entry hbox, label and entry -#: app/layers_dialog.c:3308 +#: app/layers_dialog.c:3309 msgid "Initialize Layer Mask To:" msgstr "Initialiser le masque de calque Ю:" -#: app/layers_dialog.c:3407 +#: app/layers_dialog.c:3408 msgid "Apply" msgstr "Appliquer" -#: app/layers_dialog.c:3408 +#: app/layers_dialog.c:3409 msgid "Discard" msgstr "Jeter" -#: app/layers_dialog.c:3422 +#: app/layers_dialog.c:3423 msgid "Layer Mask Options" msgstr "Options de Masque de Calque" #. the name entry hbox, label and entry -#: app/layers_dialog.c:3438 +#: app/layers_dialog.c:3439 msgid "Apply layer mask?" msgstr "Appliquer le masque de calque ?" -#: app/layers_dialog.c:3498 app/layers_dialog.c:3596 +#: app/layers_dialog.c:3499 app/layers_dialog.c:3597 msgid "Invalid width or height. Both must be positive." msgstr "Hauteur ou largeur non Valide. Les deux doivent Йtre positives." -#: app/layers_dialog.c:3750 +#: app/layers_dialog.c:3751 msgid "Expanded as necessary" msgstr "иtendu autant que nИcessaire" -#: app/layers_dialog.c:3751 +#: app/layers_dialog.c:3752 msgid "Clipped to image" msgstr "RognИ Ю la taille de l'image" -#: app/layers_dialog.c:3752 +#: app/layers_dialog.c:3753 msgid "Clipped to bottom layer" msgstr "RognИ Ю la taille du calque le plus bas" -#: app/layers_dialog.c:3770 +#: app/layers_dialog.c:3771 msgid "Layer Merge Options" msgstr "Options de Fusion de Calques" -#: app/layers_dialog.c:3786 +#: app/layers_dialog.c:3787 msgid "Final, merged layer should be:" msgstr "Le calque final, fusionnИ, devra Йtre:" -#: app/layers_dialog.c:3788 +#: app/layers_dialog.c:3789 msgid "Final, anchored layer should be:" msgstr "Le calque final, ancrИ, devra Йtre:" -#: app/lc_dialog.c:116 +#: app/lc_dialog.c:111 msgid "Layers & Channels" msgstr "Calques & Canaux" #. The Auto-button -#: app/lc_dialog.c:155 +#: app/lc_dialog.c:150 msgid "Auto" msgstr "Auto" -#: app/lc_dialog.c:175 +#: app/lc_dialog.c:170 msgid "Layers" msgstr "Calques" -#: app/lc_dialog.c:180 +#: app/lc_dialog.c:175 msgid "Channels" msgstr "Canaux" -#: app/levels.c:237 +#: app/levels.c:197 msgid "Levels Options" msgstr "Options de niveau" -#: app/levels.c:295 +#: app/levels.c:245 msgid "Levels for indexed drawables cannot be adjusted." msgstr "les niveaux d'un dessin indexИ ne peuvent Йtre ajustИs." -#: app/levels.c:384 +#: app/levels.c:334 msgid "Auto Levels" msgstr "Niveaux Auto" -#: app/levels.c:401 app/tools.c:559 +#: app/levels.c:351 app/tools.c:592 msgid "Levels" msgstr "Niveaux" -#: app/levels.c:416 +#: app/levels.c:366 msgid "Modify Levels for Channel: " msgstr "Modifier les niveaux pour le canal: " -#: app/levels.c:432 +#: app/levels.c:382 msgid "Input Levels: " msgstr "Niveaux d'EntrИe: " -#: app/levels.c:520 +#: app/levels.c:470 msgid "Output Levels: " msgstr "Niveaux de Sortie: " @@ -3536,440 +3545,445 @@ msgid "/Edit/Paste Into" msgstr "/иdition/Coller dans" #: app/menus.c:106 -msgid "/Edit/Clear" -msgstr "/иdition/Effacer" +#, fuzzy +msgid "/Edit/Paste As New" +msgstr "/иdition/Coller NommИ" -#: app/menus.c:107 -msgid "/Edit/Fill" -msgstr "/иdition/Remplir" - -#: app/menus.c:108 -msgid "/Edit/Stroke" -msgstr "/иdition/Coup de Pinceau" - -#: app/menus.c:109 -msgid "/Edit/Undo" -msgstr "/иdition/DИfaire" - -#: app/menus.c:110 -msgid "/Edit/Redo" -msgstr "/иdition/Refaire" - -#: app/menus.c:111 app/menus.c:115 +#: app/menus.c:107 app/menus.c:113 app/menus.c:117 msgid "/Edit/---" msgstr "/иdition/---" +#: app/menus.c:108 +msgid "/Edit/Clear" +msgstr "/иdition/Effacer" + +#: app/menus.c:109 +msgid "/Edit/Fill" +msgstr "/иdition/Remplir" + +#: app/menus.c:110 +msgid "/Edit/Stroke" +msgstr "/иdition/Coup de Pinceau" + +#: app/menus.c:111 +msgid "/Edit/Undo" +msgstr "/иdition/DИfaire" + #: app/menus.c:112 +msgid "/Edit/Redo" +msgstr "/иdition/Refaire" + +#: app/menus.c:114 msgid "/Edit/Cut Named" msgstr "/иdition/Couper NommИ" -#: app/menus.c:113 +#: app/menus.c:115 msgid "/Edit/Copy Named" msgstr "/иdition/Copier NommИ" -#: app/menus.c:114 +#: app/menus.c:116 msgid "/Edit/Paste Named" msgstr "/иdition/Coller NommИ" -#: app/menus.c:117 +#: app/menus.c:119 msgid "/Select/tearoff1" msgstr "/SИlection/tearoff1" -#: app/menus.c:118 +#: app/menus.c:120 msgid "/Select/Invert" msgstr "/SИlection/Inverser" -#: app/menus.c:119 +#: app/menus.c:121 msgid "/Select/All" msgstr "/SИlection/Tout sИlectionner" -#: app/menus.c:120 +#: app/menus.c:122 msgid "/Select/None" msgstr "/SИlection/Aucune" -#: app/menus.c:121 +#: app/menus.c:123 msgid "/Select/Float" msgstr "/SИlection/Flottante" -#: app/menus.c:122 +#: app/menus.c:124 msgid "/Select/Sharpen" msgstr "/SИlection/Affiner" -#: app/menus.c:123 +#: app/menus.c:125 msgid "/Select/Border" msgstr "/SИlection/Bordure" -#: app/menus.c:124 +#: app/menus.c:126 msgid "/Select/Feather" msgstr "/SИlection/Plume" -#: app/menus.c:125 +#: app/menus.c:127 msgid "/Select/Grow" msgstr "/SИlection/Agrandir" -#: app/menus.c:126 +#: app/menus.c:128 msgid "/Select/Shrink" msgstr "/SИlection/Rapetisser" -#: app/menus.c:127 +#: app/menus.c:129 msgid "/Select/Save To Channel" msgstr "/SИlection/Enregistrer dans Canal" -#: app/menus.c:129 +#: app/menus.c:131 msgid "/View/tearoff1" msgstr "/Vue/tearoff1" -#: app/menus.c:130 +#: app/menus.c:132 msgid "/View/Zoom In" msgstr "/Vue/Zoom Avant" -#: app/menus.c:131 +#: app/menus.c:133 msgid "/View/Zoom Out" msgstr "/Vue/Zoom ArriХre" -#: app/menus.c:132 +#: app/menus.c:134 msgid "/View/Zoom/16:1" msgstr "/Vue/Zoom/16:1" -#: app/menus.c:133 +#: app/menus.c:135 msgid "/View/Zoom/8:1" msgstr "/Vue/Zoom/8:1" -#: app/menus.c:134 +#: app/menus.c:136 msgid "/View/Zoom/4:1" msgstr "/Vue/Zoom/4:1" -#: app/menus.c:135 +#: app/menus.c:137 msgid "/View/Zoom/2:1" msgstr "/Vue/Zoom/2:1" -#: app/menus.c:136 +#: app/menus.c:138 msgid "/View/Zoom/1:1" msgstr "/Vue/Zoom/1:1" -#: app/menus.c:137 +#: app/menus.c:139 msgid "/View/Zoom/1:2" msgstr "/Vue/Zoom/1:2" -#: app/menus.c:138 +#: app/menus.c:140 msgid "/View/Zoom/1:4" msgstr "/Vue/Zoom/1:4" -#: app/menus.c:139 +#: app/menus.c:141 msgid "/View/Zoom/1:8" msgstr "/Vue/Zoom/1:8" -#: app/menus.c:140 +#: app/menus.c:142 msgid "/View/Zoom/1:16" msgstr "/Vue/Zoom/1:16" -#: app/menus.c:141 +#: app/menus.c:143 msgid "/View/Dot for dot" msgstr "/Vue/Point pour point" -#: app/menus.c:142 +#: app/menus.c:144 msgid "/View/Window Info..." msgstr "/Vue/Information sur la FenЙtre..." -#: app/menus.c:144 app/menus.c:150 +#: app/menus.c:146 app/menus.c:152 msgid "/View/---" msgstr "/Vue/---" -#: app/menus.c:145 +#: app/menus.c:147 msgid "/View/Toggle Selection" msgstr "/Vue/(DИs)activer SИlection" -#: app/menus.c:146 +#: app/menus.c:148 msgid "/View/Toggle Rulers" msgstr "/Vue/(DИs)activer les RХgles" -#: app/menus.c:147 +#: app/menus.c:149 msgid "/View/Toggle Statusbar" msgstr "/Vue/(DИs)activer la Barre d'иtat" -#: app/menus.c:148 +#: app/menus.c:150 msgid "/View/Toggle Guides" msgstr "/Vue/(DИs)activer les Guides" -#: app/menus.c:149 +#: app/menus.c:151 msgid "/View/Snap To Guides" msgstr "/Vue/Aligner sur les Guides" -#: app/menus.c:152 +#: app/menus.c:154 msgid "/View/New View" msgstr "/Vue/Nouvelle vue" -#: app/menus.c:153 +#: app/menus.c:155 msgid "/View/Shrink Wrap" msgstr "/Vue/Empaqueter" -#: app/menus.c:155 +#: app/menus.c:157 msgid "/Image/tearoff1" msgstr "/Image/tearoff1" -#: app/menus.c:156 +#: app/menus.c:158 msgid "/Image/Colors/tearoff1" msgstr "/Image/Couleurs/tearoff1" -#: app/menus.c:157 +#: app/menus.c:159 msgid "/Image/Colors/Equalize" msgstr "/Image/Couleurs/иgaliser" -#: app/menus.c:158 +#: app/menus.c:160 msgid "/Image/Colors/Invert" msgstr "/Image/Couleurs/Inverser" -#: app/menus.c:159 +#: app/menus.c:161 msgid "/Image/Colors/---" msgstr "/Image/Couleurs/---" -#: app/menus.c:160 +#: app/menus.c:162 msgid "/Image/Colors/Desaturate" msgstr "/Image/Couleurs/DИsaturer" -#: app/menus.c:161 +#: app/menus.c:163 msgid "/Image/Channel Ops/tearoff1" msgstr "/Image/Canaux/tearoff1" -#: app/menus.c:162 +#: app/menus.c:164 msgid "/Image/Channel Ops/Duplicate" msgstr "/Image/Canaux/Dupliquer" -#: app/menus.c:163 +#: app/menus.c:165 msgid "/Image/Channel Ops/Offset" msgstr "/Image/Canaux/DИcalage" -#: app/menus.c:164 +#: app/menus.c:166 msgid "/Image/Alpha/tearoff1" msgstr "/Image/Alpha/tearoff1" -#: app/menus.c:165 +#: app/menus.c:167 msgid "/Image/Alpha/Add Alpha Channel" msgstr "/Image/Alpha/Ajouter Canal Alpha" -#: app/menus.c:167 app/menus.c:171 app/menus.c:174 +#: app/menus.c:169 app/menus.c:173 app/menus.c:176 msgid "/Image/---" msgstr "/Image/---" -#: app/menus.c:168 +#: app/menus.c:170 msgid "/Image/RGB" msgstr "/Image/RVB" -#: app/menus.c:169 +#: app/menus.c:171 msgid "/Image/Grayscale" msgstr "/Image/Niveaux de Gris" -#: app/menus.c:170 +#: app/menus.c:172 msgid "/Image/Indexed" msgstr "/Image/IndexИe" -#: app/menus.c:172 +#: app/menus.c:174 msgid "/Image/Resize" msgstr "/Image/Redimensionner" -#: app/menus.c:173 +#: app/menus.c:175 msgid "/Image/Scale" msgstr "/Image/иchelle" -#: app/menus.c:176 +#: app/menus.c:178 msgid "/Layers/tearoff1" msgstr "/Calques/tearoff1" -#: app/menus.c:177 +#: app/menus.c:179 msgid "/Layers/Layers & Channels..." msgstr "/Calques/Calques & Canaux..." -#: app/menus.c:178 +#: app/menus.c:180 msgid "/Layers/Stack/tearoff1" msgstr "/Calques/Pile/tearoff1" -#: app/menus.c:179 +#: app/menus.c:181 msgid "/Layers/Stack/Previous Layer" msgstr "/Calques/Pile/Calque prИcИdent" -#: app/menus.c:180 +#: app/menus.c:182 msgid "/Layers/Stack/Next Layer" msgstr "/Calques/Pile/Calque suivant" -#: app/menus.c:181 +#: app/menus.c:183 msgid "/Layers/Stack/Raise Layer" msgstr "/Calques/Pile/Remonter calque" -#: app/menus.c:182 +#: app/menus.c:184 msgid "/Layers/Stack/Lower Layer" msgstr "/Calques/Pile/Descendre calque" -#: app/menus.c:183 +#: app/menus.c:185 msgid "/Layers/Stack/Layer to Top" msgstr "/Calques/Pile/Calque vers le sommet" -#: app/menus.c:184 +#: app/menus.c:186 msgid "/Layers/Stack/Layer to Bottom" msgstr "/Calques/Pile/Calque vers le fond" -#: app/menus.c:185 app/menus.c:192 +#: app/menus.c:187 app/menus.c:194 msgid "/Layers/---" msgstr "/Calques/---" -#: app/menus.c:186 +#: app/menus.c:188 msgid "/Layers/Anchor Layer" msgstr "/Calques/Ancrer Calque" -#: app/menus.c:187 +#: app/menus.c:189 msgid "/Layers/Merge Visible Layers" msgstr "/Calques/Fusionner les Calques Visibles" -#: app/menus.c:188 +#: app/menus.c:190 msgid "/Layers/Flatten Image" msgstr "/Calques/Aplatir Image" -#: app/menus.c:189 +#: app/menus.c:191 msgid "/Layers/Alpha To Selection" msgstr "/Calques/Alpha vers SИlection" -#: app/menus.c:190 +#: app/menus.c:192 msgid "/Layers/Mask To Selection" msgstr "/Calques/Masque vers SИlection" -#: app/menus.c:191 +#: app/menus.c:193 msgid "/Layers/Add Alpha Channel" msgstr "/Calques/Ajouter Canal Alpha" -#: app/menus.c:194 +#: app/menus.c:196 msgid "/Tools/tearoff1" msgstr "/Outils/tearoff1" -#: app/menus.c:195 +#: app/menus.c:197 msgid "/Tools/Toolbox" msgstr "/Outils/BoНte Ю outils" -#: app/menus.c:196 +#: app/menus.c:198 msgid "/Tools/Default Colors" msgstr "/Outils/Couleurs par dИfaut" -#: app/menus.c:197 +#: app/menus.c:199 msgid "/Tools/Swap Colors" msgstr "/Outils/иchanger les Couleurs" -#: app/menus.c:198 +#: app/menus.c:200 msgid "/Tools/---" msgstr "/Outils/---" #. the tool entries themselves are built on the fly -#: app/menus.c:202 +#: app/menus.c:204 msgid "/Filters/tearoff1" msgstr "/Filtres/tearoff1" -#: app/menus.c:203 app/plug_in.c:1285 +#: app/menus.c:205 app/plug_in.c:1285 msgid "/Filters/Repeat last" msgstr "/Filtres/RИpИter le dernier" -#: app/menus.c:204 app/plug_in.c:1286 +#: app/menus.c:206 app/plug_in.c:1286 msgid "/Filters/Re-show last" msgstr "/Filtres/Remontrer le dernier" -#: app/menus.c:205 +#: app/menus.c:207 msgid "/Filters/---" msgstr "/Filtres/---" -#: app/menus.c:207 +#: app/menus.c:209 msgid "/Script-Fu/tearoff1" msgstr "/Script-Fu/tearoff1" -#: app/menus.c:208 +#: app/menus.c:210 msgid "/Script-Fu/" msgstr "/Script-Fu/" -#: app/menus.c:210 +#: app/menus.c:212 msgid "/Dialogs/tearoff1" msgstr "/Dialogues/tearoff1" -#: app/menus.c:211 +#: app/menus.c:213 msgid "/Dialogs/Brushes..." msgstr "/Dialogues/Brosses..." -#: app/menus.c:212 +#: app/menus.c:214 msgid "/Dialogs/Patterns..." msgstr "/Dialogues/Motifs..." -#: app/menus.c:213 +#: app/menus.c:215 msgid "/Dialogs/Palette..." msgstr "/Dialogues/Palette..." -#: app/menus.c:214 +#: app/menus.c:216 msgid "/Dialogs/Gradient..." msgstr "/Dialogues/DИgradИ..." -#: app/menus.c:215 +#: app/menus.c:217 msgid "/Dialogs/Layers & Channels..." msgstr "/Dialogues/Calques & Canaux..." -#: app/menus.c:216 +#: app/menus.c:218 msgid "/Dialogs/Indexed Palette..." msgstr "/Dialogues/Palette IndexИe..." -#: app/menus.c:217 +#: app/menus.c:219 msgid "/Dialogs/Tool Options..." msgstr "/Dialogues/Options des Outils..." -#: app/menus.c:218 +#: app/menus.c:220 msgid "/Dialogs/Input Devices..." msgstr "/Dialogues/PИriphИriques d'EntrИe..." -#: app/menus.c:219 +#: app/menus.c:221 msgid "/Dialogs/Device Status..." msgstr "/Dialogues/иtat des PИriphИriques..." -#: app/menus.c:226 +#: app/menus.c:228 msgid "/Automatic" msgstr "/Automatique" -#: app/menus.c:234 +#: app/menus.c:236 msgid "/By extension" msgstr "/Par extension" -#: app/menus.c:288 +#: app/menus.c:290 msgid "/New Path" msgstr "/Nouveau Chemin" -#: app/menus.c:289 +#: app/menus.c:291 msgid "/Duplicate Path" msgstr "/Dupliquer Chemin" -#: app/menus.c:290 +#: app/menus.c:292 msgid "/Path to Selection" msgstr "/Chemin vers SИlection" -#: app/menus.c:291 +#: app/menus.c:293 msgid "/Stroke Path" msgstr "/Chemin du coup de pinceau" -#: app/menus.c:292 +#: app/menus.c:294 msgid "/Delete Path" msgstr "/Effacer Chemin" -#: app/menus.c:294 +#: app/menus.c:296 msgid "/Copy Path" msgstr "/Copier Chemin" -#: app/menus.c:295 +#: app/menus.c:297 msgid "/Paste Path" msgstr "/Coller Chemin" -#: app/menus.c:296 +#: app/menus.c:298 msgid "/Import Path" msgstr "/Importer Chemin" -#: app/menus.c:297 +#: app/menus.c:299 msgid "/Export Path" msgstr "/Exporter Chemin" -#: app/menus.c:591 +#: app/menus.c:596 #, c-format msgid "Error opening file: %s\n" msgstr "Erreur lors de l'ouverture du fichier: %s\n" -#: app/menus.c:613 app/menus.c:694 +#: app/menus.c:618 app/menus.c:699 #, c-format msgid "/File/MRU%02d" msgstr "/Fichier/MRU%02d" @@ -3978,103 +3992,99 @@ msgstr "/Fichier/MRU%02d" msgid "Module DB" msgstr "Module BDD" -#: app/module_db.c:555 +#: app/module_db.c:567 #, c-format msgid "load module: \"%s\"\n" msgstr "charger module: \"%s\"\n" -#: app/module_db.c:562 +#: app/module_db.c:574 #, c-format msgid "skipping module: \"%s\"\n" msgstr "module ignorИ: \"%s\"\n" -#: app/module_db.c:586 +#: app/module_db.c:598 #, c-format msgid "module load error: %s: %s" msgstr "erreur de chargement du module: %s: %s" -#: app/module_db.c:604 +#: app/module_db.c:616 msgid "missing module_init() symbol" msgstr "symbol module_init() non trouvИ" -#: app/module_db.c:607 +#: app/module_db.c:619 #, c-format msgid "%s: module_init() symbol not found" msgstr "%s: symbol module_init() non trouvИ" -#: app/module_db.c:760 +#: app/module_db.c:772 msgid "" msgstr "" -#: app/module_db.c:773 app/module_db.c:782 +#: app/module_db.c:785 app/module_db.c:794 msgid "on disk" msgstr "sur le disque" -#: app/module_db.c:773 +#: app/module_db.c:785 msgid "only in memory" msgstr "seulement en mИmoire" -#: app/module_db.c:782 +#: app/module_db.c:794 msgid "nowhere (click 'refresh')" msgstr "nulle part (cliquer 'raffraichir')" -#: app/module_db.c:818 +#: app/module_db.c:830 msgid "Load" msgstr "Charger" -#: app/module_db.c:827 +#: app/module_db.c:839 msgid "Unload" msgstr "DИcharger" -#: app/module_db.c:840 +#: app/module_db.c:852 msgid "Purpose: " msgstr "But: " -#: app/module_db.c:841 +#: app/module_db.c:853 msgid "Author: " msgstr "Auteur: " -#: app/module_db.c:842 +#: app/module_db.c:854 msgid "Version: " msgstr "Version: " -#: app/module_db.c:843 +#: app/module_db.c:855 msgid "Copyright: " msgstr "Copyright: " -#: app/module_db.c:844 +#: app/module_db.c:856 msgid "Date: " msgstr "Date: " -#: app/module_db.c:845 +#: app/module_db.c:857 msgid "Location: " msgstr "Emplacement: " -#: app/module_db.c:846 +#: app/module_db.c:858 msgid "State: " msgstr "иtat: " -#: app/module_db.c:865 +#: app/module_db.c:877 msgid "Autoload during startup" msgstr "Charger automatiquement durant le dИmarrage" -#: app/move.c:443 +#: app/move.c:444 msgid "Move Tool Options" msgstr "Options de l'Outil DИplacement" -#: app/paint_core.c:593 +#: app/paint_core.c:586 msgid "No brushes available for use with this tool." msgstr "Pas de brosse disponible pour Йtre utilisИe avec cet outil." -#: app/paint_core.c:1336 -msgid "paint_core_replace only works in INCREMENTAL mode" -msgstr "paint_core_replace fonctionne seulement en mode INCREMENTAL" - -#: app/paint_core.c:1473 +#: app/paint_core.c:1574 msgid "set_undo_tiles: undo_tiles is null" msgstr "set_undo_tiles: undo_tiles est nul" -#: app/paint_funcs.c:85 app/tool_options.c:786 +#: app/paint_funcs.c:85 app/tool_options.c:777 msgid "Behind" msgstr "DerriХre" @@ -4086,7 +4096,7 @@ msgstr "Soustraction" msgid "Erase" msgstr "Effacer" -#: app/paintbrush.c:154 +#: app/paintbrush.c:153 msgid "Once Forward" msgstr "1 fois en Avant" @@ -4094,26 +4104,27 @@ msgstr "1 fois en Avant" msgid "Once Backward" msgstr "1 fois en ArriХre" -#: app/paintbrush.c:156 +#: app/paintbrush.c:157 msgid "Loop Sawtooth" msgstr "Boucle Dents de scie" -#: app/paintbrush.c:157 +#: app/paintbrush.c:159 msgid "Loop Triangle" msgstr "Boucle Triangle" -#: app/paintbrush.c:181 +#: app/paintbrush.c:185 msgid "Fade Out:" msgstr "Estompement:" -#: app/paintbrush.c:208 +#: app/paintbrush.c:212 msgid "Length:" msgstr "Longueur:" -#. the radio frame and box -#: app/paintbrush.c:233 -msgid "Gradient Type" -msgstr "Type de DИgradИ" +#. the gradient type +#: app/paintbrush.c:237 +#, fuzzy +msgid "Type:" +msgstr "Type" #: app/palette.c:484 #, c-format @@ -4360,7 +4371,7 @@ msgstr "impossible d'ouvrir un tube" msgid "unable to run plug-in: %s" msgstr "impossible d'exИcuter l'appendice: %s" -#: app/plug_in.c:1644 app/plug_in.c:1657 app/plug_in.c:1670 app/plug_in.c:1685 +#: app/plug_in.c:1648 app/plug_in.c:1661 app/plug_in.c:1674 app/plug_in.c:1689 #, c-format msgid "" "plug-in \"%s\" attempted to install procedure \"%s\" which does not take the " @@ -4369,7 +4380,7 @@ msgstr "" "L'appendice \"%s\" a essayИ d'installer la procИdure \"%s\", qui ne prend " "pas les arguments standards d'appendice." -#: app/plug_in.c:1693 +#: app/plug_in.c:1697 #, c-format msgid "" "plug-in \"%s\" attempted to install procedure \"%s\" in an invalid menu " @@ -4379,7 +4390,7 @@ msgstr "" "emplacement de menu incorrect. Utilisez \"\", \"\", " "\"\" ou \"\"." -#: app/plug_in.c:1713 +#: app/plug_in.c:1717 #, c-format msgid "" "plug_in \"%s\" attempted to install procedure \"%s\" which fails to comply " @@ -4389,33 +4400,33 @@ msgstr "" "suit pas le standard de passages de tableaux en paramХtres. L'argument %d " "n'est pas standard." -#: app/plug_in.c:2145 +#: app/plug_in.c:2149 #, c-format msgid "duplicate plug-in: \"%s\" (skipping)\n" msgstr "module en double: \"%s\" (sautИ)\n" -#: app/plug_in.c:2354 +#: app/plug_in.c:2357 msgid "Unknown procedure type." msgstr "Type de procИdure inconnu." -#: app/plug_in.c:2435 +#: app/plug_in.c:2438 #, c-format msgid "removing duplicate PDB procedure \"%s\"" msgstr "Иlimination de la procИdure en double \"%s\"" -#: app/plug_in.c:2691 app/plug_in.c:2856 app/plug_in.c:2973 app/plug_in.c:3058 +#: app/plug_in.c:2694 app/plug_in.c:2859 app/plug_in.c:2976 app/plug_in.c:3061 msgid "the \"region\" arg type is not currently supported" msgstr "le type d'argument \"region\" n'est pas supportИ actuellement" -#: app/posterize.c:215 +#: app/posterize.c:164 msgid "Posterize does not operate on indexed drawables." msgstr "La postИrisation n'opХre pas sur les images indexИes." -#: app/posterize.c:259 app/tools.c:514 +#: app/posterize.c:211 app/tools.c:547 msgid "Posterize" msgstr "PostИriser" -#: app/posterize.c:273 +#: app/posterize.c:225 msgid "Posterize Levels: " msgstr "Niveaux de PostИrisation: " @@ -4496,7 +4507,7 @@ msgstr "Hauteur" msgid "Default Image Resolution and Resolution Unit" msgstr "RИsolution et unitИs par dИfaut de l'image" -#: app/preferences_dialog.c:1592 app/preferences_dialog.c:2300 +#: app/preferences_dialog.c:1592 app/preferences_dialog.c:2294 msgid "dpi" msgstr "pts par pouce" @@ -4560,7 +4571,7 @@ msgstr "Large" msgid "Check Size:" msgstr "Taille des Cases:" -#: app/preferences_dialog.c:1699 app/transform_tool.c:191 +#: app/preferences_dialog.c:1699 app/transform_tool.c:190 msgid "Scaling" msgstr "Mis Ю l'Иchelle" @@ -4667,7 +4678,7 @@ msgstr "D msgid "Tool Options Settings" msgstr "RИglages des options des outils" -#: app/preferences_dialog.c:1941 app/tools.c:691 +#: app/preferences_dialog.c:1941 app/tools.c:884 msgid "Tool Options" msgstr "Options des outils" @@ -4679,208 +4690,204 @@ msgstr "Options de dessin" msgid "Use Global Paint Options" msgstr "Appliquer les options de dessin globales" -#: app/preferences_dialog.c:1968 -msgid "(Switching this off does not yet work consistently.)" -msgstr "(DИsactiver ceci ne fonctionne pas encore tout Ю fait partout.)" - -#: app/preferences_dialog.c:1980 +#: app/preferences_dialog.c:1974 msgid "Display brush and pattern indicators on Toolbar" msgstr "Afficher les indicateurs de brosse et motif sur la barre d'outils" -#: app/preferences_dialog.c:1994 +#: app/preferences_dialog.c:1988 msgid "Environment Settings" msgstr "Configuration de l'environnement" -#: app/preferences_dialog.c:1996 +#: app/preferences_dialog.c:1990 msgid "Environment" msgstr "Environnement" -#: app/preferences_dialog.c:2003 +#: app/preferences_dialog.c:1997 msgid "Resource Consumption" msgstr "Configuration des Ressources" -#: app/preferences_dialog.c:2012 +#: app/preferences_dialog.c:2006 msgid "Conservative Memory Usage" msgstr "Utilisation parcimonieuse de la mИmoire" -#: app/preferences_dialog.c:2063 app/preferences_dialog.c:2104 +#: app/preferences_dialog.c:2057 app/preferences_dialog.c:2098 msgid "Bytes" msgstr "Octets" -#: app/preferences_dialog.c:2064 app/preferences_dialog.c:2105 +#: app/preferences_dialog.c:2058 app/preferences_dialog.c:2099 msgid "KiloBytes" msgstr "Kilo-octets" -#: app/preferences_dialog.c:2065 app/preferences_dialog.c:2106 +#: app/preferences_dialog.c:2059 app/preferences_dialog.c:2100 msgid "MegaBytes" msgstr "MИga-octets" -#: app/preferences_dialog.c:2070 +#: app/preferences_dialog.c:2064 msgid "Tile Cache Size:" msgstr "Taille du cache de carreaux:" -#: app/preferences_dialog.c:2111 +#: app/preferences_dialog.c:2105 msgid "Maximum Image Size:" msgstr "Taille maximal de l'image:" -#: app/preferences_dialog.c:2121 +#: app/preferences_dialog.c:2115 msgid "Number of Processors to Use:" msgstr "Nombre de processeurs Ю utiliser:" -#: app/preferences_dialog.c:2125 +#: app/preferences_dialog.c:2119 msgid "8-Bit Displays" msgstr "Affichages 8-bits" -#: app/preferences_dialog.c:2136 +#: app/preferences_dialog.c:2130 msgid "Install Colormap" msgstr "Installer la palette de couleurs (8-bits uniquement)" -#: app/preferences_dialog.c:2145 +#: app/preferences_dialog.c:2139 msgid "Colormap Cycling" msgstr "Cyclage de la palette de couleurs (8-bits uniquement)" -#: app/preferences_dialog.c:2154 +#: app/preferences_dialog.c:2148 msgid "File Previews / Thumbnails" msgstr "AperГus des fichiers / IcТnes" -#: app/preferences_dialog.c:2181 +#: app/preferences_dialog.c:2175 msgid "Try to Write a Thumbnail File:" msgstr "Tentative d'Иcriture un fichier icТne:" -#: app/preferences_dialog.c:2186 +#: app/preferences_dialog.c:2180 msgid "Session Management" msgstr "Gestion de session" -#: app/preferences_dialog.c:2188 +#: app/preferences_dialog.c:2182 msgid "Session" msgstr "Session" -#: app/preferences_dialog.c:2195 +#: app/preferences_dialog.c:2189 msgid "Window Positions" msgstr "Effacer les positions de fenЙtres sauvИes" -#: app/preferences_dialog.c:2204 +#: app/preferences_dialog.c:2198 msgid "Save Window Positions on Exit" msgstr "Enregistrer la position des fenЙtres en quittant" -#: app/preferences_dialog.c:2218 +#: app/preferences_dialog.c:2212 msgid "Clear Saved Window Positions" msgstr "Effacer les positions de fenЙtres sauvИes" -#: app/preferences_dialog.c:2225 +#: app/preferences_dialog.c:2219 msgid "Always Try to Restore Session" msgstr "Toujours essayer de restaurer la session" -#: app/preferences_dialog.c:2234 +#: app/preferences_dialog.c:2228 msgid "Devices" msgstr "PИriphИriques" -#: app/preferences_dialog.c:2243 +#: app/preferences_dialog.c:2237 msgid "Save Device Status on Exit" msgstr "Enregistrer l'Иtat des pИriphИriques en quittant" -#: app/preferences_dialog.c:2254 +#: app/preferences_dialog.c:2248 msgid "Monitor Information" msgstr "Information sur le moniteur" -#: app/preferences_dialog.c:2256 +#: app/preferences_dialog.c:2250 msgid "Monitor" msgstr "Moniteur" -#: app/preferences_dialog.c:2263 +#: app/preferences_dialog.c:2257 msgid "Get Monitor Resolution" msgstr "Obtenir la rИsolution du moniteur" -#: app/preferences_dialog.c:2278 +#: app/preferences_dialog.c:2272 #, c-format msgid "(Currently %d x %d dpi)" msgstr "(actuellement %d x %d ppp)" -#: app/preferences_dialog.c:2325 +#: app/preferences_dialog.c:2319 msgid "From X Server" msgstr "Ю partir du serveur X" -#: app/preferences_dialog.c:2340 +#: app/preferences_dialog.c:2334 msgid "Manually:" msgstr "manuellement:" -#: app/preferences_dialog.c:2353 +#: app/preferences_dialog.c:2347 msgid "Directories Settings" msgstr "Configuration des rИpertoires" -#: app/preferences_dialog.c:2355 +#: app/preferences_dialog.c:2349 msgid "Directories" msgstr "RИpertoires" -#: app/preferences_dialog.c:2368 +#: app/preferences_dialog.c:2362 msgid "Temp Dir:" msgstr "RИpertoire temporaire:" -#: app/preferences_dialog.c:2368 +#: app/preferences_dialog.c:2362 msgid "Select Temp Dir" msgstr "Choisir rИpertoire temporaire" -#: app/preferences_dialog.c:2369 +#: app/preferences_dialog.c:2363 msgid "Swap Dir:" msgstr "RИpertoire d'Иchange:" -#: app/preferences_dialog.c:2369 +#: app/preferences_dialog.c:2363 msgid "Select Swap Dir" msgstr "Choisir rИpertoire d'Иchange" -#: app/preferences_dialog.c:2401 +#: app/preferences_dialog.c:2395 msgid "Brushes Directories" msgstr "RИpertoires des Brosses" -#: app/preferences_dialog.c:2401 +#: app/preferences_dialog.c:2395 msgid "Select Brushes Dir" msgstr "Choisir rИpertoire des brosses" -#: app/preferences_dialog.c:2403 +#: app/preferences_dialog.c:2397 msgid "Patterns Directories" msgstr "RИpertoires de Motifs" -#: app/preferences_dialog.c:2403 +#: app/preferences_dialog.c:2397 msgid "Select Patterns Dir" msgstr "Choisir rИpertoire de motifs:" -#: app/preferences_dialog.c:2405 +#: app/preferences_dialog.c:2399 msgid "Palettes Directories" msgstr "RИpertoires de Palettes" -#: app/preferences_dialog.c:2405 +#: app/preferences_dialog.c:2399 msgid "Select Palettes Dir" msgstr "Choisir rИpertoires de Palettes" -#: app/preferences_dialog.c:2407 +#: app/preferences_dialog.c:2401 msgid "Gradients Directories" msgstr "RИpertoires de DИgradИs" -#: app/preferences_dialog.c:2407 +#: app/preferences_dialog.c:2401 msgid "Select Gradients Dir" msgstr "Choisir rИpertoire de DИgradИs" -#: app/preferences_dialog.c:2409 +#: app/preferences_dialog.c:2403 msgid "Plug-Ins" msgstr "Modules" -#: app/preferences_dialog.c:2409 +#: app/preferences_dialog.c:2403 msgid "Plug-Ins Directories" msgstr "RИpertoires d'appendices (plug-ins)" -#: app/preferences_dialog.c:2409 +#: app/preferences_dialog.c:2403 msgid "Select Plug-Ins Dir" msgstr "SИlectionner rИpertoire d'appendices (plug-ins)" -#: app/preferences_dialog.c:2411 +#: app/preferences_dialog.c:2405 msgid "Modules" msgstr "Modules" -#: app/preferences_dialog.c:2411 +#: app/preferences_dialog.c:2405 msgid "Modules Directories" msgstr "RИpertoires de modules" -#: app/preferences_dialog.c:2411 +#: app/preferences_dialog.c:2405 msgid "Select Modules Dir" msgstr "Choisir rИpertoire de modules" @@ -4902,23 +4909,23 @@ msgstr "" "Des arguments incorrects ont ИtИ passИs Ю procedural_db_run_proc:\n" "l'argument %d de \"%s\" devrait Йtre un %s, mais on a passИ un %s." -#: app/rect_select.c:179 +#: app/rect_select.c:180 msgid "Selection: ADD" msgstr "SИlection: AJOUTER" -#: app/rect_select.c:182 +#: app/rect_select.c:183 msgid "Selection: SUBTRACT" msgstr "SИlection: SOUSTRAIRE" -#: app/rect_select.c:185 +#: app/rect_select.c:186 msgid "Selection: INTERSECT" msgstr "SИlection: INTERSECTER" -#: app/rect_select.c:188 +#: app/rect_select.c:189 msgid "Selection: REPLACE" msgstr "SИlection: REMPLACER" -#: app/rect_select.c:404 app/rect_select.c:411 +#: app/rect_select.c:405 app/rect_select.c:412 msgid "Selection: " msgstr "SИlection: " @@ -4974,11 +4981,11 @@ msgstr "Afficher la taille & afficher l'unit msgid "Rotation Information" msgstr "Informations de Rotation" -#: app/rotate_tool.c:105 +#: app/rotate_tool.c:106 msgid "Center X:" msgstr "Centre X:" -#: app/rotate_tool.c:400 +#: app/rotate_tool.c:401 msgid "Rotating..." msgstr "Rotation en cours..." @@ -5030,39 +5037,39 @@ msgstr "Ampleur de cisaillement X:" msgid "Shearing..." msgstr "Cisaillement..." -#: app/text_tool.c:158 +#: app/text_tool.c:157 msgid "Text Tool Options" msgstr "Options Texte" -#: app/text_tool.c:169 app/tool_options.c:323 +#: app/text_tool.c:168 app/tool_options.c:317 msgid "Antialiasing" msgstr "Lissage" -#: app/text_tool.c:183 +#: app/text_tool.c:182 msgid "Border:" msgstr "Bordure:" -#: app/text_tool.c:209 +#: app/text_tool.c:208 msgid "Use Dynamic Text" msgstr "Texte dynamique" -#: app/text_tool.c:286 +#: app/text_tool.c:278 msgid "text_call_gdyntext: gDynText procedure lookup failed" msgstr "" "text_call_gdyntext: la procИdure d'affichage de texte dynamique n'est pas " "installИe" #. Create the shell -#: app/text_tool.c:414 app/text_tool.c:416 +#: app/text_tool.c:399 app/text_tool.c:401 msgid "Text Tool" msgstr "Outil Texte" -#: app/text_tool.c:624 +#: app/text_tool.c:609 #, c-format msgid "Font '%s' not found.%s" msgstr "Police '%s' non trouvИe. %s" -#: app/text_tool.c:626 +#: app/text_tool.c:611 msgid "" "\n" "If you don't have scalable fonts, try turning off antialiasing in the tool " @@ -5072,27 +5079,27 @@ msgstr "" "Si vous n'avez pas de polices vectorielles, essayez de couper le lissage " "dans les options de l'outil." -#: app/text_tool.c:737 +#: app/text_tool.c:722 msgid "Text Layer" msgstr "Calque Texte" -#: app/text_tool.c:780 +#: app/text_tool.c:765 msgid "text_render: could not allocate image" msgstr "text_render: impossible d'allouer l'image" -#: app/threshold.c:229 +#: app/threshold.c:189 msgid "Threshold Options" msgstr "Options de Seuil" -#: app/threshold.c:281 +#: app/threshold.c:232 msgid "Threshold does not operate on indexed drawables." msgstr "Le Seuil ne fonctionne pas sur les images indexИes." -#: app/threshold.c:338 app/tools.c:529 +#: app/threshold.c:291 app/tools.c:562 msgid "Threshold" msgstr "Seuil" -#: app/threshold.c:353 +#: app/threshold.c:306 msgid "Threshold Range: " msgstr "Intervalle de seuil: " @@ -5121,27 +5128,27 @@ msgstr "lecture de donn msgid "unable to write tile data to disk: %d ( %d ) bytes written" msgstr "Иcriture de donnИes d'un fichier impossible : %d/%d ( %d ) octets lus" -#: app/tips_dialog.c:61 +#: app/tips_dialog.c:57 msgid "gimp_tips.txt" msgstr "gimp_conseils.fr.txt" -#: app/tips_dialog.c:73 +#: app/tips_dialog.c:69 msgid "GIMP Tip of the day" msgstr "Conseil du jour GIMP" -#: app/tips_dialog.c:134 +#: app/tips_dialog.c:130 msgid "Previous Tip" msgstr "Conseil prИcИdent" -#: app/tips_dialog.c:142 +#: app/tips_dialog.c:138 msgid "Next Tip" msgstr "Conseil suivant" -#: app/tips_dialog.c:162 +#: app/tips_dialog.c:158 msgid "Show tip next time" msgstr "Afficher un conseil la prochaine fois" -#: app/tips_dialog.c:260 +#: app/tips_dialog.c:256 msgid "" "Your GIMP tips file appears to be missing!\n" "There should be a file called gimp_tips.txt in the\n" @@ -5152,388 +5159,416 @@ msgstr "" "dans le rИpertoire de donnИes de GIMP.\n" "VИrifiez votre installation." -#: app/tools.c:78 +#: app/tools.c:81 msgid "Rect Select" msgstr "SИlection Rectangulaire" -#: app/tools.c:80 +#: app/tools.c:83 msgid "/Tools/Rect Select" msgstr "/Outils/SИlection rectangulaire" -#: app/tools.c:83 +#: app/tools.c:86 msgid "Select rectangular regions" msgstr "SИlectionne des rИgions rectangulaires" -#: app/tools.c:93 +#: app/tools.c:96 msgid "Ellipse Select" msgstr "SИlection elliptique" -#: app/tools.c:95 +#: app/tools.c:98 msgid "/Tools/Ellipse Select" msgstr "/Outils/SИlection elliptique" -#: app/tools.c:98 +#: app/tools.c:101 msgid "Select elliptical regions" msgstr "SИlection des rИgions elliptique" -#: app/tools.c:108 +#: app/tools.c:111 msgid "Free Select" msgstr "SИlection Ю main levИe" -#: app/tools.c:110 +#: app/tools.c:113 msgid "/Tools/Free Select" msgstr "/Outils/SИlection Ю main levИe" -#: app/tools.c:113 +#: app/tools.c:116 msgid "Select hand-drawn regions" msgstr "SИlectionne des rИgions Ю main levИe" -#: app/tools.c:123 +#: app/tools.c:126 msgid "Fuzzy Select" msgstr "SИlection floue" -#: app/tools.c:125 +#: app/tools.c:128 msgid "/Tools/Fuzzy Select" msgstr "/Outils/SИlection floue" -#: app/tools.c:128 +#: app/tools.c:131 msgid "Select contiguous regions" msgstr "SИlectionne des rИgions continues." -#: app/tools.c:138 +#: app/tools.c:141 msgid "Bezier Select" msgstr "SИlection BИzier" -#: app/tools.c:140 +#: app/tools.c:143 msgid "/Tools/Bezier Select" msgstr "/Outils/SИlection BИzier" -#: app/tools.c:143 +#: app/tools.c:146 msgid "Select regions using Bezier curves" msgstr "SИlectionne des rИgions par des courbes de BИzier" -#: app/tools.c:153 +#: app/tools.c:156 msgid "Intelligent Scissors" msgstr "Ciseaux Intelligents" -#: app/tools.c:155 +#: app/tools.c:158 msgid "/Tools/Intelligent Scissors" msgstr "/Outils/Ciseaux Intelligents" -#: app/tools.c:158 +#: app/tools.c:161 msgid "Select shapes from image" msgstr "SИlectionne des formes dans l'image" -#: app/tools.c:168 +#: app/tools.c:171 msgid "Move" msgstr "DИplacer" -#: app/tools.c:170 +#: app/tools.c:173 msgid "/Tools/Move" msgstr "/Outils/DИplacer" -#: app/tools.c:173 +#: app/tools.c:176 msgid "Move layers & selections" msgstr "DИplacer calques & sИlections" -#: app/tools.c:183 +#: app/tools.c:186 msgid "Magnify" msgstr "Agrandir" -#: app/tools.c:185 +#: app/tools.c:188 msgid "/Tools/Magnify" msgstr "/Outils/Agrandir" -#: app/tools.c:188 +#: app/tools.c:191 msgid "Zoom in & out" msgstr "Zoom avant & arriХre" -#: app/tools.c:198 +#: app/tools.c:201 msgid "Crop & Resize" msgstr "Rogner & Redimensionner" -#: app/tools.c:200 +#: app/tools.c:203 msgid "/Tools/Crop & Resize" msgstr "/Outils/Rogner & Redimensionner" -#: app/tools.c:203 +#: app/tools.c:206 msgid "Crop or resize the image" msgstr "Rogne ou redimensionne l'image" #. the first radio frame and box, for transform type -#: app/tools.c:213 app/tools.c:228 app/tools.c:243 app/tools.c:258 +#: app/tools.c:216 app/tools.c:231 app/tools.c:246 app/tools.c:261 #: app/transform_core.c:125 app/transform_tool.c:224 msgid "Transform" msgstr "Transformer" -#: app/tools.c:215 +#: app/tools.c:218 msgid "/Tools/Transform" msgstr "/Outils/Transformer" -#: app/tools.c:218 +#: app/tools.c:221 msgid "Transform the layer or selection" msgstr "Transformer le calque ou la sИlection" -#: app/tools.c:273 +#: app/tools.c:276 msgid "Flip" msgstr "Retourner" -#: app/tools.c:275 +#: app/tools.c:278 msgid "/Tools/Flip" msgstr "/Outils/Retourner" -#: app/tools.c:278 +#: app/tools.c:281 msgid "Flip the layer or selection" msgstr "Retourner le calque ou la sИlection" -#: app/tools.c:288 +#: app/tools.c:291 msgid "Text" msgstr "Texte" -#: app/tools.c:290 +#: app/tools.c:293 msgid "/Tools/Text" msgstr "/Outils/Texte" -#: app/tools.c:293 +#: app/tools.c:296 msgid "Add text to the image" msgstr "Ajouter du texte Ю l'image" -#: app/tools.c:305 +#: app/tools.c:308 msgid "/Tools/Color Picker" msgstr "/Outils/Pipette Ю couleurs" -#: app/tools.c:308 +#: app/tools.c:311 msgid "Pick colors from the image" msgstr "RИcupХre des couleurs dans l'image" -#: app/tools.c:318 +#: app/tools.c:321 msgid "Bucket Fill" msgstr "Remplissage" -#: app/tools.c:320 +#: app/tools.c:323 msgid "/Tools/Bucket Fill" msgstr "/Outils/Remplissage" -#: app/tools.c:323 +#: app/tools.c:326 msgid "Fill with a color or pattern" msgstr "Remplit avec une couleur ou un motif" -#: app/tools.c:333 +#: app/tools.c:336 msgid "Blend" msgstr "MИlange" -#: app/tools.c:335 +#: app/tools.c:338 msgid "/Tools/Blend" msgstr "/Outils/MИlange" -#: app/tools.c:338 +#: app/tools.c:341 msgid "Fill with a color gradient" msgstr "Remplir avec un dИgradИ de couleur" -#: app/tools.c:348 +#: app/tools.c:351 msgid "Pencil" msgstr "Crayon" -#: app/tools.c:350 +#: app/tools.c:353 msgid "/Tools/Pencil" msgstr "/Outils/Crayon" -#: app/tools.c:353 +#: app/tools.c:356 msgid "Draw sharp pencil strokes" msgstr "Trace des traits de crayon prИcis" -#: app/tools.c:363 +#: app/tools.c:366 msgid "Paintbrush" msgstr "Pinceau" -#: app/tools.c:365 +#: app/tools.c:368 msgid "/Tools/Paintbrush" msgstr "/Outils/Pinceau" -#: app/tools.c:368 +#: app/tools.c:371 msgid "Paint fuzzy brush strokes" msgstr "Peint au pinceau, d'une faГon un peu floue" -#: app/tools.c:378 +#: app/tools.c:381 msgid "Eraser" msgstr "Gomme" -#: app/tools.c:380 +#: app/tools.c:383 msgid "/Tools/Eraser" msgstr "/Outils/Gomme" -#: app/tools.c:383 +#: app/tools.c:386 msgid "Erase to background or transparency" msgstr "Gomme (met la couleur de fond ou rend transparent)" -#: app/tools.c:393 +#: app/tools.c:396 msgid "Airbrush" msgstr "AИrographe" -#: app/tools.c:395 +#: app/tools.c:398 msgid "/Tools/Airbrush" msgstr "/Outils/AИrographe" -#: app/tools.c:398 +#: app/tools.c:401 msgid "Airbrush with variable pressure" msgstr "AИrographe Ю pression variable" -#: app/tools.c:408 +#: app/tools.c:411 msgid "Clone" msgstr "Dupliquer" -#: app/tools.c:410 +#: app/tools.c:413 msgid "/Tools/Clone" msgstr "/Outils/Dupliquer" -#: app/tools.c:413 +#: app/tools.c:416 msgid "Paint using patterns or image regions" msgstr "Peint avec des motifs ou des portions d'image" -#: app/tools.c:423 +#: app/tools.c:426 msgid "Convolve" msgstr "Convolution" -#: app/tools.c:425 +#: app/tools.c:428 msgid "/Tools/Convolve" msgstr "/Outils/Convolution" -#: app/tools.c:428 +#: app/tools.c:431 msgid "Blur or sharpen" msgstr "Rend flou ou fait ressortir les contours" -#: app/tools.c:438 +#: app/tools.c:441 msgid "Ink" msgstr "Encre" -#: app/tools.c:440 +#: app/tools.c:443 msgid "/Tools/Ink" msgstr "/Outils/Encre" -#: app/tools.c:443 +#: app/tools.c:446 msgid "Draw in ink" msgstr "Dessine Ю l'encre" -#: app/tools.c:454 +#: app/tools.c:456 app/tools.c:461 +msgid "Dodge or Burn" +msgstr "" + +#: app/tools.c:458 +#, fuzzy +msgid "/Tools/DodgeBurn" +msgstr "/Outils/DИplacer" + +#: app/tools.c:471 app/tools.c:476 +msgid "Smudge" +msgstr "" + +#: app/tools.c:473 +#, fuzzy +msgid "/Tools/Smudge" +msgstr "/Outils/DИplacer" + +#: app/tools.c:487 msgid "By Color Select" msgstr "SИlection par Couleur" -#: app/tools.c:456 +#: app/tools.c:489 msgid "/Select/By Color..." msgstr "/SИlection/Par Couleur..." -#: app/tools.c:471 +#: app/tools.c:504 msgid "/Image/Colors/Color Balance" msgstr "/Image/Couleurs/Balance des couleurs" -#: app/tools.c:486 +#: app/tools.c:519 msgid "/Image/Colors/Brightness-Contrast" msgstr "/Image/Couleurs/LuminositИ-Contraste" -#: app/tools.c:501 +#: app/tools.c:534 msgid "/Image/Colors/Hue-Saturation" msgstr "/Image/Couleurs/Teinte-Saturation" -#: app/tools.c:516 +#: app/tools.c:549 msgid "/Image/Colors/Posterize" msgstr "/Image/Couleurs/PostИriser" -#: app/tools.c:531 +#: app/tools.c:564 msgid "/Image/Colors/Threshold" msgstr "/Image/Couleurs/Seuil" -#: app/tools.c:546 +#: app/tools.c:579 msgid "/Image/Colors/Curves" msgstr "/Image/Couleurs/Courbes" -#: app/tools.c:561 +#: app/tools.c:594 msgid "/Image/Colors/Levels" msgstr "/Image/Couleurs/Niveaux" -#: app/tools.c:576 +#: app/tools.c:609 msgid "/Image/Histogram" msgstr "/Image/Histogramme" -#: app/tool_options.c:212 app/tool_options.c:682 +#: app/tool_options.c:206 app/tool_options.c:688 msgid "This tool has no options." msgstr "Cet outil n'a pas d'option." -#: app/tool_options.c:236 +#: app/tool_options.c:230 msgid "Rectangular Select Options" msgstr "Option de la SИlection Rectangulaire" -#: app/tool_options.c:238 +#: app/tool_options.c:232 msgid "Elliptical Selection Options" msgstr "Options de la SИlection Elliptique" -#: app/tool_options.c:240 +#: app/tool_options.c:234 msgid "Free-hand Selection Options" msgstr "Options de la SИlection Mains Libres" -#: app/tool_options.c:242 +#: app/tool_options.c:236 msgid "Fuzzy Selection Options" msgstr "Options de la SИlection Floue" -#: app/tool_options.c:244 +#: app/tool_options.c:238 msgid "Bezier Selection Options" msgstr "Options de la SИlection de BИzier" -#: app/tool_options.c:246 +#: app/tool_options.c:240 msgid "Intelligent Scissors Options" msgstr "Options des Ciseaux Intelligents" -#: app/tool_options.c:248 +#: app/tool_options.c:242 msgid "By-Color Select Options" msgstr "Options de la SИlection Par-Couleur" -#: app/tool_options.c:249 +#: app/tool_options.c:243 msgid "ERROR: Unknown Selection Type" msgstr "ERREUR: Type de sИlection inconnu" -#: app/tool_options.c:279 +#: app/tool_options.c:273 msgid "Feather" msgstr "Adoucir" -#: app/tool_options.c:387 +#: app/tool_options.c:381 msgid "Fixed size / aspect ratio" msgstr "Ratio taill / aspect fixe" -#: app/tool_options.c:556 +#: app/tool_options.c:552 msgid "Bucket Fill Options" msgstr "Options de Remplissage" -#: app/tool_options.c:558 +#: app/tool_options.c:554 msgid "Blend Options" msgstr "Options de mИlange" -#: app/tool_options.c:560 +#: app/tool_options.c:556 msgid "Pencil Options" msgstr "Options de Pinceau" -#: app/tool_options.c:562 +#: app/tool_options.c:558 msgid "Paintbrush Options" msgstr "Options de la Brosse" -#: app/tool_options.c:564 +#: app/tool_options.c:560 msgid "Erazer Options" msgstr "Option de la Gomme" -#: app/tool_options.c:566 +#: app/tool_options.c:562 msgid "Airbrush Options" msgstr "Options de l'aИrographe" -#: app/tool_options.c:568 +#: app/tool_options.c:564 msgid "Clone Tool Options" msgstr "Options de l'Outil Duplication" -#: app/tool_options.c:570 +#: app/tool_options.c:566 msgid "Convolver Options" msgstr "Options de Convolution" -#: app/tool_options.c:572 +#: app/tool_options.c:568 msgid "Ink Options" msgstr "Options de Dessin Ю l'Encre" +#: app/tool_options.c:570 +#, fuzzy +msgid "Dodge or Burn Options" +msgstr "Options de la Balance des Couleurs" + +#: app/tool_options.c:572 +#, fuzzy +msgid "Smudge Options" +msgstr "Options d'enregistrement" + #: app/tool_options.c:573 msgid "ERROR: Unknown Paint Type" msgstr "ERREUR: Type de dessin inconnu" @@ -5558,23 +5593,23 @@ msgstr "" "Les transformations ne marchent pas\n" "sur les calques qui contiennent des masques." -#: app/transform_core.c:1137 +#: app/transform_core.c:1140 msgid "homogeneous coordinate = 0...\n" msgstr "coordonnИe homogХne = 0...\n" -#: app/transform_core.c:1392 +#: app/transform_core.c:1395 msgid "Transformation" msgstr "Transformation" -#: app/transform_tool.c:190 +#: app/transform_tool.c:189 msgid "Rotation" msgstr "Rotation" -#: app/transform_tool.c:192 +#: app/transform_tool.c:191 msgid "Shearing" msgstr "Cisaillement" -#: app/transform_tool.c:193 +#: app/transform_tool.c:192 msgid "Perspective" msgstr "Perspective" @@ -5754,7 +5789,7 @@ msgstr "S msgid "Select" msgstr "SИlection" -#: libgimp/gimpenv.c:81 +#: libgimp/gimpenv.c:82 msgid "warning: no home directory." msgstr "avertissement: pas de rИpertoire personnel." @@ -5870,3 +5905,17 @@ msgstr ") ou \\) sans correspondance" msgid "No previous regular expression" msgstr "Aucune expression rИguliХre antИrieure" +#~ msgid "Automatic" +#~ msgstr "Automatique" + +#~ msgid "Replace Current Selection" +#~ msgstr "Remplacer la sИlection courante" + +#~ msgid "paint_core_replace only works in INCREMENTAL mode" +#~ msgstr "paint_core_replace fonctionne seulement en mode INCREMENTAL" + +#~ msgid "Gradient Type" +#~ msgstr "Type de DИgradИ" + +#~ msgid "(Switching this off does not yet work consistently.)" +#~ msgstr "(DИsactiver ceci ne fonctionne pas encore tout Ю fait partout.)" diff --git a/po/hu.po b/po/hu.po index 4d80b4c37c..7869570515 100644 --- a/po/hu.po +++ b/po/hu.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: GIMP 1.1\n" -"POT-Creation-Date: 1999-06-05 15:50-0700\n" +"POT-Creation-Date: 1999-07-17 11:23-0700\n" "PO-Revision-Date: 1998 11:32+CET\n" "Last-Translator: Balazs Nagy \n" "Language-Team: Hungarian Gimp List \n" @@ -13,27 +13,27 @@ msgstr "" "Content-Type: text/plain; charset=iso8859-2\n" "Content-Transfer-Encoding: 8-bit\n" -#: app/about_dialog.c:153 +#: app/about_dialog.c:156 msgid "About the GIMP" msgstr "A GIMP nИvjegye" -#: app/about_dialog.c:196 +#: app/about_dialog.c:199 msgid "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-*-*" msgstr "" -#: app/about_dialog.c:199 +#: app/about_dialog.c:202 msgid "Version " msgstr "VerziС: " -#: app/about_dialog.c:200 +#: app/about_dialog.c:203 msgid " brought to you by" msgstr ", мrtАk:" -#: app/about_dialog.c:206 +#: app/about_dialog.c:209 msgid "Spencer Kimball & Peter Mattis" msgstr "Spencer Kimball Иs Peter Mattis" -#: app/about_dialog.c:239 +#: app/about_dialog.c:242 msgid "Please visit http://www.gimp.org/ for more info" msgstr "TovАbbi informАciСkat a http://www.gimp.org URL-en talАlsz" @@ -52,362 +52,366 @@ msgstr "Er msgid "killing stray timer, please report to lewing@gimp.org" msgstr "" -#: app/app_procs.c:355 +#: app/app_procs.c:358 msgid "GIMP Startup" msgstr "A GIMP indМtАsa" -#: app/app_procs.c:468 app/gimprc.c:389 +#: app/app_procs.c:471 app/gimprc.c:394 #, c-format msgid "parsing \"%s\"\n" msgstr "\"%s\" ИrtelmezИse\n" #. initialize the xcf file format routines -#: app/app_procs.c:524 +#: app/app_procs.c:526 msgid "Looking for data files" msgstr "AdatfАjlok keresИse" -#: app/app_procs.c:524 +#: app/app_procs.c:526 #, fuzzy msgid "Parasites" msgstr "Beilleszt" #. initialize the global parasite table -#: app/app_procs.c:526 app/internal_procs.c:70 app/preferences_dialog.c:2320 +#: app/app_procs.c:528 app/internal_procs.c:70 app/preferences_dialog.c:2395 msgid "Brushes" msgstr "Ecsetek" #. initialize the list of gimp brushes -#: app/app_procs.c:528 app/internal_procs.c:139 app/preferences_dialog.c:2322 +#: app/app_procs.c:530 app/internal_procs.c:139 app/preferences_dialog.c:2397 msgid "Patterns" msgstr "MintАk" #. initialize the list of gimp patterns -#: app/app_procs.c:530 app/preferences_dialog.c:2324 +#: app/app_procs.c:532 app/preferences_dialog.c:2399 msgid "Palettes" msgstr "PalettАk" #. initialize the list of gimp palettes -#: app/app_procs.c:532 app/gradient_select.c:557 app/internal_procs.c:109 -#: app/preferences_dialog.c:2326 +#: app/app_procs.c:534 app/gradient_select.c:557 app/internal_procs.c:109 +#: app/preferences_dialog.c:2401 msgid "Gradients" msgstr "SzМnАtmenetek" -#: app/app_procs.c:696 app/app_procs.c:717 -msgid "/File/Quit" -msgstr "/FАjl/KilИp" +#: app/app_procs.c:702 app/app_procs.c:703 app/app_procs.c:728 +#: app/app_procs.c:729 app/menus.c:83 app/menus.c:98 +#, fuzzy +msgid "/File/Quit" +msgstr "/FАjl/KilИp" -#: app/app_procs.c:697 app/app_procs.c:718 -msgid "/File/Quit" -msgstr "/FАjl/KilИp" - -#: app/app_procs.c:722 +#: app/app_procs.c:733 msgid "Really Quit?" msgstr "ValСban kilИpsz?" -#: app/app_procs.c:730 app/fileops.c:1420 +#: app/app_procs.c:741 app/fileops.c:1576 msgid "Yes" msgstr "Igen" -#: app/app_procs.c:739 app/fileops.c:1421 +#: app/app_procs.c:750 app/fileops.c:1577 msgid "No" msgstr "Nem" -#: app/app_procs.c:747 -msgid "Some files unsaved. Quit the GIMP?" +#: app/app_procs.c:776 +#, fuzzy +msgid "" +"Some files unsaved.\n" +"\n" +"Quit the GIMP?" msgstr "NИhАny fАjl nincs mentve. MИgis kilИpsz?" -#: app/batch.c:69 +#: app/batch.c:65 msgid "script-fu not available: batch mode disabled\n" msgstr "A script-fu nem elИrhetУ: a feldolgozС mСd kikapcsolva\n" -#: app/batch.c:78 +#: app/batch.c:74 msgid "reading batch commands from stdin\n" msgstr "kЖtegelt parancsok olvasАsa stdin-rСl\n" -#: app/batch.c:118 +#: app/batch.c:114 msgid "batch command: experienced an execution error.\n" msgstr "kЖtegelt parancs: vИgrehajtАsi hiba.\n" -#: app/batch.c:121 +#: app/batch.c:117 msgid "batch command: experienced a calling error.\n" msgstr "kЖtegelt parancs: hМvАsi hiba\n" -#: app/batch.c:124 +#: app/batch.c:120 msgid "batch command: executed successfully.\n" msgstr "kЖtegelt parancs: sikeres vИgrehajtАs.\n" -#: app/batch.c:205 +#: app/batch.c:204 msgid "extension_perl_server not available: unable to start the perl server\n" msgstr "" -#: app/batch.c:221 +#: app/batch.c:220 #, fuzzy msgid "perl server: experienced an execution error.\n" msgstr "kЖtegelt parancs: vИgrehajtАsi hiba.\n" -#: app/batch.c:224 +#: app/batch.c:223 #, fuzzy msgid "perl server: experienced a calling error.\n" msgstr "kЖtegelt parancs: hМvАsi hiba\n" -#: app/batch.c:227 +#: app/batch.c:226 #, fuzzy msgid "perl server: executed successfully.\n" msgstr "kЖtegelt parancs: sikeres vИgrehajtАs.\n" -#: app/bezier_select.c:480 +#: app/bezier_select.c:477 msgid "Bezier path already closed." msgstr "" -#: app/bezier_select.c:501 +#: app/bezier_select.c:498 #, fuzzy msgid "Corrupt curve" msgstr "KorrektМv" -#: app/bezier_select.c:1011 +#: app/bezier_select.c:1012 msgid "tried to edit on open bezier curve in edit selection" msgstr "" "megprСbАlt nyitott BИzier gЖrbИt szerkeszteni a kijelЖlИs szerkesztИsben" -#: app/bezier_select.c:1291 +#: app/bezier_select.c:1292 msgid "Encountered orphaned bezier control point" msgstr "MagАnyos BИzier vezИrlУpont" -#: app/bezier_select.c:1971 app/bezier_select.c:3170 +#: app/bezier_select.c:1975 app/bezier_select.c:3176 msgid "bad bezier segment" msgstr "hibАs BИzier szakasz" -#: app/bezier_select.c:1988 app/bezier_select.c:2630 +#: app/bezier_select.c:1992 app/bezier_select.c:2636 #, c-format msgid "unknown coordinate space: %d" msgstr "ismeretlen koordinАtahely: %d" -#: app/bezier_select.c:2131 +#: app/bezier_select.c:2135 msgid "tried to convert an open bezier curve" msgstr "megprСbАlt nyitott BИzier gЖrbИt konvertАlni" -#: app/bezier_select.c:3126 +#: app/bezier_select.c:3132 #, fuzzy msgid "Paintbrush operation failed." msgstr "SzМnАtmenet vИgrehajtАsa sikertelen." -#: app/blend.c:261 +#: app/blend.c:264 #, fuzzy msgid "FG to BG (RGB)" msgstr "elУtИrbУl hАttИrbe (RGB)" -#: app/blend.c:263 +#: app/blend.c:266 #, fuzzy msgid "FG to BG (HSV)" msgstr "elУtИrbУl hАttИrbe (HSV)" -#: app/blend.c:265 +#: app/blend.c:268 msgid "FG to Transparent" msgstr "elУtИrbУl АtlАtszСba" -#: app/blend.c:267 +#: app/blend.c:270 msgid "Custom from editor" msgstr "egyИni" -#: app/blend.c:273 app/gradient.c:395 +#: app/blend.c:276 app/gradient.c:395 msgid "Linear" msgstr "lineАris" -#: app/blend.c:275 +#: app/blend.c:278 msgid "Bi-Linear" msgstr "dupla lineАris" -#: app/blend.c:277 +#: app/blend.c:280 msgid "Radial" msgstr "sugaras" -#: app/blend.c:279 +#: app/blend.c:282 msgid "Square" msgstr "szЖgletes" -#: app/blend.c:281 +#: app/blend.c:284 msgid "Conical (symmetric)" msgstr "kЗpos (szimmetrikus)" -#: app/blend.c:283 +#: app/blend.c:286 msgid "Conical (asymmetric)" msgstr "kЗpos (aszimmetrikus)" -#: app/blend.c:285 +#: app/blend.c:288 msgid "Shapeburst (angular)" msgstr "SzЖgletes shapeburst" -#: app/blend.c:287 +#: app/blend.c:290 msgid "Shapeburst (spherical)" msgstr "GЖmbЖlyШ shapeburst" -#: app/blend.c:289 +#: app/blend.c:292 msgid "Shapeburst (dimpled)" msgstr "GЖdrЖs shapeburst" -#: app/blend.c:291 +#: app/blend.c:294 #, fuzzy msgid "Spiral (clockwise)" msgstr "HSV (СramutatС jАrАsa szerinti szМnessИg)" -#: app/blend.c:293 +#: app/blend.c:296 #, fuzzy msgid "Spiral (anticlockwise)" msgstr "HSV (СramutatС jАrАsa szerinti szМnessИg)" -#: app/blend.c:299 app/preferences_dialog.c:1724 +#: app/blend.c:302 app/preferences_dialog.c:1759 msgid "None" msgstr "Nincs" -#: app/blend.c:301 +#: app/blend.c:304 msgid "Sawtooth wave" msgstr "FШrИszhullАm" -#: app/blend.c:303 +#: app/blend.c:306 msgid "Triangular wave" msgstr "HАromszЖghullАm" -#: app/blend.c:331 +#: app/blend.c:334 msgid "Offset:" msgstr "EltolАs:" #. the blend mode menu -#: app/blend.c:349 +#: app/blend.c:352 msgid "Blend:" msgstr "SzМnАtmenet:" #. the gradient type menu -#: app/blend.c:367 +#: app/blend.c:370 msgid "Gradient:" msgstr "аtmenet:" #. the repeat option -#: app/blend.c:385 +#: app/blend.c:388 msgid "Repeat:" msgstr "IsmИtlИs:" -#: app/blend.c:418 +#: app/blend.c:421 msgid "Adaptive supersampling" msgstr "IllesztИsi tЗlmintavИtelezИs" #. max depth scale -#: app/blend.c:440 +#: app/blend.c:443 msgid "Max depth:" msgstr "Max. mИlysИg:" #. threshold scale -#: app/blend.c:458 app/bucket_fill.c:137 app/iscissors.c:356 +#: app/blend.c:461 app/bucket_fill.c:136 app/iscissors.c:356 msgid "Threshold:" msgstr "KЭszЖbszint:" -#: app/blend.c:496 +#: app/blend.c:499 msgid "Blend: Invalid for indexed images." msgstr "SzМnАtmenet: indexelt kИpeknИl ИrvИnytelen." -#: app/blend.c:521 +#: app/blend.c:524 msgid "Blend: 0, 0" msgstr "SzМnАtmenet: 0, 0" -#: app/blend.c:583 +#: app/blend.c:587 msgid "Blend operation failed." msgstr "SzМnАtmenet vИgrehajtАsa sikertelen." -#: app/blend.c:589 +#: app/blend.c:593 #, fuzzy msgid "Blending..." msgstr "SzМnАtmenet" -#: app/blend.c:639 app/blend.c:649 +#: app/blend.c:643 app/blend.c:653 #, fuzzy msgid "Blend: " msgstr "SzМnАtmenet:" -#: app/blend.c:1295 +#: app/blend.c:1307 #, c-format msgid "gradient_render_pixel(): unknown gradient type %d" msgstr "gradient_render_pixel(): ismeretlen Аtmenet tМpus: %d" -#: app/blend.c:1430 +#: app/blend.c:1445 #, c-format msgid "gradient_fill_region(): unknown blend mode %d" msgstr "gradient_fill_region(): ismeretlen szМnАtmenet mСd: %d" -#: app/blend.c:1471 +#: app/blend.c:1486 #, c-format msgid "gradient_fill_region(): unknown gradient type %d" msgstr "gradient_fill_region(): ismeretlen Аtmenet tМpus: %d" -#: app/blend.c:1493 +#: app/blend.c:1508 #, c-format msgid "gradient_fill_region(): unknown repeat mode %d" msgstr "gradient_fill_region(): ismeretlen ismИtlИs mСd: %d" -#: app/brightness_contrast.c:176 +#: app/brightness_contrast.c:136 msgid "Brightness-Contrast Options" msgstr "FИnyerУ-kontraszt beАllМtАsok" -#: app/brightness_contrast.c:221 +#: app/brightness_contrast.c:172 msgid "Brightness-Contrast does not operate on indexed drawables." msgstr "A FИnyerУ-kontraszt beАllМtАs nem mШkЖdik indexelt rajzfelЭleten." #. Action area -#: app/brightness_contrast.c:252 app/channel_ops.c:104 -#: app/channels_dialog.c:1889 app/channels_dialog.c:2062 -#: app/color_balance.c:301 app/color_notebook.c:43 app/color_notebook.c:186 -#: app/color_select.c:154 app/color_select.c:209 app/convert.c:295 -#: app/curves.c:417 app/file_new_dialog.c:288 app/file_new_dialog.c:478 -#: app/hue_saturation.c:411 app/interface.c:877 app/interface.c:1263 -#: app/layers_dialog.c:3218 app/layers_dialog.c:3432 app/layers_dialog.c:3574 -#: app/layers_dialog.c:4049 app/levels.c:373 app/posterize.c:241 -#: app/preferences_dialog.c:1435 app/resize.c:114 app/threshold.c:318 +#: app/brightness_contrast.c:214 app/channel_ops.c:104 +#: app/channels_dialog.c:1864 app/channels_dialog.c:2049 +#: app/color_balance.c:273 app/color_notebook.c:49 app/color_notebook.c:192 +#: app/color_select.c:155 app/color_select.c:210 app/convert.c:295 +#: app/curves.c:517 app/file_new_dialog.c:292 app/file_new_dialog.c:482 +#: app/hue_saturation.c:361 app/interface.c:1009 app/interface.c:1395 +#: app/layers_dialog.c:2901 app/layers_dialog.c:3119 app/layers_dialog.c:3262 +#: app/layers_dialog.c:3738 app/levels.c:335 app/module_db.c:263 +#: app/posterize.c:199 app/preferences_dialog.c:1469 app/resize.c:114 +#: app/threshold.c:278 msgid "OK" msgstr "" -#: app/brightness_contrast.c:253 app/channel_ops.c:113 -#: app/channels_dialog.c:1890 app/channels_dialog.c:2063 -#: app/color_balance.c:302 app/color_notebook.c:44 app/color_notebook.c:187 -#: app/color_select.c:155 app/color_select.c:210 app/convert.c:296 -#: app/curves.c:418 app/file_new_dialog.c:290 app/file_new_dialog.c:480 -#: app/gdisplay_ops.c:353 app/gimpprogress.c:135 app/global_edit.c:593 +#: app/brightness_contrast.c:215 app/channel_ops.c:113 +#: app/channels_dialog.c:1865 app/channels_dialog.c:2050 +#: app/color_balance.c:274 app/color_notebook.c:50 app/color_notebook.c:193 +#: app/color_select.c:156 app/color_select.c:211 app/convert.c:296 +#: app/curves.c:518 app/file_new_dialog.c:294 app/file_new_dialog.c:484 +#: app/gdisplay_ops.c:349 app/gimpprogress.c:135 app/global_edit.c:705 #: app/gradient.c:1486 app/gradient.c:4566 app/gradient.c:4921 -#: app/hue_saturation.c:412 app/interface.c:788 app/interface.c:878 -#: app/layers_dialog.c:3219 app/layers_dialog.c:3433 app/layers_dialog.c:3575 -#: app/layers_dialog.c:3722 app/layers_dialog.c:4050 app/levels.c:374 -#: app/posterize.c:242 app/preferences_dialog.c:1439 app/resize.c:115 -#: app/threshold.c:319 +#: app/hue_saturation.c:362 app/interface.c:913 app/interface.c:1010 +#: app/layers_dialog.c:2902 app/layers_dialog.c:3120 app/layers_dialog.c:3263 +#: app/layers_dialog.c:3410 app/layers_dialog.c:3739 app/levels.c:336 +#: app/posterize.c:200 app/preferences_dialog.c:1473 app/resize.c:115 +#: app/threshold.c:279 msgid "Cancel" msgstr "MИgsem" -#: app/brightness_contrast.c:276 app/tools.c:491 +#: app/brightness_contrast.c:226 app/tools.c:517 msgid "Brightness-Contrast" msgstr "FИnyerУ-kontraszt" #. Create the brightness scale widget -#: app/brightness_contrast.c:292 +#: app/brightness_contrast.c:242 msgid "Brightness" msgstr "FИnyerУ" #. Create the contrast scale widget -#: app/brightness_contrast.c:325 +#: app/brightness_contrast.c:275 msgid "Contrast" msgstr "Kontraszt" #. The preview toggle -#: app/brightness_contrast.c:363 app/color_balance.c:481 app/curves.c:661 -#: app/fileops.c:395 app/hue_saturation.c:620 app/levels.c:583 -#: app/palette.c:2849 app/posterize.c:297 app/threshold.c:404 +#: app/brightness_contrast.c:313 app/color_balance.c:438 app/curves.c:651 +#: app/fileops.c:395 app/hue_saturation.c:572 app/levels.c:531 +#: app/palette.c:2849 app/posterize.c:246 app/threshold.c:354 msgid "Preview" msgstr "BemutatСkИp" #. The close push button -#: app/brush_edit.c:38 app/brush_select.c:133 app/by_color_select.c:678 -#: app/color_notebook.c:181 app/color_picker.c:208 app/color_select.c:204 -#: app/colormap_dialog.i.c:94 app/colormap_dialog.i.c:103 app/crop.c:1011 -#: app/devices.c:124 app/docindexif.c:95 app/errorconsole.c:228 -#: app/gdisplay_ops.c:352 app/gradient.c:646 app/gradient_select.c:76 -#: app/info_window.c:121 app/layers_dialog.c:419 app/palette.c:2235 -#: app/palette_select.c:59 app/pattern_select.c:90 app/tips_dialog.c:146 -#: app/tools.c:716 +#: app/brush_edit.c:38 app/brush_select.c:135 app/by_color_select.c:664 +#: app/color_notebook.c:187 app/color_picker.c:209 app/color_select.c:205 +#: app/colormap_dialog.i.c:94 app/colormap_dialog.i.c:103 app/crop.c:1027 +#: app/devices.c:124 app/docindexif.c:100 app/errorconsole.c:230 +#: app/gdisplay_ops.c:348 app/gradient.c:646 app/gradient_select.c:76 +#: app/histogram_tool.c:262 app/info_window.c:121 app/lc_dialog.c:196 +#: app/palette.c:2235 app/palette_select.c:59 app/pattern_select.c:90 +#: app/tips_dialog.c:146 app/tools.c:874 libgimp/gimpfileselection.c:356 +#: libgimp/gimpunitmenu.c:518 msgid "Close" msgstr "BezАr" @@ -416,7 +420,7 @@ msgid "Brush Editor" msgstr "Ecset szerkesztУ" #. brush radius scale -#: app/brush_edit.c:240 app/color_picker.c:163 +#: app/brush_edit.c:240 app/color_picker.c:164 app/tool_options.c:284 msgid "Radius:" msgstr "SugАr:" @@ -435,70 +439,71 @@ msgstr "N msgid "Angle:" msgstr "DУlИsszЖg:" -#: app/brush_select.c:132 app/palette.c:2243 app/pattern_select.c:89 +#: app/brush_select.c:134 app/module_db.c:307 app/palette.c:2243 +#: app/pattern_select.c:89 msgid "Refresh" msgstr "FrissМt" -#: app/brush_select.c:153 +#: app/brush_select.c:155 msgid "Brush Selection" msgstr "Ecset vАlasztАs" -#: app/brush_select.c:241 app/pattern_select.c:147 +#: app/brush_select.c:244 app/pattern_select.c:147 msgid "Active" msgstr "AktМv" #. Create the opacity scale widget -#: app/brush_select.c:271 app/layers_dialog.c:756 +#: app/brush_select.c:274 app/layers_dialog.c:334 app/tool_options.c:593 msgid "Opacity:" msgstr "LАthatСsАg:" #. Create the paint mode option menu -#: app/brush_select.c:289 app/layers_dialog.c:733 +#: app/brush_select.c:292 app/layers_dialog.c:307 app/tool_options.c:623 msgid "Mode:" msgstr "MСd:" -#: app/brush_select.c:312 +#: app/brush_select.c:315 msgid "Edit Brush" msgstr "Ecset szerkesztИs" -#: app/brush_select.c:318 +#: app/brush_select.c:321 msgid "New Brush" msgstr "зj ecset" -#: app/brush_select.c:340 +#: app/brush_select.c:343 msgid "Spacing:" msgstr "TАvolsАg:" -#: app/brush_select.c:531 +#: app/brush_select.c:536 msgid "failed to run brush callback function" msgstr "nem sikerЭlt futtatni az ecset visszahМvАs fЭggvИnyИt" -#: app/brush_select.c:1187 +#: app/brush_select.c:1192 msgid "" "We are all fresh out of brush editors today,\n" "please write your own or try back tomorrow\n" msgstr "" -#: app/bucket_fill.c:114 +#: app/bucket_fill.c:113 #, fuzzy msgid "FG Color Fill" msgstr "KitЖltИs szМnnel" -#: app/bucket_fill.c:115 +#: app/bucket_fill.c:114 #, fuzzy msgid "BG Color Fill" msgstr "KitЖltИs szМnnel" -#: app/bucket_fill.c:116 +#: app/bucket_fill.c:115 msgid "Pattern Fill" msgstr "KitЖltИs mintАval" -#: app/bucket_fill.c:157 app/color_picker.c:138 +#: app/bucket_fill.c:156 app/color_picker.c:139 app/tool_options.c:358 msgid "Sample Merged" msgstr "MintakeverИs" #. fill type -#: app/bucket_fill.c:165 app/file_new_dialog.c:838 +#: app/bucket_fill.c:164 app/file_new_dialog.c:842 msgid "Fill Type" msgstr "KitЖltИs tМpusa" @@ -506,61 +511,61 @@ msgstr "Kit msgid "Bucket Fill operation failed." msgstr "A kitЖltИs mШvelet nem sikerЭlt." -#: app/bucket_fill.c:361 +#: app/bucket_fill.c:344 msgid "No available patterns for this operation." msgstr "Nincs elИrhetУ minta a mШvelethez." -#: app/by_color_select.c:557 app/paint_funcs.c:100 +#: app/by_color_select.c:542 app/paint_funcs.c:100 msgid "Replace" msgstr "CserИl" -#: app/by_color_select.c:558 app/colormap_dialog.i.c:99 +#: app/by_color_select.c:543 app/colormap_dialog.i.c:99 msgid "Add" msgstr "HozzАad" -#: app/by_color_select.c:559 app/layers_dialog.c:282 +#: app/by_color_select.c:544 app/layers_dialog.c:215 app/tool_options.c:784 msgid "Subtract" msgstr "KivonАs" -#: app/by_color_select.c:560 +#: app/by_color_select.c:545 msgid "Intersect" msgstr "MetszИs" -#: app/by_color_select.c:578 +#: app/by_color_select.c:564 msgid "By Color Selection" msgstr "SzМn szerinti kijelЖlИs" -#: app/by_color_select.c:621 +#: app/by_color_select.c:607 msgid "Inactive" msgstr "InaktМv" #. Create the selection mode radio box -#: app/by_color_select.c:628 +#: app/by_color_select.c:614 msgid "Selection Mode" msgstr "KivАlasztАs mСdja" -#: app/by_color_select.c:652 +#: app/by_color_select.c:638 msgid "Fuzziness Threshold" msgstr "EltИrИsi kЭszЖbszint" #. The reset push button -#: app/by_color_select.c:668 app/curves.c:416 app/file_new_dialog.c:479 -#: app/tools.c:715 app/transform_core.c:116 +#: app/by_color_select.c:654 app/curves.c:516 app/file_new_dialog.c:483 +#: app/tools.c:873 app/transform_core.c:116 msgid "Reset" msgstr "зjra" -#: app/channel.c:190 app/channel.c:192 app/layer.c:314 app/layer.c:316 +#: app/channel.c:191 app/channel.c:193 app/layer.c:316 app/layer.c:318 msgid "copy" msgstr "mАsol" #. formulate the new layer_mask name -#: app/channel.c:198 app/gradient.c:1359 app/layer.c:322 app/layer.c:1481 +#: app/channel.c:199 app/gradient.c:1359 app/layer.c:324 app/layer.c:1486 #, c-format msgid "%s copy" msgstr "%s mАsolАs" #. Create the new channel -#: app/channel.c:503 +#: app/channel.c:521 msgid "Selection Mask" msgstr "KijelЖlИsi maszk" @@ -588,12 +593,12 @@ msgstr "" msgid "Fill Options" msgstr "KitЖltИs beАllМtАsok" -#: app/channel_ops.c:164 app/file_new_dialog.c:133 app/file_new_dialog.c:493 -#: app/layers_dialog.c:3210 +#: app/channel_ops.c:164 app/file_new_dialog.c:135 app/file_new_dialog.c:497 +#: app/layers_dialog.c:2893 msgid "Background" msgstr "HАttИr" -#: app/channel_ops.c:175 app/file_new_dialog.c:495 app/layers_dialog.c:3212 +#: app/channel_ops.c:175 app/file_new_dialog.c:499 app/layers_dialog.c:2895 msgid "Transparent" msgstr "аtlАtszС" @@ -602,254 +607,279 @@ msgstr " msgid "Offset by (x/2),(y/2)" msgstr "" -#: app/channels_dialog.c:159 app/channels_dialog.c:193 -#: app/channels_dialog.c:1936 +#: app/channels_dialog.c:165 app/channels_dialog.c:1911 msgid "New Channel" msgstr "зj csatorna" -#: app/channels_dialog.c:161 app/channels_dialog.c:194 +#: app/channels_dialog.c:167 msgid "Raise Channel" msgstr "Feljebb" -#: app/channels_dialog.c:163 app/channels_dialog.c:195 +#: app/channels_dialog.c:169 msgid "Lower Channel" msgstr "Lejjebb" -#: app/channels_dialog.c:165 app/channels_dialog.c:196 +#: app/channels_dialog.c:171 msgid "Duplicate Channel" msgstr "Csatorna mАsolАsa" -#: app/channels_dialog.c:167 app/channels_dialog.c:197 -msgid "Delete Channel" -msgstr "Csatorna tЖrlИse" - -#: app/channels_dialog.c:169 -msgid "Channel To Selection" -msgstr "CsatornАbСl kijelЖlИs" - -#: app/channels_dialog.c:171 -#, fuzzy -msgid "Add To Selection" -msgstr "аtlАtszatlansАg kijelЖlИssИ" - #: app/channels_dialog.c:173 -#, fuzzy -msgid "Subtract From Selection" -msgstr "CsatornАbСl kijelЖlИs" - -#: app/channels_dialog.c:175 -#, fuzzy -msgid "Intersect With Selection" -msgstr "Ecset vАlasztАs" - -#: app/channels_dialog.c:198 msgid "" -"Channel To Selection \n" +"Channel to Selection \n" " Add Subtract Intersect" msgstr "" -#: app/channels_dialog.c:633 app/channels_dialog.c:687 +#: app/channels_dialog.c:178 +msgid "Delete Channel" +msgstr "Csatorna tЖrlИse" + +#: app/channels_dialog.c:537 app/menus.c:273 +#, fuzzy +msgid "/New Channel" +msgstr "зj csatorna" + +#: app/channels_dialog.c:540 app/menus.c:274 +#, fuzzy +msgid "/Raise Channel" +msgstr "Feljebb" + +#: app/channels_dialog.c:544 app/menus.c:275 +#, fuzzy +msgid "/Lower Channel" +msgstr "Lejjebb" + +#: app/channels_dialog.c:548 app/menus.c:276 +#, fuzzy +msgid "/Duplicate Channel" +msgstr "Csatorna mАsolАsa" + +#: app/channels_dialog.c:552 app/menus.c:278 +#, fuzzy +msgid "/Channel to Selection" +msgstr "CsatornАbСl kijelЖlИs" + +#: app/channels_dialog.c:555 app/menus.c:283 +#, fuzzy +msgid "/Delete Channel" +msgstr "Csatorna tЖrlИse" + +#: app/channels_dialog.c:559 app/menus.c:279 +#, fuzzy +msgid "/Add to Selection" +msgstr "аtlАtszatlansАg kijelЖlИssИ" + +#: app/channels_dialog.c:560 app/menus.c:280 +#, fuzzy +msgid "/Subtract From Selection" +msgstr "CsatornАbСl kijelЖlИs" + +#: app/channels_dialog.c:561 app/menus.c:281 +#, fuzzy +msgid "/Intersect With Selection" +msgstr "Ecset vАlasztАs" + +#: app/channels_dialog.c:608 app/channels_dialog.c:662 #, c-format msgid "error in %s at %d: this shouldn't happen." msgstr "" -#: app/channels_dialog.c:1166 app/color_balance.c:413 app/curves.c:424 -#: app/levels.c:282 +#: app/channels_dialog.c:1137 app/color_balance.c:370 app/curves.c:405 +#: app/histogram_tool.c:279 app/levels.c:231 msgid "Red" msgstr "VЖrЖs" -#: app/channels_dialog.c:1170 app/color_balance.c:440 app/curves.c:425 -#: app/levels.c:283 +#: app/channels_dialog.c:1141 app/color_balance.c:397 app/curves.c:406 +#: app/histogram_tool.c:280 app/levels.c:232 msgid "Green" msgstr "ZЖld" -#: app/channels_dialog.c:1174 app/color_balance.c:467 app/curves.c:426 -#: app/levels.c:284 +#: app/channels_dialog.c:1145 app/color_balance.c:424 app/curves.c:407 +#: app/histogram_tool.c:281 app/levels.c:233 msgid "Blue" msgstr "KИk" -#: app/channels_dialog.c:1178 +#: app/channels_dialog.c:1149 msgid "Gray" msgstr "SzЭrke" -#: app/channels_dialog.c:1182 +#: app/channels_dialog.c:1153 msgid "Indexed" msgstr "Indexelt" -#: app/channels_dialog.c:1908 +#: app/channels_dialog.c:1883 msgid "New Channel Options" msgstr "зj csatorna beАllМtАsok" #. the name entry hbox, label and entry -#: app/channels_dialog.c:1926 +#: app/channels_dialog.c:1901 msgid "Channel name: " msgstr "Csatorna neve: " #. the opacity scale -#: app/channels_dialog.c:1940 +#: app/channels_dialog.c:1915 msgid "Fill Opacity: " msgstr "KitЖltИs АtlАtszatlansАg: " -#: app/channels_dialog.c:2087 +#: app/channels_dialog.c:2066 msgid "Edit Channel Attributes" msgstr "Csatorna tulajdonsАgok szerkesztИse" -#: app/channels_dialog.c:2107 +#: app/channels_dialog.c:2086 msgid "Channel name:" msgstr "Csatorna neve: " -#: app/channels_dialog.c:2122 +#: app/channels_dialog.c:2101 msgid "Fill Opacity" msgstr "FeltЖltИs АtlАtszatlansАga" -#: app/clone.c:134 +#: app/clone.c:137 msgid "Image Source" msgstr "KИp forrАs" -#: app/clone.c:135 +#: app/clone.c:138 msgid "Pattern Source" msgstr "Minta forrАs" -#: app/clone.c:139 +#: app/clone.c:144 #, fuzzy msgid "Non Aligned" msgstr "IgazМtott" -#: app/clone.c:140 +#: app/clone.c:145 msgid "Aligned" msgstr "IgazМtott" -#: app/clone.c:141 +#: app/clone.c:146 msgid "Registered" msgstr "" #. the radio frame and box -#: app/clone.c:156 +#: app/clone.c:162 msgid "Source" msgstr "ForrАs" #. the radio frame and box -#: app/clone.c:181 +#: app/clone.c:187 #, fuzzy msgid "Alignment" msgstr "IgazМtott" -#: app/clone.c:308 +#: app/clone.c:314 msgid "No patterns available for this operation." msgstr "Nincs felhasznАlhatС minta a mШvelethez." -#: app/color_balance.c:222 +#: app/color_balance.c:184 msgid "Color Balance Options" msgstr "SzМnegyensЗly beАllМtАsok" -#: app/color_balance.c:269 +#: app/color_balance.c:222 msgid "Color balance operates only on RGB color drawables." msgstr "A szМnegyensЗly csak RGB szМnes rajzfelЭleten mШkЖdik." -#: app/color_balance.c:323 +#: app/color_balance.c:279 msgid "Shadows" msgstr "аrnyИkok" -#: app/color_balance.c:324 +#: app/color_balance.c:280 msgid "Midtones" msgstr "KЖzИpszМnek" -#: app/color_balance.c:325 +#: app/color_balance.c:281 msgid "Highlights" msgstr "FИnyes szМnek" -#: app/color_balance.c:342 app/tools.c:476 +#: app/color_balance.c:299 app/tools.c:502 msgid "Color Balance" msgstr "SzМnegyensЗly" -#: app/color_balance.c:357 +#: app/color_balance.c:314 msgid "Color Levels: " msgstr "SzМn szintek: " #. Create the cyan-red scale widget -#: app/color_balance.c:396 +#: app/color_balance.c:353 msgid "Cyan" msgstr "EnciАn" #. Create the magenta-green scale widget -#: app/color_balance.c:423 +#: app/color_balance.c:380 msgid "Magenta" msgstr "BМbor" #. Create the yellow-blue scale widget -#: app/color_balance.c:450 +#: app/color_balance.c:407 msgid "Yellow" msgstr "SАrga" #. The preserve luminosity toggle -#: app/color_balance.c:490 +#: app/color_balance.c:447 msgid "Preserve Luminosity" msgstr "FИnyessИg megУrzИse" -#: app/color_notebook.c:111 app/color_select.c:186 +#: app/color_notebook.c:117 app/color_select.c:187 msgid "Color Selection" msgstr "SzМn kivАlasztАs" -#: app/color_notebook.c:182 app/color_select.c:205 +#: app/color_notebook.c:188 app/color_select.c:206 msgid "Revert to Old Color" msgstr "Vissza a rИgi szМnhez" -#: app/color_picker.c:127 +#: app/color_picker.c:128 msgid "Color Picker Options" msgstr "SzМnpipetta beАllМtАsok" -#: app/color_picker.c:153 +#: app/color_picker.c:154 #, fuzzy msgid "Sample Average" msgstr "MintakeverИs" -#: app/color_picker.c:224 app/tools.c:310 +#: app/color_picker.c:225 app/tools.c:306 msgid "Color Picker" msgstr "SzМnpipetta" -#: app/color_picker.c:231 app/color_picker.c:241 +#: app/color_picker.c:232 app/color_picker.c:242 #, fuzzy msgid "Red:" msgstr "VЖrЖs" -#: app/color_picker.c:232 app/color_picker.c:242 +#: app/color_picker.c:233 app/color_picker.c:243 #, fuzzy msgid "Green:" msgstr "ZЖld" -#: app/color_picker.c:233 app/color_picker.c:243 +#: app/color_picker.c:234 app/color_picker.c:244 #, fuzzy msgid "Blue:" msgstr "KИk" -#: app/color_picker.c:234 app/color_picker.c:240 app/color_picker.c:249 +#: app/color_picker.c:235 app/color_picker.c:241 app/color_picker.c:250 #, fuzzy msgid "Alpha:" msgstr "Alfa" -#: app/color_picker.c:235 app/color_picker.c:250 app/color_select.c:386 -#: app/colormap_dialog.i.c:199 +#: app/color_picker.c:236 app/color_picker.c:251 app/color_select.c:387 +#: app/colormap_dialog.i.c:201 msgid "Hex Triplet:" msgstr "Hexa hАrmas:" -#: app/color_picker.c:239 app/colormap_dialog.i.c:192 +#: app/color_picker.c:240 app/colormap_dialog.i.c:194 #, fuzzy msgid "Index:" msgstr "Indexelt" -#: app/color_picker.c:244 +#: app/color_picker.c:245 msgid "Hex Triplet" msgstr "Hexa hАrmas" -#: app/color_picker.c:248 app/histogram_tool.c:311 +#: app/color_picker.c:249 app/histogram_tool.c:271 #, fuzzy msgid "Intensity:" msgstr "IntenzitАs" -#: app/color_picker.c:541 app/color_picker.c:542 app/color_picker.c:543 -#: app/color_picker.c:544 app/color_picker.c:545 app/color_picker.c:546 -#: app/color_picker.c:547 app/color_picker.c:560 app/color_picker.c:572 -#: app/color_picker.c:587 +#: app/color_picker.c:547 app/color_picker.c:548 app/color_picker.c:549 +#: app/color_picker.c:550 app/color_picker.c:551 app/color_picker.c:552 +#: app/color_picker.c:553 app/color_picker.c:566 app/color_picker.c:578 +#: app/color_picker.c:593 msgid "N/A" msgstr "???" @@ -864,7 +894,7 @@ msgid "Indexed Color Palette" msgstr "SzМnpaletta" #. The GIMP image option menu -#: app/colormap_dialog.i.c:136 app/layers_dialog.c:359 +#: app/colormap_dialog.i.c:136 app/lc_dialog.c:131 msgid "Image:" msgstr "KИp:" @@ -873,47 +903,47 @@ msgstr "K msgid "Operations" msgstr "MegnyitАs beАllМtАsok" -#: app/colormap_dialog.i.c:831 app/layers_dialog.c:879 +#: app/colormap_dialog.i.c:833 app/lc_dialog.c:614 msgid "none" msgstr "---" -#: app/commands.c:366 +#: app/commands.c:342 msgid "Border Selection" msgstr "HАttИr kivАlasztАs" -#: app/commands.c:366 +#: app/commands.c:343 msgid "Border selection by:" msgstr "" -#: app/commands.c:384 +#: app/commands.c:360 msgid "Feather Selection" msgstr "" -#: app/commands.c:384 +#: app/commands.c:361 msgid "Feather selection by:" msgstr "" -#: app/commands.c:402 +#: app/commands.c:378 msgid "Grow Selection" msgstr "KijelЖlИs nЖvelИse" -#: app/commands.c:402 +#: app/commands.c:379 msgid "Grow selection by:" msgstr "" -#: app/commands.c:420 +#: app/commands.c:396 msgid "Shrink Selection" msgstr "KijelЖlИs szШkМtИse" -#: app/commands.c:420 +#: app/commands.c:397 msgid "Shrink selection by:" msgstr "" -#: app/commands.c:1199 +#: app/commands.c:1179 msgid "Resize Error: Both width and height must be greater than zero." msgstr "" -#: app/commands.c:1248 +#: app/commands.c:1228 msgid "Scale Error: Both width and height must be greater than zero." msgstr "" @@ -970,118 +1000,118 @@ msgstr " msgid "Convolve Type" msgstr "MАzolАs" -#: app/crop.c:169 app/crop.c:1009 +#: app/crop.c:170 app/crop.c:1025 msgid "Crop" msgstr "KivАgАs" -#: app/crop.c:169 app/crop.c:1010 +#: app/crop.c:170 app/crop.c:1026 msgid "Resize" msgstr "аtmИretezИs" -#: app/crop.c:175 +#: app/crop.c:176 #, fuzzy msgid "Crop & Resize Options" msgstr "KivАgАs beАllМtАsok" -#: app/crop.c:186 +#: app/crop.c:187 msgid "Current layer only" msgstr "Csak a jelenlegi rИteget" #. enlarge toggle -#: app/crop.c:197 +#: app/crop.c:198 msgid "Allow Enlarging" msgstr "" #. tool toggle -#: app/crop.c:208 app/flip_tool.c:84 +#: app/crop.c:209 app/flip_tool.c:85 msgid "Tool Toggle" msgstr "" -#: app/crop.c:500 app/crop.c:508 +#: app/crop.c:501 app/crop.c:509 #, fuzzy msgid "Crop: " msgstr "KivАgАs" -#: app/crop.c:997 +#: app/crop.c:1005 msgid "Crop: 0 x 0" msgstr "KivАgАs: 0 x 0" #. create the info dialog -#: app/crop.c:1025 +#: app/crop.c:1033 #, fuzzy msgid "Crop & Resize Information" msgstr "KivАgАs informАciС" #. add the information fields -#: app/crop.c:1028 +#: app/crop.c:1036 #, fuzzy msgid "Origin X:" msgstr "KezdУ X: " -#: app/crop.c:1031 app/file_new_dialog.c:749 app/resize.c:334 app/resize.c:419 -#: app/resize.c:577 app/rotate_tool.c:108 app/scale_tool.c:99 +#: app/crop.c:1039 app/file_new_dialog.c:753 app/resize.c:334 app/resize.c:419 +#: app/resize.c:577 app/rotate_tool.c:109 app/scale_tool.c:99 #: app/shear_tool.c:83 msgid "Y:" msgstr "" #. the pixel size labels -#: app/crop.c:1059 app/file_new_dialog.c:610 app/file_new_dialog.c:628 +#: app/crop.c:1052 app/file_new_dialog.c:614 app/file_new_dialog.c:632 +#: app/tool_options.c:405 #, fuzzy msgid "Width:" msgstr "SzИlessИg: " -#: app/crop.c:1062 app/file_new_dialog.c:616 app/file_new_dialog.c:634 -#: app/layers_dialog.c:3271 app/resize.c:245 app/resize.c:270 app/resize.c:514 -#: app/scale_tool.c:78 app/scale_tool.c:85 +#: app/crop.c:1055 app/file_new_dialog.c:620 app/file_new_dialog.c:638 +#: app/layers_dialog.c:2954 app/resize.c:245 app/resize.c:270 app/resize.c:514 +#: app/scale_tool.c:78 app/scale_tool.c:85 app/tool_options.c:427 #, fuzzy msgid "Height:" msgstr "MagassАg: " -#: app/crop.c:1097 +#: app/crop.c:1077 #, fuzzy msgid "From Selection" msgstr "KijelЖlИs nЖvelИse" -#: app/crop.c:1103 -#, fuzzy -msgid "Automatic" -msgstr "/Automatikus" +#: app/crop.c:1083 +msgid "Auto Shrink" +msgstr "" -#: app/curves.c:373 +#: app/curves.c:368 msgid "Curves Options" msgstr "" -#: app/curves.c:423 app/layers_dialog.c:288 app/levels.c:281 -#: app/paint_funcs.c:97 +#: app/curves.c:404 app/histogram_tool.c:278 app/layers_dialog.c:227 +#: app/levels.c:230 app/paint_funcs.c:97 app/tool_options.c:790 msgid "Value" msgstr "иrtИk" -#: app/curves.c:427 app/levels.c:285 +#: app/curves.c:408 app/levels.c:234 msgid "Alpha" msgstr "Alfa" -#: app/curves.c:433 -msgid "Smooth" -msgstr "SМma" - -#: app/curves.c:434 -msgid "Free" -msgstr "SzabadkИzi" - -#: app/curves.c:445 +#: app/curves.c:419 msgid "Curves for indexed drawables cannot be adjusted." msgstr "" -#: app/curves.c:560 app/tools.c:551 +#: app/curves.c:523 +msgid "Smooth" +msgstr "SМma" + +#: app/curves.c:524 +msgid "Free" +msgstr "SzabadkИzi" + +#: app/curves.c:550 app/tools.c:577 msgid "Curves" msgstr "" -#: app/curves.c:574 +#: app/curves.c:564 msgid "Modify Curves for Channel: " msgstr "" #. The option menu for selecting the drawing method -#: app/curves.c:648 +#: app/curves.c:638 msgid "Curve Type: " msgstr "" @@ -1089,7 +1119,7 @@ msgstr "" msgid "Desaturate operates only on RGB color drawables." msgstr "" -#: app/devices.c:123 app/palette.c:2187 app/preferences_dialog.c:1437 +#: app/devices.c:123 app/palette.c:2187 app/preferences_dialog.c:1471 msgid "Save" msgstr "Kiment" @@ -1125,49 +1155,49 @@ msgstr "" msgid "There's no selection to remove." msgstr "" -#: app/docindexif.c:75 +#: app/docindexif.c:80 msgid "Open" msgstr "Megnyit" -#: app/docindexif.c:75 +#: app/docindexif.c:80 msgid "Open a file" msgstr "FАjl megnyitАsa" -#: app/docindexif.c:80 +#: app/docindexif.c:85 msgid "Up" msgstr "Fel" -#: app/docindexif.c:80 +#: app/docindexif.c:85 msgid "Move the selected entry up in the index" msgstr "" -#: app/docindexif.c:85 +#: app/docindexif.c:90 msgid "Down" msgstr "Le" -#: app/docindexif.c:85 +#: app/docindexif.c:90 msgid "Move the selected entry down in the index" msgstr "" -#: app/docindexif.c:90 +#: app/docindexif.c:95 msgid "Remove" msgstr "TЖrЖl" -#: app/docindexif.c:90 +#: app/docindexif.c:95 msgid "Remove the selected entry from the index" msgstr "" -#: app/docindexif.c:95 +#: app/docindexif.c:100 msgid "Close the Document Index" msgstr "" #. Set the GOWindow title -#: app/docindexif.c:213 +#: app/docindexif.c:218 msgid "Document Index" msgstr "Dokumentum index" #. Set the initial status message -#: app/docindexif.c:219 +#: app/docindexif.c:224 msgid "GTK successfully started" msgstr "A GTK sikeresen elindult" @@ -1175,11 +1205,11 @@ msgstr "A GTK sikeresen elindult" msgid "drawable_fill called with unknown fill type" msgstr "" -#: app/edit_selection.c:164 +#: app/edit_selection.c:163 msgid "Move: 0, 0" msgstr "" -#: app/edit_selection.c:443 app/edit_selection.c:453 +#: app/edit_selection.c:442 app/edit_selection.c:452 #, fuzzy msgid "Move: " msgstr "MСd: " @@ -1194,41 +1224,41 @@ msgid "Hard edge" msgstr "иles szИlШ" #. the incremental toggle -#: app/eraser.c:108 app/paintbrush.c:258 +#: app/eraser.c:108 app/paintbrush.c:257 msgid "Incremental" msgstr "жsszeadСdС" -#: app/errorconsole.c:168 +#: app/errorconsole.c:170 #, c-format msgid "Error opening file %s: %s" msgstr "Hiba a(z) %s fАjl megnyitАsakor: %s" -#: app/errorconsole.c:183 +#: app/errorconsole.c:185 msgid "Can't save, nothing selected!" msgstr "Nem lehet menteni, nincs kijelЖlИs!" -#: app/errorconsole.c:187 +#: app/errorconsole.c:189 msgid "Save error log to file..." msgstr "A hibanaplС fАjlba mentИse..." -#: app/errorconsole.c:244 +#: app/errorconsole.c:246 msgid "GIMP Error console" msgstr "GIMP hibakonzol" -#: app/errorconsole.c:259 +#: app/errorconsole.c:261 msgid "Write all errors to file..." msgstr "Minden hiba fАjlba mentИse..." -#: app/errorconsole.c:266 +#: app/errorconsole.c:268 msgid "Write selection to file..." msgstr "KijelЖlИs fАjlba mentИse..." -#: app/file_new_dialog.c:299 +#: app/file_new_dialog.c:303 #, fuzzy msgid "Confirm Image Size" msgstr "аtmИretezИs" -#: app/file_new_dialog.c:313 +#: app/file_new_dialog.c:317 #, c-format msgid "" "You are trying to create an image which\n" @@ -1244,85 +1274,85 @@ msgid "" "preferences dialog." msgstr "" -#: app/file_new_dialog.c:407 +#: app/file_new_dialog.c:411 #, fuzzy, c-format msgid "%d Bytes" msgstr "B" -#: app/file_new_dialog.c:409 +#: app/file_new_dialog.c:413 #, c-format msgid "%.2f KB" msgstr "" -#: app/file_new_dialog.c:411 +#: app/file_new_dialog.c:415 #, c-format msgid "%.1f KB" msgstr "" -#: app/file_new_dialog.c:413 +#: app/file_new_dialog.c:417 #, c-format msgid "%d KB" msgstr "" -#: app/file_new_dialog.c:415 +#: app/file_new_dialog.c:419 #, c-format msgid "%.2f MB" msgstr "" -#: app/file_new_dialog.c:417 +#: app/file_new_dialog.c:421 #, c-format msgid "%.1f MB" msgstr "" #. bytes per pixel #. alpha channel -#: app/file_new_dialog.c:442 +#: app/file_new_dialog.c:446 #, fuzzy, c-format msgid "Image Size: %s" msgstr "аtmИretezИs" -#: app/file_new_dialog.c:485 app/gdisplay.c:197 app/preferences_dialog.c:1598 +#: app/file_new_dialog.c:489 app/gdisplay.c:202 app/preferences_dialog.c:1633 msgid "RGB" msgstr "" -#: app/file_new_dialog.c:486 app/info_window.c:50 app/info_window.c:241 -#: app/preferences_dialog.c:1599 +#: app/file_new_dialog.c:490 app/info_window.c:50 app/info_window.c:241 +#: app/preferences_dialog.c:1634 msgid "Grayscale" msgstr "fekete-fehИr" -#: app/file_new_dialog.c:492 app/layers_dialog.c:3209 +#: app/file_new_dialog.c:496 app/layers_dialog.c:2892 msgid "Foreground" msgstr "ElУtИr" -#: app/file_new_dialog.c:494 app/layers_dialog.c:3211 +#: app/file_new_dialog.c:498 app/layers_dialog.c:2894 msgid "White" msgstr "FehИr" -#: app/file_new_dialog.c:568 +#: app/file_new_dialog.c:572 msgid "New Image" msgstr "зj kИp" -#: app/file_new_dialog.c:674 app/preferences_dialog.c:1507 +#: app/file_new_dialog.c:678 app/preferences_dialog.c:1542 msgid "Pixels" msgstr "Pixel" #. the resolution labels -#: app/file_new_dialog.c:743 app/resize.c:571 +#: app/file_new_dialog.c:747 app/resize.c:571 #, fuzzy msgid "Resolution X:" msgstr "FelbontАs" -#: app/file_new_dialog.c:764 app/resize.c:592 +#: app/file_new_dialog.c:768 app/resize.c:592 #, fuzzy msgid "pixels/%a" msgstr "Pixel" #. frame for Image Type -#: app/file_new_dialog.c:808 +#: app/file_new_dialog.c:812 msgid "Image Type" msgstr "kИp tМpus" -#: app/fileops.c:222 app/fileops.c:251 +#: app/fileops.c:224 app/fileops.c:253 msgid "Load Image" msgstr "KИp betЖltИse" @@ -1331,322 +1361,127 @@ msgstr "K msgid "Open Options" msgstr "MegnyitАs beАllМtАsok" -#: app/fileops.c:278 app/fileops.c:479 +#: app/fileops.c:278 app/fileops.c:482 msgid "Determine file type:" msgstr "" -#: app/fileops.c:441 app/fileops.c:463 +#: app/fileops.c:443 app/fileops.c:465 msgid "Save Image" msgstr "KИp kimentИse" -#: app/fileops.c:471 +#: app/fileops.c:474 msgid "Save Options" msgstr "KimentИs beАllМtАsok" -#: app/fileops.c:522 +#: app/fileops.c:526 msgid "Can't revert. No filename associated with this image" msgstr "" -#: app/fileops.c:536 +#: app/fileops.c:540 #, fuzzy msgid "Revert failed." msgstr "Sikertelen mentИs: " -#: app/fileops.c:1212 app/fileops.c:1302 +#: app/fileops.c:1364 app/fileops.c:1454 msgid "Open failed: " msgstr "Sikertelen megnyitАs: " -#: app/fileops.c:1368 +#: app/fileops.c:1520 #, c-format msgid "%s is an irregular file (%s)" msgstr "" -#: app/fileops.c:1382 app/fileops.c:1485 +#: app/fileops.c:1534 app/fileops.c:1641 msgid "Save failed: " msgstr "Sikertelen mentИs: " -#: app/fileops.c:1394 app/fileops.c:1407 -msgid "/File/Open" -msgstr "/FАjl/Megnyit" +#: app/fileops.c:1546 app/fileops.c:1547 app/fileops.c:1559 app/fileops.c:1560 +#: app/menus.c:58 app/menus.c:90 +#, fuzzy +msgid "/File/Open" +msgstr "/FАjl/Megnyit" -#: app/fileops.c:1395 app/fileops.c:1408 -msgid "/File/Open" -msgstr "/FАjl/Megnyit" +#: app/fileops.c:1548 app/fileops.c:1564 app/menus.c:91 +#, fuzzy +msgid "/File/Save" +msgstr "/FАjl/MentИs" -#: app/fileops.c:1396 app/fileops.c:1409 -msgid "/File/Save" -msgstr "/FАjl/MentИs" +#: app/fileops.c:1549 app/fileops.c:1565 app/menus.c:92 +#, fuzzy +msgid "/File/Save as" +msgstr "/FАjl/MentИs mАskИnt" -#: app/fileops.c:1397 app/fileops.c:1410 -msgid "/File/Save as" -msgstr "/FАjl/MentИs mАskИnt" - -#: app/fileops.c:1430 +#: app/fileops.c:1586 #, c-format msgid "%s exists, overwrite?" msgstr "%s mАr lИtezik. FelЭlМrod?" -#: app/fileops.c:1436 +#: app/fileops.c:1592 msgid "File Exists!" msgstr "A fАjl mАr lИtezik!" -#: app/flip_tool.c:70 app/preferences_dialog.c:1553 -#: app/preferences_dialog.c:2215 +#: app/flip_tool.c:71 app/preferences_dialog.c:1588 +#: app/preferences_dialog.c:2290 msgid "Horizontal" msgstr "VМzszintes" -#: app/flip_tool.c:70 app/preferences_dialog.c:1555 -#: app/preferences_dialog.c:2217 +#: app/flip_tool.c:71 app/preferences_dialog.c:1590 +#: app/preferences_dialog.c:2292 msgid "Vertical" msgstr "FЭggУleges" -#: app/flip_tool.c:76 +#: app/flip_tool.c:77 msgid "Flip Tool Options" msgstr "" -#: app/floating_sel.c:108 +#: app/floating_sel.c:107 msgid "" "Cannot anchor this layer because\n" "it is not a floating selection." msgstr "" -#: app/floating_sel.c:174 +#: app/floating_sel.c:173 msgid "" "Cannot create a new layer from the floating\n" "selection because it belongs to a\n" "layer mask or channel." msgstr "" -#: app/free_select.c:220 +#: app/free_select.c:219 msgid "Cannot properly scanline convert polygon!\n" msgstr "" -#: app/gdisplay.c:197 +#: app/gdisplay.c:202 msgid "RGB-empty" msgstr "" -#: app/gdisplay.c:200 +#: app/gdisplay.c:205 msgid "grayscale-empty" msgstr "" -#: app/gdisplay.c:200 +#: app/gdisplay.c:205 msgid "grayscale" msgstr "fekete-fehИr" -#: app/gdisplay.c:203 +#: app/gdisplay.c:208 msgid "indexed-empty" msgstr "" -#: app/gdisplay.c:203 +#: app/gdisplay.c:208 msgid "indexed" msgstr "indexelt" -#: app/gdisplay.c:1573 -#, fuzzy -msgid "/Layers/Stack/Previous Layer" -msgstr "/RИtegek/Feljebb" - -#: app/gdisplay.c:1574 -#, fuzzy -msgid "/Layers/Stack/Next Layer" -msgstr "/RИtegek/Feljebb" - -#: app/gdisplay.c:1575 -#, fuzzy -msgid "/Layers/Stack/Raise Layer" -msgstr "/RИtegek/Feljebb" - -#: app/gdisplay.c:1576 -#, fuzzy -msgid "/Layers/Stack/Lower Layer" -msgstr "/RИtegek/Lejjebb" - -#: app/gdisplay.c:1577 -#, fuzzy -msgid "/Layers/Stack/Layer to Top" -msgstr "/RИtegek/Feljebb" - -#: app/gdisplay.c:1578 -#, fuzzy -msgid "/Layers/Stack/Layer to Bottom" -msgstr "/RИtegek/Feljebb" - -#: app/gdisplay.c:1579 -msgid "/Layers/Anchor Layer" -msgstr "/RИtegek/RИteg rЖgzМtИse" - -#: app/gdisplay.c:1580 -msgid "/Layers/Merge Visible Layers" -msgstr "/RИtegek/LАthatС rИtegek ЖsszefИsЭlИse" - -#: app/gdisplay.c:1581 -msgid "/Layers/Flatten Image" -msgstr "/RИtegek/Egy rИteggИ" - -#: app/gdisplay.c:1582 -msgid "/Layers/Alpha To Selection" -msgstr "/RИtegek/Alfa csatorna kijelЖlИssИ" - -#: app/gdisplay.c:1583 -msgid "/Layers/Mask To Selection" -msgstr "/RИtegek/Maszk kijelЖlИssИ" - -#: app/gdisplay.c:1584 -msgid "/Layers/Add Alpha Channel" -msgstr "/RИtegek/Alfa csatorna lИtrehozАs" - -#: app/gdisplay.c:1586 -msgid "/Image/RGB" -msgstr "/KИp/RGB" - -#: app/gdisplay.c:1587 -msgid "/Image/Grayscale" -msgstr "/KИp/Fekete-fehИr" - -#: app/gdisplay.c:1588 -msgid "/Image/Indexed" -msgstr "/KИp/Indexelt" - -#: app/gdisplay.c:1590 -msgid "/Image/Colors/Threshold" -msgstr "/KИp/SzМnek/KЭszЖbszint" - -#: app/gdisplay.c:1591 -msgid "/Image/Colors/Posterize" -msgstr "/KИp/SzМnek/Poszter" - -#: app/gdisplay.c:1592 -msgid "/Image/Colors/Equalize" -msgstr "/KИp/SzМnek/SzМnek kiegyenlМtИse" - -#: app/gdisplay.c:1593 -msgid "/Image/Colors/Invert" -msgstr "/KИp/SzМnek/InvertАlАs" - -#: app/gdisplay.c:1595 -msgid "/Image/Colors/Color Balance" -msgstr "/KИp/SzМnek/SzМnegyensЗly" - -#: app/gdisplay.c:1596 -msgid "/Image/Colors/Brightness-Contrast" -msgstr "/KИp/SzМnek/FИnyerУ-kontraszt" - -#: app/gdisplay.c:1597 -msgid "/Image/Colors/Hue-Saturation" -msgstr "/KИp/SzМnek/SzМnessИg-telМtettsИg" - -#: app/gdisplay.c:1598 -msgid "/Image/Colors/Curves" -msgstr "/KИp/SzМnek/GЖrbИk" - -#: app/gdisplay.c:1599 -msgid "/Image/Colors/Levels" -msgstr "/KИp/SzМnek/Szintek" - -#: app/gdisplay.c:1601 -msgid "/Image/Colors/Desaturate" -msgstr "/KИp/SzМnek/Fekete-fehИr" - -#: app/gdisplay.c:1603 -msgid "/Image/Alpha/Add Alpha Channel" -msgstr "/KИp/Alfa/Alfa csatorna lИtrehozАs" - -#: app/gdisplay.c:1605 -msgid "/Select" -msgstr "/KijelЖlИs" - -#: app/gdisplay.c:1606 -msgid "/Edit/Cut" -msgstr "/Szerkeszt/KivАg" - -#: app/gdisplay.c:1607 -msgid "/Edit/Copy" -msgstr "/Szerkeszt/MАsol" - -#: app/gdisplay.c:1608 -msgid "/Edit/Paste" -msgstr "/Szerkeszt/Beilleszt" - -#: app/gdisplay.c:1609 -msgid "/Edit/Paste Into" -msgstr "/Szerkeszt/Helyben beilleszt" - -#: app/gdisplay.c:1610 -msgid "/Edit/Clear" -msgstr "/Szerkeszt/TЖrЖl" - -#: app/gdisplay.c:1611 -msgid "/Edit/Fill" -msgstr "/Szerkeszt/Kifest" - -#: app/gdisplay.c:1612 -msgid "/Edit/Stroke" -msgstr "/Szerkeszt/KЖrberajzol" - -#: app/gdisplay.c:1613 -msgid "/Edit/Cut Named" -msgstr "/Szerkeszt/KivАg (nИv szerint)" - -#: app/gdisplay.c:1614 -msgid "/Edit/Copy Named" -msgstr "/Szerkeszt/MАsol (nИv szerint)" - -#: app/gdisplay.c:1615 -msgid "/Edit/Paste Named" -msgstr "/Szerkeszt/Beilleszt (nИv szerint)" - -#: app/gdisplay.c:1616 -msgid "/Image/Colors" -msgstr "/KИp/SzМnek" - -#: app/gdisplay.c:1617 -msgid "/Image/Channel Ops/Offset" -msgstr "/KИp/CsatornАk/EltolАs" - -#: app/gdisplay.c:1618 -msgid "/Image/Histogram" -msgstr "/KИp/Hisztogram" - -# No translation - this menu is used by plug-ins -#: app/gdisplay.c:1619 -msgid "/Filters" -msgstr "" - -#. save selection to channel -#: app/gdisplay.c:1622 -msgid "/Select/Save To Channel" -msgstr "/KijelЖlИs/MentИs csatornАba" - -#: app/gdisplay.c:1624 -msgid "/View/Toggle Rulers" -msgstr "/NИzet/VonalzС be-ki" - -#: app/gdisplay.c:1625 -msgid "/View/Toggle Guides" -msgstr "/NИzet/SegИdvonalak be-ki" - -#: app/gdisplay.c:1626 -msgid "/View/Snap To Guides" -msgstr "/NИzet/SegИdvonalhoz igazМt" - -#: app/gdisplay.c:1627 -msgid "/View/Toggle Statusbar" -msgstr "/NИzet/StАtuszsor be-ki" - -#: app/gdisplay.c:1628 -msgid "/View/Dot for dot" -msgstr "/NИzet/PontrСl pontra" - -#: app/gdisplay.c:2063 +#: app/gdisplay.c:2102 msgid "gdisplays_flush() called recursively." msgstr "" -#: app/gdisplay_ops.c:305 app/gdisplay_ops.c:324 app/gdisplay_ops.c:334 -#: app/gdisplay_ops.c:370 -msgid "/File/Close" -msgstr "/FАjl/BezАr" +#: app/gdisplay_ops.c:305 app/gdisplay_ops.c:320 app/gdisplay_ops.c:330 +#: app/gdisplay_ops.c:366 app/menus.c:97 +#, fuzzy +msgid "/File/Close" +msgstr "/FАjl/BezАr" -#: app/gdisplay_ops.c:392 +#: app/gdisplay_ops.c:388 #, fuzzy, c-format msgid "Changes were made to %s. Close anyway?" msgstr "%s megvАltozott. MИgis bezАrod?" @@ -1718,41 +1553,41 @@ msgstr "n msgid "Layer type %d not supported." msgstr "%d rИteg tМpus nem tАmogatott." -#: app/gimpimage.c:596 app/gimpimage.c:690 +#: app/gimpimage.c:642 app/gimpimage.c:740 msgid "gimp_image_apply_image sent illegal parameters" msgstr "" -#: app/gimpimage.c:1096 +#: app/gimpimage.c:1172 msgid "Unable to project indexed image." msgstr "" -#: app/gimpimage.c:1966 +#: app/gimpimage.c:2109 msgid "Layer cannot be raised any further" msgstr "A rИteget nem lehet feljebb helyezni" -#: app/gimpimage.c:2040 +#: app/gimpimage.c:2184 msgid "Layer cannot be lowered any further" msgstr "A rИteget nem lehet lejjebb helyezni" #. layer_arg is already the top_layer -#: app/gimpimage.c:2069 +#: app/gimpimage.c:2214 msgid "Layer is already on top" msgstr "A rИteg mАr legfelЭl van" -#: app/gimpimage.c:2074 +#: app/gimpimage.c:2219 msgid "Can't raise Layer without alpha" msgstr "Nem lehet nem АtlАtszС rИteget feljebb helyezni" #. there is no next layer below layer_arg -#: app/gimpimage.c:2168 +#: app/gimpimage.c:2314 msgid "Layer is already on bottom" msgstr "A rИteg mАr legalul van" -#: app/gimpimage.c:2181 +#: app/gimpimage.c:2327 msgid "BG has no alpha, layer was placed above" msgstr "A hАttИrnek nincs alfa csatornАja, a rИteg feljebb lett helyezve" -#: app/gimpimage.c:2243 +#: app/gimpimage.c:2390 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." @@ -1760,65 +1595,65 @@ msgstr "" "Nincs elИg lАthatС rИteg az ЖsszefИsЭlИshez.\n" "LegalАbb kИt rИtegre van ehhez szЭksИg." -#: app/gimpimage.c:2321 +#: app/gimpimage.c:2468 msgid "There are not enough visible layers for a merge down." msgstr "" -#: app/gimpimage.c:2432 app/gimpimage.c:2465 +#: app/gimpimage.c:2581 app/gimpimage.c:2614 msgid "gimp_image_merge_layers: could not allocate merge layer" msgstr "" -#: app/gimpimage.c:2504 +#: app/gimpimage.c:2653 msgid "gimp_image_merge_layers attempting to merge incompatible layers\n" msgstr "" -#: app/gimpimage.c:2584 +#: app/gimpimage.c:2735 msgid "gimp_image_add_layer: attempt to add layer to wrong image" msgstr "" -#: app/gimpimage.c:2594 +#: app/gimpimage.c:2745 msgid "gimp_image_add_layer: trying to add layer to image twice" msgstr "" -#: app/gimpimage.c:2710 +#: app/gimpimage.c:2864 msgid "" "Unable to add a layer mask since\n" "the layer already has one." msgstr "" -#: app/gimpimage.c:2714 +#: app/gimpimage.c:2868 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." msgstr "" -#: app/gimpimage.c:2718 +#: app/gimpimage.c:2872 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." msgstr "" -#: app/gimpimage.c:2722 +#: app/gimpimage.c:2876 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -#: app/gimpimage.c:2826 +#: app/gimpimage.c:2983 msgid "Channel cannot be raised any further" msgstr "" -#: app/gimpimage.c:2873 +#: app/gimpimage.c:3031 msgid "Channel cannot be lowered any further" msgstr "" -#: app/gimpimage.c:2893 +#: app/gimpimage.c:3053 msgid "gimp_image_add_channel: attempt to add channel to wrong image" msgstr "" -#: app/gimpimage.c:2903 +#: app/gimpimage.c:3063 msgid "gimp_image_add_channel: trying to add channel to image twice" msgstr "" -#: app/gimpimage.c:3029 app/palette.c:525 app/palette.c:550 app/palette.c:909 +#: app/gimpimage.c:3190 app/palette.c:525 app/palette.c:550 app/palette.c:909 #: app/palette.c:913 app/palette.c:2313 app/palette.c:2995 msgid "Untitled" msgstr "NИvtelen" @@ -1827,95 +1662,99 @@ msgstr "N msgid "Progress" msgstr "" -#: app/gimprc.c:353 app/plug_in.c:302 +#: app/gimprc.c:358 app/plug_in.c:305 msgid "Resource configuration" msgstr "ErУforrАs beАllМtАsok" -#: app/gimprc.c:408 +#: app/gimprc.c:413 #, c-format msgid "error parsing: \"%s\"\n" msgstr "hiba az ИrtelmezИsben: \"%s\"\n" -#: app/gimprc.c:409 +#: app/gimprc.c:414 #, c-format msgid " at line %d column %d\n" msgstr " (%d. sor, %d. oszlop)\n" -#: app/gimprc.c:410 +#: app/gimprc.c:415 #, c-format msgid " unexpected token: %s\n" msgstr " nem vАrt kulcsszС: %s\n" -#: app/gimprc.c:1300 +#: app/gimprc.c:1305 msgid "error parsing pluginrc" msgstr "hiba a pluginrc ИrtelmezИsekor" -#: app/gimprc.c:1635 +#: app/gimprc.c:1640 #, c-format msgid "gimprc token referenced but not defined: %s" msgstr "a(z) %s gimprc kulcsszС nincs definiАlva, de van rА hivatkozАs" -#: app/gimprc.c:2518 +#: app/gimprc.c:2522 #, c-format msgid "Can't open %s; %s" msgstr "" -#: app/gimprc.c:2537 +#: app/gimprc.c:2541 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "" -#: app/gimprc.c:2543 +#: app/gimprc.c:2547 #, c-format msgid "Couldn't reopen %s\n" msgstr "" -#: app/gimprc.c:2555 +#: app/gimprc.c:2559 #, c-format msgid "Can't write to %s; %s" msgstr "" #. Make a new floating layer -#: app/global_edit.c:284 +#: app/global_edit.c:289 app/global_edit.c:344 app/global_edit.c:354 #, fuzzy msgid "Pasted Layer" msgstr "Feljebb" -#: app/global_edit.c:591 +#: app/global_edit.c:698 msgid "Paste" msgstr "Beilleszt" +#: app/global_edit.c:699 +#, fuzzy +msgid "Paste Into" +msgstr "/Szerkeszt/Helyben beilleszt" + +#: app/global_edit.c:700 +msgid "Paste As New" +msgstr "" + #. Buttons -#: app/global_edit.c:592 app/gradient.c:1477 app/palette.c:1429 +#: app/global_edit.c:704 app/gradient.c:1477 app/palette.c:1429 #: app/palette.c:2179 msgid "Delete" msgstr "TЖrЖl" -#: app/global_edit.c:606 +#: app/global_edit.c:720 #, fuzzy msgid "Paste Named Buffer" msgstr "NevesМtett BИzier tАrolС beillesztИse" -#: app/global_edit.c:618 +#: app/global_edit.c:732 #, fuzzy msgid "Select a buffer to paste:" msgstr "VАlaszd ki a hasznАlandС tАrolСt:" -#: app/global_edit.c:637 -#, fuzzy -msgid "Replace Current Selection" -msgstr "TИglalap kijelЖlИs" - -#: app/global_edit.c:699 +#: app/global_edit.c:820 #, fuzzy msgid "Cut Named" msgstr "/Szerkeszt/KivАg (nИv szerint)" -#: app/global_edit.c:700 app/global_edit.c:732 +#: app/global_edit.c:821 app/global_edit.c:853 msgid "Enter a name for this buffer" msgstr "мrd be a tАrolС nevИt" -#: app/global_edit.c:731 +#: app/global_edit.c:852 #, fuzzy msgid "Copy Named" msgstr "/Szerkeszt/MАsol (nИv szerint)" @@ -1971,7 +1810,7 @@ msgstr "Sz msgid "Gradients: " msgstr "SzМnАtmenetek: " -#: app/gradient.c:680 app/gradient_select.c:476 app/paintbrush.c:199 +#: app/gradient.c:680 app/gradient_select.c:476 app/paintbrush.c:204 #: app/palette.c:2833 msgid "Gradient" msgstr "SzМnАtmenet" @@ -2326,99 +2165,114 @@ msgstr "" msgid "Gradient Selection" msgstr "HАttИr kivАlasztАs" -#: app/histogram_tool.c:207 +#: app/histogram_tool.c:173 #, fuzzy msgid "Histogram Options" msgstr "Hisztogram" -#: app/histogram_tool.c:307 +#: app/histogram_tool.c:210 +#, fuzzy +msgid "Histogram does not operate on indexed drawables." +msgstr "A FИnyerУ-kontraszt beАllМtАs nem mШkЖdik indexelt rajzfelЭleten." + +#: app/histogram_tool.c:267 #, fuzzy msgid "Mean:" msgstr "MСd: " -#: app/histogram_tool.c:308 +#: app/histogram_tool.c:268 msgid "Std Dev:" msgstr "" -#: app/histogram_tool.c:309 +#: app/histogram_tool.c:269 #, fuzzy msgid "Median:" msgstr "MСd: " -#: app/histogram_tool.c:310 +#: app/histogram_tool.c:270 #, fuzzy msgid "Pixels:" msgstr "Pixel" -#: app/histogram_tool.c:312 +#: app/histogram_tool.c:272 msgid "Count:" msgstr "" -#: app/histogram_tool.c:313 +#: app/histogram_tool.c:273 #, fuzzy msgid "Percentile:" msgstr "PerspektМva" -#: app/hue_saturation.c:301 +#: app/histogram_tool.c:296 app/tools.c:607 +msgid "Histogram" +msgstr "Hisztogram" + +#: app/histogram_tool.c:315 +msgid "Information on Channel:" +msgstr "" + +#: app/hue_saturation.c:260 #, fuzzy msgid "Hue-Saturation Options" msgstr "SzМnessИg-telМtettsИg" -#: app/hue_saturation.c:348 +#: app/hue_saturation.c:298 #, fuzzy msgid "Hue-Saturation operates only on RGB color drawables." msgstr "A szМnegyensЗly csak RGB szМnes rajzfelЭleten mШkЖdik." -#: app/hue_saturation.c:416 +#: app/hue_saturation.c:367 #, fuzzy msgid "Master" msgstr "Beilleszt" -#: app/hue_saturation.c:417 +#: app/hue_saturation.c:368 msgid "R" msgstr "" -#: app/hue_saturation.c:418 +#: app/hue_saturation.c:369 msgid "Y" msgstr "" -#: app/hue_saturation.c:419 +#: app/hue_saturation.c:370 msgid "G" msgstr "" -#: app/hue_saturation.c:420 +#: app/hue_saturation.c:371 msgid "C" msgstr "" -#: app/hue_saturation.c:421 +#: app/hue_saturation.c:372 msgid "B" msgstr "" -#: app/hue_saturation.c:422 +#: app/hue_saturation.c:373 msgid "M" msgstr "" -#: app/hue_saturation.c:442 app/tools.c:506 +#: app/hue_saturation.c:394 app/tools.c:532 msgid "Hue-Saturation" msgstr "SzМnessИg-telМtettsИg" -#: app/hue_saturation.c:504 +#: app/hue_saturation.c:456 msgid "Hue / Lightness / Saturation Adjustments" msgstr "" #. Create the hue scale widget -#: app/hue_saturation.c:514 app/layers_dialog.c:285 app/paint_funcs.c:94 +#: app/hue_saturation.c:466 app/layers_dialog.c:221 app/paint_funcs.c:94 +#: app/tool_options.c:787 msgid "Hue" msgstr "SzМnessИg" #. Create the lightness scale widget -#: app/hue_saturation.c:548 +#: app/hue_saturation.c:500 #, fuzzy msgid "Lightness" msgstr "FИnyerУ" #. Create the saturation scale widget -#: app/hue_saturation.c:582 app/layers_dialog.c:286 app/paint_funcs.c:95 +#: app/hue_saturation.c:534 app/layers_dialog.c:223 app/paint_funcs.c:95 +#: app/tool_options.c:788 msgid "Saturation" msgstr "TelМtettsИg" @@ -2463,7 +2317,7 @@ msgstr "" msgid "Resolution:" msgstr "FelbontАs" -#: app/info_window.c:159 +#: app/info_window.c:159 app/tool_options.c:449 #, fuzzy msgid "Unit:" msgstr "NИvtelen" @@ -2513,44 +2367,44 @@ msgid "Indexed Color" msgstr "Indexelt szМn АtalakМtАs" #. size slider -#: app/ink.c:292 +#: app/ink.c:294 msgid "Size:" msgstr "" #. sens slider -#: app/ink.c:310 app/ink.c:334 app/ink.c:364 +#: app/ink.c:312 app/ink.c:336 app/ink.c:366 msgid "Sensitivity:" msgstr "" #. tilt sens slider -#: app/ink.c:328 +#: app/ink.c:330 msgid "Tilt" msgstr "" #. velocity sens slider -#: app/ink.c:358 +#: app/ink.c:360 msgid "Speed" msgstr "" #. angle adjust slider -#: app/ink.c:388 +#: app/ink.c:390 #, fuzzy msgid "Angle" msgstr "DУlИsszЖg:" -#: app/ink.c:394 +#: app/ink.c:396 #, fuzzy msgid "Adjust:" msgstr "DУlИsszЖg:" #. Brush type radiobuttons -#: app/ink.c:417 +#: app/ink.c:419 #, fuzzy msgid "Type" msgstr "KitЖltИs tМpusa: " #. Brush shape widget -#: app/ink.c:481 +#: app/ink.c:483 #, fuzzy msgid "Shape" msgstr "иlesМtИs" @@ -2859,18 +2713,18 @@ msgid "" "Installation failed. Contact system administrator.\n" msgstr "" -#: app/interface.c:268 +#: app/interface.c:325 msgid "" "Foreground & background colors. The black and white squares reset colors. " "The arrows swap colors. Double click to select a color from a colorrequester." msgstr "" -#: app/interface.c:485 +#: app/interface.c:541 #, fuzzy msgid "The GIMP" msgstr "A GIMP nИvjegye" -#: app/interface.c:1256 +#: app/interface.c:1388 msgid "GIMP Message" msgstr "" @@ -2893,7 +2747,8 @@ msgstr "Csatorn msgid "Channel Ops" msgstr "CsatornАk" -#: app/internal_procs.c:79 app/layers_dialog.c:287 app/paint_funcs.c:96 +#: app/internal_procs.c:79 app/layers_dialog.c:225 app/paint_funcs.c:96 +#: app/tool_options.c:789 msgid "Color" msgstr "SzМn" @@ -2950,7 +2805,7 @@ msgstr "Sz msgid "Guide procedures" msgstr "KИp forrАs" -#: app/internal_procs.c:118 app/preferences_dialog.c:1686 +#: app/internal_procs.c:118 app/preferences_dialog.c:1721 msgid "Interface" msgstr "" @@ -2974,7 +2829,7 @@ msgstr "Palett msgid "Parasite procedures" msgstr "GЖrbe javМtАsa" -#: app/internal_procs.c:133 app/layers_dialog.c:407 +#: app/internal_procs.c:133 app/lc_dialog.c:180 #, fuzzy msgid "Paths" msgstr "MintАk" @@ -3042,23 +2897,23 @@ msgstr "Elasztikuss msgid "Convert to Bezier Curve" msgstr "BИzier gЖrbИvИ alakМtАs" -#: app/iscissors.c:1779 +#: app/iscissors.c:1780 msgid "Boundary contains < 4 points! Cannot bezierify." msgstr "" -#: app/layer.c:246 +#: app/layer.c:248 msgid "Zero width or height layers not allowed." msgstr "" -#: app/layer.c:352 +#: app/layer.c:354 msgid "layer_copy: could not allocate new layer" msgstr "" -#: app/layer.c:429 +#: app/layer.c:431 msgid "layer_from_tiles: could not allocate new layer" msgstr "" -#: app/layer.c:484 +#: app/layer.c:486 #, c-format msgid "%s mask" msgstr "" @@ -3068,287 +2923,331 @@ msgstr "" msgid "Layer Select" msgstr "BИzier kijelЖlИs" -#: app/layers_dialog.c:232 app/layers_dialog.c:303 app/layers_dialog.c:3261 -msgid "New Layer" -msgstr "зj rИteg" - -#: app/layers_dialog.c:234 -msgid "Raise Layer" -msgstr "Feljebb" - -#: app/layers_dialog.c:236 -msgid "Lower Layer" -msgstr "Lejjebb" - -#: app/layers_dialog.c:238 app/layers_dialog.c:306 -msgid "Duplicate Layer" -msgstr "RИteg mАsolАsa" - -#: app/layers_dialog.c:240 app/layers_dialog.c:307 -msgid "Delete Layer" -msgstr "RИteg tЖrlИse" - -#: app/layers_dialog.c:242 app/resize.c:159 -msgid "Scale Layer" -msgstr "RИteg skАlАzАsa" - -#: app/layers_dialog.c:244 app/resize.c:174 -msgid "Resize Layer" -msgstr "RИteg АtmИretezИse" - -#: app/layers_dialog.c:246 -msgid "Add Layer Mask" -msgstr "RИtegmaszk lИtrehozАsa" - -#: app/layers_dialog.c:248 -msgid "Apply Layer Mask" -msgstr "RИtegmaszk ИrvИnyesМtИse" - -#: app/layers_dialog.c:250 app/layers_dialog.c:308 -msgid "Anchor Layer" -msgstr "RИteg rЖgzМtИse" - -#: app/layers_dialog.c:252 -msgid "Merge Visible Layers" -msgstr "LАthatС rИtegek ЖsszefИsЭlИse" - -#: app/layers_dialog.c:254 -msgid "Merge Down" -msgstr "жsszefИsЭlИs lefelИ" - -#: app/layers_dialog.c:256 -msgid "Flatten Image" -msgstr "Egy rИteggИ" - -#: app/layers_dialog.c:258 -msgid "Alpha To Selection" -msgstr "аtlАtszatlansАg kijelЖlИssИ" - -#: app/layers_dialog.c:260 -msgid "Mask To Selection" -msgstr "Maszk kijelЖlИssИ" - -#: app/layers_dialog.c:262 -msgid "Add Alpha Channel" -msgstr "Alfa csatorna lИtrehozАs" - -#: app/layers_dialog.c:264 -msgid "Layer to Top" -msgstr "LegfelЭlre" - -#: app/layers_dialog.c:266 -msgid "Layer to Bottom" -msgstr "Legalulra" - -#: app/layers_dialog.c:274 app/paint_funcs.c:83 +#: app/layers_dialog.c:199 app/paint_funcs.c:83 app/tool_options.c:775 msgid "Normal" msgstr "NormАl" -#: app/layers_dialog.c:275 app/paint_funcs.c:84 +#: app/layers_dialog.c:201 app/paint_funcs.c:84 app/tool_options.c:776 msgid "Dissolve" msgstr "EloszlС" -#: app/layers_dialog.c:276 app/paint_funcs.c:86 +#: app/layers_dialog.c:203 app/paint_funcs.c:86 app/tool_options.c:778 msgid "Multiply (Burn)" msgstr "SzorzАs (ИgetИs)" -#: app/layers_dialog.c:277 app/paint_funcs.c:98 +#: app/layers_dialog.c:205 app/paint_funcs.c:98 app/tool_options.c:779 msgid "Divide (Dodge)" msgstr "OsztАs (kitИrИs)" -#: app/layers_dialog.c:278 app/paint_funcs.c:87 +#: app/layers_dialog.c:207 app/paint_funcs.c:87 app/tool_options.c:780 msgid "Screen" msgstr "KivetМtИs" -#: app/layers_dialog.c:279 app/paint_funcs.c:88 +#: app/layers_dialog.c:209 app/paint_funcs.c:88 app/tool_options.c:781 msgid "Overlay" msgstr "RАvetМtИs" -#: app/layers_dialog.c:280 app/paint_funcs.c:89 +#: app/layers_dialog.c:211 app/paint_funcs.c:89 app/tool_options.c:782 msgid "Difference" msgstr "KЭlЖnbsИg" -#: app/layers_dialog.c:281 app/paint_funcs.c:90 +#: app/layers_dialog.c:213 app/paint_funcs.c:90 app/tool_options.c:783 msgid "Addition" msgstr "жsszegzИs" -#: app/layers_dialog.c:283 app/paint_funcs.c:92 +#: app/layers_dialog.c:217 app/paint_funcs.c:92 app/tool_options.c:785 msgid "Darken Only" msgstr "Csak sЖtИtebb" -#: app/layers_dialog.c:284 app/paint_funcs.c:93 +#: app/layers_dialog.c:219 app/paint_funcs.c:93 app/tool_options.c:786 msgid "Lighten Only" msgstr "Csak vilАgosabb" -#: app/layers_dialog.c:304 +#: app/layers_dialog.c:246 app/layers_dialog.c:2944 +msgid "New Layer" +msgstr "зj rИteg" + +#: app/layers_dialog.c:248 msgid "" "Raise Layer \n" " To Top" msgstr "" -#: app/layers_dialog.c:305 +#: app/layers_dialog.c:251 msgid "" "Lower Layer \n" " To Bottom" msgstr "" -#: app/layers_dialog.c:335 -msgid "Layers & Channels" -msgstr "RИtegek Иs csatornАk" +#: app/layers_dialog.c:254 +msgid "Duplicate Layer" +msgstr "RИteg mАsolАsa" -#. The Auto-button -#: app/layers_dialog.c:373 -#, fuzzy -msgid "Auto" -msgstr "/Automatikus" +#: app/layers_dialog.c:256 +msgid "Anchor Layer" +msgstr "RИteg rЖgzМtИse" -#: app/layers_dialog.c:391 -msgid "Layers" -msgstr "RИtegek" +#: app/layers_dialog.c:258 +msgid "Delete Layer" +msgstr "RИteg tЖrlИse" -#: app/layers_dialog.c:401 -msgid "Channels" -msgstr "CsatornАk" - -#: app/layers_dialog.c:744 +#: app/layers_dialog.c:321 msgid "Keep Trans." msgstr "аtlАtszСsАg" -#: app/layers_dialog.c:1489 +#: app/layers_dialog.c:947 app/menus.c:245 +#, fuzzy +msgid "/Stack/Previous Layer" +msgstr "/RИtegek/Feljebb" + +#: app/layers_dialog.c:949 app/menus.c:246 +#, fuzzy +msgid "/Stack/Next Layer" +msgstr "/RИtegek/Feljebb" + +#: app/layers_dialog.c:952 app/menus.c:247 +#, fuzzy +msgid "/Stack/Raise Layer" +msgstr "/RИtegek/Feljebb" + +#: app/layers_dialog.c:957 app/menus.c:248 +#, fuzzy +msgid "/Stack/Lower Layer" +msgstr "/RИtegek/Lejjebb" + +#: app/layers_dialog.c:962 app/menus.c:249 +#, fuzzy +msgid "/Stack/Layer to Top" +msgstr "LegfelЭlre" + +#: app/layers_dialog.c:964 app/menus.c:250 +#, fuzzy +msgid "/Stack/Layer to Bottom" +msgstr "Legalulra" + +#: app/layers_dialog.c:967 app/menus.c:244 +#, fuzzy +msgid "/New Layer" +msgstr "зj rИteg" + +#: app/layers_dialog.c:970 app/menus.c:251 +#, fuzzy +msgid "/Duplicate Layer" +msgstr "RИteg mАsolАsa" + +#: app/layers_dialog.c:974 app/menus.c:252 +#, fuzzy +msgid "/Anchor Layer" +msgstr "RИteg rЖgzМtИse" + +#: app/layers_dialog.c:978 app/menus.c:253 +#, fuzzy +msgid "/Delete Layer" +msgstr "RИteg tЖrlИse" + +#: app/layers_dialog.c:981 app/menus.c:255 +#, fuzzy +msgid "/Scale Layer" +msgstr "RИteg skАlАzАsa" + +#: app/layers_dialog.c:982 app/menus.c:256 +#, fuzzy +msgid "/Resize Layer" +msgstr "RИteg АtmИretezИse" + +#: app/layers_dialog.c:984 app/menus.c:258 +#, fuzzy +msgid "/Merge Visible Layers" +msgstr "LАthatС rИtegek ЖsszefИsЭlИse" + +#: app/layers_dialog.c:986 app/menus.c:259 +#, fuzzy +msgid "/Merge Down" +msgstr "жsszefИsЭlИs lefelИ" + +#: app/layers_dialog.c:987 app/menus.c:260 +#, fuzzy +msgid "/Flatten Image" +msgstr "Egy rИteggИ" + +#: app/layers_dialog.c:989 app/menus.c:262 +#, fuzzy +msgid "/Add Layer Mask" +msgstr "RИtegmaszk lИtrehozАsa" + +#: app/layers_dialog.c:991 app/menus.c:263 +#, fuzzy +msgid "/Apply Layer Mask" +msgstr "RИtegmaszk ИrvИnyesМtИse" + +#: app/layers_dialog.c:993 app/menus.c:264 +#, fuzzy +msgid "/Alpha to Selection" +msgstr "аtlАtszatlansАg kijelЖlИssИ" + +#: app/layers_dialog.c:995 app/menus.c:265 +#, fuzzy +msgid "/Mask to Selection" +msgstr "Maszk kijelЖlИssИ" + +#: app/layers_dialog.c:997 app/menus.c:266 +#, fuzzy +msgid "/Add Alpha Channel" +msgstr "Alfa csatorna lИtrehozАs" + +#: app/layers_dialog.c:1185 msgid "Unknown layer mode" msgstr "Ismeretlen rИteg mСd" -#: app/layers_dialog.c:2206 app/layers_dialog.c:3028 app/layers_dialog.c:3471 +#: app/layers_dialog.c:1890 app/layers_dialog.c:2712 app/layers_dialog.c:3157 msgid "Floating Selection" msgstr "LebegУ kijelЖlИs" -#: app/layers_dialog.c:3149 +#: app/layers_dialog.c:2832 msgid "new_layer_query_ok_callback: could not allocate new layer" msgstr "" -#: app/layers_dialog.c:3231 +#: app/layers_dialog.c:2914 msgid "New Layer Options" msgstr "зj rИteg beАllМtАsok" #. the name label and entry -#: app/layers_dialog.c:3251 +#: app/layers_dialog.c:2934 #, fuzzy msgid "Layer Name:" msgstr "RИteg neve:" #. the size labels -#: app/layers_dialog.c:3265 +#: app/layers_dialog.c:2948 #, fuzzy msgid "Layer Width:" msgstr "RИteg szИlessИge: " #. the radio frame and box -#: app/layers_dialog.c:3324 +#: app/layers_dialog.c:3007 msgid "Layer Fill Type" msgstr "KitЖltИs tМpusa" -#: app/layers_dialog.c:3447 +#: app/layers_dialog.c:3131 msgid "Edit Layer Attributes" msgstr "RИteg tulajdonsАgainak szerkesztИse" -#: app/layers_dialog.c:3464 +#: app/layers_dialog.c:3149 msgid "Layer name: " msgstr "RИteg neve: " -#: app/layers_dialog.c:3587 +#: app/layers_dialog.c:3275 msgid "White (Full Opacity)" msgstr "FehИr (teljesen АtlАtszatlan)" -#: app/layers_dialog.c:3588 +#: app/layers_dialog.c:3276 msgid "Black (Full Transparency)" msgstr "Fekete (teljesen АtlАtszС)" -#: app/layers_dialog.c:3589 +#: app/layers_dialog.c:3277 msgid "Layer's Alpha Channel" msgstr "RИteg alfa csatornАja" -#: app/layers_dialog.c:3606 +#: app/layers_dialog.c:3294 msgid "Add Mask Options" msgstr "Maszk lИtrehozАs beАllМtАsok" #. the name entry hbox, label and entry -#: app/layers_dialog.c:3621 +#: app/layers_dialog.c:3309 msgid "Initialize Layer Mask To:" msgstr "" -#: app/layers_dialog.c:3720 +#: app/layers_dialog.c:3408 msgid "Apply" msgstr "Alkalmaz" -#: app/layers_dialog.c:3721 +#: app/layers_dialog.c:3409 msgid "Discard" msgstr "Eldob" -#: app/layers_dialog.c:3735 +#: app/layers_dialog.c:3423 msgid "Layer Mask Options" msgstr "RИteg maszk beАllМtАsok" #. the name entry hbox, label and entry -#: app/layers_dialog.c:3751 +#: app/layers_dialog.c:3439 msgid "Apply layer mask?" msgstr "иrvИnyesМted a rИtegmaszkot?" -#: app/layers_dialog.c:3811 app/layers_dialog.c:3909 +#: app/layers_dialog.c:3499 app/layers_dialog.c:3597 msgid "Invalid width or height. Both must be positive." msgstr "" -#: app/layers_dialog.c:4062 +#: app/layers_dialog.c:3751 msgid "Expanded as necessary" msgstr "BУvМt, ha szЭksИges" -#: app/layers_dialog.c:4063 +#: app/layers_dialog.c:3752 msgid "Clipped to image" msgstr "A kИpre illeszti" -#: app/layers_dialog.c:4064 +#: app/layers_dialog.c:3753 msgid "Clipped to bottom layer" msgstr "A legalsС rИtegre illeszti" -#: app/layers_dialog.c:4082 +#: app/layers_dialog.c:3771 msgid "Layer Merge Options" msgstr "RИteg ЖsszefИsЭlИs beАllМtАsok" -#: app/layers_dialog.c:4098 +#: app/layers_dialog.c:3787 msgid "Final, merged layer should be:" msgstr "A vИgsУ, ЖsszefИsЭlt rИteg tМpusa:" -#: app/layers_dialog.c:4100 +#: app/layers_dialog.c:3789 msgid "Final, anchored layer should be:" msgstr "A vИgsУ, rЖgzМtett rИteg tМpusa:" -#: app/levels.c:239 +#: app/lc_dialog.c:111 +msgid "Layers & Channels" +msgstr "RИtegek Иs csatornАk" + +#. The Auto-button +#: app/lc_dialog.c:150 +#, fuzzy +msgid "Auto" +msgstr "/Automatikus" + +#: app/lc_dialog.c:170 +msgid "Layers" +msgstr "RИtegek" + +#: app/lc_dialog.c:175 +msgid "Channels" +msgstr "CsatornАk" + +#: app/levels.c:197 #, fuzzy msgid "Levels Options" msgstr "KimentИs beАllМtАsok" -#: app/levels.c:296 +#: app/levels.c:245 msgid "Levels for indexed drawables cannot be adjusted." msgstr "" -#: app/levels.c:372 +#: app/levels.c:334 #, fuzzy msgid "Auto Levels" msgstr "Szintek" -#: app/levels.c:403 app/tools.c:566 +#: app/levels.c:351 app/tools.c:592 msgid "Levels" msgstr "Szintek" -#: app/levels.c:418 +#: app/levels.c:366 msgid "Modify Levels for Channel: " msgstr "" -#: app/levels.c:434 +#: app/levels.c:382 #, fuzzy msgid "Input Levels: " msgstr "SzМn szintek: " -#: app/levels.c:522 +#: app/levels.c:470 #, fuzzy msgid "Output Levels: " msgstr "SzМn szintek: " @@ -3362,45 +3261,45 @@ msgstr "Megnyit msgid "Allow Window Resizing" msgstr "" -#: app/main.c:279 +#: app/main.c:287 msgid "GIMP version" msgstr "GIMP verziС: " -#: app/main.c:283 +#: app/main.c:291 #, fuzzy, c-format msgid "Usage: %s [option ...] [files ...]\n" msgstr "HasznАlat: %s [kapcsolСk ...] [fАjlok ...]\n" -#: app/main.c:284 +#: app/main.c:292 msgid "Valid options are:\n" msgstr "Az ИrvИnyes kapcsolСk:\n" -#: app/main.c:285 +#: app/main.c:293 msgid " -h --help Output this help.\n" msgstr " -h --help Ez a rЖvid hasznАlati leМrАs\n" -#: app/main.c:286 +#: app/main.c:294 msgid " -v --version Output version info.\n" msgstr " -v --version A verziСszАm kiМrАsa\n" -#: app/main.c:287 +#: app/main.c:295 msgid " -b --batch Run in batch mode.\n" msgstr " -b --batch KЖtegelt mСdban futtatАs\n" -#: app/main.c:288 +#: app/main.c:296 msgid " -g --gimprc Use an alternate gimprc file.\n" msgstr " -g --gimprc MАs gimprc fАjl hasznАlata.\n" -#: app/main.c:289 +#: app/main.c:297 msgid " -n --no-interface Run without a user interface.\n" msgstr " -n --no-interface FelhasznАlСi interfИsz nИlkЭli futtatАs\n" -#: app/main.c:290 +#: app/main.c:298 msgid " -r --restore-session Try to restore saved session.\n" msgstr "" " -r --restore-session MegprСbАlja visszaАllМtani a mentett Аllapotot\n" -#: app/main.c:291 +#: app/main.c:299 msgid "" " --no-data Do not load patterns, gradients, palettes, " "brushes.\n" @@ -3408,19 +3307,19 @@ msgstr "" " --no-data Nem olvassa be a mintАkat, szМnАtmeneteket, " "palettАlat, ecseteket\n" -#: app/main.c:292 +#: app/main.c:300 msgid " --verbose Show startup messages.\n" msgstr " --verbose A kezdeti Эzenetek megjelenМtИse\n" -#: app/main.c:293 +#: app/main.c:301 msgid " --no-splash Do not show the startup window.\n" msgstr " --no-splash Nem mutatja az ЭdvЖzlУ kИpernyУt\n" -#: app/main.c:294 +#: app/main.c:302 msgid " --no-splash-image Do not add an image to the startup window.\n" msgstr " --no-splash-image Nem mutatja az ЭdvЖzlУ kИpernyУn a kИpet\n" -#: app/main.c:295 +#: app/main.c:303 msgid "" " --no-shm Do not use shared memory between GIMP and its " "plugins.\n" @@ -3428,12 +3327,12 @@ msgstr "" " --no-shm Nem osztja meg a GIMP a kЭlsУ programokkal a " "memСriАt\n" -#: app/main.c:296 +#: app/main.c:304 msgid " --no-xshm Do not use the X Shared Memory extension.\n" msgstr "" " --no-xshm Nem hasznАlja az X osztott memСria kiegИszМtИst\n" -#: app/main.c:297 +#: app/main.c:305 msgid "" " --console-messages Display warnings to console instead of a dialog " "box.\n" @@ -3441,674 +3340,835 @@ msgstr "" " --console-messages A figyelmeztetИseket konzolra Мrja, Иs nem " "pАrbeszИdablakba\n" -#: app/main.c:298 +#: app/main.c:306 msgid " --debug-handlers Enable debugging signal handlers.\n" msgstr " --debug-handlers A hibajavМtС szignАlkezelУk engedИlyezИse\n" -#: app/main.c:299 +#: app/main.c:307 msgid "" " --display Use the designated X display.\n" "\n" msgstr " --display A megadott X kИpernyУt hasznАlja\n" -#: app/main.c:300 +#: app/main.c:308 msgid " --system-gimprc Use an alternate system gimprc file.\n" msgstr " --system-gimprc MАs gimprc fАjl hasznАlata\n" -#: app/main.c:412 +#: app/main.c:420 msgid "sighup caught" msgstr "" -#: app/main.c:417 +#: app/main.c:425 msgid "sigint caught" msgstr "" -#: app/main.c:422 +#: app/main.c:430 msgid "sigquit caught" msgstr "" -#: app/main.c:427 +#: app/main.c:435 msgid "sigabrt caught" msgstr "" -#: app/main.c:432 +#: app/main.c:440 msgid "sigbus caught" msgstr "" -#: app/main.c:437 +#: app/main.c:445 msgid "sigsegv caught" msgstr "" -#: app/main.c:442 +#: app/main.c:450 msgid "sigpipe caught" msgstr "" -#: app/main.c:447 +#: app/main.c:455 msgid "sigterm caught" msgstr "" -#: app/main.c:452 +#: app/main.c:460 msgid "sigfpe caught" msgstr "" -#: app/main.c:456 +#: app/main.c:464 msgid "unknown signal" msgstr "" -#: app/menus.c:43 +#: app/menus.c:46 #, fuzzy msgid "/File/MRU00 " msgstr "/FАjl/MRU%02d" -#: app/menus.c:53 app/menus.c:80 +#: app/menus.c:56 app/menus.c:88 +#, fuzzy +msgid "/File/tearoff1" +msgstr "/FАjl/MentИs" + +#: app/menus.c:57 app/menus.c:89 #, fuzzy msgid "/File/New" msgstr "/FАjl/зj" -#: app/menus.c:54 app/menus.c:81 -#, fuzzy -msgid "/File/Open" -msgstr "/FАjl/Megnyit" - -#: app/menus.c:55 +#: app/menus.c:59 #, fuzzy msgid "/File/About..." msgstr "/FАjl/NИvjegy..." -#: app/menus.c:56 app/menus.c:85 +#: app/menus.c:60 app/menus.c:94 #, fuzzy msgid "/File/Preferences..." msgstr "/FАjl/TulajdonsАgok..." -#: app/menus.c:57 +#: app/menus.c:61 #, fuzzy msgid "/File/Tip of the day" msgstr "/FАjl/A nap tippje" -#: app/menus.c:58 +#: app/menus.c:63 #, fuzzy msgid "/File/Dialogs/Brushes..." msgstr "/FАjl/BeАllМtАsok/Ecsetek..." -#: app/menus.c:59 +#: app/menus.c:64 #, fuzzy msgid "/File/Dialogs/Patterns..." msgstr "/FАjl/BeАllМtАsok/MintАk..." -#: app/menus.c:60 +#: app/menus.c:65 #, fuzzy msgid "/File/Dialogs/Palette..." msgstr "/FАjl/BeАllМtАsok/Paletta..." -#: app/menus.c:61 +#: app/menus.c:66 #, fuzzy msgid "/File/Dialogs/Gradient..." msgstr "/FАjl/BeАllМtАsok/SzМnАtmenetek..." -#: app/menus.c:62 +#: app/menus.c:67 #, fuzzy msgid "/File/Dialogs/Layers & Channels..." msgstr "/FАjl/BeАllМtАsok/RИtegek Иs csatornАk..." -#: app/menus.c:63 +#: app/menus.c:68 #, fuzzy msgid "/File/Dialogs/Tool Options..." msgstr "/FАjl/BeАllМtАsok/EszkЖzbeАllМtАsok..." -#: app/menus.c:64 +#: app/menus.c:69 #, fuzzy msgid "/File/Dialogs/Input Devices..." msgstr "/FАjl/BeАllМtАsok/Beviteli eszkЖzЖk..." -#: app/menus.c:65 +#: app/menus.c:70 #, fuzzy msgid "/File/Dialogs/Device Status..." msgstr "/FАjl/BeАllМtАsok/EszkЖzАllapot..." -#: app/menus.c:66 +#: app/menus.c:71 #, fuzzy msgid "/File/Dialogs/Document Index..." msgstr "/FАjl/BeАllМtАsok/Dokumentum index..." -#: app/menus.c:67 +#: app/menus.c:72 #, fuzzy msgid "/File/Dialogs/Error Console..." msgstr "/FАjl/BeАllМtАsok/Hibakonzol..." -#: app/menus.c:68 +#: app/menus.c:74 +msgid "/Xtns/tearoff1" +msgstr "" + +#: app/menus.c:75 #, fuzzy msgid "/Xtns/Module Browser" msgstr "/FАjl/BeАllМtАsok/Ecsetek..." -#: app/menus.c:69 app/menus.c:70 app/menus.c:75 app/menus.c:86 +#: app/menus.c:76 app/menus.c:77 app/menus.c:82 app/menus.c:95 msgid "/File/---" msgstr "/FАjl/---" -#: app/menus.c:76 app/menus.c:89 -#, fuzzy -msgid "/File/Quit" -msgstr "/FАjl/KilИp" +#: app/menus.c:87 +msgid "/tearoff1" +msgstr "" -#: app/menus.c:82 -#, fuzzy -msgid "/File/Save" -msgstr "/FАjl/MentИs" - -#: app/menus.c:83 -#, fuzzy -msgid "/File/Save as" -msgstr "/FАjl/MentИs mАskИnt" - -#: app/menus.c:84 +#: app/menus.c:93 #, fuzzy msgid "/File/Revert" msgstr "/FАjl/MentИs" -#: app/menus.c:88 -#, fuzzy -msgid "/File/Close" -msgstr "/FАjl/BezАr" - -#: app/menus.c:90 +#: app/menus.c:99 #, fuzzy msgid "/File/---moved" msgstr "/FАjl/---" -#: app/menus.c:92 +#: app/menus.c:101 +#, fuzzy +msgid "/Edit/tearoff1" +msgstr "/Szerkeszt/TЖrЖl" + +#: app/menus.c:102 #, fuzzy msgid "/Edit/Cut" msgstr "/Szerkeszt/KivАg" -#: app/menus.c:93 +#: app/menus.c:103 #, fuzzy msgid "/Edit/Copy" msgstr "/Szerkeszt/MАsol" -#: app/menus.c:94 +#: app/menus.c:104 #, fuzzy msgid "/Edit/Paste" msgstr "/Szerkeszt/Beilleszt" -#: app/menus.c:95 +#: app/menus.c:105 #, fuzzy msgid "/Edit/Paste Into" msgstr "/Szerkeszt/Helyben beilleszt" -#: app/menus.c:96 +#: app/menus.c:106 +#, fuzzy +msgid "/Edit/Paste As New" +msgstr "/Szerkeszt/Beilleszt (nИv szerint)" + +#: app/menus.c:107 app/menus.c:113 app/menus.c:117 +msgid "/Edit/---" +msgstr "/Szerkeszt/---" + +#: app/menus.c:108 #, fuzzy msgid "/Edit/Clear" msgstr "/Szerkeszt/TЖrЖl" -#: app/menus.c:97 +#: app/menus.c:109 #, fuzzy msgid "/Edit/Fill" msgstr "/Szerkeszt/Kifest" -#: app/menus.c:98 +#: app/menus.c:110 #, fuzzy msgid "/Edit/Stroke" msgstr "/Szerkeszt/KЖrberajzol" -#: app/menus.c:99 +#: app/menus.c:111 #, fuzzy msgid "/Edit/Undo" msgstr "/Szerkeszt/Visszavon" -#: app/menus.c:100 +#: app/menus.c:112 #, fuzzy msgid "/Edit/Redo" msgstr "/Szerkeszt/MИgsem von vissza" -#: app/menus.c:101 app/menus.c:105 -msgid "/Edit/---" -msgstr "/Szerkeszt/---" - -#: app/menus.c:102 +#: app/menus.c:114 #, fuzzy msgid "/Edit/Cut Named" msgstr "/Szerkeszt/KivАg (nИv szerint)" -#: app/menus.c:103 +#: app/menus.c:115 #, fuzzy msgid "/Edit/Copy Named" msgstr "/Szerkeszt/MАsol (nИv szerint)" -#: app/menus.c:104 +#: app/menus.c:116 #, fuzzy msgid "/Edit/Paste Named" msgstr "/Szerkeszt/Beilleszt (nИv szerint)" -#: app/menus.c:107 +#: app/menus.c:119 #, fuzzy -msgid "/Select/Toggle" -msgstr "/KijelЖlИs/VАlt" +msgid "/Select/tearoff1" +msgstr "/KijelЖlИs/NЖvel" -#: app/menus.c:108 +#: app/menus.c:120 #, fuzzy msgid "/Select/Invert" msgstr "/KijelЖlИs/InvertАl" -#: app/menus.c:109 +#: app/menus.c:121 #, fuzzy msgid "/Select/All" msgstr "/KijelЖlИs/Teljes kИp" -#: app/menus.c:110 +#: app/menus.c:122 #, fuzzy msgid "/Select/None" msgstr "/KijelЖlИs/MegszШntet" -#: app/menus.c:111 +#: app/menus.c:123 #, fuzzy msgid "/Select/Float" msgstr "/KijelЖlИs/LebegУ" -#: app/menus.c:112 +#: app/menus.c:124 #, fuzzy msgid "/Select/Sharpen" msgstr "/KijelЖlИs/иlesМt" -#: app/menus.c:113 +#: app/menus.c:125 #, fuzzy msgid "/Select/Border" msgstr "/KijelЖlИs/Keret" -#: app/menus.c:114 +#: app/menus.c:126 #, fuzzy msgid "/Select/Feather" msgstr "/KijelЖlИs/Elmos" -#: app/menus.c:115 +#: app/menus.c:127 #, fuzzy msgid "/Select/Grow" msgstr "/KijelЖlИs/NЖvel" -#: app/menus.c:116 +#: app/menus.c:128 #, fuzzy msgid "/Select/Shrink" msgstr "/KijelЖlИs/CsЖkkent" -#: app/menus.c:117 +#: app/menus.c:129 #, fuzzy msgid "/Select/Save To Channel" msgstr "/KijelЖlИs/MentИs csatornАba" -#: app/menus.c:119 +#: app/menus.c:131 +msgid "/View/tearoff1" +msgstr "" + +#: app/menus.c:132 #, fuzzy msgid "/View/Zoom In" msgstr "/NИzet/NagyМt" -#: app/menus.c:120 +#: app/menus.c:133 #, fuzzy msgid "/View/Zoom Out" msgstr "/NИzet/KicsinyМt" -#: app/menus.c:121 +#: app/menus.c:134 #, fuzzy msgid "/View/Zoom/16:1" msgstr "/NИzet/NagyМtАs/16:1" -#: app/menus.c:122 +#: app/menus.c:135 #, fuzzy msgid "/View/Zoom/8:1" msgstr "/NИzet/NagyМtАs/8:1" -#: app/menus.c:123 +#: app/menus.c:136 #, fuzzy msgid "/View/Zoom/4:1" msgstr "/NИzet/NagyМtАs/4:1" -#: app/menus.c:124 +#: app/menus.c:137 #, fuzzy msgid "/View/Zoom/2:1" msgstr "/NИzet/NagyМtАs/2:1" -#: app/menus.c:125 +#: app/menus.c:138 #, fuzzy msgid "/View/Zoom/1:1" msgstr "/NИzet/NagyМtАs/1:1" -#: app/menus.c:126 +#: app/menus.c:139 msgid "/View/Zoom/1:2" msgstr "/NИzet/NagyМtАs/1:2" -#: app/menus.c:127 +#: app/menus.c:140 msgid "/View/Zoom/1:4" msgstr "/NИzet/NagyМtАs/1:4" -#: app/menus.c:128 +#: app/menus.c:141 msgid "/View/Zoom/1:8" msgstr "/NИzet/NagyМtАs/1:8" -#: app/menus.c:129 +#: app/menus.c:142 msgid "/View/Zoom/1:16" msgstr "/NИzet/NagyМtАs/1:16" -#: app/menus.c:130 +#: app/menus.c:143 #, fuzzy msgid "/View/Dot for dot" msgstr "/NИzet/PontrСl pontra" -#: app/menus.c:131 +#: app/menus.c:144 #, fuzzy msgid "/View/Window Info..." msgstr "/NИzet/Ablak infС..." -#: app/menus.c:132 +#: app/menus.c:146 app/menus.c:152 +msgid "/View/---" +msgstr "/NИzet/---" + +#: app/menus.c:147 +#, fuzzy +msgid "/View/Toggle Selection" +msgstr "/NИzet/VonalzС be-ki" + +#: app/menus.c:148 #, fuzzy msgid "/View/Toggle Rulers" msgstr "/NИzet/VonalzС be-ki" -#: app/menus.c:133 +#: app/menus.c:149 #, fuzzy msgid "/View/Toggle Statusbar" msgstr "/NИzet/StАtuszsor be-ki" -#: app/menus.c:134 +#: app/menus.c:150 #, fuzzy msgid "/View/Toggle Guides" msgstr "/NИzet/SegИdvonalak be-ki" -#: app/menus.c:135 +#: app/menus.c:151 #, fuzzy msgid "/View/Snap To Guides" msgstr "/NИzet/SegИdvonalhoz igazМt" -#: app/menus.c:136 -msgid "/View/---" -msgstr "/NИzet/---" - -#: app/menus.c:137 +#: app/menus.c:154 #, fuzzy msgid "/View/New View" msgstr "/NИzet/зj nИzet" -#: app/menus.c:138 +#: app/menus.c:155 #, fuzzy msgid "/View/Shrink Wrap" msgstr "/NИzet/Teljes nИzet" -#: app/menus.c:140 +#: app/menus.c:157 +#, fuzzy +msgid "/Image/tearoff1" +msgstr "/Szerkeszt/TЖrЖl" + +#: app/menus.c:158 +#, fuzzy +msgid "/Image/Colors/tearoff1" +msgstr "/KИp/SzМnek/InvertАlАs" + +#: app/menus.c:159 #, fuzzy msgid "/Image/Colors/Equalize" msgstr "/KИp/SzМnek/SzМnek kiegyenlМtИse" -#: app/menus.c:141 +#: app/menus.c:160 #, fuzzy msgid "/Image/Colors/Invert" msgstr "/KИp/SzМnek/InvertАlАs" -#: app/menus.c:142 +#: app/menus.c:161 msgid "/Image/Colors/---" msgstr "/KИp/SzМnek/---" -#: app/menus.c:143 +#: app/menus.c:162 #, fuzzy msgid "/Image/Colors/Desaturate" msgstr "/KИp/SzМnek/Fekete-fehИr" -#: app/menus.c:144 +#: app/menus.c:163 +#, fuzzy +msgid "/Image/Channel Ops/tearoff1" +msgstr "/KИp/CsatornАk/EltolАs" + +#: app/menus.c:164 #, fuzzy msgid "/Image/Channel Ops/Duplicate" msgstr "/KИp/CsatornАk/DuplikАlАs" -#: app/menus.c:145 +#: app/menus.c:165 #, fuzzy msgid "/Image/Channel Ops/Offset" msgstr "/KИp/CsatornАk/EltolАs" -#: app/menus.c:146 +#: app/menus.c:166 +#, fuzzy +msgid "/Image/Alpha/tearoff1" +msgstr "/KИp/SkАlАzАs" + +#: app/menus.c:167 #, fuzzy msgid "/Image/Alpha/Add Alpha Channel" msgstr "/KИp/Alfa/Alfa csatorna lИtrehozАs" -#: app/menus.c:148 app/menus.c:152 app/menus.c:155 +#: app/menus.c:169 app/menus.c:173 app/menus.c:176 msgid "/Image/---" msgstr "/KИp/---" -#: app/menus.c:149 +#: app/menus.c:170 #, fuzzy msgid "/Image/RGB" msgstr "/KИp/RGB" -#: app/menus.c:150 +#: app/menus.c:171 #, fuzzy msgid "/Image/Grayscale" msgstr "/KИp/Fekete-fehИr" -#: app/menus.c:151 +#: app/menus.c:172 #, fuzzy msgid "/Image/Indexed" msgstr "/KИp/Indexelt" -#: app/menus.c:153 +#: app/menus.c:174 #, fuzzy msgid "/Image/Resize" msgstr "/KИp/аtmИretezИs" -#: app/menus.c:154 +#: app/menus.c:175 #, fuzzy msgid "/Image/Scale" msgstr "/KИp/SkАlАzАs" -#: app/menus.c:157 +#: app/menus.c:178 +#, fuzzy +msgid "/Layers/tearoff1" +msgstr "/RИtegek/Feljebb" + +#: app/menus.c:179 #, fuzzy msgid "/Layers/Layers & Channels..." msgstr "/RИtegek/RИtegek Иs csatornАk..." -#: app/menus.c:158 +#: app/menus.c:180 +#, fuzzy +msgid "/Layers/Stack/tearoff1" +msgstr "/RИtegek/Feljebb" + +#: app/menus.c:181 #, fuzzy msgid "/Layers/Stack/Previous Layer" msgstr "/RИtegek/Feljebb" -#: app/menus.c:159 +#: app/menus.c:182 #, fuzzy msgid "/Layers/Stack/Next Layer" msgstr "/RИtegek/Feljebb" -#: app/menus.c:160 +#: app/menus.c:183 #, fuzzy msgid "/Layers/Stack/Raise Layer" msgstr "/RИtegek/Feljebb" -#: app/menus.c:161 +#: app/menus.c:184 #, fuzzy msgid "/Layers/Stack/Lower Layer" msgstr "/RИtegek/Lejjebb" -#: app/menus.c:162 +#: app/menus.c:185 #, fuzzy msgid "/Layers/Stack/Layer to Top" msgstr "LegfelЭlre" -#: app/menus.c:163 +#: app/menus.c:186 #, fuzzy msgid "/Layers/Stack/Layer to Bottom" msgstr "Legalulra" -#: app/menus.c:164 +#: app/menus.c:187 app/menus.c:194 #, fuzzy msgid "/Layers/---" msgstr "RИtegek" -#: app/menus.c:165 +#: app/menus.c:188 #, fuzzy msgid "/Layers/Anchor Layer" msgstr "/RИtegek/RИteg rЖgzМtИse" -#: app/menus.c:166 +#: app/menus.c:189 #, fuzzy msgid "/Layers/Merge Visible Layers" msgstr "/RИtegek/LАthatС rИtegek ЖsszefИsЭlИse" -#: app/menus.c:167 +#: app/menus.c:190 #, fuzzy msgid "/Layers/Flatten Image" msgstr "/RИtegek/Egy rИteggИ" -#: app/menus.c:168 +#: app/menus.c:191 #, fuzzy msgid "/Layers/Alpha To Selection" msgstr "/RИtegek/Alfa csatorna kijelЖlИssИ" -#: app/menus.c:169 +#: app/menus.c:192 #, fuzzy msgid "/Layers/Mask To Selection" msgstr "/RИtegek/Maszk kijelЖlИssИ" -#: app/menus.c:170 +#: app/menus.c:193 #, fuzzy msgid "/Layers/Add Alpha Channel" msgstr "/RИtegek/Alfa csatorna lИtrehozАs" -#. these are built on the fly -#. -#. { N_("/Tools/Ellipse Select"), "E", tools_select_cmd_callback, ELLIPSE_SELECT }, -#. { N_("/Tools/Free Select"), "F", tools_select_cmd_callback, FREE_SELECT }, -#. { N_("/Tools/Fuzzy Select"), "Z", tools_select_cmd_callback, FUZZY_SELECT }, -#. { N_("/Tools/Bezier Select"), "B", tools_select_cmd_callback, BEZIER_SELECT }, -#. { N_("/Tools/Intelligent Scissors"), "I", tools_select_cmd_callback, ISCISSORS }, -#. { N_("/Tools/Move"), "M", tools_select_cmd_callback, MOVE }, -#. { N_("/Tools/Magnify"), "M", tools_select_cmd_callback, MAGNIFY }, -#. { N_("/Tools/Crop"), "C", tools_select_cmd_callback, CROP }, -#. { N_("/Tools/Transform"), "T", tools_select_cmd_callback, ROTATE }, -#. { N_("/Tools/Flip"), "F", tools_select_cmd_callback, FLIP }, -#. { N_("/Tools/Text"), "T", tools_select_cmd_callback, TEXT }, -#. { N_("/Tools/Color Picker"), "O", tools_select_cmd_callback, COLOR_PICKER }, -#. { N_("/Tools/Bucket Fill"), "B", tools_select_cmd_callback, BUCKET_FILL }, -#. { N_("/Tools/Blend"), "L", tools_select_cmd_callback, BLEND }, -#. { N_("/Tools/Paintbrush"), "P", tools_select_cmd_callback, PAINTBRUSH }, -#. { N_("/Tools/Pencil"), "P", tools_select_cmd_callback, PENCIL }, -#. { N_("/Tools/Eraser"), "E", tools_select_cmd_callback, ERASER }, -#. { N_("/Tools/Airbrush"), "A", tools_select_cmd_callback, AIRBRUSH }, -#. { N_("/Tools/Clone"), "C", tools_select_cmd_callback, CLONE }, -#. { N_("/Tools/Convolve"), "V", tools_select_cmd_callback, CONVOLVE }, -#. { N_("/Tools/Ink"), "K", tools_select_cmd_callback, INK }, -#. { N_("/Tools/Default Colors"), "D", tools_default_colors_cmd_callback, 0 }, -#. { N_("/Tools/Toolbox"), NULL, toolbox_raise_callback, 0 }, -#. { N_("/Tools/---"), NULL, NULL, 0, "" }, -#. { N_("/Tools/Default Colors"), "D", tools_default_colors_cmd_callback, 0 }, -#. { N_("/Tools/Swap Colors"), "X", tools_swap_colors_cmd_callback, 0 }, -#. -#: app/menus.c:203 +#: app/menus.c:196 +#, fuzzy +msgid "/Tools/tearoff1" +msgstr "/EszkЖzЖk/RadМr" + +#: app/menus.c:197 #, fuzzy msgid "/Tools/Toolbox" msgstr "/EszkЖzЖk/EszkЖztАr" -#: app/menus.c:204 +#: app/menus.c:198 #, fuzzy msgid "/Tools/Default Colors" msgstr "/EszkЖzЖk/AlapИrtelmezett szМnek" -#: app/menus.c:205 +#: app/menus.c:199 #, fuzzy msgid "/Tools/Swap Colors" msgstr "/EszkЖzЖk/SzМnek felcserИlИse" -#: app/menus.c:206 +#: app/menus.c:200 msgid "/Tools/---" msgstr "/EszkЖzЖk/---" -#: app/menus.c:208 +#. the tool entries themselves are built on the fly +#: app/menus.c:204 +#, fuzzy +msgid "/Filters/tearoff1" +msgstr "KitЖltИs tМpusa" + +#: app/menus.c:205 app/plug_in.c:1285 #, fuzzy msgid "/Filters/Repeat last" msgstr "/Filters/IsmИt vИgrehajt" -#: app/menus.c:209 +#: app/menus.c:206 app/plug_in.c:1286 #, fuzzy msgid "/Filters/Re-show last" msgstr "/Filters/IsmИt beАllМt" -#: app/menus.c:210 +#: app/menus.c:207 msgid "/Filters/---" msgstr "" -#: app/menus.c:212 +#: app/menus.c:209 +msgid "/Script-Fu/tearoff1" +msgstr "" + +#: app/menus.c:210 msgid "/Script-Fu/" msgstr "" -#: app/menus.c:214 +#: app/menus.c:212 +#, fuzzy +msgid "/Dialogs/tearoff1" +msgstr "/BeАllМtАsok/MintАk..." + +#: app/menus.c:213 #, fuzzy msgid "/Dialogs/Brushes..." msgstr "/BeАllМtАsok/Ecsetek..." -#: app/menus.c:215 +#: app/menus.c:214 #, fuzzy msgid "/Dialogs/Patterns..." msgstr "/BeАllМtАsok/MintАk..." -#: app/menus.c:216 +#: app/menus.c:215 #, fuzzy msgid "/Dialogs/Palette..." msgstr "/BeАllМtАsok/Paletta..." -#: app/menus.c:217 +#: app/menus.c:216 #, fuzzy msgid "/Dialogs/Gradient..." msgstr "/BeАllМtАsok/SzМnАtmenetek..." -#: app/menus.c:218 +#: app/menus.c:217 #, fuzzy msgid "/Dialogs/Layers & Channels..." msgstr "/BeАllМtАsok/RИtegek Иs csatornАk..." -#: app/menus.c:219 +#: app/menus.c:218 #, fuzzy msgid "/Dialogs/Indexed Palette..." msgstr "/BeАllМtАsok/Indexelt paletta..." -#: app/menus.c:220 +#: app/menus.c:219 #, fuzzy msgid "/Dialogs/Tool Options..." msgstr "/BeАllМtАsok/EszkЖzbeАllМtАsok..." -#: app/menus.c:221 +#: app/menus.c:220 #, fuzzy msgid "/Dialogs/Input Devices..." msgstr "/BeАllМtАsok/Beviteli eszkЖzЖk..." -#: app/menus.c:222 +#: app/menus.c:221 #, fuzzy msgid "/Dialogs/Device Status..." msgstr "/BeАllМtАsok/EszkЖzАllapot..." -#: app/menus.c:229 +#: app/menus.c:228 msgid "/Automatic" msgstr "/Automatikus" -#: app/menus.c:237 +#: app/menus.c:236 msgid "/By extension" msgstr "/KiterjesztИs szerint" -#: app/menus.c:436 +#: app/menus.c:290 +#, fuzzy +msgid "/New Path" +msgstr "зj paletta" + +#: app/menus.c:291 +#, fuzzy +msgid "/Duplicate Path" +msgstr "RИteg mАsolАsa" + +#: app/menus.c:292 +#, fuzzy +msgid "/Path to Selection" +msgstr "Paletta beАllМtАsok" + +#: app/menus.c:293 +msgid "/Stroke Path" +msgstr "" + +#: app/menus.c:294 +#, fuzzy +msgid "/Delete Path" +msgstr "TЖrЖl" + +#: app/menus.c:296 +#, fuzzy +msgid "/Copy Path" +msgstr "SzМnАtmenet mАsolАsa" + +#: app/menus.c:297 +#, fuzzy +msgid "/Paste Path" +msgstr "Beilleszt" + +#: app/menus.c:298 +#, fuzzy +msgid "/Import Path" +msgstr "SzМnpaletta" + +#: app/menus.c:299 +#, fuzzy +msgid "/Export Path" +msgstr "SzМnpaletta" + +#: app/menus.c:596 #, c-format msgid "Error opening file: %s\n" msgstr "" -#: app/menus.c:458 app/menus.c:539 +#: app/menus.c:618 app/menus.c:699 #, c-format msgid "/File/MRU%02d" msgstr "/FАjl/MRU%02d" -#: app/move.c:438 +#: app/module_db.c:269 +#, fuzzy +msgid "Module DB" +msgstr "MСd:" + +#: app/module_db.c:567 +#, c-format +msgid "load module: \"%s\"\n" +msgstr "" + +#: app/module_db.c:574 +#, c-format +msgid "skipping module: \"%s\"\n" +msgstr "" + +#: app/module_db.c:598 +#, c-format +msgid "module load error: %s: %s" +msgstr "" + +#: app/module_db.c:616 +msgid "missing module_init() symbol" +msgstr "" + +#: app/module_db.c:619 +#, c-format +msgid "%s: module_init() symbol not found" +msgstr "" + +#: app/module_db.c:772 +#, fuzzy +msgid "" +msgstr "MСd:" + +#: app/module_db.c:785 app/module_db.c:794 +msgid "on disk" +msgstr "" + +#: app/module_db.c:785 +msgid "only in memory" +msgstr "" + +#: app/module_db.c:794 +msgid "nowhere (click 'refresh')" +msgstr "" + +#: app/module_db.c:830 +msgid "Load" +msgstr "BetЖlt" + +#: app/module_db.c:839 +#, fuzzy +msgid "Unload" +msgstr "NИvtelen" + +#: app/module_db.c:852 +msgid "Purpose: " +msgstr "" + +#: app/module_db.c:853 +#, fuzzy +msgid "Author: " +msgstr "/Automatikus" + +#: app/module_db.c:854 +#, fuzzy +msgid "Version: " +msgstr "VerziС: " + +#: app/module_db.c:855 +#, fuzzy +msgid "Copyright: " +msgstr "RИteg magassАga: " + +#: app/module_db.c:856 +#, fuzzy +msgid "Date: " +msgstr "Forgat" + +#: app/module_db.c:857 +#, fuzzy +msgid "Location: " +msgstr "KijelЖlИs" + +#: app/module_db.c:858 +#, fuzzy +msgid "State: " +msgstr "Forgat" + +#: app/module_db.c:877 +msgid "Autoload during startup" +msgstr "" + +#: app/move.c:444 #, fuzzy msgid "Move Tool Options" msgstr "MАsolС beАllМtАsok" -#: app/paint_core.c:547 +#: app/paint_core.c:586 #, fuzzy msgid "No brushes available for use with this tool." msgstr "Nincs felhasznАlhatС minta a mШvelethez." -#: app/paint_core.c:1290 -msgid "paint_core_replace only works in INCREMENTAL mode" -msgstr "" - -#: app/paint_core.c:1427 +#: app/paint_core.c:1574 msgid "set_undo_tiles: undo_tiles is null" msgstr "" -#: app/paint_funcs.c:85 +#: app/paint_funcs.c:85 app/tool_options.c:777 msgid "Behind" msgstr "MЖgЖtt" @@ -4126,32 +4186,32 @@ msgstr "Rad msgid "Once Forward" msgstr "" -#: app/paintbrush.c:154 +#: app/paintbrush.c:155 msgid "Once Backward" msgstr "" -#: app/paintbrush.c:155 +#: app/paintbrush.c:157 #, fuzzy msgid "Loop Sawtooth" msgstr "FШrИszhullАm" -#: app/paintbrush.c:156 +#: app/paintbrush.c:159 msgid "Loop Triangle" msgstr "" -#: app/paintbrush.c:180 +#: app/paintbrush.c:185 msgid "Fade Out:" msgstr "" -#: app/paintbrush.c:207 +#: app/paintbrush.c:212 msgid "Length:" msgstr "" -#. the radio frame and box -#: app/paintbrush.c:232 +#. the gradient type +#: app/paintbrush.c:237 #, fuzzy -msgid "Gradient Type" -msgstr "SzМnАtmenet" +msgid "Type:" +msgstr "KitЖltИs tМpusa: " #: app/palette.c:484 #, c-format @@ -4347,612 +4407,612 @@ msgstr "" msgid "Perspective..." msgstr "PerspektМva" -#: app/plug_in.c:204 +#: app/plug_in.c:207 msgid "shmget failed...disabling shared memory tile transport" msgstr "" -#: app/plug_in.c:210 +#: app/plug_in.c:213 msgid "shmat failed...disabling shared memory tile transport" msgstr "" -#: app/plug_in.c:309 +#: app/plug_in.c:312 msgid "Plug-ins" msgstr "KЭlsУ programok" -#: app/plug_in.c:321 +#: app/plug_in.c:324 #, c-format msgid "query plug-in: \"%s\"\n" msgstr "KЭlsУ program lekИrdezИse: \"%s\"\n" -#: app/plug_in.c:359 +#: app/plug_in.c:362 #, c-format msgid "writing \"%s\"\n" msgstr "\"%s\" МrАsa\n" -#: app/plug_in.c:374 +#: app/plug_in.c:377 msgid "Starting extensions: " msgstr "BУvМtmИnyek indМtАsa" -#: app/plug_in.c:375 +#: app/plug_in.c:378 msgid "Extensions" msgstr "BУvМtmИnyek" -#: app/plug_in.c:690 +#: app/plug_in.c:693 #, c-format msgid "\"%s\" executable not found\n" msgstr "\"%s\" futtathatС fАjl nem talАlhatС\n" -#: app/plug_in.c:743 +#: app/plug_in.c:746 #, c-format msgid "unable to locate plug-in: \"%s\"" msgstr "nem talАlhatС meg a(z) \"%s\" kЭlsУ program" -#: app/plug_in.c:825 +#: app/plug_in.c:828 msgid "unable to open pipe" msgstr "" -#: app/plug_in.c:914 +#: app/plug_in.c:917 #, fuzzy, c-format msgid "unable to run plug-in: %s" msgstr "nem talАlhatС meg a(z) \"%s\" kЭlsУ program" -#: app/plug_in.c:1281 -msgid "/Filters/Repeat last" -msgstr "/Filters/IsmИt vИgrehajt" - -#: app/plug_in.c:1282 -msgid "/Filters/Re-show last" -msgstr "/Filters/IsmИt beАllМt" - -#: app/plug_in.c:1640 app/plug_in.c:1653 app/plug_in.c:1666 app/plug_in.c:1681 +#: app/plug_in.c:1648 app/plug_in.c:1661 app/plug_in.c:1674 app/plug_in.c:1689 #, c-format msgid "" "plug-in \"%s\" attempted to install procedure \"%s\" which does not take the " "standard plug-in args" msgstr "" -#: app/plug_in.c:1689 +#: app/plug_in.c:1697 #, c-format msgid "" "plug-in \"%s\" attempted to install procedure \"%s\" in an invalid menu " "location. Use either \"\", \"\", \"\", or \"\"." msgstr "" -#: app/plug_in.c:1709 +#: app/plug_in.c:1717 #, c-format msgid "" "plug_in \"%s\" attempted to install procedure \"%s\" which fails to comply " "with the array parameter passing standard. Argument %d is noncompliant." msgstr "" -#: app/plug_in.c:2141 +#: app/plug_in.c:2149 #, c-format msgid "duplicate plug-in: \"%s\" (skipping)\n" msgstr "" -#: app/plug_in.c:2349 +#: app/plug_in.c:2357 msgid "Unknown procedure type." msgstr "" -#: app/plug_in.c:2430 +#: app/plug_in.c:2438 #, c-format msgid "removing duplicate PDB procedure \"%s\"" msgstr "" -#: app/plug_in.c:2686 app/plug_in.c:2851 app/plug_in.c:2968 app/plug_in.c:3053 +#: app/plug_in.c:2694 app/plug_in.c:2859 app/plug_in.c:2976 app/plug_in.c:3061 msgid "the \"region\" arg type is not currently supported" msgstr "a \"region\" argumentum tМpus jelenleg nem tАmogatott" -#: app/posterize.c:217 +#: app/posterize.c:164 #, fuzzy msgid "Posterize does not operate on indexed drawables." msgstr "A FИnyerУ-kontraszt beАllМtАs nem mШkЖdik indexelt rajzfelЭleten." -#: app/posterize.c:262 app/tools.c:521 +#: app/posterize.c:211 app/tools.c:547 msgid "Posterize" msgstr "Poszter" -#: app/posterize.c:276 +#: app/posterize.c:225 #, fuzzy msgid "Posterize Levels: " msgstr "SzМn szintek: " -#: app/preferences_dialog.c:203 +#: app/preferences_dialog.c:205 msgid "Error: Levels of undo must be zero or greater." msgstr "Hiba: a visszavonАs puffer hossza csak 0 vagy magasabb lehet." -#: app/preferences_dialog.c:209 +#: app/preferences_dialog.c:211 msgid "Error: Number of processors must be between 1 and 30." msgstr "" -#: app/preferences_dialog.c:215 +#: app/preferences_dialog.c:217 msgid "Error: Marching speed must be 50 or greater." msgstr "Hiba: a kijelЖlИs kЖrvonalАnak sebessИge csak 50 vagy nagyobb lehet." -#: app/preferences_dialog.c:221 +#: app/preferences_dialog.c:223 msgid "Error: Default width must be one or greater." msgstr "Hiba: az alapИrtelmezett szИlessИg csak 1, vagy nagyobb lehet." -#: app/preferences_dialog.c:227 +#: app/preferences_dialog.c:229 msgid "Error: Default height must be one or greater." msgstr "Hiba: az alapИrtelmezett magassАg csak 1, vagy nagyobb lehet." -#: app/preferences_dialog.c:234 +#: app/preferences_dialog.c:236 #, fuzzy msgid "Error: Default unit must be within unit range." msgstr "Hiba: az alapИrtelmezett szИlessИg csak 1, vagy nagyobb lehet." -#: app/preferences_dialog.c:241 +#: app/preferences_dialog.c:243 #, fuzzy msgid "Error: default resolution must not be zero." msgstr "Hiba: a monitor felbontАsa nem lehet nulla." -#: app/preferences_dialog.c:249 +#: app/preferences_dialog.c:251 #, fuzzy msgid "Error: Default resolution unit must be within unit range." msgstr "Hiba: az alapИrtelmezett szИlessИg csak 1, vagy nagyobb lehet." -#: app/preferences_dialog.c:256 +#: app/preferences_dialog.c:258 #, fuzzy msgid "Error: Monitor resolution must not be zero." msgstr "Hiba: a monitor felbontАsa nem lehet nulla." -#: app/preferences_dialog.c:263 +#: app/preferences_dialog.c:265 #, fuzzy msgid "Error: Image title format must not be NULL." msgstr "Hiba: a monitor felbontАsa nem lehet nulla." -#: app/preferences_dialog.c:520 +#: app/preferences_dialog.c:536 msgid "You will need to restart GIMP for these changes to take effect." msgstr "A vАltozАsok ИrvИnybe lИpИsИhez Зjra kell indМtanod a GIMPet." -#: app/preferences_dialog.c:1433 +#: app/preferences_dialog.c:1467 msgid "Preferences" msgstr "TulajdonsАgok" #. The categories tree -#: app/preferences_dialog.c:1451 +#: app/preferences_dialog.c:1485 msgid "Categories" msgstr "" -#: app/preferences_dialog.c:1477 +#: app/preferences_dialog.c:1512 #, fuzzy msgid "New File Settings" msgstr "InterfИsz beАllМtАsok" -#: app/preferences_dialog.c:1479 +#: app/preferences_dialog.c:1514 #, fuzzy msgid "New File" msgstr "KitЖltИs tМpusa" -#: app/preferences_dialog.c:1489 +#: app/preferences_dialog.c:1524 #, fuzzy msgid "Default Image Size and Unit" msgstr "AlapИrtelmezett kИpmИret" -#: app/preferences_dialog.c:1503 +#: app/preferences_dialog.c:1538 msgid "Width" msgstr "SzИlessИg" -#: app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1540 msgid "Height" msgstr "MagassАg" -#: app/preferences_dialog.c:1532 +#: app/preferences_dialog.c:1567 #, fuzzy msgid "Default Image Resolution and Resolution Unit" msgstr "AlapИrtelmezett kИpmИret" -#: app/preferences_dialog.c:1557 app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:1592 app/preferences_dialog.c:2294 msgid "dpi" msgstr "" -#: app/preferences_dialog.c:1602 +#: app/preferences_dialog.c:1637 #, fuzzy msgid "Default Image Type:" msgstr "AlapИrtelmezett kИptМpus" -#: app/preferences_dialog.c:1607 +#: app/preferences_dialog.c:1642 #, fuzzy msgid "Display Settings" msgstr "KИpernyУbeАllМtАsok" -#: app/preferences_dialog.c:1609 +#: app/preferences_dialog.c:1644 msgid "Display" msgstr "KИpernyУ" -#: app/preferences_dialog.c:1616 +#: app/preferences_dialog.c:1651 #, fuzzy msgid "Transparency" msgstr "аtlАtszС" -#: app/preferences_dialog.c:1634 +#: app/preferences_dialog.c:1669 msgid "Light Checks" msgstr "VilАgos nИgyzethАlС" -#: app/preferences_dialog.c:1636 +#: app/preferences_dialog.c:1671 msgid "Mid-Tone Checks" msgstr "KЖzИpszЭrke nИgyzethАlС" -#: app/preferences_dialog.c:1638 +#: app/preferences_dialog.c:1673 msgid "Dark Checks" msgstr "SЖtИt nИgyzethАlС" -#: app/preferences_dialog.c:1640 +#: app/preferences_dialog.c:1675 msgid "White Only" msgstr "Csak fehИr" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1677 msgid "Gray Only" msgstr "Csak szЭrke" -#: app/preferences_dialog.c:1644 +#: app/preferences_dialog.c:1679 msgid "Black Only" msgstr "Csak fekete" -#: app/preferences_dialog.c:1648 +#: app/preferences_dialog.c:1683 #, fuzzy msgid "Transparency Type:" msgstr "аtlАtszСsАg tМpusa" -#: app/preferences_dialog.c:1654 app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1689 app/preferences_dialog.c:1760 msgid "Small" msgstr "Kicsi" -#: app/preferences_dialog.c:1656 app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1691 app/preferences_dialog.c:1761 msgid "Medium" msgstr "KЖzepes" -#: app/preferences_dialog.c:1658 app/preferences_dialog.c:1727 +#: app/preferences_dialog.c:1693 app/preferences_dialog.c:1762 msgid "Large" msgstr "Nagy" -#: app/preferences_dialog.c:1662 +#: app/preferences_dialog.c:1697 #, fuzzy msgid "Check Size:" msgstr "NИgyzet mИrete" -#: app/preferences_dialog.c:1664 app/transform_tool.c:191 +#: app/preferences_dialog.c:1699 app/transform_tool.c:190 msgid "Scaling" msgstr "SkАlАzАs" -#: app/preferences_dialog.c:1673 +#: app/preferences_dialog.c:1708 #, fuzzy msgid "Cubic Interpolation" msgstr "NИgyzetes interpolАciС" -#: app/preferences_dialog.c:1684 +#: app/preferences_dialog.c:1719 #, fuzzy msgid "Interface Settings" msgstr "InterfИsz beАllМtАsok" -#: app/preferences_dialog.c:1693 +#: app/preferences_dialog.c:1728 msgid "General" msgstr "" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1765 #, fuzzy msgid "Preview Size:" msgstr "BemutatСkИp mИrete: " -#: app/preferences_dialog.c:1739 +#: app/preferences_dialog.c:1774 #, fuzzy msgid "Levels of Undo:" msgstr "KimentИs beАllМtАsok" -#: app/preferences_dialog.c:1748 +#: app/preferences_dialog.c:1783 msgid "Recent Documents List Size:" msgstr "" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1786 msgid "Help System" msgstr "" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1795 msgid "Show Tool Tips" msgstr "" -#: app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1806 #, fuzzy msgid "Image Windows Settings" msgstr "InterfИsz beАllМtАsok" -#: app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1808 msgid "Image Windows" msgstr "" -#: app/preferences_dialog.c:1780 +#: app/preferences_dialog.c:1815 msgid "Appearance" msgstr "" -#: app/preferences_dialog.c:1789 +#: app/preferences_dialog.c:1824 #, fuzzy msgid "Resize Window on Zoom" msgstr "/NИzet/Ablak infС..." -#: app/preferences_dialog.c:1798 +#: app/preferences_dialog.c:1833 #, fuzzy msgid "Show Rulers" msgstr "RАcs megjelenМtИs" -#: app/preferences_dialog.c:1807 +#: app/preferences_dialog.c:1842 #, fuzzy msgid "Show Statusbar" msgstr "/NИzet/StАtuszsor be-ki" -#: app/preferences_dialog.c:1831 +#: app/preferences_dialog.c:1866 msgid "Marching Ants Speed:" msgstr "" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:1839 +#: app/preferences_dialog.c:1874 msgid "Custom" msgstr "EgyИni" #. set some commonly used format strings -#: app/preferences_dialog.c:1845 +#: app/preferences_dialog.c:1880 msgid "Standard" msgstr "" -#: app/preferences_dialog.c:1850 +#: app/preferences_dialog.c:1885 msgid "Show zoom percentage" msgstr "" -#: app/preferences_dialog.c:1855 +#: app/preferences_dialog.c:1890 msgid "Show zoom ratio" msgstr "" -#: app/preferences_dialog.c:1860 +#: app/preferences_dialog.c:1895 msgid "Show reversed zoom ratio" msgstr "" -#: app/preferences_dialog.c:1871 +#: app/preferences_dialog.c:1906 msgid "Image Title Format:" msgstr "" #. End of the title format string -#: app/preferences_dialog.c:1874 +#: app/preferences_dialog.c:1909 msgid "Pointer Movement Feedback" msgstr "" -#: app/preferences_dialog.c:1884 +#: app/preferences_dialog.c:1919 msgid "Perfect-but-slow Pointer Tracking" msgstr "" -#: app/preferences_dialog.c:1893 +#: app/preferences_dialog.c:1928 msgid "Disable Cursor Updating" msgstr "" -#: app/preferences_dialog.c:1904 +#: app/preferences_dialog.c:1939 #, fuzzy msgid "Tool Options Settings" msgstr "EszkЖztАr" -#: app/preferences_dialog.c:1906 app/tools.c:726 +#: app/preferences_dialog.c:1941 app/tools.c:884 msgid "Tool Options" msgstr "EszkЖztАr" -#: app/preferences_dialog.c:1913 +#: app/preferences_dialog.c:1948 #, fuzzy msgid "Paint Options" msgstr "FestИkszСrС beАllМtАsok" -#: app/preferences_dialog.c:1923 +#: app/preferences_dialog.c:1958 #, fuzzy msgid "Use Global Paint Options" msgstr "SzМnegyensЗly beАllМtАsok" -#: app/preferences_dialog.c:1933 -msgid "(Switching this off does not yet work consistently.)" +#: app/preferences_dialog.c:1974 +msgid "Display brush and pattern indicators on Toolbar" msgstr "" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1988 msgid "Environment Settings" msgstr "" -#: app/preferences_dialog.c:1945 +#: app/preferences_dialog.c:1990 msgid "Environment" msgstr "" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1997 #, fuzzy msgid "Resource Consumption" msgstr "ErУforrАs beАllМtАsok" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:2006 msgid "Conservative Memory Usage" msgstr "" -#: app/preferences_dialog.c:2012 app/preferences_dialog.c:2053 +#: app/preferences_dialog.c:2057 app/preferences_dialog.c:2098 msgid "Bytes" msgstr "B" -#: app/preferences_dialog.c:2013 app/preferences_dialog.c:2054 +#: app/preferences_dialog.c:2058 app/preferences_dialog.c:2099 msgid "KiloBytes" msgstr "kB" -#: app/preferences_dialog.c:2014 app/preferences_dialog.c:2055 +#: app/preferences_dialog.c:2059 app/preferences_dialog.c:2100 msgid "MegaBytes" msgstr "MB" -#: app/preferences_dialog.c:2019 +#: app/preferences_dialog.c:2064 #, fuzzy msgid "Tile Cache Size:" msgstr "NИgyzet mИrete" -#: app/preferences_dialog.c:2060 +#: app/preferences_dialog.c:2105 msgid "Maximum Image Size:" msgstr "" -#: app/preferences_dialog.c:2070 +#: app/preferences_dialog.c:2115 msgid "Number of Processors to Use:" msgstr "" -#: app/preferences_dialog.c:2074 +#: app/preferences_dialog.c:2119 #, fuzzy msgid "8-Bit Displays" msgstr "KИpernyУ" -#: app/preferences_dialog.c:2085 +#: app/preferences_dialog.c:2130 msgid "Install Colormap" msgstr "" -#: app/preferences_dialog.c:2094 +#: app/preferences_dialog.c:2139 msgid "Colormap Cycling" msgstr "" -#: app/preferences_dialog.c:2105 +#: app/preferences_dialog.c:2148 +msgid "File Previews / Thumbnails" +msgstr "" + +#: app/preferences_dialog.c:2175 +msgid "Try to Write a Thumbnail File:" +msgstr "" + +#: app/preferences_dialog.c:2180 msgid "Session Management" msgstr "" -#: app/preferences_dialog.c:2107 +#: app/preferences_dialog.c:2182 msgid "Session" msgstr "" -#: app/preferences_dialog.c:2114 +#: app/preferences_dialog.c:2189 msgid "Window Positions" msgstr "" -#: app/preferences_dialog.c:2123 +#: app/preferences_dialog.c:2198 msgid "Save Window Positions on Exit" msgstr "" -#: app/preferences_dialog.c:2137 +#: app/preferences_dialog.c:2212 msgid "Clear Saved Window Positions" msgstr "" -#: app/preferences_dialog.c:2144 +#: app/preferences_dialog.c:2219 msgid "Always Try to Restore Session" msgstr "" -#: app/preferences_dialog.c:2153 +#: app/preferences_dialog.c:2228 #, fuzzy msgid "Devices" msgstr "EszkЖzАllapot" -#: app/preferences_dialog.c:2162 +#: app/preferences_dialog.c:2237 #, fuzzy msgid "Save Device Status on Exit" msgstr "EszkЖzАllapot" -#: app/preferences_dialog.c:2173 +#: app/preferences_dialog.c:2248 #, fuzzy msgid "Monitor Information" msgstr "ElforgatАs" -#: app/preferences_dialog.c:2175 +#: app/preferences_dialog.c:2250 msgid "Monitor" msgstr "" -#: app/preferences_dialog.c:2182 +#: app/preferences_dialog.c:2257 #, fuzzy msgid "Get Monitor Resolution" msgstr "FelbontАs" -#: app/preferences_dialog.c:2197 +#: app/preferences_dialog.c:2272 #, c-format msgid "(Currently %d x %d dpi)" msgstr "" -#: app/preferences_dialog.c:2244 +#: app/preferences_dialog.c:2319 msgid "From X Server" msgstr "" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2334 msgid "Manually:" msgstr "" -#: app/preferences_dialog.c:2272 +#: app/preferences_dialog.c:2347 #, fuzzy msgid "Directories Settings" msgstr "KИpernyУbeАllМtАsok" -#: app/preferences_dialog.c:2274 +#: app/preferences_dialog.c:2349 msgid "Directories" msgstr "" -#: app/preferences_dialog.c:2287 +#: app/preferences_dialog.c:2362 #, fuzzy msgid "Temp Dir:" msgstr "Ideiglenes kЖnyvtАr:" -#: app/preferences_dialog.c:2287 +#: app/preferences_dialog.c:2362 msgid "Select Temp Dir" msgstr "" -#: app/preferences_dialog.c:2288 +#: app/preferences_dialog.c:2363 #, fuzzy msgid "Swap Dir:" msgstr "CseretАr kЖnyvtАr:" -#: app/preferences_dialog.c:2288 +#: app/preferences_dialog.c:2363 #, fuzzy msgid "Select Swap Dir" msgstr "/KijelЖlИs/иlesМt" -#: app/preferences_dialog.c:2320 +#: app/preferences_dialog.c:2395 #, fuzzy msgid "Brushes Directories" msgstr "Ecset szerkesztУ" -#: app/preferences_dialog.c:2320 +#: app/preferences_dialog.c:2395 #, fuzzy msgid "Select Brushes Dir" msgstr "Ecset kЖnyvtАr:" -#: app/preferences_dialog.c:2322 +#: app/preferences_dialog.c:2397 #, fuzzy msgid "Patterns Directories" msgstr "Minta kЖnyvtАr:" -#: app/preferences_dialog.c:2322 +#: app/preferences_dialog.c:2397 #, fuzzy msgid "Select Patterns Dir" msgstr "Minta kЖnyvtАr:" -#: app/preferences_dialog.c:2324 +#: app/preferences_dialog.c:2399 #, fuzzy msgid "Palettes Directories" msgstr "Paletta beАllМtАsok" -#: app/preferences_dialog.c:2324 +#: app/preferences_dialog.c:2399 #, fuzzy msgid "Select Palettes Dir" msgstr "Paletta tЖrlИse" -#: app/preferences_dialog.c:2326 +#: app/preferences_dialog.c:2401 #, fuzzy msgid "Gradients Directories" msgstr "SzМnАtmenet szerkesztУ" -#: app/preferences_dialog.c:2326 +#: app/preferences_dialog.c:2401 #, fuzzy msgid "Select Gradients Dir" msgstr "SzМnАtmenetek mentИse" -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 #, fuzzy msgid "Plug-Ins" msgstr "KЭlsУ programok" -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 msgid "Plug-Ins Directories" msgstr "" -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 msgid "Select Plug-Ins Dir" msgstr "" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 #, fuzzy msgid "Modules" msgstr "MСd:" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 msgid "Modules Directories" msgstr "" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 #, fuzzy msgid "Select Modules Dir" msgstr "KivАlasztАs mСdja" @@ -4973,27 +5033,31 @@ msgid "" "Argument %d to '%s' should be a %s, but got passed a %s" msgstr "" -#: app/rect_select.c:179 +#: app/rect_select.c:180 msgid "Selection: ADD" msgstr "" -#: app/rect_select.c:182 +#: app/rect_select.c:183 msgid "Selection: SUBTRACT" msgstr "" -#: app/rect_select.c:185 +#: app/rect_select.c:186 msgid "Selection: INTERSECT" msgstr "" -#: app/rect_select.c:188 +#: app/rect_select.c:189 msgid "Selection: REPLACE" msgstr "" -#: app/rect_select.c:404 app/rect_select.c:411 +#: app/rect_select.c:405 app/rect_select.c:412 #, fuzzy msgid "Selection: " msgstr "KijelЖlИs" +#: app/resize.c:159 +msgid "Scale Layer" +msgstr "RИteg skАlАzАsa" + #: app/resize.c:160 app/resize.c:181 #, fuzzy msgid "Size" @@ -5008,6 +5072,10 @@ msgstr "Sk msgid "Pixel Dimensions" msgstr "BУvМtmИnyek" +#: app/resize.c:174 +msgid "Resize Layer" +msgstr "RИteg АtmИretezИse" + #: app/resize.c:178 msgid "Image Resize" msgstr "аtmИretezИs" @@ -5043,12 +5111,12 @@ msgstr "" msgid "Rotation Information" msgstr "ElforgatАs" -#: app/rotate_tool.c:105 +#: app/rotate_tool.c:106 #, fuzzy msgid "Center X:" msgstr "KЖzИpsУ X: " -#: app/rotate_tool.c:400 +#: app/rotate_tool.c:401 #, fuzzy msgid "Rotating..." msgstr "ForgatАs" @@ -5097,39 +5165,39 @@ msgstr "" msgid "Shearing..." msgstr "CsavarАs" -#: app/text_tool.c:158 +#: app/text_tool.c:157 #, fuzzy msgid "Text Tool Options" msgstr "SzЖveg beАllМtАsok" -#: app/text_tool.c:169 +#: app/text_tool.c:168 app/tool_options.c:317 msgid "Antialiasing" msgstr "аrnyalАs" -#: app/text_tool.c:183 +#: app/text_tool.c:182 #, fuzzy msgid "Border:" msgstr "Keret: " -#: app/text_tool.c:209 +#: app/text_tool.c:208 msgid "Use Dynamic Text" msgstr "" -#: app/text_tool.c:285 +#: app/text_tool.c:278 msgid "text_call_gdyntext: gDynText procedure lookup failed" msgstr "" #. Create the shell -#: app/text_tool.c:408 app/text_tool.c:410 +#: app/text_tool.c:399 app/text_tool.c:401 msgid "Text Tool" msgstr "SzЖveg" -#: app/text_tool.c:617 +#: app/text_tool.c:609 #, c-format msgid "Font '%s' not found.%s" msgstr "A(z) '%s' betШtМpus nem talАlhatС.%s" -#: app/text_tool.c:619 +#: app/text_tool.c:611 msgid "" "\n" "If you don't have scalable fonts, try turning off antialiasing in the tool " @@ -5139,27 +5207,27 @@ msgstr "" "Ha nincsenek skАlАzhatС betШkИszletek, prСbАld meg kikapcsolni az АrnyalАst " "a beАllМtАsokban." -#: app/text_tool.c:730 +#: app/text_tool.c:722 msgid "Text Layer" msgstr "SzЖveg rИteg" -#: app/text_tool.c:773 +#: app/text_tool.c:765 msgid "text_render: could not allocate image" msgstr "" -#: app/threshold.c:234 +#: app/threshold.c:189 msgid "Threshold Options" msgstr "" -#: app/threshold.c:283 +#: app/threshold.c:232 msgid "Threshold does not operate on indexed drawables." msgstr "" -#: app/threshold.c:341 app/tools.c:536 +#: app/threshold.c:291 app/tools.c:562 msgid "Threshold" msgstr "" -#: app/threshold.c:356 +#: app/threshold.c:306 msgid "Threshold Range: " msgstr "" @@ -5167,21 +5235,21 @@ msgstr "" msgid "starting tile preswapper\n" msgstr "" -#: app/tile_swap.c:379 +#: app/tile_swap.c:381 msgid "unable to open swap file...BAD THINGS WILL HAPPEN SOON" msgstr "" -#: app/tile_swap.c:499 app/tile_swap.c:560 +#: app/tile_swap.c:501 app/tile_swap.c:562 #, c-format msgid "unable to seek to tile location on disk: %d" msgstr "" -#: app/tile_swap.c:518 +#: app/tile_swap.c:520 #, c-format msgid "unable to read tile data from disk: %d/%d ( %d ) bytes read" msgstr "" -#: app/tile_swap.c:573 +#: app/tile_swap.c:575 #, c-format msgid "unable to write tile data to disk: %d ( %d ) bytes written" msgstr "" @@ -5217,315 +5285,436 @@ msgstr "" "A GIMP tipp fАjl nem talАlhatС!\n" "Kell lennie egy olyan fАljnak, amit Зgy hМvnak, hogy " -#: app/tools.c:85 +#: app/tools.c:81 msgid "Rect Select" msgstr "TИglalap kijelЖlИs" -#: app/tools.c:87 +#: app/tools.c:83 msgid "/Tools/Rect Select" msgstr "/EszkЖzЖk/TИglalap kijelЖlИs" -#: app/tools.c:90 +#: app/tools.c:86 msgid "Select rectangular regions" msgstr "TИglalap kijelЖlИse" -#: app/tools.c:100 +#: app/tools.c:96 msgid "Ellipse Select" msgstr "Ellipszis kijelЖlИs" -#: app/tools.c:102 +#: app/tools.c:98 msgid "/Tools/Ellipse Select" msgstr "/EszkЖzЖk/Ellipszis kijelЖlИs" -#: app/tools.c:105 +#: app/tools.c:101 msgid "Select elliptical regions" msgstr "Ellipszis kijelЖlИse" -#: app/tools.c:115 +#: app/tools.c:111 msgid "Free Select" msgstr "SzabadkИzi kijelЖlИs" -#: app/tools.c:117 +#: app/tools.c:113 msgid "/Tools/Free Select" msgstr "/EszkЖzЖk/SzabadkИzi kijelЖlИs" -#: app/tools.c:120 +#: app/tools.c:116 msgid "Select hand-drawn regions" msgstr "KИzzel kЖrЭlhatАrolt terЭlet kijelЖlИse" -#: app/tools.c:130 +#: app/tools.c:126 msgid "Fuzzy Select" msgstr "Laza kijelЖlИs" -#: app/tools.c:132 +#: app/tools.c:128 msgid "/Tools/Fuzzy Select" msgstr "/EszkЖzЖk/Laza kijelЖlИs" -#: app/tools.c:135 +#: app/tools.c:131 msgid "Select contiguous regions" msgstr "EgybefЭggУ terЭletek kijelЖlИse" -#: app/tools.c:145 +#: app/tools.c:141 msgid "Bezier Select" msgstr "BИzier kijelЖlИs" -#: app/tools.c:147 +#: app/tools.c:143 msgid "/Tools/Bezier Select" msgstr "/EszkЖzЖk/BИzier kijelЖlИs" -#: app/tools.c:150 +#: app/tools.c:146 msgid "Select regions using Bezier curves" msgstr "KijelЖlИs BИzier-gЖrbИk segМtsИgИvel" -#: app/tools.c:160 +#: app/tools.c:156 msgid "Intelligent Scissors" msgstr "Intelligens ollС" -#: app/tools.c:162 +#: app/tools.c:158 msgid "/Tools/Intelligent Scissors" msgstr "/EszkЖzЖk/Intelligens ollС" -#: app/tools.c:165 +#: app/tools.c:161 msgid "Select shapes from image" msgstr "Alakok kijelЖlИse a kИprУl" -#: app/tools.c:175 +#: app/tools.c:171 msgid "Move" msgstr "MozgatАs" -#: app/tools.c:177 +#: app/tools.c:173 msgid "/Tools/Move" msgstr "/EszkЖzЖk/MozgatАs" -#: app/tools.c:180 +#: app/tools.c:176 msgid "Move layers & selections" msgstr "KijelЖlИsek Иs rИtegek mozgatАsa" -#: app/tools.c:190 +#: app/tools.c:186 msgid "Magnify" msgstr "NagyМtАs" -#: app/tools.c:192 +#: app/tools.c:188 msgid "/Tools/Magnify" msgstr "/EszkЖzЖk/NagyМtАs" -#: app/tools.c:195 +#: app/tools.c:191 msgid "Zoom in & out" msgstr "NagyМtАs Иs kicsinyМtИs" -#: app/tools.c:205 +#: app/tools.c:201 #, fuzzy msgid "Crop & Resize" msgstr "аtmИretezИs" -#: app/tools.c:207 +#: app/tools.c:203 #, fuzzy msgid "/Tools/Crop & Resize" msgstr "/EszkЖzЖk/KivАgАs" -#: app/tools.c:210 +#: app/tools.c:206 #, fuzzy msgid "Crop or resize the image" msgstr "KivАgАs a kИpbУl" #. the first radio frame and box, for transform type -#: app/tools.c:220 app/tools.c:235 app/tools.c:250 app/tools.c:265 +#: app/tools.c:216 app/tools.c:231 app/tools.c:246 app/tools.c:261 #: app/transform_core.c:125 app/transform_tool.c:224 msgid "Transform" msgstr "аtalakМtАs" -#: app/tools.c:222 +#: app/tools.c:218 msgid "/Tools/Transform" msgstr "/EszkЖzЖk/аtalakМtАs" -#: app/tools.c:225 +#: app/tools.c:221 msgid "Transform the layer or selection" msgstr "RИteg vagy kijelЖlИs АtalakМtАsa" -#: app/tools.c:280 +#: app/tools.c:276 msgid "Flip" msgstr "TЭkrЖzИs" -#: app/tools.c:282 +#: app/tools.c:278 msgid "/Tools/Flip" msgstr "/EszkЖzЖk/TЭkrЖzИs" -#: app/tools.c:285 +#: app/tools.c:281 msgid "Flip the layer or selection" msgstr "RИteg vagy kijelЖlИs tЭkrЖzИse" -#: app/tools.c:295 +#: app/tools.c:291 msgid "Text" msgstr "SzЖveg" -#: app/tools.c:297 +#: app/tools.c:293 msgid "/Tools/Text" msgstr "/EszkЖzЖk/SzЖveg" -#: app/tools.c:300 +#: app/tools.c:296 msgid "Add text to the image" msgstr "SzЖveg МrАsa a kИpre" -#: app/tools.c:312 +#: app/tools.c:308 msgid "/Tools/Color Picker" msgstr "/EszkЖzЖk/SzМnpipetta" -#: app/tools.c:315 +#: app/tools.c:311 msgid "Pick colors from the image" msgstr "SzМn beАllМtАsa a kИprУl" -#: app/tools.c:325 +#: app/tools.c:321 msgid "Bucket Fill" msgstr "KitЖltИs" -#: app/tools.c:327 +#: app/tools.c:323 msgid "/Tools/Bucket Fill" msgstr "/EszkЖzЖk/KitЖltИs" -#: app/tools.c:330 +#: app/tools.c:326 msgid "Fill with a color or pattern" msgstr "SzМnnel vagy mintАval feltЖltИs" -#: app/tools.c:340 +#: app/tools.c:336 msgid "Blend" msgstr "SzМnАtmenet" -#: app/tools.c:342 +#: app/tools.c:338 msgid "/Tools/Blend" msgstr "/EszkЖzЖk/SzМnАtmenet" -#: app/tools.c:345 +#: app/tools.c:341 msgid "Fill with a color gradient" msgstr "SzМnАtmenettel feltЖltИs" -#: app/tools.c:355 +#: app/tools.c:351 msgid "Pencil" msgstr "Ceruza" -#: app/tools.c:357 +#: app/tools.c:353 msgid "/Tools/Pencil" msgstr "/EszkЖzЖk/Ceruza" -#: app/tools.c:360 +#: app/tools.c:356 msgid "Draw sharp pencil strokes" msgstr "иles ceruzavonАsok rajzolАsa" -#: app/tools.c:370 +#: app/tools.c:366 msgid "Paintbrush" msgstr "Ecset" -#: app/tools.c:372 +#: app/tools.c:368 msgid "/Tools/Paintbrush" msgstr "/EszkЖzЖk/Ecset" -#: app/tools.c:375 +#: app/tools.c:371 msgid "Paint fuzzy brush strokes" msgstr "Finom ecsetvonАsok festИse" -#: app/tools.c:385 +#: app/tools.c:381 msgid "Eraser" msgstr "RadМr" -#: app/tools.c:387 +#: app/tools.c:383 msgid "/Tools/Eraser" msgstr "/EszkЖzЖk/RadМr" -#: app/tools.c:390 +#: app/tools.c:386 msgid "Erase to background or transparency" msgstr "HАttИrszМnig vagy АtlАtszСsАgig tЖrЖl" -#: app/tools.c:400 +#: app/tools.c:396 msgid "Airbrush" msgstr "FestИkszСrС" -#: app/tools.c:402 +#: app/tools.c:398 msgid "/Tools/Airbrush" msgstr "/EszkЖzЖk/FestИkszСrС" -#: app/tools.c:405 +#: app/tools.c:401 msgid "Airbrush with variable pressure" msgstr "FestИkszСrС vАltoztathatС erУssИggel" -#: app/tools.c:415 +#: app/tools.c:411 msgid "Clone" msgstr "MАsolС" -#: app/tools.c:417 +#: app/tools.c:413 msgid "/Tools/Clone" msgstr "/EszkЖzЖk/MАsolС" -#: app/tools.c:420 +#: app/tools.c:416 msgid "Paint using patterns or image regions" msgstr "MintАval vagy kИprИszlettel fest" -#: app/tools.c:430 +#: app/tools.c:426 msgid "Convolve" msgstr "MАzolАs" -#: app/tools.c:432 +#: app/tools.c:428 msgid "/Tools/Convolve" msgstr "/EszkЖzЖk/MАzolАs" -#: app/tools.c:435 +#: app/tools.c:431 msgid "Blur or sharpen" msgstr "HomАlyosМtАs vagy ИlesМtИs" -#: app/tools.c:445 +#: app/tools.c:441 msgid "Ink" msgstr "Tus" -#: app/tools.c:447 +#: app/tools.c:443 msgid "/Tools/Ink" msgstr "/EszkЖzЖk/Tus" -#: app/tools.c:450 +#: app/tools.c:446 msgid "Draw in ink" msgstr "Tusrajz" -#: app/tools.c:461 +#: app/tools.c:456 app/tools.c:461 +msgid "Dodge or Burn" +msgstr "" + +#: app/tools.c:458 +#, fuzzy +msgid "/Tools/DodgeBurn" +msgstr "/EszkЖzЖk/MozgatАs" + +#: app/tools.c:471 app/tools.c:476 +msgid "Smudge" +msgstr "" + +#: app/tools.c:473 +#, fuzzy +msgid "/Tools/Smudge" +msgstr "/EszkЖzЖk/MozgatАs" + +#: app/tools.c:487 msgid "By Color Select" msgstr "KijelЖlИs szМn szerint" -#: app/tools.c:463 +#: app/tools.c:489 msgid "/Select/By Color..." msgstr "/KijelЖlИs/SzМn szerint..." -#: app/tools.c:478 +#: app/tools.c:504 msgid "/Image/Colors/Color Balance" msgstr "/KИp/SzМnek/SzМnegyensЗly" -#: app/tools.c:493 +#: app/tools.c:519 msgid "/Image/Colors/Brightness-Contrast" msgstr "/KИp/SzМnek/FИnyerУ-kontraszt" -#: app/tools.c:508 +#: app/tools.c:534 msgid "/Image/Colors/Hue-Saturation" msgstr "/KИp/SzМnek/SzМnessИg-telМtettsИg" -#: app/tools.c:523 +#: app/tools.c:549 msgid "/Image/Colors/Posterize" msgstr "/KИp/SzМnek/Poszter" -#: app/tools.c:538 +#: app/tools.c:564 msgid "/Image/Colors/Threshold" msgstr "/KИp/SzМnek/KЭszЖbszint" -#: app/tools.c:553 +#: app/tools.c:579 msgid "/Image/Colors/Curves" msgstr "/KИp/SzМnek/GЖrbИk" -#: app/tools.c:568 +#: app/tools.c:594 msgid "/Image/Colors/Levels" msgstr "/KИp/SzМnek/Szintek" -#: app/tools.c:581 -msgid "Histogram" -msgstr "Hisztogram" - -#: app/tools.c:583 +#: app/tools.c:609 msgid "/Image/Histogram" msgstr "/KИp/Hisztogram" +#: app/tool_options.c:206 app/tool_options.c:688 +msgid "This tool has no options." +msgstr "" +"Ennek az eszkЖznek nincsenek\n" +"beАllМtАsi lehetУsИgei." + +#: app/tool_options.c:230 +#, fuzzy +msgid "Rectangular Select Options" +msgstr "SzМn szerinti kijelЖlИs beАllМtАsok" + +#: app/tool_options.c:232 +#, fuzzy +msgid "Elliptical Selection Options" +msgstr "BИzier kijelЖlИs beАllМtАsok" + +#: app/tool_options.c:234 +#, fuzzy +msgid "Free-hand Selection Options" +msgstr "BИzier kijelЖlИs beАllМtАsok" + +#: app/tool_options.c:236 +#, fuzzy +msgid "Fuzzy Selection Options" +msgstr "BИzier kijelЖlИs beАllМtАsok" + +#: app/tool_options.c:238 +msgid "Bezier Selection Options" +msgstr "BИzier kijelЖlИs beАllМtАsok" + +#: app/tool_options.c:240 +#, fuzzy +msgid "Intelligent Scissors Options" +msgstr "Intelligens ollС" + +#: app/tool_options.c:242 +msgid "By-Color Select Options" +msgstr "SzМn szerinti kijelЖlИs beАllМtАsok" + +#: app/tool_options.c:243 +msgid "ERROR: Unknown Selection Type" +msgstr "" + +#: app/tool_options.c:273 +#, fuzzy +msgid "Feather" +msgstr "/KijelЖlИs/Elmos" + +#: app/tool_options.c:381 +msgid "Fixed size / aspect ratio" +msgstr "" + +#: app/tool_options.c:552 +msgid "Bucket Fill Options" +msgstr "KitЖltИs beАllМtАsok" + +#: app/tool_options.c:554 +msgid "Blend Options" +msgstr "SzМnАtmenet beАllМtАsok" + +#: app/tool_options.c:556 +#, fuzzy +msgid "Pencil Options" +msgstr "MegnyitАs beАllМtАsok" + +#: app/tool_options.c:558 +#, fuzzy +msgid "Paintbrush Options" +msgstr "FestИkszСrС beАllМtАsok" + +#: app/tool_options.c:560 +#, fuzzy +msgid "Erazer Options" +msgstr "RadМr beАllМtАsok" + +#: app/tool_options.c:562 +msgid "Airbrush Options" +msgstr "FestИkszСrС beАllМtАsok" + +#: app/tool_options.c:564 +msgid "Clone Tool Options" +msgstr "MАsolС beАllМtАsok" + +#: app/tool_options.c:566 +#, fuzzy +msgid "Convolver Options" +msgstr "EszkЖztАr" + +#: app/tool_options.c:568 +#, fuzzy +msgid "Ink Options" +msgstr "MegnyitАs beАllМtАsok" + +#: app/tool_options.c:570 +#, fuzzy +msgid "Dodge or Burn Options" +msgstr "SzМnegyensЗly beАllМtАsok" + +#: app/tool_options.c:572 +#, fuzzy +msgid "Smudge Options" +msgstr "KimentИs beАllМtАsok" + +#: app/tool_options.c:573 +msgid "ERROR: Unknown Paint Type" +msgstr "" + #: app/transform_core.c:122 msgid "Rotate" msgstr "Forgat" @@ -5546,24 +5735,24 @@ msgstr "" "Az АtalakМtАsok nem mШkЖdnek\n" "maszkot tartalmazС rИtegeken." -#: app/transform_core.c:1132 +#: app/transform_core.c:1140 msgid "homogeneous coordinate = 0...\n" msgstr "" -#: app/transform_core.c:1387 +#: app/transform_core.c:1395 #, fuzzy msgid "Transformation" msgstr "аtalakМtАs" -#: app/transform_tool.c:190 +#: app/transform_tool.c:189 msgid "Rotation" msgstr "ForgatАs" -#: app/transform_tool.c:192 +#: app/transform_tool.c:191 msgid "Shearing" msgstr "CsavarАs" -#: app/transform_tool.c:193 +#: app/transform_tool.c:192 msgid "Perspective" msgstr "PerspektМva" @@ -5684,6 +5873,97 @@ msgstr "" msgid "unable to read tile data from xcf file: %d ( %d ) bytes read" msgstr "" +#. pseudo unit +#: libgimp/gimpunit.c:44 +#, fuzzy +msgid "pixel" +msgstr "Pixel" + +#: libgimp/gimpunit.c:44 +#, fuzzy +msgid "pixels" +msgstr "Pixel" + +#. standard units +#: libgimp/gimpunit.c:47 +msgid "inch" +msgstr "coll" + +#: libgimp/gimpunit.c:47 +msgid "inches" +msgstr "coll" + +#: libgimp/gimpunit.c:48 +msgid "millimeter" +msgstr "" + +#: libgimp/gimpunit.c:48 +#, fuzzy +msgid "millimeters" +msgstr "KitЖltИs tМpusa" + +#. professional units +#: libgimp/gimpunit.c:51 +msgid "point" +msgstr "" + +#: libgimp/gimpunit.c:51 +msgid "points" +msgstr "" + +#: libgimp/gimpunit.c:52 +msgid "pica" +msgstr "" + +#: libgimp/gimpunit.c:52 +msgid "picas" +msgstr "" + +#: libgimp/gimpunit.c:59 +#, fuzzy +msgid "percent" +msgstr "PerspektМva" + +#: libgimp/gimpfileselection.c:352 +#, fuzzy +msgid "Select File" +msgstr "KijelЖlИs" + +#: libgimp/gimpfileselection.c:355 libgimp/gimpunitmenu.c:510 +#, fuzzy +msgid "Select" +msgstr "/KijelЖlИs/Teljes kИp" + +#: libgimp/gimpenv.c:82 +msgid "warning: no home directory." +msgstr "figyelmeztetИs: nincs home kЖnyvtАr." + +#: libgimp/gimpunitmenu.c:207 +msgid "More..." +msgstr "" + +#: libgimp/gimpunitmenu.c:333 +msgid "unit-menu-format string ended within %%-sequence" +msgstr "" + +#: libgimp/gimpunitmenu.c:366 +msgid "unit-menu-format contains unknownformat sequence '%%%c'" +msgstr "" + +#: libgimp/gimpunitmenu.c:453 +#, fuzzy +msgid "Unit Selection" +msgstr "KijelЖlИs" + +#: libgimp/gimpunitmenu.c:479 +#, fuzzy +msgid "Unit " +msgstr "NИvtelen" + +#: libgimp/gimpunitmenu.c:481 +msgid "Factor" +msgstr "" + #: app/regex.c:976 msgid "Success" msgstr "" @@ -5772,6 +6052,202 @@ msgstr "" msgid "No previous regular expression" msgstr "" +#~ msgid "/File/Quit" +#~ msgstr "/FАjl/KilИp" + +#~ msgid "/File/Quit" +#~ msgstr "/FАjl/KilИp" + +#, fuzzy +#~ msgid "Automatic" +#~ msgstr "/Automatikus" + +#~ msgid "/File/Open" +#~ msgstr "/FАjl/Megnyit" + +#~ msgid "/File/Open" +#~ msgstr "/FАjl/Megnyit" + +#~ msgid "/File/Save" +#~ msgstr "/FАjl/MentИs" + +#~ msgid "/File/Save as" +#~ msgstr "/FАjl/MentИs mАskИnt" + +#, fuzzy +#~ msgid "/Layers/Stack/Previous Layer" +#~ msgstr "/RИtegek/Feljebb" + +#, fuzzy +#~ msgid "/Layers/Stack/Next Layer" +#~ msgstr "/RИtegek/Feljebb" + +#, fuzzy +#~ msgid "/Layers/Stack/Raise Layer" +#~ msgstr "/RИtegek/Feljebb" + +#, fuzzy +#~ msgid "/Layers/Stack/Lower Layer" +#~ msgstr "/RИtegek/Lejjebb" + +#, fuzzy +#~ msgid "/Layers/Stack/Layer to Top" +#~ msgstr "/RИtegek/Feljebb" + +#, fuzzy +#~ msgid "/Layers/Stack/Layer to Bottom" +#~ msgstr "/RИtegek/Feljebb" + +#~ msgid "/Layers/Anchor Layer" +#~ msgstr "/RИtegek/RИteg rЖgzМtИse" + +#~ msgid "/Layers/Merge Visible Layers" +#~ msgstr "/RИtegek/LАthatС rИtegek ЖsszefИsЭlИse" + +#~ msgid "/Layers/Flatten Image" +#~ msgstr "/RИtegek/Egy rИteggИ" + +#~ msgid "/Layers/Alpha To Selection" +#~ msgstr "/RИtegek/Alfa csatorna kijelЖlИssИ" + +#~ msgid "/Layers/Mask To Selection" +#~ msgstr "/RИtegek/Maszk kijelЖlИssИ" + +#~ msgid "/Layers/Add Alpha Channel" +#~ msgstr "/RИtegek/Alfa csatorna lИtrehozАs" + +#~ msgid "/Image/RGB" +#~ msgstr "/KИp/RGB" + +#~ msgid "/Image/Grayscale" +#~ msgstr "/KИp/Fekete-fehИr" + +#~ msgid "/Image/Indexed" +#~ msgstr "/KИp/Indexelt" + +#~ msgid "/Image/Colors/Threshold" +#~ msgstr "/KИp/SzМnek/KЭszЖbszint" + +#~ msgid "/Image/Colors/Posterize" +#~ msgstr "/KИp/SzМnek/Poszter" + +#~ msgid "/Image/Colors/Equalize" +#~ msgstr "/KИp/SzМnek/SzМnek kiegyenlМtИse" + +#~ msgid "/Image/Colors/Invert" +#~ msgstr "/KИp/SzМnek/InvertАlАs" + +#~ msgid "/Image/Colors/Color Balance" +#~ msgstr "/KИp/SzМnek/SzМnegyensЗly" + +#~ msgid "/Image/Colors/Brightness-Contrast" +#~ msgstr "/KИp/SzМnek/FИnyerУ-kontraszt" + +#~ msgid "/Image/Colors/Hue-Saturation" +#~ msgstr "/KИp/SzМnek/SzМnessИg-telМtettsИg" + +#~ msgid "/Image/Colors/Curves" +#~ msgstr "/KИp/SzМnek/GЖrbИk" + +#~ msgid "/Image/Colors/Levels" +#~ msgstr "/KИp/SzМnek/Szintek" + +#~ msgid "/Image/Colors/Desaturate" +#~ msgstr "/KИp/SzМnek/Fekete-fehИr" + +#~ msgid "/Image/Alpha/Add Alpha Channel" +#~ msgstr "/KИp/Alfa/Alfa csatorna lИtrehozАs" + +#~ msgid "/Select" +#~ msgstr "/KijelЖlИs" + +#~ msgid "/Edit/Cut" +#~ msgstr "/Szerkeszt/KivАg" + +#~ msgid "/Edit/Copy" +#~ msgstr "/Szerkeszt/MАsol" + +#~ msgid "/Edit/Paste" +#~ msgstr "/Szerkeszt/Beilleszt" + +#~ msgid "/Edit/Paste Into" +#~ msgstr "/Szerkeszt/Helyben beilleszt" + +#~ msgid "/Edit/Fill" +#~ msgstr "/Szerkeszt/Kifest" + +#~ msgid "/Edit/Stroke" +#~ msgstr "/Szerkeszt/KЖrberajzol" + +#~ msgid "/Edit/Cut Named" +#~ msgstr "/Szerkeszt/KivАg (nИv szerint)" + +#~ msgid "/Edit/Copy Named" +#~ msgstr "/Szerkeszt/MАsol (nИv szerint)" + +#~ msgid "/Edit/Paste Named" +#~ msgstr "/Szerkeszt/Beilleszt (nИv szerint)" + +#~ msgid "/Image/Colors" +#~ msgstr "/KИp/SzМnek" + +#~ msgid "/Image/Channel Ops/Offset" +#~ msgstr "/KИp/CsatornАk/EltolАs" + +#~ msgid "/Image/Histogram" +#~ msgstr "/KИp/Hisztogram" + +#~ msgid "/Select/Save To Channel" +#~ msgstr "/KijelЖlИs/MentИs csatornАba" + +#~ msgid "/View/Toggle Rulers" +#~ msgstr "/NИzet/VonalzС be-ki" + +#~ msgid "/View/Toggle Guides" +#~ msgstr "/NИzet/SegИdvonalak be-ki" + +#~ msgid "/View/Snap To Guides" +#~ msgstr "/NИzet/SegИdvonalhoz igazМt" + +#~ msgid "/View/Toggle Statusbar" +#~ msgstr "/NИzet/StАtuszsor be-ki" + +#~ msgid "/View/Dot for dot" +#~ msgstr "/NИzet/PontrСl pontra" + +#~ msgid "/File/Close" +#~ msgstr "/FАjl/BezАr" + +#, fuzzy +#~ msgid "Replace Current Selection" +#~ msgstr "TИglalap kijelЖlИs" + +#~ msgid "Raise Layer" +#~ msgstr "Feljebb" + +#~ msgid "Lower Layer" +#~ msgstr "Lejjebb" + +#~ msgid "Layer to Top" +#~ msgstr "LegfelЭlre" + +#~ msgid "Layer to Bottom" +#~ msgstr "Legalulra" + +#, fuzzy +#~ msgid "/Select/Toggle" +#~ msgstr "/KijelЖlИs/VАlt" + +#, fuzzy +#~ msgid "Gradient Type" +#~ msgstr "SzМnАtmenet" + +#~ msgid "/Filters/Repeat last" +#~ msgstr "/Filters/IsmИt vИgrehajt" + +#~ msgid "/Filters/Re-show last" +#~ msgstr "/Filters/IsmИt beАllМt" + #~ msgid "Unable to reallocate segments array for mask boundary." #~ msgstr "" #~ "Nem lehet Зjra lefoglalni a szakaszok tЖmbjИt a hatАrolС maszk " @@ -5810,9 +6286,6 @@ msgstr "" #~ msgid "\t\tyou quit the GIMP.\n" #~ msgstr "A GIMP nИvjegye" -#~ msgid "Layer height: " -#~ msgstr "RИteg magassАga: " - #, fuzzy #~ msgid "failed to run pattern callback function" #~ msgstr "nem sikerЭlt futtatni az ecset visszahМvАs fЭggvИnyИt" @@ -5825,15 +6298,6 @@ msgstr "" #~ msgid "Print Size" #~ msgstr "BemutatСkИp mИrete: " -#~ msgid "Airbrush Options" -#~ msgstr "FestИkszСrС beАllМtАsok" - -#~ msgid "Blend Options" -#~ msgstr "SzМnАtmenet beАllМtАsok" - -#~ msgid "Bucket Fill Options" -#~ msgstr "KitЖltИs beАllМtАsok" - #~ msgid "Fill Threshold: " #~ msgstr "KitЖltИs kЭszЖbszint: " @@ -5843,29 +6307,16 @@ msgstr "" #~ msgid "Fill Type: " #~ msgstr "KitЖltИs tМpusa: " -#~ msgid "Clone Tool Options" -#~ msgstr "MАsolС beАllМtАsok" - #~ msgid "Intensity" #~ msgstr "IntenzitАs" -#~ msgid "Selection" -#~ msgstr "KijelЖlИs" - #~ msgid "Y Origin: " #~ msgstr "KezdУ Y: " -#~ msgid "Eraser Options" -#~ msgstr "RadМr beАllМtАsok" - #, fuzzy #~ msgid "pixels per " #~ msgstr " pixel / " -#, fuzzy -#~ msgid "Ink Options" -#~ msgstr "MegnyitАs beАllМtАsok" - #, fuzzy #~ msgid "Channel procedures" #~ msgstr "CsatornАk" @@ -5890,10 +6341,6 @@ msgstr "" #~ msgid "/_Edit" #~ msgstr "SzerkesztИs" -#, fuzzy -#~ msgid "/_Select" -#~ msgstr "/KijelЖlИs/Teljes kИp" - #, fuzzy #~ msgid "/_View" #~ msgstr "/NИzet/---" @@ -5910,26 +6357,14 @@ msgstr "" #~ msgid "/Image/C_hannel Ops" #~ msgstr "/KИp/CsatornАk/EltolАs" -#, fuzzy -#~ msgid "/Image/_Alpha" -#~ msgstr "/KИp/SkАlАzАs" - #, fuzzy #~ msgid "/_Tools" #~ msgstr "/EszkЖzЖk/---" -#, fuzzy -#~ msgid "/Filte_rs" -#~ msgstr "KitЖltИs tМpusa" - #, fuzzy #~ msgid "Gradient Length" #~ msgstr "SzМnАtmenet" -#, fuzzy -#~ msgid "Pencil Options" -#~ msgstr "MegnyitАs beАllМtАsok" - #, fuzzy #~ msgid "Internal error counting plugins" #~ msgstr "hiba a pluginrc ИrtelmezИsekor" @@ -5947,12 +6382,6 @@ msgstr "" #~ msgid "Large Checks" #~ msgstr "Nagy nИgyzetek" -#~ msgid "Bezier Selection Options" -#~ msgstr "BИzier kijelЖlИs beАllМtАsok" - -#~ msgid "By-Color Select Options" -#~ msgstr "SzМn szerinti kijelЖlИs beАllМtАsok" - #~ msgid "New height:" #~ msgstr "зj magassАg:" @@ -5980,11 +6409,6 @@ msgstr "" #~ msgid "Y Scale Ratio: " #~ msgstr "Y skАlАzАs arАnya: " -#~ msgid "This tool has no options." -#~ msgstr "" -#~ "Ennek az eszkЖznek nincsenek\n" -#~ "beАllМtАsi lehetУsИgei." - #~ msgid "reading %s\n" #~ msgstr "%s olvasАsa\n" @@ -6018,9 +6442,6 @@ msgstr "" #~ msgid "Remove Point" #~ msgstr "Pont tЖrlИse" -#~ msgid "Load" -#~ msgstr "BetЖlt" - #~ msgid "Paste Bezier Named Buffer" #~ msgstr "NevesМtett BИzier tАrolС beillesztИse" @@ -6033,15 +6454,6 @@ msgstr "" #~ msgid "Crop: %d x %d" #~ msgstr "KivАgАs: %d x %d" -#~ msgid "inches" -#~ msgstr "coll" - -#~ msgid "inch" -#~ msgstr "coll" - -#~ msgid "warning: no home directory." -#~ msgstr "figyelmeztetИs: nincs home kЖnyvtАr." - #~ msgid "Can't open gimprc; permission problems" #~ msgstr "Nem lehet megnyitni a gimprc-t: jogosultsАgi problИmАk" diff --git a/po/it.po b/po/it.po index d73438c0c3..db3a759972 100644 --- a/po/it.po +++ b/po/it.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 1999-06-05 15:50-0700\n" +"POT-Creation-Date: 1999-07-17 11:23-0700\n" "Content-Type: text/plain; charset=\n" "Date: 1998-09-11 09:10:18+0200\n" "From: Tristan Tarrant \n" @@ -8,28 +8,28 @@ msgstr "" "--keyword=_ --keyword=N_ --files-from=./POTFILES.in\n" "Files: app/about_dialog.c app/main.c app/menus.c app/regex.c\n" -#: app/about_dialog.c:153 +#: app/about_dialog.c:156 msgid "About the GIMP" msgstr "Informazioni su GIMP" -#: app/about_dialog.c:196 +#: app/about_dialog.c:199 msgid "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-*-*" msgstr "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-*-*" -#: app/about_dialog.c:199 +#: app/about_dialog.c:202 msgid "Version " msgstr "Versione" -#: app/about_dialog.c:200 +#: app/about_dialog.c:203 msgid " brought to you by" msgstr " realizzato per voi da" -#: app/about_dialog.c:206 +#: app/about_dialog.c:209 #, fuzzy msgid "Spencer Kimball & Peter Mattis" msgstr "Spencer Kimball and Peter Mattis" -#: app/about_dialog.c:239 +#: app/about_dialog.c:242 msgid "Please visit http://www.gimp.org/ for more info" msgstr "Visita http://www.gimp.org/ per maggiori informazioni" @@ -47,353 +47,354 @@ msgstr "" msgid "killing stray timer, please report to lewing@gimp.org" msgstr "" -#: app/app_procs.c:355 +#: app/app_procs.c:358 msgid "GIMP Startup" msgstr "" -#: app/app_procs.c:468 app/gimprc.c:389 +#: app/app_procs.c:471 app/gimprc.c:394 #, c-format msgid "parsing \"%s\"\n" msgstr "" #. initialize the xcf file format routines -#: app/app_procs.c:524 +#: app/app_procs.c:526 msgid "Looking for data files" msgstr "" -#: app/app_procs.c:524 +#: app/app_procs.c:526 #, fuzzy msgid "Parasites" msgstr "/Modifica/Incolla" #. initialize the global parasite table -#: app/app_procs.c:526 app/internal_procs.c:70 app/preferences_dialog.c:2320 +#: app/app_procs.c:528 app/internal_procs.c:70 app/preferences_dialog.c:2395 msgid "Brushes" msgstr "" #. initialize the list of gimp brushes -#: app/app_procs.c:528 app/internal_procs.c:139 app/preferences_dialog.c:2322 +#: app/app_procs.c:530 app/internal_procs.c:139 app/preferences_dialog.c:2397 msgid "Patterns" msgstr "" #. initialize the list of gimp patterns -#: app/app_procs.c:530 app/preferences_dialog.c:2324 +#: app/app_procs.c:532 app/preferences_dialog.c:2399 msgid "Palettes" msgstr "" #. initialize the list of gimp palettes -#: app/app_procs.c:532 app/gradient_select.c:557 app/internal_procs.c:109 -#: app/preferences_dialog.c:2326 +#: app/app_procs.c:534 app/gradient_select.c:557 app/internal_procs.c:109 +#: app/preferences_dialog.c:2401 msgid "Gradients" msgstr "" -#: app/app_procs.c:696 app/app_procs.c:717 +#: app/app_procs.c:702 app/app_procs.c:703 app/app_procs.c:728 +#: app/app_procs.c:729 app/menus.c:83 app/menus.c:98 #, fuzzy -msgid "/File/Quit" +msgid "/File/Quit" msgstr "/File/Esci" -#: app/app_procs.c:697 app/app_procs.c:718 -#, fuzzy -msgid "/File/Quit" -msgstr "/File/Esci" - -#: app/app_procs.c:722 +#: app/app_procs.c:733 msgid "Really Quit?" msgstr "" -#: app/app_procs.c:730 app/fileops.c:1420 +#: app/app_procs.c:741 app/fileops.c:1576 msgid "Yes" msgstr "" -#: app/app_procs.c:739 app/fileops.c:1421 +#: app/app_procs.c:750 app/fileops.c:1577 msgid "No" msgstr "" -#: app/app_procs.c:747 -msgid "Some files unsaved. Quit the GIMP?" +#: app/app_procs.c:776 +msgid "" +"Some files unsaved.\n" +"\n" +"Quit the GIMP?" msgstr "" -#: app/batch.c:69 +#: app/batch.c:65 msgid "script-fu not available: batch mode disabled\n" msgstr "" -#: app/batch.c:78 +#: app/batch.c:74 msgid "reading batch commands from stdin\n" msgstr "" -#: app/batch.c:118 +#: app/batch.c:114 msgid "batch command: experienced an execution error.\n" msgstr "" -#: app/batch.c:121 +#: app/batch.c:117 msgid "batch command: experienced a calling error.\n" msgstr "" -#: app/batch.c:124 +#: app/batch.c:120 msgid "batch command: executed successfully.\n" msgstr "" -#: app/batch.c:205 +#: app/batch.c:204 msgid "extension_perl_server not available: unable to start the perl server\n" msgstr "" -#: app/batch.c:221 +#: app/batch.c:220 msgid "perl server: experienced an execution error.\n" msgstr "" -#: app/batch.c:224 +#: app/batch.c:223 msgid "perl server: experienced a calling error.\n" msgstr "" -#: app/batch.c:227 +#: app/batch.c:226 msgid "perl server: executed successfully.\n" msgstr "" -#: app/bezier_select.c:480 +#: app/bezier_select.c:477 msgid "Bezier path already closed." msgstr "" -#: app/bezier_select.c:501 +#: app/bezier_select.c:498 msgid "Corrupt curve" msgstr "" -#: app/bezier_select.c:1011 +#: app/bezier_select.c:1012 msgid "tried to edit on open bezier curve in edit selection" msgstr "" -#: app/bezier_select.c:1291 +#: app/bezier_select.c:1292 msgid "Encountered orphaned bezier control point" msgstr "" -#: app/bezier_select.c:1971 app/bezier_select.c:3170 +#: app/bezier_select.c:1975 app/bezier_select.c:3176 msgid "bad bezier segment" msgstr "" -#: app/bezier_select.c:1988 app/bezier_select.c:2630 +#: app/bezier_select.c:1992 app/bezier_select.c:2636 #, c-format msgid "unknown coordinate space: %d" msgstr "" -#: app/bezier_select.c:2131 +#: app/bezier_select.c:2135 msgid "tried to convert an open bezier curve" msgstr "" -#: app/bezier_select.c:3126 +#: app/bezier_select.c:3132 #, fuzzy msgid "Paintbrush operation failed." msgstr "/Livelli/Da Maschera a Selezione" -#: app/blend.c:261 +#: app/blend.c:264 msgid "FG to BG (RGB)" msgstr "" -#: app/blend.c:263 +#: app/blend.c:266 msgid "FG to BG (HSV)" msgstr "" -#: app/blend.c:265 +#: app/blend.c:268 msgid "FG to Transparent" msgstr "" -#: app/blend.c:267 +#: app/blend.c:270 msgid "Custom from editor" msgstr "" -#: app/blend.c:273 app/gradient.c:395 +#: app/blend.c:276 app/gradient.c:395 msgid "Linear" msgstr "" -#: app/blend.c:275 +#: app/blend.c:278 msgid "Bi-Linear" msgstr "" -#: app/blend.c:277 +#: app/blend.c:280 msgid "Radial" msgstr "" -#: app/blend.c:279 +#: app/blend.c:282 msgid "Square" msgstr "" -#: app/blend.c:281 +#: app/blend.c:284 msgid "Conical (symmetric)" msgstr "" -#: app/blend.c:283 +#: app/blend.c:286 msgid "Conical (asymmetric)" msgstr "" -#: app/blend.c:285 +#: app/blend.c:288 msgid "Shapeburst (angular)" msgstr "" -#: app/blend.c:287 +#: app/blend.c:290 msgid "Shapeburst (spherical)" msgstr "" -#: app/blend.c:289 +#: app/blend.c:292 msgid "Shapeburst (dimpled)" msgstr "" -#: app/blend.c:291 +#: app/blend.c:294 msgid "Spiral (clockwise)" msgstr "" -#: app/blend.c:293 +#: app/blend.c:296 msgid "Spiral (anticlockwise)" msgstr "" -#: app/blend.c:299 app/preferences_dialog.c:1724 +#: app/blend.c:302 app/preferences_dialog.c:1759 msgid "None" msgstr "" -#: app/blend.c:301 +#: app/blend.c:304 msgid "Sawtooth wave" msgstr "" -#: app/blend.c:303 +#: app/blend.c:306 msgid "Triangular wave" msgstr "" -#: app/blend.c:331 +#: app/blend.c:334 msgid "Offset:" msgstr "" #. the blend mode menu -#: app/blend.c:349 +#: app/blend.c:352 msgid "Blend:" msgstr "" #. the gradient type menu -#: app/blend.c:367 +#: app/blend.c:370 msgid "Gradient:" msgstr "" #. the repeat option -#: app/blend.c:385 +#: app/blend.c:388 msgid "Repeat:" msgstr "" -#: app/blend.c:418 +#: app/blend.c:421 msgid "Adaptive supersampling" msgstr "" #. max depth scale -#: app/blend.c:440 +#: app/blend.c:443 msgid "Max depth:" msgstr "" #. threshold scale -#: app/blend.c:458 app/bucket_fill.c:137 app/iscissors.c:356 +#: app/blend.c:461 app/bucket_fill.c:136 app/iscissors.c:356 msgid "Threshold:" msgstr "" -#: app/blend.c:496 +#: app/blend.c:499 msgid "Blend: Invalid for indexed images." msgstr "" -#: app/blend.c:521 +#: app/blend.c:524 msgid "Blend: 0, 0" msgstr "" -#: app/blend.c:583 +#: app/blend.c:587 msgid "Blend operation failed." msgstr "" -#: app/blend.c:589 +#: app/blend.c:593 msgid "Blending..." msgstr "" -#: app/blend.c:639 app/blend.c:649 +#: app/blend.c:643 app/blend.c:653 msgid "Blend: " msgstr "" -#: app/blend.c:1295 +#: app/blend.c:1307 #, c-format msgid "gradient_render_pixel(): unknown gradient type %d" msgstr "" -#: app/blend.c:1430 +#: app/blend.c:1445 #, c-format msgid "gradient_fill_region(): unknown blend mode %d" msgstr "" -#: app/blend.c:1471 +#: app/blend.c:1486 #, c-format msgid "gradient_fill_region(): unknown gradient type %d" msgstr "" -#: app/blend.c:1493 +#: app/blend.c:1508 #, c-format msgid "gradient_fill_region(): unknown repeat mode %d" msgstr "" -#: app/brightness_contrast.c:176 +#: app/brightness_contrast.c:136 msgid "Brightness-Contrast Options" msgstr "" -#: app/brightness_contrast.c:221 +#: app/brightness_contrast.c:172 msgid "Brightness-Contrast does not operate on indexed drawables." msgstr "" #. Action area -#: app/brightness_contrast.c:252 app/channel_ops.c:104 -#: app/channels_dialog.c:1889 app/channels_dialog.c:2062 -#: app/color_balance.c:301 app/color_notebook.c:43 app/color_notebook.c:186 -#: app/color_select.c:154 app/color_select.c:209 app/convert.c:295 -#: app/curves.c:417 app/file_new_dialog.c:288 app/file_new_dialog.c:478 -#: app/hue_saturation.c:411 app/interface.c:877 app/interface.c:1263 -#: app/layers_dialog.c:3218 app/layers_dialog.c:3432 app/layers_dialog.c:3574 -#: app/layers_dialog.c:4049 app/levels.c:373 app/posterize.c:241 -#: app/preferences_dialog.c:1435 app/resize.c:114 app/threshold.c:318 +#: app/brightness_contrast.c:214 app/channel_ops.c:104 +#: app/channels_dialog.c:1864 app/channels_dialog.c:2049 +#: app/color_balance.c:273 app/color_notebook.c:49 app/color_notebook.c:192 +#: app/color_select.c:155 app/color_select.c:210 app/convert.c:295 +#: app/curves.c:517 app/file_new_dialog.c:292 app/file_new_dialog.c:482 +#: app/hue_saturation.c:361 app/interface.c:1009 app/interface.c:1395 +#: app/layers_dialog.c:2901 app/layers_dialog.c:3119 app/layers_dialog.c:3262 +#: app/layers_dialog.c:3738 app/levels.c:335 app/module_db.c:263 +#: app/posterize.c:199 app/preferences_dialog.c:1469 app/resize.c:114 +#: app/threshold.c:278 msgid "OK" msgstr "" -#: app/brightness_contrast.c:253 app/channel_ops.c:113 -#: app/channels_dialog.c:1890 app/channels_dialog.c:2063 -#: app/color_balance.c:302 app/color_notebook.c:44 app/color_notebook.c:187 -#: app/color_select.c:155 app/color_select.c:210 app/convert.c:296 -#: app/curves.c:418 app/file_new_dialog.c:290 app/file_new_dialog.c:480 -#: app/gdisplay_ops.c:353 app/gimpprogress.c:135 app/global_edit.c:593 +#: app/brightness_contrast.c:215 app/channel_ops.c:113 +#: app/channels_dialog.c:1865 app/channels_dialog.c:2050 +#: app/color_balance.c:274 app/color_notebook.c:50 app/color_notebook.c:193 +#: app/color_select.c:156 app/color_select.c:211 app/convert.c:296 +#: app/curves.c:518 app/file_new_dialog.c:294 app/file_new_dialog.c:484 +#: app/gdisplay_ops.c:349 app/gimpprogress.c:135 app/global_edit.c:705 #: app/gradient.c:1486 app/gradient.c:4566 app/gradient.c:4921 -#: app/hue_saturation.c:412 app/interface.c:788 app/interface.c:878 -#: app/layers_dialog.c:3219 app/layers_dialog.c:3433 app/layers_dialog.c:3575 -#: app/layers_dialog.c:3722 app/layers_dialog.c:4050 app/levels.c:374 -#: app/posterize.c:242 app/preferences_dialog.c:1439 app/resize.c:115 -#: app/threshold.c:319 +#: app/hue_saturation.c:362 app/interface.c:913 app/interface.c:1010 +#: app/layers_dialog.c:2902 app/layers_dialog.c:3120 app/layers_dialog.c:3263 +#: app/layers_dialog.c:3410 app/layers_dialog.c:3739 app/levels.c:336 +#: app/posterize.c:200 app/preferences_dialog.c:1473 app/resize.c:115 +#: app/threshold.c:279 msgid "Cancel" msgstr "" -#: app/brightness_contrast.c:276 app/tools.c:491 +#: app/brightness_contrast.c:226 app/tools.c:517 msgid "Brightness-Contrast" msgstr "" #. Create the brightness scale widget -#: app/brightness_contrast.c:292 +#: app/brightness_contrast.c:242 msgid "Brightness" msgstr "" #. Create the contrast scale widget -#: app/brightness_contrast.c:325 +#: app/brightness_contrast.c:275 msgid "Contrast" msgstr "" #. The preview toggle -#: app/brightness_contrast.c:363 app/color_balance.c:481 app/curves.c:661 -#: app/fileops.c:395 app/hue_saturation.c:620 app/levels.c:583 -#: app/palette.c:2849 app/posterize.c:297 app/threshold.c:404 +#: app/brightness_contrast.c:313 app/color_balance.c:438 app/curves.c:651 +#: app/fileops.c:395 app/hue_saturation.c:572 app/levels.c:531 +#: app/palette.c:2849 app/posterize.c:246 app/threshold.c:354 msgid "Preview" msgstr "" #. The close push button -#: app/brush_edit.c:38 app/brush_select.c:133 app/by_color_select.c:678 -#: app/color_notebook.c:181 app/color_picker.c:208 app/color_select.c:204 -#: app/colormap_dialog.i.c:94 app/colormap_dialog.i.c:103 app/crop.c:1011 -#: app/devices.c:124 app/docindexif.c:95 app/errorconsole.c:228 -#: app/gdisplay_ops.c:352 app/gradient.c:646 app/gradient_select.c:76 -#: app/info_window.c:121 app/layers_dialog.c:419 app/palette.c:2235 -#: app/palette_select.c:59 app/pattern_select.c:90 app/tips_dialog.c:146 -#: app/tools.c:716 +#: app/brush_edit.c:38 app/brush_select.c:135 app/by_color_select.c:664 +#: app/color_notebook.c:187 app/color_picker.c:209 app/color_select.c:205 +#: app/colormap_dialog.i.c:94 app/colormap_dialog.i.c:103 app/crop.c:1027 +#: app/devices.c:124 app/docindexif.c:100 app/errorconsole.c:230 +#: app/gdisplay_ops.c:348 app/gradient.c:646 app/gradient_select.c:76 +#: app/histogram_tool.c:262 app/info_window.c:121 app/lc_dialog.c:196 +#: app/palette.c:2235 app/palette_select.c:59 app/pattern_select.c:90 +#: app/tips_dialog.c:146 app/tools.c:874 libgimp/gimpfileselection.c:356 +#: libgimp/gimpunitmenu.c:518 #, fuzzy msgid "Close" msgstr "/File/Chiudi" @@ -403,7 +404,7 @@ msgid "Brush Editor" msgstr "" #. brush radius scale -#: app/brush_edit.c:240 app/color_picker.c:163 +#: app/brush_edit.c:240 app/color_picker.c:164 app/tool_options.c:284 msgid "Radius:" msgstr "" @@ -422,69 +423,70 @@ msgstr "" msgid "Angle:" msgstr "" -#: app/brush_select.c:132 app/palette.c:2243 app/pattern_select.c:89 +#: app/brush_select.c:134 app/module_db.c:307 app/palette.c:2243 +#: app/pattern_select.c:89 msgid "Refresh" msgstr "" -#: app/brush_select.c:153 +#: app/brush_select.c:155 #, fuzzy msgid "Brush Selection" msgstr "/Livelli/Da Alpha a Selezione" -#: app/brush_select.c:241 app/pattern_select.c:147 +#: app/brush_select.c:244 app/pattern_select.c:147 msgid "Active" msgstr "" #. Create the opacity scale widget -#: app/brush_select.c:271 app/layers_dialog.c:756 +#: app/brush_select.c:274 app/layers_dialog.c:334 app/tool_options.c:593 msgid "Opacity:" msgstr "" #. Create the paint mode option menu -#: app/brush_select.c:289 app/layers_dialog.c:733 +#: app/brush_select.c:292 app/layers_dialog.c:307 app/tool_options.c:623 msgid "Mode:" msgstr "" -#: app/brush_select.c:312 +#: app/brush_select.c:315 msgid "Edit Brush" msgstr "" -#: app/brush_select.c:318 +#: app/brush_select.c:321 msgid "New Brush" msgstr "" -#: app/brush_select.c:340 +#: app/brush_select.c:343 msgid "Spacing:" msgstr "" -#: app/brush_select.c:531 +#: app/brush_select.c:536 msgid "failed to run brush callback function" msgstr "" -#: app/brush_select.c:1187 +#: app/brush_select.c:1192 msgid "" "We are all fresh out of brush editors today,\n" "please write your own or try back tomorrow\n" msgstr "" -#: app/bucket_fill.c:114 +#: app/bucket_fill.c:113 msgid "FG Color Fill" msgstr "" -#: app/bucket_fill.c:115 +#: app/bucket_fill.c:114 msgid "BG Color Fill" msgstr "" -#: app/bucket_fill.c:116 +#: app/bucket_fill.c:115 msgid "Pattern Fill" msgstr "" -#: app/bucket_fill.c:157 app/color_picker.c:138 +#: app/bucket_fill.c:156 app/color_picker.c:139 app/tool_options.c:358 msgid "Sample Merged" msgstr "" #. fill type -#: app/bucket_fill.c:165 app/file_new_dialog.c:838 +#: app/bucket_fill.c:164 app/file_new_dialog.c:842 msgid "Fill Type" msgstr "" @@ -492,63 +494,63 @@ msgstr "" msgid "Bucket Fill operation failed." msgstr "" -#: app/bucket_fill.c:361 +#: app/bucket_fill.c:344 msgid "No available patterns for this operation." msgstr "" -#: app/by_color_select.c:557 app/paint_funcs.c:100 +#: app/by_color_select.c:542 app/paint_funcs.c:100 msgid "Replace" msgstr "" -#: app/by_color_select.c:558 app/colormap_dialog.i.c:99 +#: app/by_color_select.c:543 app/colormap_dialog.i.c:99 msgid "Add" msgstr "" -#: app/by_color_select.c:559 app/layers_dialog.c:282 +#: app/by_color_select.c:544 app/layers_dialog.c:215 app/tool_options.c:784 msgid "Subtract" msgstr "" -#: app/by_color_select.c:560 +#: app/by_color_select.c:545 msgid "Intersect" msgstr "" -#: app/by_color_select.c:578 +#: app/by_color_select.c:564 #, fuzzy msgid "By Color Selection" msgstr "/Livelli/Da Maschera a Selezione" -#: app/by_color_select.c:621 +#: app/by_color_select.c:607 msgid "Inactive" msgstr "" #. Create the selection mode radio box -#: app/by_color_select.c:628 +#: app/by_color_select.c:614 #, fuzzy msgid "Selection Mode" msgstr "/Selezione/Niente" -#: app/by_color_select.c:652 +#: app/by_color_select.c:638 msgid "Fuzziness Threshold" msgstr "" #. The reset push button -#: app/by_color_select.c:668 app/curves.c:416 app/file_new_dialog.c:479 -#: app/tools.c:715 app/transform_core.c:116 +#: app/by_color_select.c:654 app/curves.c:516 app/file_new_dialog.c:483 +#: app/tools.c:873 app/transform_core.c:116 msgid "Reset" msgstr "" -#: app/channel.c:190 app/channel.c:192 app/layer.c:314 app/layer.c:316 +#: app/channel.c:191 app/channel.c:193 app/layer.c:316 app/layer.c:318 msgid "copy" msgstr "" #. formulate the new layer_mask name -#: app/channel.c:198 app/gradient.c:1359 app/layer.c:322 app/layer.c:1481 +#: app/channel.c:199 app/gradient.c:1359 app/layer.c:324 app/layer.c:1486 #, c-format msgid "%s copy" msgstr "" #. Create the new channel -#: app/channel.c:503 +#: app/channel.c:521 #, fuzzy msgid "Selection Mask" msgstr "/Selezione/Riduci" @@ -576,12 +578,12 @@ msgstr "" msgid "Fill Options" msgstr "/File/Finestre/Opzioni dello strumento..." -#: app/channel_ops.c:164 app/file_new_dialog.c:133 app/file_new_dialog.c:493 -#: app/layers_dialog.c:3210 +#: app/channel_ops.c:164 app/file_new_dialog.c:135 app/file_new_dialog.c:497 +#: app/layers_dialog.c:2893 msgid "Background" msgstr "" -#: app/channel_ops.c:175 app/file_new_dialog.c:495 app/layers_dialog.c:3212 +#: app/channel_ops.c:175 app/file_new_dialog.c:499 app/layers_dialog.c:2895 msgid "Transparent" msgstr "" @@ -590,252 +592,276 @@ msgstr "" msgid "Offset by (x/2),(y/2)" msgstr "" -#: app/channels_dialog.c:159 app/channels_dialog.c:193 -#: app/channels_dialog.c:1936 +#: app/channels_dialog.c:165 app/channels_dialog.c:1911 msgid "New Channel" msgstr "" -#: app/channels_dialog.c:161 app/channels_dialog.c:194 +#: app/channels_dialog.c:167 msgid "Raise Channel" msgstr "" -#: app/channels_dialog.c:163 app/channels_dialog.c:195 +#: app/channels_dialog.c:169 msgid "Lower Channel" msgstr "" -#: app/channels_dialog.c:165 app/channels_dialog.c:196 +#: app/channels_dialog.c:171 #, fuzzy msgid "Duplicate Channel" msgstr "/Selezione/Salva in Canale" -#: app/channels_dialog.c:167 app/channels_dialog.c:197 +#: app/channels_dialog.c:173 +msgid "" +"Channel to Selection \n" +" Add Subtract Intersect" +msgstr "" + +#: app/channels_dialog.c:178 #, fuzzy msgid "Delete Channel" msgstr "/Selezione/Salva in Canale" -#: app/channels_dialog.c:169 +#: app/channels_dialog.c:537 app/menus.c:273 #, fuzzy -msgid "Channel To Selection" +msgid "/New Channel" +msgstr "/Selezione/Salva in Canale" + +#: app/channels_dialog.c:540 app/menus.c:274 +#, fuzzy +msgid "/Raise Channel" +msgstr "/Selezione/Salva in Canale" + +#: app/channels_dialog.c:544 app/menus.c:275 +#, fuzzy +msgid "/Lower Channel" +msgstr "/Livelli/Livelli e Canali..." + +#: app/channels_dialog.c:548 app/menus.c:276 +#, fuzzy +msgid "/Duplicate Channel" +msgstr "/Selezione/Salva in Canale" + +#: app/channels_dialog.c:552 app/menus.c:278 +#, fuzzy +msgid "/Channel to Selection" msgstr "/Livelli/Da Alpha a Selezione" -#: app/channels_dialog.c:171 +#: app/channels_dialog.c:555 app/menus.c:283 #, fuzzy -msgid "Add To Selection" +msgid "/Delete Channel" +msgstr "/Selezione/Salva in Canale" + +#: app/channels_dialog.c:559 app/menus.c:279 +#, fuzzy +msgid "/Add to Selection" msgstr "/Livelli/Da Alpha a Selezione" -#: app/channels_dialog.c:173 +#: app/channels_dialog.c:560 app/menus.c:280 #, fuzzy -msgid "Subtract From Selection" +msgid "/Subtract From Selection" msgstr "/Livelli/Da Alpha a Selezione" -#: app/channels_dialog.c:175 +#: app/channels_dialog.c:561 app/menus.c:281 #, fuzzy -msgid "Intersect With Selection" +msgid "/Intersect With Selection" msgstr "/Livelli/Da Alpha a Selezione" -#: app/channels_dialog.c:198 -msgid "" -"Channel To Selection \n" -" Add Subtract Intersect" -msgstr "" - -#: app/channels_dialog.c:633 app/channels_dialog.c:687 +#: app/channels_dialog.c:608 app/channels_dialog.c:662 #, c-format msgid "error in %s at %d: this shouldn't happen." msgstr "" -#: app/channels_dialog.c:1166 app/color_balance.c:413 app/curves.c:424 -#: app/levels.c:282 +#: app/channels_dialog.c:1137 app/color_balance.c:370 app/curves.c:405 +#: app/histogram_tool.c:279 app/levels.c:231 msgid "Red" msgstr "" -#: app/channels_dialog.c:1170 app/color_balance.c:440 app/curves.c:425 -#: app/levels.c:283 +#: app/channels_dialog.c:1141 app/color_balance.c:397 app/curves.c:406 +#: app/histogram_tool.c:280 app/levels.c:232 msgid "Green" msgstr "" -#: app/channels_dialog.c:1174 app/color_balance.c:467 app/curves.c:426 -#: app/levels.c:284 +#: app/channels_dialog.c:1145 app/color_balance.c:424 app/curves.c:407 +#: app/histogram_tool.c:281 app/levels.c:233 msgid "Blue" msgstr "" -#: app/channels_dialog.c:1178 +#: app/channels_dialog.c:1149 msgid "Gray" msgstr "" -#: app/channels_dialog.c:1182 +#: app/channels_dialog.c:1153 #, fuzzy msgid "Indexed" msgstr "/Immagine/Indicizzata" -#: app/channels_dialog.c:1908 +#: app/channels_dialog.c:1883 msgid "New Channel Options" msgstr "" #. the name entry hbox, label and entry -#: app/channels_dialog.c:1926 +#: app/channels_dialog.c:1901 msgid "Channel name: " msgstr "" #. the opacity scale -#: app/channels_dialog.c:1940 +#: app/channels_dialog.c:1915 msgid "Fill Opacity: " msgstr "" -#: app/channels_dialog.c:2087 +#: app/channels_dialog.c:2066 msgid "Edit Channel Attributes" msgstr "" -#: app/channels_dialog.c:2107 +#: app/channels_dialog.c:2086 msgid "Channel name:" msgstr "" -#: app/channels_dialog.c:2122 +#: app/channels_dialog.c:2101 msgid "Fill Opacity" msgstr "" -#: app/clone.c:134 +#: app/clone.c:137 #, fuzzy msgid "Image Source" msgstr "/Immagine/Scala" -#: app/clone.c:135 +#: app/clone.c:138 msgid "Pattern Source" msgstr "" -#: app/clone.c:139 +#: app/clone.c:144 msgid "Non Aligned" msgstr "" -#: app/clone.c:140 +#: app/clone.c:145 msgid "Aligned" msgstr "" -#: app/clone.c:141 +#: app/clone.c:146 msgid "Registered" msgstr "" #. the radio frame and box -#: app/clone.c:156 +#: app/clone.c:162 #, fuzzy msgid "Source" msgstr "Successo" #. the radio frame and box -#: app/clone.c:181 +#: app/clone.c:187 msgid "Alignment" msgstr "" -#: app/clone.c:308 +#: app/clone.c:314 msgid "No patterns available for this operation." msgstr "" -#: app/color_balance.c:222 +#: app/color_balance.c:184 msgid "Color Balance Options" msgstr "" -#: app/color_balance.c:269 +#: app/color_balance.c:222 msgid "Color balance operates only on RGB color drawables." msgstr "" -#: app/color_balance.c:323 +#: app/color_balance.c:279 msgid "Shadows" msgstr "" -#: app/color_balance.c:324 +#: app/color_balance.c:280 msgid "Midtones" msgstr "" -#: app/color_balance.c:325 +#: app/color_balance.c:281 msgid "Highlights" msgstr "" -#: app/color_balance.c:342 app/tools.c:476 +#: app/color_balance.c:299 app/tools.c:502 msgid "Color Balance" msgstr "" -#: app/color_balance.c:357 +#: app/color_balance.c:314 msgid "Color Levels: " msgstr "" #. Create the cyan-red scale widget -#: app/color_balance.c:396 +#: app/color_balance.c:353 msgid "Cyan" msgstr "" #. Create the magenta-green scale widget -#: app/color_balance.c:423 +#: app/color_balance.c:380 msgid "Magenta" msgstr "" #. Create the yellow-blue scale widget -#: app/color_balance.c:450 +#: app/color_balance.c:407 msgid "Yellow" msgstr "" #. The preserve luminosity toggle -#: app/color_balance.c:490 +#: app/color_balance.c:447 msgid "Preserve Luminosity" msgstr "" -#: app/color_notebook.c:111 app/color_select.c:186 +#: app/color_notebook.c:117 app/color_select.c:187 msgid "Color Selection" msgstr "" -#: app/color_notebook.c:182 app/color_select.c:205 +#: app/color_notebook.c:188 app/color_select.c:206 msgid "Revert to Old Color" msgstr "" -#: app/color_picker.c:127 +#: app/color_picker.c:128 msgid "Color Picker Options" msgstr "" -#: app/color_picker.c:153 +#: app/color_picker.c:154 msgid "Sample Average" msgstr "" -#: app/color_picker.c:224 app/tools.c:310 +#: app/color_picker.c:225 app/tools.c:306 msgid "Color Picker" msgstr "" -#: app/color_picker.c:231 app/color_picker.c:241 +#: app/color_picker.c:232 app/color_picker.c:242 msgid "Red:" msgstr "" -#: app/color_picker.c:232 app/color_picker.c:242 +#: app/color_picker.c:233 app/color_picker.c:243 msgid "Green:" msgstr "" -#: app/color_picker.c:233 app/color_picker.c:243 +#: app/color_picker.c:234 app/color_picker.c:244 msgid "Blue:" msgstr "" -#: app/color_picker.c:234 app/color_picker.c:240 app/color_picker.c:249 +#: app/color_picker.c:235 app/color_picker.c:241 app/color_picker.c:250 msgid "Alpha:" msgstr "" -#: app/color_picker.c:235 app/color_picker.c:250 app/color_select.c:386 -#: app/colormap_dialog.i.c:199 +#: app/color_picker.c:236 app/color_picker.c:251 app/color_select.c:387 +#: app/colormap_dialog.i.c:201 msgid "Hex Triplet:" msgstr "" -#: app/color_picker.c:239 app/colormap_dialog.i.c:192 +#: app/color_picker.c:240 app/colormap_dialog.i.c:194 #, fuzzy msgid "Index:" msgstr "/Immagine/Indicizzata" -#: app/color_picker.c:244 +#: app/color_picker.c:245 msgid "Hex Triplet" msgstr "" -#: app/color_picker.c:248 app/histogram_tool.c:311 +#: app/color_picker.c:249 app/histogram_tool.c:271 msgid "Intensity:" msgstr "" -#: app/color_picker.c:541 app/color_picker.c:542 app/color_picker.c:543 -#: app/color_picker.c:544 app/color_picker.c:545 app/color_picker.c:546 -#: app/color_picker.c:547 app/color_picker.c:560 app/color_picker.c:572 -#: app/color_picker.c:587 +#: app/color_picker.c:547 app/color_picker.c:548 app/color_picker.c:549 +#: app/color_picker.c:550 app/color_picker.c:551 app/color_picker.c:552 +#: app/color_picker.c:553 app/color_picker.c:566 app/color_picker.c:578 +#: app/color_picker.c:593 msgid "N/A" msgstr "" @@ -851,7 +877,7 @@ msgid "Indexed Color Palette" msgstr "/Finestre/Tavolozza indicizzata..." #. The GIMP image option menu -#: app/colormap_dialog.i.c:136 app/layers_dialog.c:359 +#: app/colormap_dialog.i.c:136 app/lc_dialog.c:131 #, fuzzy msgid "Image:" msgstr "/Immagine/---" @@ -861,49 +887,49 @@ msgstr "/Immagine/---" msgid "Operations" msgstr "/Finestre/Opzioni dello Strumento..." -#: app/colormap_dialog.i.c:831 app/layers_dialog.c:879 +#: app/colormap_dialog.i.c:833 app/lc_dialog.c:614 msgid "none" msgstr "" -#: app/commands.c:366 +#: app/commands.c:342 msgid "Border Selection" msgstr "" -#: app/commands.c:366 +#: app/commands.c:343 msgid "Border selection by:" msgstr "" -#: app/commands.c:384 +#: app/commands.c:360 #, fuzzy msgid "Feather Selection" msgstr "/Livelli/Da Maschera a Selezione" -#: app/commands.c:384 +#: app/commands.c:361 msgid "Feather selection by:" msgstr "" -#: app/commands.c:402 +#: app/commands.c:378 #, fuzzy msgid "Grow Selection" msgstr "/Selezione/Niente" -#: app/commands.c:402 +#: app/commands.c:379 msgid "Grow selection by:" msgstr "" -#: app/commands.c:420 +#: app/commands.c:396 msgid "Shrink Selection" msgstr "" -#: app/commands.c:420 +#: app/commands.c:397 msgid "Shrink selection by:" msgstr "" -#: app/commands.c:1199 +#: app/commands.c:1179 msgid "Resize Error: Both width and height must be greater than zero." msgstr "" -#: app/commands.c:1248 +#: app/commands.c:1228 msgid "Scale Error: Both width and height must be greater than zero." msgstr "" @@ -960,115 +986,115 @@ msgstr "/Selezione/Metti a fuoco" msgid "Convolve Type" msgstr "" -#: app/crop.c:169 app/crop.c:1009 +#: app/crop.c:170 app/crop.c:1025 msgid "Crop" msgstr "" -#: app/crop.c:169 app/crop.c:1010 +#: app/crop.c:170 app/crop.c:1026 #, fuzzy msgid "Resize" msgstr "/Immagine/Ridimensiona" -#: app/crop.c:175 +#: app/crop.c:176 #, fuzzy msgid "Crop & Resize Options" msgstr "/Finestre/Opzioni dello Strumento..." -#: app/crop.c:186 +#: app/crop.c:187 msgid "Current layer only" msgstr "" #. enlarge toggle -#: app/crop.c:197 +#: app/crop.c:198 msgid "Allow Enlarging" msgstr "" #. tool toggle -#: app/crop.c:208 app/flip_tool.c:84 +#: app/crop.c:209 app/flip_tool.c:85 msgid "Tool Toggle" msgstr "" -#: app/crop.c:500 app/crop.c:508 +#: app/crop.c:501 app/crop.c:509 msgid "Crop: " msgstr "" -#: app/crop.c:997 +#: app/crop.c:1005 msgid "Crop: 0 x 0" msgstr "" #. create the info dialog -#: app/crop.c:1025 +#: app/crop.c:1033 #, fuzzy msgid "Crop & Resize Information" msgstr "/Finestre/Opzioni dello Strumento..." #. add the information fields -#: app/crop.c:1028 +#: app/crop.c:1036 msgid "Origin X:" msgstr "" -#: app/crop.c:1031 app/file_new_dialog.c:749 app/resize.c:334 app/resize.c:419 -#: app/resize.c:577 app/rotate_tool.c:108 app/scale_tool.c:99 +#: app/crop.c:1039 app/file_new_dialog.c:753 app/resize.c:334 app/resize.c:419 +#: app/resize.c:577 app/rotate_tool.c:109 app/scale_tool.c:99 #: app/shear_tool.c:83 msgid "Y:" msgstr "" #. the pixel size labels -#: app/crop.c:1059 app/file_new_dialog.c:610 app/file_new_dialog.c:628 +#: app/crop.c:1052 app/file_new_dialog.c:614 app/file_new_dialog.c:632 +#: app/tool_options.c:405 msgid "Width:" msgstr "" -#: app/crop.c:1062 app/file_new_dialog.c:616 app/file_new_dialog.c:634 -#: app/layers_dialog.c:3271 app/resize.c:245 app/resize.c:270 app/resize.c:514 -#: app/scale_tool.c:78 app/scale_tool.c:85 +#: app/crop.c:1055 app/file_new_dialog.c:620 app/file_new_dialog.c:638 +#: app/layers_dialog.c:2954 app/resize.c:245 app/resize.c:270 app/resize.c:514 +#: app/scale_tool.c:78 app/scale_tool.c:85 app/tool_options.c:427 msgid "Height:" msgstr "" -#: app/crop.c:1097 +#: app/crop.c:1077 #, fuzzy msgid "From Selection" msgstr "/Selezione/Niente" -#: app/crop.c:1103 -#, fuzzy -msgid "Automatic" -msgstr "/Automatico" +#: app/crop.c:1083 +msgid "Auto Shrink" +msgstr "" -#: app/curves.c:373 +#: app/curves.c:368 msgid "Curves Options" msgstr "" -#: app/curves.c:423 app/layers_dialog.c:288 app/levels.c:281 -#: app/paint_funcs.c:97 +#: app/curves.c:404 app/histogram_tool.c:278 app/layers_dialog.c:227 +#: app/levels.c:230 app/paint_funcs.c:97 app/tool_options.c:790 msgid "Value" msgstr "" -#: app/curves.c:427 app/levels.c:285 +#: app/curves.c:408 app/levels.c:234 msgid "Alpha" msgstr "" -#: app/curves.c:433 -msgid "Smooth" -msgstr "" - -#: app/curves.c:434 -msgid "Free" -msgstr "" - -#: app/curves.c:445 +#: app/curves.c:419 msgid "Curves for indexed drawables cannot be adjusted." msgstr "" -#: app/curves.c:560 app/tools.c:551 +#: app/curves.c:523 +msgid "Smooth" +msgstr "" + +#: app/curves.c:524 +msgid "Free" +msgstr "" + +#: app/curves.c:550 app/tools.c:577 msgid "Curves" msgstr "" -#: app/curves.c:574 +#: app/curves.c:564 msgid "Modify Curves for Channel: " msgstr "" #. The option menu for selecting the drawing method -#: app/curves.c:648 +#: app/curves.c:638 msgid "Curve Type: " msgstr "" @@ -1076,7 +1102,7 @@ msgstr "" msgid "Desaturate operates only on RGB color drawables." msgstr "" -#: app/devices.c:123 app/palette.c:2187 app/preferences_dialog.c:1437 +#: app/devices.c:123 app/palette.c:2187 app/preferences_dialog.c:1471 msgid "Save" msgstr "" @@ -1113,51 +1139,51 @@ msgstr "" msgid "There's no selection to remove." msgstr "" -#: app/docindexif.c:75 +#: app/docindexif.c:80 msgid "Open" msgstr "" -#: app/docindexif.c:75 +#: app/docindexif.c:80 msgid "Open a file" msgstr "" -#: app/docindexif.c:80 +#: app/docindexif.c:85 msgid "Up" msgstr "" -#: app/docindexif.c:80 +#: app/docindexif.c:85 msgid "Move the selected entry up in the index" msgstr "" -#: app/docindexif.c:85 +#: app/docindexif.c:90 msgid "Down" msgstr "" -#: app/docindexif.c:85 +#: app/docindexif.c:90 msgid "Move the selected entry down in the index" msgstr "" -#: app/docindexif.c:90 +#: app/docindexif.c:95 msgid "Remove" msgstr "" -#: app/docindexif.c:90 +#: app/docindexif.c:95 msgid "Remove the selected entry from the index" msgstr "" -#: app/docindexif.c:95 +#: app/docindexif.c:100 #, fuzzy msgid "Close the Document Index" msgstr "/File/Finestre/Indice Documenti..." #. Set the GOWindow title -#: app/docindexif.c:213 +#: app/docindexif.c:218 #, fuzzy msgid "Document Index" msgstr "/File/Finestre/Indice Documenti..." #. Set the initial status message -#: app/docindexif.c:219 +#: app/docindexif.c:224 msgid "GTK successfully started" msgstr "" @@ -1165,11 +1191,11 @@ msgstr "" msgid "drawable_fill called with unknown fill type" msgstr "" -#: app/edit_selection.c:164 +#: app/edit_selection.c:163 msgid "Move: 0, 0" msgstr "" -#: app/edit_selection.c:443 app/edit_selection.c:453 +#: app/edit_selection.c:442 app/edit_selection.c:452 msgid "Move: " msgstr "" @@ -1183,41 +1209,41 @@ msgid "Hard edge" msgstr "" #. the incremental toggle -#: app/eraser.c:108 app/paintbrush.c:258 +#: app/eraser.c:108 app/paintbrush.c:257 msgid "Incremental" msgstr "" -#: app/errorconsole.c:168 +#: app/errorconsole.c:170 #, fuzzy, c-format msgid "Error opening file %s: %s" msgstr "Errore aprendo il file: %s\n" -#: app/errorconsole.c:183 +#: app/errorconsole.c:185 msgid "Can't save, nothing selected!" msgstr "" -#: app/errorconsole.c:187 +#: app/errorconsole.c:189 msgid "Save error log to file..." msgstr "" -#: app/errorconsole.c:244 +#: app/errorconsole.c:246 msgid "GIMP Error console" msgstr "" -#: app/errorconsole.c:259 +#: app/errorconsole.c:261 msgid "Write all errors to file..." msgstr "" -#: app/errorconsole.c:266 +#: app/errorconsole.c:268 msgid "Write selection to file..." msgstr "" -#: app/file_new_dialog.c:299 +#: app/file_new_dialog.c:303 #, fuzzy msgid "Confirm Image Size" msgstr "/Immagine/Ridimensiona" -#: app/file_new_dialog.c:313 +#: app/file_new_dialog.c:317 #, c-format msgid "" "You are trying to create an image which\n" @@ -1233,85 +1259,85 @@ msgid "" "preferences dialog." msgstr "" -#: app/file_new_dialog.c:407 +#: app/file_new_dialog.c:411 #, c-format msgid "%d Bytes" msgstr "" -#: app/file_new_dialog.c:409 +#: app/file_new_dialog.c:413 #, c-format msgid "%.2f KB" msgstr "" -#: app/file_new_dialog.c:411 +#: app/file_new_dialog.c:415 #, c-format msgid "%.1f KB" msgstr "" -#: app/file_new_dialog.c:413 +#: app/file_new_dialog.c:417 #, c-format msgid "%d KB" msgstr "" -#: app/file_new_dialog.c:415 +#: app/file_new_dialog.c:419 #, c-format msgid "%.2f MB" msgstr "" -#: app/file_new_dialog.c:417 +#: app/file_new_dialog.c:421 #, c-format msgid "%.1f MB" msgstr "" #. bytes per pixel #. alpha channel -#: app/file_new_dialog.c:442 +#: app/file_new_dialog.c:446 #, fuzzy, c-format msgid "Image Size: %s" msgstr "/Immagine/Ridimensiona" -#: app/file_new_dialog.c:485 app/gdisplay.c:197 app/preferences_dialog.c:1598 +#: app/file_new_dialog.c:489 app/gdisplay.c:202 app/preferences_dialog.c:1633 msgid "RGB" msgstr "" -#: app/file_new_dialog.c:486 app/info_window.c:50 app/info_window.c:241 -#: app/preferences_dialog.c:1599 +#: app/file_new_dialog.c:490 app/info_window.c:50 app/info_window.c:241 +#: app/preferences_dialog.c:1634 #, fuzzy msgid "Grayscale" msgstr "/Immagine/Scala di grigio" -#: app/file_new_dialog.c:492 app/layers_dialog.c:3209 +#: app/file_new_dialog.c:496 app/layers_dialog.c:2892 msgid "Foreground" msgstr "" -#: app/file_new_dialog.c:494 app/layers_dialog.c:3211 +#: app/file_new_dialog.c:498 app/layers_dialog.c:2894 msgid "White" msgstr "" -#: app/file_new_dialog.c:568 +#: app/file_new_dialog.c:572 msgid "New Image" msgstr "" -#: app/file_new_dialog.c:674 app/preferences_dialog.c:1507 +#: app/file_new_dialog.c:678 app/preferences_dialog.c:1542 msgid "Pixels" msgstr "" #. the resolution labels -#: app/file_new_dialog.c:743 app/resize.c:571 +#: app/file_new_dialog.c:747 app/resize.c:571 #, fuzzy msgid "Resolution X:" msgstr "/Selezione/Niente" -#: app/file_new_dialog.c:764 app/resize.c:592 +#: app/file_new_dialog.c:768 app/resize.c:592 msgid "pixels/%a" msgstr "" #. frame for Image Type -#: app/file_new_dialog.c:808 +#: app/file_new_dialog.c:812 msgid "Image Type" msgstr "" -#: app/fileops.c:222 app/fileops.c:251 +#: app/fileops.c:224 app/fileops.c:253 msgid "Load Image" msgstr "" @@ -1320,366 +1346,128 @@ msgstr "" msgid "Open Options" msgstr "" -#: app/fileops.c:278 app/fileops.c:479 +#: app/fileops.c:278 app/fileops.c:482 msgid "Determine file type:" msgstr "" -#: app/fileops.c:441 app/fileops.c:463 +#: app/fileops.c:443 app/fileops.c:465 msgid "Save Image" msgstr "" -#: app/fileops.c:471 +#: app/fileops.c:474 msgid "Save Options" msgstr "" -#: app/fileops.c:522 +#: app/fileops.c:526 msgid "Can't revert. No filename associated with this image" msgstr "" -#: app/fileops.c:536 +#: app/fileops.c:540 msgid "Revert failed." msgstr "" -#: app/fileops.c:1212 app/fileops.c:1302 +#: app/fileops.c:1364 app/fileops.c:1454 msgid "Open failed: " msgstr "" -#: app/fileops.c:1368 +#: app/fileops.c:1520 #, c-format msgid "%s is an irregular file (%s)" msgstr "" -#: app/fileops.c:1382 app/fileops.c:1485 +#: app/fileops.c:1534 app/fileops.c:1641 msgid "Save failed: " msgstr "" -#: app/fileops.c:1394 app/fileops.c:1407 +#: app/fileops.c:1546 app/fileops.c:1547 app/fileops.c:1559 app/fileops.c:1560 +#: app/menus.c:58 app/menus.c:90 #, fuzzy -msgid "/File/Open" +msgid "/File/Open" msgstr "/File/Apri" -#: app/fileops.c:1395 app/fileops.c:1408 +#: app/fileops.c:1548 app/fileops.c:1564 app/menus.c:91 #, fuzzy -msgid "/File/Open" -msgstr "/File/Apri" - -#: app/fileops.c:1396 app/fileops.c:1409 -#, fuzzy -msgid "/File/Save" +msgid "/File/Save" msgstr "/File/Salva" -#: app/fileops.c:1397 app/fileops.c:1410 +#: app/fileops.c:1549 app/fileops.c:1565 app/menus.c:92 #, fuzzy -msgid "/File/Save as" +msgid "/File/Save as" msgstr "/File/Salva con nome" -#: app/fileops.c:1430 +#: app/fileops.c:1586 #, c-format msgid "%s exists, overwrite?" msgstr "" -#: app/fileops.c:1436 +#: app/fileops.c:1592 msgid "File Exists!" msgstr "" -#: app/flip_tool.c:70 app/preferences_dialog.c:1553 -#: app/preferences_dialog.c:2215 +#: app/flip_tool.c:71 app/preferences_dialog.c:1588 +#: app/preferences_dialog.c:2290 msgid "Horizontal" msgstr "" -#: app/flip_tool.c:70 app/preferences_dialog.c:1555 -#: app/preferences_dialog.c:2217 +#: app/flip_tool.c:71 app/preferences_dialog.c:1590 +#: app/preferences_dialog.c:2292 msgid "Vertical" msgstr "" -#: app/flip_tool.c:76 +#: app/flip_tool.c:77 #, fuzzy msgid "Flip Tool Options" msgstr "/File/Finestre/Opzioni dello strumento..." -#: app/floating_sel.c:108 +#: app/floating_sel.c:107 msgid "" "Cannot anchor this layer because\n" "it is not a floating selection." msgstr "" -#: app/floating_sel.c:174 +#: app/floating_sel.c:173 msgid "" "Cannot create a new layer from the floating\n" "selection because it belongs to a\n" "layer mask or channel." msgstr "" -#: app/free_select.c:220 +#: app/free_select.c:219 msgid "Cannot properly scanline convert polygon!\n" msgstr "" -#: app/gdisplay.c:197 +#: app/gdisplay.c:202 msgid "RGB-empty" msgstr "" -#: app/gdisplay.c:200 +#: app/gdisplay.c:205 msgid "grayscale-empty" msgstr "" -#: app/gdisplay.c:200 +#: app/gdisplay.c:205 #, fuzzy msgid "grayscale" msgstr "/Immagine/Scala di grigio" -#: app/gdisplay.c:203 +#: app/gdisplay.c:208 msgid "indexed-empty" msgstr "" -#: app/gdisplay.c:203 +#: app/gdisplay.c:208 msgid "indexed" msgstr "" -#: app/gdisplay.c:1573 -#, fuzzy -msgid "/Layers/Stack/Previous Layer" -msgstr "/Livelli/Porta livello in alto" - -#: app/gdisplay.c:1574 -#, fuzzy -msgid "/Layers/Stack/Next Layer" -msgstr "/Livelli/Porta livello in alto" - -#: app/gdisplay.c:1575 -#, fuzzy -msgid "/Layers/Stack/Raise Layer" -msgstr "/Livelli/Porta livello in alto" - -#: app/gdisplay.c:1576 -#, fuzzy -msgid "/Layers/Stack/Lower Layer" -msgstr "/Livelli/Porta livello in basso" - -#: app/gdisplay.c:1577 -#, fuzzy -msgid "/Layers/Stack/Layer to Top" -msgstr "/Livelli/Porta livello in alto" - -#: app/gdisplay.c:1578 -#, fuzzy -msgid "/Layers/Stack/Layer to Bottom" -msgstr "/Livelli/Porta livello in alto" - -#: app/gdisplay.c:1579 -#, fuzzy -msgid "/Layers/Anchor Layer" -msgstr "/Livelli/Ancora livello" - -#: app/gdisplay.c:1580 -#, fuzzy -msgid "/Layers/Merge Visible Layers" -msgstr "/Livelli/Combina livelli visibili" - -#: app/gdisplay.c:1581 -#, fuzzy -msgid "/Layers/Flatten Image" -msgstr "/Livelli/Appiattisci immagine" - -#: app/gdisplay.c:1582 -#, fuzzy -msgid "/Layers/Alpha To Selection" -msgstr "/Livelli/Da Alpha a Selezione" - -#: app/gdisplay.c:1583 -#, fuzzy -msgid "/Layers/Mask To Selection" -msgstr "/Livelli/Da Maschera a Selezione" - -#: app/gdisplay.c:1584 -#, fuzzy -msgid "/Layers/Add Alpha Channel" -msgstr "/Livelli/Aggiungi Canale Alpha" - -#: app/gdisplay.c:1586 -#, fuzzy -msgid "/Image/RGB" -msgstr "/Immagine/RGB" - -#: app/gdisplay.c:1587 -#, fuzzy -msgid "/Image/Grayscale" -msgstr "/Immagine/Scala di grigio" - -#: app/gdisplay.c:1588 -#, fuzzy -msgid "/Image/Indexed" -msgstr "/Immagine/Indicizzata" - -#: app/gdisplay.c:1590 -#, fuzzy -msgid "/Image/Colors/Threshold" -msgstr "/Immagine/Colori/Inverti" - -#: app/gdisplay.c:1591 -#, fuzzy -msgid "/Image/Colors/Posterize" -msgstr "/Immagine/Colori/Riduci saturazione" - -#: app/gdisplay.c:1592 -#, fuzzy -msgid "/Image/Colors/Equalize" -msgstr "/Immagine/Colori/Equalizza" - -#: app/gdisplay.c:1593 -#, fuzzy -msgid "/Image/Colors/Invert" -msgstr "/Immagine/Colori/Inverti" - -#: app/gdisplay.c:1595 -#, fuzzy -msgid "/Image/Colors/Color Balance" -msgstr "/Immagine/Colori/Equalizza" - -#: app/gdisplay.c:1596 -#, fuzzy -msgid "/Image/Colors/Brightness-Contrast" -msgstr "/Immagine/Colori/Riduci saturazione" - -#: app/gdisplay.c:1597 -#, fuzzy -msgid "/Image/Colors/Hue-Saturation" -msgstr "/Immagine/Colori/Riduci saturazione" - -#: app/gdisplay.c:1598 -#, fuzzy -msgid "/Image/Colors/Curves" -msgstr "/Immagine/Colori/Inverti" - -#: app/gdisplay.c:1599 -#, fuzzy -msgid "/Image/Colors/Levels" -msgstr "/Immagine/Colori/Inverti" - -#: app/gdisplay.c:1601 -#, fuzzy -msgid "/Image/Colors/Desaturate" -msgstr "/Immagine/Colori/Riduci saturazione" - -#: app/gdisplay.c:1603 -#, fuzzy -msgid "/Image/Alpha/Add Alpha Channel" -msgstr "/Immagine/Alpha/Aggiungi canale alpha" - -#: app/gdisplay.c:1605 -#, fuzzy -msgid "/Select" -msgstr "/Immagine/Scala" - -#: app/gdisplay.c:1606 -#, fuzzy -msgid "/Edit/Cut" -msgstr "/Modifica/Taglia" - -#: app/gdisplay.c:1607 -#, fuzzy -msgid "/Edit/Copy" -msgstr "/Modifica/Copia" - -#: app/gdisplay.c:1608 -#, fuzzy -msgid "/Edit/Paste" -msgstr "/Modifica/Incolla" - -#: app/gdisplay.c:1609 -#, fuzzy -msgid "/Edit/Paste Into" -msgstr "/Modifica/Incolla dentro" - -#: app/gdisplay.c:1610 -#, fuzzy -msgid "/Edit/Clear" -msgstr "/Modifica/Cancella" - -#: app/gdisplay.c:1611 -#, fuzzy -msgid "/Edit/Fill" -msgstr "/Modifica/Riempi" - -#: app/gdisplay.c:1612 -#, fuzzy -msgid "/Edit/Stroke" -msgstr "/Modifica/Sbarra" - -#: app/gdisplay.c:1613 -#, fuzzy -msgid "/Edit/Cut Named" -msgstr "/Modifica/Taglia con Nome" - -#: app/gdisplay.c:1614 -#, fuzzy -msgid "/Edit/Copy Named" -msgstr "/Modifica/Copia con Nome" - -#: app/gdisplay.c:1615 -#, fuzzy -msgid "/Edit/Paste Named" -msgstr "/Modifica/Incolla con Nome" - -#: app/gdisplay.c:1616 -#, fuzzy -msgid "/Image/Colors" -msgstr "/Immagine/Colori/---" - -#: app/gdisplay.c:1617 -#, fuzzy -msgid "/Image/Channel Ops/Offset" -msgstr "/Immagine/Operazioni canale/Spostamento" - -#: app/gdisplay.c:1618 -msgid "/Image/Histogram" -msgstr "" - -#: app/gdisplay.c:1619 -#, fuzzy -msgid "/Filters" -msgstr "/Flitri/" - -#. save selection to channel -#: app/gdisplay.c:1622 -#, fuzzy -msgid "/Select/Save To Channel" -msgstr "/Selezione/Salva in Canale" - -#: app/gdisplay.c:1624 -#, fuzzy -msgid "/View/Toggle Rulers" -msgstr "/Vista/Righelli" - -#: app/gdisplay.c:1625 -#, fuzzy -msgid "/View/Toggle Guides" -msgstr "/Vista/Guide" - -#: app/gdisplay.c:1626 -#, fuzzy -msgid "/View/Snap To Guides" -msgstr "/Vista/Costringi alle guide" - -#: app/gdisplay.c:1627 -#, fuzzy -msgid "/View/Toggle Statusbar" -msgstr "/Vista/Barra di stato" - -#: app/gdisplay.c:1628 -msgid "/View/Dot for dot" -msgstr "" - -#: app/gdisplay.c:2063 +#: app/gdisplay.c:2102 msgid "gdisplays_flush() called recursively." msgstr "" -#: app/gdisplay_ops.c:305 app/gdisplay_ops.c:324 app/gdisplay_ops.c:334 -#: app/gdisplay_ops.c:370 +#: app/gdisplay_ops.c:305 app/gdisplay_ops.c:320 app/gdisplay_ops.c:330 +#: app/gdisplay_ops.c:366 app/menus.c:97 #, fuzzy -msgid "/File/Close" +msgid "/File/Close" msgstr "/File/Chiudi" -#: app/gdisplay_ops.c:392 +#: app/gdisplay_ops.c:388 #, c-format msgid "Changes were made to %s. Close anyway?" msgstr "" @@ -1750,105 +1538,105 @@ msgstr "" msgid "Layer type %d not supported." msgstr "" -#: app/gimpimage.c:596 app/gimpimage.c:690 +#: app/gimpimage.c:642 app/gimpimage.c:740 msgid "gimp_image_apply_image sent illegal parameters" msgstr "" -#: app/gimpimage.c:1096 +#: app/gimpimage.c:1172 msgid "Unable to project indexed image." msgstr "" -#: app/gimpimage.c:1966 +#: app/gimpimage.c:2109 msgid "Layer cannot be raised any further" msgstr "" -#: app/gimpimage.c:2040 +#: app/gimpimage.c:2184 msgid "Layer cannot be lowered any further" msgstr "" #. layer_arg is already the top_layer -#: app/gimpimage.c:2069 +#: app/gimpimage.c:2214 msgid "Layer is already on top" msgstr "" -#: app/gimpimage.c:2074 +#: app/gimpimage.c:2219 msgid "Can't raise Layer without alpha" msgstr "" #. there is no next layer below layer_arg -#: app/gimpimage.c:2168 +#: app/gimpimage.c:2314 msgid "Layer is already on bottom" msgstr "" -#: app/gimpimage.c:2181 +#: app/gimpimage.c:2327 msgid "BG has no alpha, layer was placed above" msgstr "" -#: app/gimpimage.c:2243 +#: app/gimpimage.c:2390 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." msgstr "" -#: app/gimpimage.c:2321 +#: app/gimpimage.c:2468 msgid "There are not enough visible layers for a merge down." msgstr "" -#: app/gimpimage.c:2432 app/gimpimage.c:2465 +#: app/gimpimage.c:2581 app/gimpimage.c:2614 msgid "gimp_image_merge_layers: could not allocate merge layer" msgstr "" -#: app/gimpimage.c:2504 +#: app/gimpimage.c:2653 msgid "gimp_image_merge_layers attempting to merge incompatible layers\n" msgstr "" -#: app/gimpimage.c:2584 +#: app/gimpimage.c:2735 msgid "gimp_image_add_layer: attempt to add layer to wrong image" msgstr "" -#: app/gimpimage.c:2594 +#: app/gimpimage.c:2745 msgid "gimp_image_add_layer: trying to add layer to image twice" msgstr "" -#: app/gimpimage.c:2710 +#: app/gimpimage.c:2864 msgid "" "Unable to add a layer mask since\n" "the layer already has one." msgstr "" -#: app/gimpimage.c:2714 +#: app/gimpimage.c:2868 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." msgstr "" -#: app/gimpimage.c:2718 +#: app/gimpimage.c:2872 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." msgstr "" -#: app/gimpimage.c:2722 +#: app/gimpimage.c:2876 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -#: app/gimpimage.c:2826 +#: app/gimpimage.c:2983 msgid "Channel cannot be raised any further" msgstr "" -#: app/gimpimage.c:2873 +#: app/gimpimage.c:3031 msgid "Channel cannot be lowered any further" msgstr "" -#: app/gimpimage.c:2893 +#: app/gimpimage.c:3053 msgid "gimp_image_add_channel: attempt to add channel to wrong image" msgstr "" -#: app/gimpimage.c:2903 +#: app/gimpimage.c:3063 msgid "gimp_image_add_channel: trying to add channel to image twice" msgstr "" -#: app/gimpimage.c:3029 app/palette.c:525 app/palette.c:550 app/palette.c:909 +#: app/gimpimage.c:3190 app/palette.c:525 app/palette.c:550 app/palette.c:909 #: app/palette.c:913 app/palette.c:2313 app/palette.c:2995 msgid "Untitled" msgstr "" @@ -1857,95 +1645,99 @@ msgstr "" msgid "Progress" msgstr "" -#: app/gimprc.c:353 app/plug_in.c:302 +#: app/gimprc.c:358 app/plug_in.c:305 msgid "Resource configuration" msgstr "" -#: app/gimprc.c:408 +#: app/gimprc.c:413 #, fuzzy, c-format msgid "error parsing: \"%s\"\n" msgstr "Errore aprendo il file: %s\n" -#: app/gimprc.c:409 +#: app/gimprc.c:414 #, c-format msgid " at line %d column %d\n" msgstr "" -#: app/gimprc.c:410 +#: app/gimprc.c:415 #, c-format msgid " unexpected token: %s\n" msgstr "" -#: app/gimprc.c:1300 +#: app/gimprc.c:1305 msgid "error parsing pluginrc" msgstr "" -#: app/gimprc.c:1635 +#: app/gimprc.c:1640 #, c-format msgid "gimprc token referenced but not defined: %s" msgstr "" -#: app/gimprc.c:2518 +#: app/gimprc.c:2522 #, c-format msgid "Can't open %s; %s" msgstr "" -#: app/gimprc.c:2537 +#: app/gimprc.c:2541 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "" -#: app/gimprc.c:2543 +#: app/gimprc.c:2547 #, c-format msgid "Couldn't reopen %s\n" msgstr "" -#: app/gimprc.c:2555 +#: app/gimprc.c:2559 #, c-format msgid "Can't write to %s; %s" msgstr "" #. Make a new floating layer -#: app/global_edit.c:284 +#: app/global_edit.c:289 app/global_edit.c:344 app/global_edit.c:354 #, fuzzy msgid "Pasted Layer" msgstr "/Livelli/Porta livello in alto" -#: app/global_edit.c:591 +#: app/global_edit.c:698 #, fuzzy msgid "Paste" msgstr "/Modifica/Incolla" +#: app/global_edit.c:699 +#, fuzzy +msgid "Paste Into" +msgstr "/Modifica/Incolla dentro" + +#: app/global_edit.c:700 +msgid "Paste As New" +msgstr "" + #. Buttons -#: app/global_edit.c:592 app/gradient.c:1477 app/palette.c:1429 +#: app/global_edit.c:704 app/gradient.c:1477 app/palette.c:1429 #: app/palette.c:2179 msgid "Delete" msgstr "" -#: app/global_edit.c:606 +#: app/global_edit.c:720 #, fuzzy msgid "Paste Named Buffer" msgstr "/Modifica/Incolla con Nome" -#: app/global_edit.c:618 +#: app/global_edit.c:732 msgid "Select a buffer to paste:" msgstr "" -#: app/global_edit.c:637 -#, fuzzy -msgid "Replace Current Selection" -msgstr "/Livelli/Da Maschera a Selezione" - -#: app/global_edit.c:699 +#: app/global_edit.c:820 #, fuzzy msgid "Cut Named" msgstr "/Modifica/Taglia con Nome" -#: app/global_edit.c:700 app/global_edit.c:732 +#: app/global_edit.c:821 app/global_edit.c:853 msgid "Enter a name for this buffer" msgstr "" -#: app/global_edit.c:731 +#: app/global_edit.c:852 #, fuzzy msgid "Copy Named" msgstr "/Modifica/Copia con Nome" @@ -2002,7 +1794,7 @@ msgstr "/Finestre/Editor di sfumature..." msgid "Gradients: " msgstr "" -#: app/gradient.c:680 app/gradient_select.c:476 app/paintbrush.c:199 +#: app/gradient.c:680 app/gradient_select.c:476 app/paintbrush.c:204 #: app/palette.c:2833 msgid "Gradient" msgstr "" @@ -2355,92 +2147,106 @@ msgstr "" msgid "Gradient Selection" msgstr "/Selezione/Niente" -#: app/histogram_tool.c:207 +#: app/histogram_tool.c:173 #, fuzzy msgid "Histogram Options" msgstr "/Finestre/Opzioni dello Strumento..." -#: app/histogram_tool.c:307 +#: app/histogram_tool.c:210 +msgid "Histogram does not operate on indexed drawables." +msgstr "" + +#: app/histogram_tool.c:267 msgid "Mean:" msgstr "" -#: app/histogram_tool.c:308 +#: app/histogram_tool.c:268 msgid "Std Dev:" msgstr "" -#: app/histogram_tool.c:309 +#: app/histogram_tool.c:269 msgid "Median:" msgstr "" -#: app/histogram_tool.c:310 +#: app/histogram_tool.c:270 msgid "Pixels:" msgstr "" -#: app/histogram_tool.c:312 +#: app/histogram_tool.c:272 msgid "Count:" msgstr "" -#: app/histogram_tool.c:313 +#: app/histogram_tool.c:273 msgid "Percentile:" msgstr "" -#: app/hue_saturation.c:301 +#: app/histogram_tool.c:296 app/tools.c:607 +msgid "Histogram" +msgstr "" + +#: app/histogram_tool.c:315 +msgid "Information on Channel:" +msgstr "" + +#: app/hue_saturation.c:260 msgid "Hue-Saturation Options" msgstr "" -#: app/hue_saturation.c:348 +#: app/hue_saturation.c:298 msgid "Hue-Saturation operates only on RGB color drawables." msgstr "" -#: app/hue_saturation.c:416 +#: app/hue_saturation.c:367 #, fuzzy msgid "Master" msgstr "/Modifica/Incolla" -#: app/hue_saturation.c:417 +#: app/hue_saturation.c:368 msgid "R" msgstr "" -#: app/hue_saturation.c:418 +#: app/hue_saturation.c:369 msgid "Y" msgstr "" -#: app/hue_saturation.c:419 +#: app/hue_saturation.c:370 msgid "G" msgstr "" -#: app/hue_saturation.c:420 +#: app/hue_saturation.c:371 msgid "C" msgstr "" -#: app/hue_saturation.c:421 +#: app/hue_saturation.c:372 msgid "B" msgstr "" -#: app/hue_saturation.c:422 +#: app/hue_saturation.c:373 msgid "M" msgstr "" -#: app/hue_saturation.c:442 app/tools.c:506 +#: app/hue_saturation.c:394 app/tools.c:532 msgid "Hue-Saturation" msgstr "" -#: app/hue_saturation.c:504 +#: app/hue_saturation.c:456 msgid "Hue / Lightness / Saturation Adjustments" msgstr "" #. Create the hue scale widget -#: app/hue_saturation.c:514 app/layers_dialog.c:285 app/paint_funcs.c:94 +#: app/hue_saturation.c:466 app/layers_dialog.c:221 app/paint_funcs.c:94 +#: app/tool_options.c:787 msgid "Hue" msgstr "" #. Create the lightness scale widget -#: app/hue_saturation.c:548 +#: app/hue_saturation.c:500 msgid "Lightness" msgstr "" #. Create the saturation scale widget -#: app/hue_saturation.c:582 app/layers_dialog.c:286 app/paint_funcs.c:95 +#: app/hue_saturation.c:534 app/layers_dialog.c:223 app/paint_funcs.c:95 +#: app/tool_options.c:788 msgid "Saturation" msgstr "" @@ -2484,7 +2290,7 @@ msgstr "" msgid "Resolution:" msgstr "/Selezione/Niente" -#: app/info_window.c:159 +#: app/info_window.c:159 app/tool_options.c:449 msgid "Unit:" msgstr "" @@ -2528,41 +2334,41 @@ msgid "Indexed Color" msgstr "/Immagine/Indicizzata" #. size slider -#: app/ink.c:292 +#: app/ink.c:294 msgid "Size:" msgstr "" #. sens slider -#: app/ink.c:310 app/ink.c:334 app/ink.c:364 +#: app/ink.c:312 app/ink.c:336 app/ink.c:366 msgid "Sensitivity:" msgstr "" #. tilt sens slider -#: app/ink.c:328 +#: app/ink.c:330 msgid "Tilt" msgstr "" #. velocity sens slider -#: app/ink.c:358 +#: app/ink.c:360 msgid "Speed" msgstr "" #. angle adjust slider -#: app/ink.c:388 +#: app/ink.c:390 msgid "Angle" msgstr "" -#: app/ink.c:394 +#: app/ink.c:396 msgid "Adjust:" msgstr "" #. Brush type radiobuttons -#: app/ink.c:417 +#: app/ink.c:419 msgid "Type" msgstr "" #. Brush shape widget -#: app/ink.c:481 +#: app/ink.c:483 #, fuzzy msgid "Shape" msgstr "/Selezione/Metti a fuoco" @@ -2873,18 +2679,18 @@ msgid "" "Installation failed. Contact system administrator.\n" msgstr "" -#: app/interface.c:268 +#: app/interface.c:325 msgid "" "Foreground & background colors. The black and white squares reset colors. " "The arrows swap colors. Double click to select a color from a colorrequester." msgstr "" -#: app/interface.c:485 +#: app/interface.c:541 #, fuzzy msgid "The GIMP" msgstr "Informazioni su GIMP" -#: app/interface.c:1256 +#: app/interface.c:1388 msgid "GIMP Message" msgstr "" @@ -2906,7 +2712,8 @@ msgstr "/Selezione/Salva in Canale" msgid "Channel Ops" msgstr "/Immagine/Operazioni canale/Spostamento" -#: app/internal_procs.c:79 app/layers_dialog.c:287 app/paint_funcs.c:96 +#: app/internal_procs.c:79 app/layers_dialog.c:225 app/paint_funcs.c:96 +#: app/tool_options.c:789 msgid "Color" msgstr "" @@ -2962,7 +2769,7 @@ msgstr "/Selezione/Niente" msgid "Guide procedures" msgstr "/Immagine/Scala" -#: app/internal_procs.c:118 app/preferences_dialog.c:1686 +#: app/internal_procs.c:118 app/preferences_dialog.c:1721 msgid "Interface" msgstr "" @@ -2986,7 +2793,7 @@ msgstr "/Modifica/Incolla" msgid "Parasite procedures" msgstr "/Modifica/Taglia" -#: app/internal_procs.c:133 app/layers_dialog.c:407 +#: app/internal_procs.c:133 app/lc_dialog.c:180 #, fuzzy msgid "Paths" msgstr "/Modifica/Incolla" @@ -3049,23 +2856,23 @@ msgstr "" msgid "Convert to Bezier Curve" msgstr "" -#: app/iscissors.c:1779 +#: app/iscissors.c:1780 msgid "Boundary contains < 4 points! Cannot bezierify." msgstr "" -#: app/layer.c:246 +#: app/layer.c:248 msgid "Zero width or height layers not allowed." msgstr "" -#: app/layer.c:352 +#: app/layer.c:354 msgid "layer_copy: could not allocate new layer" msgstr "" -#: app/layer.c:429 +#: app/layer.c:431 msgid "layer_from_tiles: could not allocate new layer" msgstr "" -#: app/layer.c:484 +#: app/layer.c:486 #, c-format msgid "%s mask" msgstr "" @@ -3075,296 +2882,330 @@ msgstr "" msgid "Layer Select" msgstr "/Livelli/Da Maschera a Selezione" -#: app/layers_dialog.c:232 app/layers_dialog.c:303 app/layers_dialog.c:3261 -msgid "New Layer" -msgstr "" - -#: app/layers_dialog.c:234 -#, fuzzy -msgid "Raise Layer" -msgstr "/Livelli/Porta livello in alto" - -#: app/layers_dialog.c:236 -#, fuzzy -msgid "Lower Layer" -msgstr "/Livelli/Porta livello in basso" - -#: app/layers_dialog.c:238 app/layers_dialog.c:306 -msgid "Duplicate Layer" -msgstr "" - -#: app/layers_dialog.c:240 app/layers_dialog.c:307 -msgid "Delete Layer" -msgstr "" - -#: app/layers_dialog.c:242 app/resize.c:159 -msgid "Scale Layer" -msgstr "" - -#: app/layers_dialog.c:244 app/resize.c:174 -#, fuzzy -msgid "Resize Layer" -msgstr "/Livelli/Porta livello in alto" - -#: app/layers_dialog.c:246 -msgid "Add Layer Mask" -msgstr "" - -#: app/layers_dialog.c:248 -msgid "Apply Layer Mask" -msgstr "" - -#: app/layers_dialog.c:250 app/layers_dialog.c:308 -#, fuzzy -msgid "Anchor Layer" -msgstr "/Livelli/Ancora livello" - -#: app/layers_dialog.c:252 -#, fuzzy -msgid "Merge Visible Layers" -msgstr "/Livelli/Combina livelli visibili" - -#: app/layers_dialog.c:254 -msgid "Merge Down" -msgstr "" - -#: app/layers_dialog.c:256 -#, fuzzy -msgid "Flatten Image" -msgstr "/Livelli/Appiattisci immagine" - -#: app/layers_dialog.c:258 -#, fuzzy -msgid "Alpha To Selection" -msgstr "/Livelli/Da Alpha a Selezione" - -#: app/layers_dialog.c:260 -#, fuzzy -msgid "Mask To Selection" -msgstr "/Livelli/Da Maschera a Selezione" - -#: app/layers_dialog.c:262 -#, fuzzy -msgid "Add Alpha Channel" -msgstr "/Livelli/Aggiungi Canale Alpha" - -#: app/layers_dialog.c:264 -msgid "Layer to Top" -msgstr "" - -#: app/layers_dialog.c:266 -msgid "Layer to Bottom" -msgstr "" - -#: app/layers_dialog.c:274 app/paint_funcs.c:83 +#: app/layers_dialog.c:199 app/paint_funcs.c:83 app/tool_options.c:775 msgid "Normal" msgstr "" -#: app/layers_dialog.c:275 app/paint_funcs.c:84 +#: app/layers_dialog.c:201 app/paint_funcs.c:84 app/tool_options.c:776 msgid "Dissolve" msgstr "" -#: app/layers_dialog.c:276 app/paint_funcs.c:86 +#: app/layers_dialog.c:203 app/paint_funcs.c:86 app/tool_options.c:778 msgid "Multiply (Burn)" msgstr "" -#: app/layers_dialog.c:277 app/paint_funcs.c:98 +#: app/layers_dialog.c:205 app/paint_funcs.c:98 app/tool_options.c:779 msgid "Divide (Dodge)" msgstr "" -#: app/layers_dialog.c:278 app/paint_funcs.c:87 +#: app/layers_dialog.c:207 app/paint_funcs.c:87 app/tool_options.c:780 msgid "Screen" msgstr "" -#: app/layers_dialog.c:279 app/paint_funcs.c:88 +#: app/layers_dialog.c:209 app/paint_funcs.c:88 app/tool_options.c:781 msgid "Overlay" msgstr "" -#: app/layers_dialog.c:280 app/paint_funcs.c:89 +#: app/layers_dialog.c:211 app/paint_funcs.c:89 app/tool_options.c:782 msgid "Difference" msgstr "" -#: app/layers_dialog.c:281 app/paint_funcs.c:90 +#: app/layers_dialog.c:213 app/paint_funcs.c:90 app/tool_options.c:783 msgid "Addition" msgstr "" -#: app/layers_dialog.c:283 app/paint_funcs.c:92 +#: app/layers_dialog.c:217 app/paint_funcs.c:92 app/tool_options.c:785 msgid "Darken Only" msgstr "" -#: app/layers_dialog.c:284 app/paint_funcs.c:93 +#: app/layers_dialog.c:219 app/paint_funcs.c:93 app/tool_options.c:786 msgid "Lighten Only" msgstr "" -#: app/layers_dialog.c:304 +#: app/layers_dialog.c:246 app/layers_dialog.c:2944 +msgid "New Layer" +msgstr "" + +#: app/layers_dialog.c:248 msgid "" "Raise Layer \n" " To Top" msgstr "" -#: app/layers_dialog.c:305 +#: app/layers_dialog.c:251 msgid "" "Lower Layer \n" " To Bottom" msgstr "" -#: app/layers_dialog.c:335 -#, fuzzy -msgid "Layers & Channels" -msgstr "/Livelli/Livelli e Canali..." - -#. The Auto-button -#: app/layers_dialog.c:373 -#, fuzzy -msgid "Auto" -msgstr "/Automatico" - -#: app/layers_dialog.c:391 -msgid "Layers" +#: app/layers_dialog.c:254 +msgid "Duplicate Layer" msgstr "" -#: app/layers_dialog.c:401 -msgid "Channels" +#: app/layers_dialog.c:256 +#, fuzzy +msgid "Anchor Layer" +msgstr "/Livelli/Ancora livello" + +#: app/layers_dialog.c:258 +msgid "Delete Layer" msgstr "" -#: app/layers_dialog.c:744 +#: app/layers_dialog.c:321 msgid "Keep Trans." msgstr "" -#: app/layers_dialog.c:1489 +#: app/layers_dialog.c:947 app/menus.c:245 +#, fuzzy +msgid "/Stack/Previous Layer" +msgstr "/Livelli/Porta livello in alto" + +#: app/layers_dialog.c:949 app/menus.c:246 +#, fuzzy +msgid "/Stack/Next Layer" +msgstr "/Livelli/Porta livello in alto" + +#: app/layers_dialog.c:952 app/menus.c:247 +#, fuzzy +msgid "/Stack/Raise Layer" +msgstr "/Livelli/Porta livello in alto" + +#: app/layers_dialog.c:957 app/menus.c:248 +#, fuzzy +msgid "/Stack/Lower Layer" +msgstr "/Livelli/Porta livello in basso" + +#: app/layers_dialog.c:962 app/menus.c:249 +#, fuzzy +msgid "/Stack/Layer to Top" +msgstr "/Livelli/Porta livello in alto" + +#: app/layers_dialog.c:964 app/menus.c:250 +#, fuzzy +msgid "/Stack/Layer to Bottom" +msgstr "/Livelli/Porta livello in alto" + +#: app/layers_dialog.c:967 app/menus.c:244 +#, fuzzy +msgid "/New Layer" +msgstr "/Livelli/Porta livello in alto" + +#: app/layers_dialog.c:970 app/menus.c:251 +#, fuzzy +msgid "/Duplicate Layer" +msgstr "/Selezione/Salva in Canale" + +#: app/layers_dialog.c:974 app/menus.c:252 +#, fuzzy +msgid "/Anchor Layer" +msgstr "/Livelli/Ancora livello" + +#: app/layers_dialog.c:978 app/menus.c:253 +#, fuzzy +msgid "/Delete Layer" +msgstr "/Livelli/Porta livello in alto" + +#: app/layers_dialog.c:981 app/menus.c:255 +#, fuzzy +msgid "/Scale Layer" +msgstr "/Livelli/Porta livello in alto" + +#: app/layers_dialog.c:982 app/menus.c:256 +#, fuzzy +msgid "/Resize Layer" +msgstr "/Livelli/Porta livello in alto" + +#: app/layers_dialog.c:984 app/menus.c:258 +#, fuzzy +msgid "/Merge Visible Layers" +msgstr "/Livelli/Combina livelli visibili" + +#: app/layers_dialog.c:986 app/menus.c:259 +msgid "/Merge Down" +msgstr "" + +#: app/layers_dialog.c:987 app/menus.c:260 +#, fuzzy +msgid "/Flatten Image" +msgstr "/Livelli/Appiattisci immagine" + +#: app/layers_dialog.c:989 app/menus.c:262 +#, fuzzy +msgid "/Add Layer Mask" +msgstr "/Livelli/Da Maschera a Selezione" + +#: app/layers_dialog.c:991 app/menus.c:263 +msgid "/Apply Layer Mask" +msgstr "" + +#: app/layers_dialog.c:993 app/menus.c:264 +#, fuzzy +msgid "/Alpha to Selection" +msgstr "/Livelli/Da Alpha a Selezione" + +#: app/layers_dialog.c:995 app/menus.c:265 +#, fuzzy +msgid "/Mask to Selection" +msgstr "/Livelli/Da Maschera a Selezione" + +#: app/layers_dialog.c:997 app/menus.c:266 +#, fuzzy +msgid "/Add Alpha Channel" +msgstr "/Livelli/Aggiungi Canale Alpha" + +#: app/layers_dialog.c:1185 msgid "Unknown layer mode" msgstr "" -#: app/layers_dialog.c:2206 app/layers_dialog.c:3028 app/layers_dialog.c:3471 +#: app/layers_dialog.c:1890 app/layers_dialog.c:2712 app/layers_dialog.c:3157 msgid "Floating Selection" msgstr "" -#: app/layers_dialog.c:3149 +#: app/layers_dialog.c:2832 msgid "new_layer_query_ok_callback: could not allocate new layer" msgstr "" -#: app/layers_dialog.c:3231 +#: app/layers_dialog.c:2914 msgid "New Layer Options" msgstr "" #. the name label and entry -#: app/layers_dialog.c:3251 +#: app/layers_dialog.c:2934 #, fuzzy msgid "Layer Name:" msgstr "/Livelli/Porta livello in alto" #. the size labels -#: app/layers_dialog.c:3265 +#: app/layers_dialog.c:2948 msgid "Layer Width:" msgstr "" #. the radio frame and box -#: app/layers_dialog.c:3324 +#: app/layers_dialog.c:3007 msgid "Layer Fill Type" msgstr "" -#: app/layers_dialog.c:3447 +#: app/layers_dialog.c:3131 msgid "Edit Layer Attributes" msgstr "" -#: app/layers_dialog.c:3464 +#: app/layers_dialog.c:3149 msgid "Layer name: " msgstr "" -#: app/layers_dialog.c:3587 +#: app/layers_dialog.c:3275 msgid "White (Full Opacity)" msgstr "" -#: app/layers_dialog.c:3588 +#: app/layers_dialog.c:3276 msgid "Black (Full Transparency)" msgstr "" -#: app/layers_dialog.c:3589 +#: app/layers_dialog.c:3277 #, fuzzy msgid "Layer's Alpha Channel" msgstr "/Livelli/Aggiungi Canale Alpha" -#: app/layers_dialog.c:3606 +#: app/layers_dialog.c:3294 msgid "Add Mask Options" msgstr "" #. the name entry hbox, label and entry -#: app/layers_dialog.c:3621 +#: app/layers_dialog.c:3309 msgid "Initialize Layer Mask To:" msgstr "" -#: app/layers_dialog.c:3720 +#: app/layers_dialog.c:3408 msgid "Apply" msgstr "" -#: app/layers_dialog.c:3721 +#: app/layers_dialog.c:3409 msgid "Discard" msgstr "" -#: app/layers_dialog.c:3735 +#: app/layers_dialog.c:3423 #, fuzzy msgid "Layer Mask Options" msgstr "/Livelli/Da Maschera a Selezione" #. the name entry hbox, label and entry -#: app/layers_dialog.c:3751 +#: app/layers_dialog.c:3439 msgid "Apply layer mask?" msgstr "" -#: app/layers_dialog.c:3811 app/layers_dialog.c:3909 +#: app/layers_dialog.c:3499 app/layers_dialog.c:3597 msgid "Invalid width or height. Both must be positive." msgstr "" -#: app/layers_dialog.c:4062 +#: app/layers_dialog.c:3751 msgid "Expanded as necessary" msgstr "" -#: app/layers_dialog.c:4063 +#: app/layers_dialog.c:3752 msgid "Clipped to image" msgstr "" -#: app/layers_dialog.c:4064 +#: app/layers_dialog.c:3753 msgid "Clipped to bottom layer" msgstr "" -#: app/layers_dialog.c:4082 +#: app/layers_dialog.c:3771 msgid "Layer Merge Options" msgstr "" -#: app/layers_dialog.c:4098 +#: app/layers_dialog.c:3787 msgid "Final, merged layer should be:" msgstr "" -#: app/layers_dialog.c:4100 +#: app/layers_dialog.c:3789 msgid "Final, anchored layer should be:" msgstr "" -#: app/levels.c:239 +#: app/lc_dialog.c:111 +#, fuzzy +msgid "Layers & Channels" +msgstr "/Livelli/Livelli e Canali..." + +#. The Auto-button +#: app/lc_dialog.c:150 +#, fuzzy +msgid "Auto" +msgstr "/Automatico" + +#: app/lc_dialog.c:170 +msgid "Layers" +msgstr "" + +#: app/lc_dialog.c:175 +msgid "Channels" +msgstr "" + +#: app/levels.c:197 #, fuzzy msgid "Levels Options" msgstr "/Finestre/Opzioni dello Strumento..." -#: app/levels.c:296 +#: app/levels.c:245 msgid "Levels for indexed drawables cannot be adjusted." msgstr "" -#: app/levels.c:372 +#: app/levels.c:334 msgid "Auto Levels" msgstr "" -#: app/levels.c:403 app/tools.c:566 +#: app/levels.c:351 app/tools.c:592 msgid "Levels" msgstr "" -#: app/levels.c:418 +#: app/levels.c:366 msgid "Modify Levels for Channel: " msgstr "" -#: app/levels.c:434 +#: app/levels.c:382 msgid "Input Levels: " msgstr "" -#: app/levels.c:522 +#: app/levels.c:470 msgid "Output Levels: " msgstr "" @@ -3377,44 +3218,44 @@ msgstr "/Livelli/Da Maschera a Selezione" msgid "Allow Window Resizing" msgstr "" -#: app/main.c:279 +#: app/main.c:287 msgid "GIMP version" msgstr "Versione di GIMP" -#: app/main.c:283 +#: app/main.c:291 #, fuzzy, c-format msgid "Usage: %s [option ...] [files ...]\n" msgstr "Utilizzo: %s [opzione ...] [file ...]\n" -#: app/main.c:284 +#: app/main.c:292 msgid "Valid options are:\n" msgstr "Opzioni valide:\n" -#: app/main.c:285 +#: app/main.c:293 msgid " -h --help Output this help.\n" msgstr " -h --help Mostra questo messaggio d'aiuto.\n" -#: app/main.c:286 +#: app/main.c:294 msgid " -v --version Output version info.\n" msgstr " -v --version Mostra la versione del programma.\n" -#: app/main.c:287 +#: app/main.c:295 msgid " -b --batch Run in batch mode.\n" msgstr " -b --batch Esegue comandi in modalitЮ batch.\n" -#: app/main.c:288 +#: app/main.c:296 msgid " -g --gimprc Use an alternate gimprc file.\n" msgstr " -g --gimprc Utilizza uno specifico file gimprc.\n" -#: app/main.c:289 +#: app/main.c:297 msgid " -n --no-interface Run without a user interface.\n" msgstr " -n --no-interface Esegui senza interfaccia utente.\n" -#: app/main.c:290 +#: app/main.c:298 msgid " -r --restore-session Try to restore saved session.\n" msgstr " -r --restore-session Prova a ripristinare una sessione.\n" -#: app/main.c:291 +#: app/main.c:299 msgid "" " --no-data Do not load patterns, gradients, palettes, " "brushes.\n" @@ -3422,20 +3263,20 @@ msgstr "" " --no-data Non caricare motivi, sfumature, tavolozze, " "pennelli.\n" -#: app/main.c:292 +#: app/main.c:300 msgid " --verbose Show startup messages.\n" msgstr " --verbose Mostra messaggi iniziali.\n" -#: app/main.c:293 +#: app/main.c:301 msgid " --no-splash Do not show the startup window.\n" msgstr " --no-splash Non mostrare la finestra iniziale.\n" -#: app/main.c:294 +#: app/main.c:302 msgid " --no-splash-image Do not add an image to the startup window.\n" msgstr "" " --no-splash-image Non mostrare l'immagine nella finestra iniziale.\n" -#: app/main.c:295 +#: app/main.c:303 msgid "" " --no-shm Do not use shared memory between GIMP and its " "plugins.\n" @@ -3443,13 +3284,13 @@ msgstr "" " --no-shm Non utilizzare la memoria condivisa tra GIMP e i " "plugin.\n" -#: app/main.c:296 +#: app/main.c:304 msgid " --no-xshm Do not use the X Shared Memory extension.\n" msgstr "" " --no-xshm Non utilizzare l'estensione X per la memoria " "condivisa.\n" -#: app/main.c:297 +#: app/main.c:305 msgid "" " --console-messages Display warnings to console instead of a dialog " "box.\n" @@ -3457,12 +3298,12 @@ msgstr "" " --console-messages Mostra messaggi di avviso sulla console invece " "che in una finestra di dialogo.\n" -#: app/main.c:298 +#: app/main.c:306 msgid " --debug-handlers Enable debugging signal handlers.\n" msgstr "" " --debug-handlers Abilita i gestori di segnali per il debug.\n" -#: app/main.c:299 +#: app/main.c:307 msgid "" " --display Use the designated X display.\n" "\n" @@ -3470,663 +3311,818 @@ msgstr "" " --display Utilizza lo schermo X specificato.\n" "\n" -#: app/main.c:300 +#: app/main.c:308 msgid " --system-gimprc Use an alternate system gimprc file.\n" msgstr "" " --system-gimprc Utilizza un file di sistema gimprc alternativo.\n" -#: app/main.c:412 +#: app/main.c:420 msgid "sighup caught" msgstr "ricevuto sighup" -#: app/main.c:417 +#: app/main.c:425 msgid "sigint caught" msgstr "ricevuto sigint" -#: app/main.c:422 +#: app/main.c:430 msgid "sigquit caught" msgstr "ricevuto sigquit" -#: app/main.c:427 +#: app/main.c:435 msgid "sigabrt caught" msgstr "ricevuto sigabrt" -#: app/main.c:432 +#: app/main.c:440 msgid "sigbus caught" msgstr "sigbus ricevuto" -#: app/main.c:437 +#: app/main.c:445 msgid "sigsegv caught" msgstr "ricevuto sigsegv" -#: app/main.c:442 +#: app/main.c:450 msgid "sigpipe caught" msgstr "ricevuto sigpipe" -#: app/main.c:447 +#: app/main.c:455 msgid "sigterm caught" msgstr "ricevuto sigterm" -#: app/main.c:452 +#: app/main.c:460 msgid "sigfpe caught" msgstr "ricevuto sigfpe" -#: app/main.c:456 +#: app/main.c:464 msgid "unknown signal" msgstr "segnale sconosciuto" -#: app/menus.c:43 +#: app/menus.c:46 #, fuzzy msgid "/File/MRU00 " msgstr "/File/MRU%02d" -#: app/menus.c:53 app/menus.c:80 +#: app/menus.c:56 app/menus.c:88 +#, fuzzy +msgid "/File/tearoff1" +msgstr "/File/Salva" + +#: app/menus.c:57 app/menus.c:89 #, fuzzy msgid "/File/New" msgstr "/File/Nuovo" -#: app/menus.c:54 app/menus.c:81 -#, fuzzy -msgid "/File/Open" -msgstr "/File/Apri" - -#: app/menus.c:55 +#: app/menus.c:59 #, fuzzy msgid "/File/About..." msgstr "/File/Informazioni su..." -#: app/menus.c:56 app/menus.c:85 +#: app/menus.c:60 app/menus.c:94 #, fuzzy msgid "/File/Preferences..." msgstr "/File/Preferenze..." -#: app/menus.c:57 +#: app/menus.c:61 #, fuzzy msgid "/File/Tip of the day" msgstr "/File/Suggerimento del giorno" -#: app/menus.c:58 +#: app/menus.c:63 #, fuzzy msgid "/File/Dialogs/Brushes..." msgstr "/File/Finestre/Pennelli..." -#: app/menus.c:59 +#: app/menus.c:64 #, fuzzy msgid "/File/Dialogs/Patterns..." msgstr "/File/Finestre/Motivi..." -#: app/menus.c:60 +#: app/menus.c:65 #, fuzzy msgid "/File/Dialogs/Palette..." msgstr "/File/Finestre/Tavolozze..." -#: app/menus.c:61 +#: app/menus.c:66 #, fuzzy msgid "/File/Dialogs/Gradient..." msgstr "/File/Finestre/Editor di sfumature..." -#: app/menus.c:62 +#: app/menus.c:67 #, fuzzy msgid "/File/Dialogs/Layers & Channels..." msgstr "/File/Finestre/Livelli e Canali..." -#: app/menus.c:63 +#: app/menus.c:68 #, fuzzy msgid "/File/Dialogs/Tool Options..." msgstr "/File/Finestre/Opzioni dello strumento..." -#: app/menus.c:64 +#: app/menus.c:69 #, fuzzy msgid "/File/Dialogs/Input Devices..." msgstr "/File/Finestre/Periferiche di Input..." -#: app/menus.c:65 +#: app/menus.c:70 #, fuzzy msgid "/File/Dialogs/Device Status..." msgstr "/File/Finestre/Stato Periferiche..." -#: app/menus.c:66 +#: app/menus.c:71 #, fuzzy msgid "/File/Dialogs/Document Index..." msgstr "/File/Finestre/Indice Documenti..." -#: app/menus.c:67 +#: app/menus.c:72 #, fuzzy msgid "/File/Dialogs/Error Console..." msgstr "/File/Finestre/Console degli Errori..." -#: app/menus.c:68 +#: app/menus.c:74 +msgid "/Xtns/tearoff1" +msgstr "" + +#: app/menus.c:75 #, fuzzy msgid "/Xtns/Module Browser" msgstr "/File/Finestre/Pennelli..." -#: app/menus.c:69 app/menus.c:70 app/menus.c:75 app/menus.c:86 +#: app/menus.c:76 app/menus.c:77 app/menus.c:82 app/menus.c:95 msgid "/File/---" msgstr "/File/---" -#: app/menus.c:76 app/menus.c:89 -#, fuzzy -msgid "/File/Quit" -msgstr "/File/Esci" +#: app/menus.c:87 +msgid "/tearoff1" +msgstr "" -#: app/menus.c:82 -#, fuzzy -msgid "/File/Save" -msgstr "/File/Salva" - -#: app/menus.c:83 -#, fuzzy -msgid "/File/Save as" -msgstr "/File/Salva con nome" - -#: app/menus.c:84 +#: app/menus.c:93 #, fuzzy msgid "/File/Revert" msgstr "/File/Salva" -#: app/menus.c:88 -#, fuzzy -msgid "/File/Close" -msgstr "/File/Chiudi" - -#: app/menus.c:90 +#: app/menus.c:99 #, fuzzy msgid "/File/---moved" msgstr "/File/---" -#: app/menus.c:92 +#: app/menus.c:101 +#, fuzzy +msgid "/Edit/tearoff1" +msgstr "/Modifica/Cancella" + +#: app/menus.c:102 #, fuzzy msgid "/Edit/Cut" msgstr "/Modifica/Taglia" -#: app/menus.c:93 +#: app/menus.c:103 #, fuzzy msgid "/Edit/Copy" msgstr "/Modifica/Copia" -#: app/menus.c:94 +#: app/menus.c:104 #, fuzzy msgid "/Edit/Paste" msgstr "/Modifica/Incolla" -#: app/menus.c:95 +#: app/menus.c:105 #, fuzzy msgid "/Edit/Paste Into" msgstr "/Modifica/Incolla dentro" -#: app/menus.c:96 +#: app/menus.c:106 +#, fuzzy +msgid "/Edit/Paste As New" +msgstr "/Modifica/Incolla con Nome" + +#: app/menus.c:107 app/menus.c:113 app/menus.c:117 +msgid "/Edit/---" +msgstr "/Modifica/---" + +#: app/menus.c:108 #, fuzzy msgid "/Edit/Clear" msgstr "/Modifica/Cancella" -#: app/menus.c:97 +#: app/menus.c:109 #, fuzzy msgid "/Edit/Fill" msgstr "/Modifica/Riempi" -#: app/menus.c:98 +#: app/menus.c:110 #, fuzzy msgid "/Edit/Stroke" msgstr "/Modifica/Sbarra" -#: app/menus.c:99 +#: app/menus.c:111 #, fuzzy msgid "/Edit/Undo" msgstr "/Modifica/Annulla" -#: app/menus.c:100 +#: app/menus.c:112 #, fuzzy msgid "/Edit/Redo" msgstr "/Modifica/Ripeti" -#: app/menus.c:101 app/menus.c:105 -msgid "/Edit/---" -msgstr "/Modifica/---" - -#: app/menus.c:102 +#: app/menus.c:114 #, fuzzy msgid "/Edit/Cut Named" msgstr "/Modifica/Taglia con Nome" -#: app/menus.c:103 +#: app/menus.c:115 #, fuzzy msgid "/Edit/Copy Named" msgstr "/Modifica/Copia con Nome" -#: app/menus.c:104 +#: app/menus.c:116 #, fuzzy msgid "/Edit/Paste Named" msgstr "/Modifica/Incolla con Nome" -#: app/menus.c:107 +#: app/menus.c:119 #, fuzzy -msgid "/Select/Toggle" -msgstr "/Selezione/Cambia" +msgid "/Select/tearoff1" +msgstr "/Selezione/Ingrandisci" -#: app/menus.c:108 +#: app/menus.c:120 #, fuzzy msgid "/Select/Invert" msgstr "/Selezione/Inverti" -#: app/menus.c:109 +#: app/menus.c:121 #, fuzzy msgid "/Select/All" msgstr "/Selezione/Tutto" -#: app/menus.c:110 +#: app/menus.c:122 #, fuzzy msgid "/Select/None" msgstr "/Selezione/Niente" -#: app/menus.c:111 +#: app/menus.c:123 #, fuzzy msgid "/Select/Float" msgstr "/Selezione/Galleggiante" -#: app/menus.c:112 +#: app/menus.c:124 #, fuzzy msgid "/Select/Sharpen" msgstr "/Selezione/Metti a fuoco" -#: app/menus.c:113 +#: app/menus.c:125 #, fuzzy msgid "/Select/Border" msgstr "/Selezione/Bordo" -#: app/menus.c:114 +#: app/menus.c:126 #, fuzzy msgid "/Select/Feather" msgstr "/Selezione/Piuma" -#: app/menus.c:115 +#: app/menus.c:127 #, fuzzy msgid "/Select/Grow" msgstr "/Selezione/Ingrandisci" -#: app/menus.c:116 +#: app/menus.c:128 #, fuzzy msgid "/Select/Shrink" msgstr "/Selezione/Riduci" -#: app/menus.c:117 +#: app/menus.c:129 #, fuzzy msgid "/Select/Save To Channel" msgstr "/Selezione/Salva in Canale" -#: app/menus.c:119 +#: app/menus.c:131 +msgid "/View/tearoff1" +msgstr "" + +#: app/menus.c:132 #, fuzzy msgid "/View/Zoom In" msgstr "/Vista/Ingrandisci" -#: app/menus.c:120 +#: app/menus.c:133 #, fuzzy msgid "/View/Zoom Out" msgstr "/Vista/Riduci" -#: app/menus.c:121 +#: app/menus.c:134 #, fuzzy msgid "/View/Zoom/16:1" msgstr "/Vista/Zoom/16:1" -#: app/menus.c:122 +#: app/menus.c:135 #, fuzzy msgid "/View/Zoom/8:1" msgstr "/Vista/Zoom/8:1" -#: app/menus.c:123 +#: app/menus.c:136 #, fuzzy msgid "/View/Zoom/4:1" msgstr "/Vista/Zoom/4:1" -#: app/menus.c:124 +#: app/menus.c:137 #, fuzzy msgid "/View/Zoom/2:1" msgstr "/Vista/Zoom/2:1" -#: app/menus.c:125 +#: app/menus.c:138 #, fuzzy msgid "/View/Zoom/1:1" msgstr "/Vista/Zoom/1:1" -#: app/menus.c:126 +#: app/menus.c:139 msgid "/View/Zoom/1:2" msgstr "/Vista/Zoom/1:2" -#: app/menus.c:127 +#: app/menus.c:140 msgid "/View/Zoom/1:4" msgstr "/Vista/Zoom/1:4" -#: app/menus.c:128 +#: app/menus.c:141 msgid "/View/Zoom/1:8" msgstr "/Vista/Zoom/1:8" -#: app/menus.c:129 +#: app/menus.c:142 msgid "/View/Zoom/1:16" msgstr "/Vista/Zoom/1:16" -#: app/menus.c:130 +#: app/menus.c:143 #, fuzzy msgid "/View/Dot for dot" msgstr "/Vista/Riduci" -#: app/menus.c:131 +#: app/menus.c:144 #, fuzzy msgid "/View/Window Info..." msgstr "/Vista/Informazioni sulla finestra..." -#: app/menus.c:132 +#: app/menus.c:146 app/menus.c:152 +msgid "/View/---" +msgstr "/Vista/---" + +#: app/menus.c:147 +#, fuzzy +msgid "/View/Toggle Selection" +msgstr "/Vista/Righelli" + +#: app/menus.c:148 #, fuzzy msgid "/View/Toggle Rulers" msgstr "/Vista/Righelli" -#: app/menus.c:133 +#: app/menus.c:149 #, fuzzy msgid "/View/Toggle Statusbar" msgstr "/Vista/Barra di stato" -#: app/menus.c:134 +#: app/menus.c:150 #, fuzzy msgid "/View/Toggle Guides" msgstr "/Vista/Guide" -#: app/menus.c:135 +#: app/menus.c:151 #, fuzzy msgid "/View/Snap To Guides" msgstr "/Vista/Costringi alle guide" -#: app/menus.c:136 -msgid "/View/---" -msgstr "/Vista/---" - -#: app/menus.c:137 +#: app/menus.c:154 #, fuzzy msgid "/View/New View" msgstr "/Vista/Nuova vista" -#: app/menus.c:138 +#: app/menus.c:155 #, fuzzy msgid "/View/Shrink Wrap" msgstr "/Vista/Restringi vista" -#: app/menus.c:140 +#: app/menus.c:157 +#, fuzzy +msgid "/Image/tearoff1" +msgstr "/Modifica/Cancella" + +#: app/menus.c:158 +#, fuzzy +msgid "/Image/Colors/tearoff1" +msgstr "/Immagine/Colori/Inverti" + +#: app/menus.c:159 #, fuzzy msgid "/Image/Colors/Equalize" msgstr "/Immagine/Colori/Equalizza" -#: app/menus.c:141 +#: app/menus.c:160 #, fuzzy msgid "/Image/Colors/Invert" msgstr "/Immagine/Colori/Inverti" -#: app/menus.c:142 +#: app/menus.c:161 msgid "/Image/Colors/---" msgstr "/Immagine/Colori/---" -#: app/menus.c:143 +#: app/menus.c:162 #, fuzzy msgid "/Image/Colors/Desaturate" msgstr "/Immagine/Colori/Riduci saturazione" -#: app/menus.c:144 +#: app/menus.c:163 +#, fuzzy +msgid "/Image/Channel Ops/tearoff1" +msgstr "/Immagine/Operazioni canale/Spostamento" + +#: app/menus.c:164 #, fuzzy msgid "/Image/Channel Ops/Duplicate" msgstr "/Immagine/Operazioni canale/Duplica" -#: app/menus.c:145 +#: app/menus.c:165 #, fuzzy msgid "/Image/Channel Ops/Offset" msgstr "/Immagine/Operazioni canale/Spostamento" -#: app/menus.c:146 +#: app/menus.c:166 +#, fuzzy +msgid "/Image/Alpha/tearoff1" +msgstr "/Immagine/Scala" + +#: app/menus.c:167 #, fuzzy msgid "/Image/Alpha/Add Alpha Channel" msgstr "/Immagine/Alpha/Aggiungi canale alpha" -#: app/menus.c:148 app/menus.c:152 app/menus.c:155 +#: app/menus.c:169 app/menus.c:173 app/menus.c:176 msgid "/Image/---" msgstr "/Immagine/---" -#: app/menus.c:149 +#: app/menus.c:170 #, fuzzy msgid "/Image/RGB" msgstr "/Immagine/RGB" -#: app/menus.c:150 +#: app/menus.c:171 #, fuzzy msgid "/Image/Grayscale" msgstr "/Immagine/Scala di grigio" -#: app/menus.c:151 +#: app/menus.c:172 #, fuzzy msgid "/Image/Indexed" msgstr "/Immagine/Indicizzata" -#: app/menus.c:153 +#: app/menus.c:174 #, fuzzy msgid "/Image/Resize" msgstr "/Immagine/Ridimensiona" -#: app/menus.c:154 +#: app/menus.c:175 #, fuzzy msgid "/Image/Scale" msgstr "/Immagine/Scala" -#: app/menus.c:157 +#: app/menus.c:178 +#, fuzzy +msgid "/Layers/tearoff1" +msgstr "/Livelli/Porta livello in alto" + +#: app/menus.c:179 #, fuzzy msgid "/Layers/Layers & Channels..." msgstr "/Livelli/Livelli e Canali..." -#: app/menus.c:158 +#: app/menus.c:180 +#, fuzzy +msgid "/Layers/Stack/tearoff1" +msgstr "/Livelli/Porta livello in alto" + +#: app/menus.c:181 #, fuzzy msgid "/Layers/Stack/Previous Layer" msgstr "/Livelli/Porta livello in alto" -#: app/menus.c:159 +#: app/menus.c:182 #, fuzzy msgid "/Layers/Stack/Next Layer" msgstr "/Livelli/Porta livello in alto" -#: app/menus.c:160 +#: app/menus.c:183 #, fuzzy msgid "/Layers/Stack/Raise Layer" msgstr "/Livelli/Porta livello in alto" -#: app/menus.c:161 +#: app/menus.c:184 #, fuzzy msgid "/Layers/Stack/Lower Layer" msgstr "/Livelli/Porta livello in basso" -#: app/menus.c:162 +#: app/menus.c:185 #, fuzzy msgid "/Layers/Stack/Layer to Top" msgstr "/Livelli/Porta livello in alto" -#: app/menus.c:163 +#: app/menus.c:186 msgid "/Layers/Stack/Layer to Bottom" msgstr "" -#: app/menus.c:164 +#: app/menus.c:187 app/menus.c:194 #, fuzzy msgid "/Layers/---" msgstr "/Livelli/Porta livello in alto" -#: app/menus.c:165 +#: app/menus.c:188 #, fuzzy msgid "/Layers/Anchor Layer" msgstr "/Livelli/Ancora livello" -#: app/menus.c:166 +#: app/menus.c:189 #, fuzzy msgid "/Layers/Merge Visible Layers" msgstr "/Livelli/Combina livelli visibili" -#: app/menus.c:167 +#: app/menus.c:190 #, fuzzy msgid "/Layers/Flatten Image" msgstr "/Livelli/Appiattisci immagine" -#: app/menus.c:168 +#: app/menus.c:191 #, fuzzy msgid "/Layers/Alpha To Selection" msgstr "/Livelli/Da Alpha a Selezione" -#: app/menus.c:169 +#: app/menus.c:192 #, fuzzy msgid "/Layers/Mask To Selection" msgstr "/Livelli/Da Maschera a Selezione" -#: app/menus.c:170 +#: app/menus.c:193 #, fuzzy msgid "/Layers/Add Alpha Channel" msgstr "/Livelli/Aggiungi Canale Alpha" -#. these are built on the fly -#. -#. { N_("/Tools/Ellipse Select"), "E", tools_select_cmd_callback, ELLIPSE_SELECT }, -#. { N_("/Tools/Free Select"), "F", tools_select_cmd_callback, FREE_SELECT }, -#. { N_("/Tools/Fuzzy Select"), "Z", tools_select_cmd_callback, FUZZY_SELECT }, -#. { N_("/Tools/Bezier Select"), "B", tools_select_cmd_callback, BEZIER_SELECT }, -#. { N_("/Tools/Intelligent Scissors"), "I", tools_select_cmd_callback, ISCISSORS }, -#. { N_("/Tools/Move"), "M", tools_select_cmd_callback, MOVE }, -#. { N_("/Tools/Magnify"), "M", tools_select_cmd_callback, MAGNIFY }, -#. { N_("/Tools/Crop"), "C", tools_select_cmd_callback, CROP }, -#. { N_("/Tools/Transform"), "T", tools_select_cmd_callback, ROTATE }, -#. { N_("/Tools/Flip"), "F", tools_select_cmd_callback, FLIP }, -#. { N_("/Tools/Text"), "T", tools_select_cmd_callback, TEXT }, -#. { N_("/Tools/Color Picker"), "O", tools_select_cmd_callback, COLOR_PICKER }, -#. { N_("/Tools/Bucket Fill"), "B", tools_select_cmd_callback, BUCKET_FILL }, -#. { N_("/Tools/Blend"), "L", tools_select_cmd_callback, BLEND }, -#. { N_("/Tools/Paintbrush"), "P", tools_select_cmd_callback, PAINTBRUSH }, -#. { N_("/Tools/Pencil"), "P", tools_select_cmd_callback, PENCIL }, -#. { N_("/Tools/Eraser"), "E", tools_select_cmd_callback, ERASER }, -#. { N_("/Tools/Airbrush"), "A", tools_select_cmd_callback, AIRBRUSH }, -#. { N_("/Tools/Clone"), "C", tools_select_cmd_callback, CLONE }, -#. { N_("/Tools/Convolve"), "V", tools_select_cmd_callback, CONVOLVE }, -#. { N_("/Tools/Ink"), "K", tools_select_cmd_callback, INK }, -#. { N_("/Tools/Default Colors"), "D", tools_default_colors_cmd_callback, 0 }, -#. { N_("/Tools/Toolbox"), NULL, toolbox_raise_callback, 0 }, -#. { N_("/Tools/---"), NULL, NULL, 0, "" }, -#. { N_("/Tools/Default Colors"), "D", tools_default_colors_cmd_callback, 0 }, -#. { N_("/Tools/Swap Colors"), "X", tools_swap_colors_cmd_callback, 0 }, -#. -#: app/menus.c:203 +#: app/menus.c:196 +#, fuzzy +msgid "/Tools/tearoff1" +msgstr "/Strumenti/---" + +#: app/menus.c:197 #, fuzzy msgid "/Tools/Toolbox" msgstr "/Strumenti/Tavolozza degli strumenti" -#: app/menus.c:204 +#: app/menus.c:198 #, fuzzy msgid "/Tools/Default Colors" msgstr "/Strumenti/Colori standard" -#: app/menus.c:205 +#: app/menus.c:199 #, fuzzy msgid "/Tools/Swap Colors" msgstr "/Strumenti/Scambia Colori" -#: app/menus.c:206 +#: app/menus.c:200 msgid "/Tools/---" msgstr "/Strumenti/---" -#: app/menus.c:208 +#. the tool entries themselves are built on the fly +#: app/menus.c:204 +#, fuzzy +msgid "/Filters/tearoff1" +msgstr "/Filtri/---" + +#: app/menus.c:205 app/plug_in.c:1285 #, fuzzy msgid "/Filters/Repeat last" msgstr "/Filtri/Ripeti ultimo" -#: app/menus.c:209 +#: app/menus.c:206 app/plug_in.c:1286 #, fuzzy msgid "/Filters/Re-show last" msgstr "/Filtri/Mostra ultimo" -#: app/menus.c:210 +#: app/menus.c:207 msgid "/Filters/---" msgstr "/Filtri/---" -#: app/menus.c:212 +#: app/menus.c:209 +#, fuzzy +msgid "/Script-Fu/tearoff1" +msgstr "/Script-Fu/" + +#: app/menus.c:210 msgid "/Script-Fu/" msgstr "/Script-Fu/" -#: app/menus.c:214 +#: app/menus.c:212 +#, fuzzy +msgid "/Dialogs/tearoff1" +msgstr "/Finestre/Motivi..." + +#: app/menus.c:213 #, fuzzy msgid "/Dialogs/Brushes..." msgstr "/Finestre/Pennelli..." -#: app/menus.c:215 +#: app/menus.c:214 #, fuzzy msgid "/Dialogs/Patterns..." msgstr "/Finestre/Motivi..." -#: app/menus.c:216 +#: app/menus.c:215 #, fuzzy msgid "/Dialogs/Palette..." msgstr "/Finestre/Tavolozze..." -#: app/menus.c:217 +#: app/menus.c:216 #, fuzzy msgid "/Dialogs/Gradient..." msgstr "/Finestre/Editor di sfumature..." -#: app/menus.c:218 +#: app/menus.c:217 #, fuzzy msgid "/Dialogs/Layers & Channels..." msgstr "/Finestre/Livelli e Canali..." -#: app/menus.c:219 +#: app/menus.c:218 #, fuzzy msgid "/Dialogs/Indexed Palette..." msgstr "/Finestre/Tavolozza indicizzata..." -#: app/menus.c:220 +#: app/menus.c:219 #, fuzzy msgid "/Dialogs/Tool Options..." msgstr "/Finestre/Opzioni dello Strumento..." -#: app/menus.c:221 +#: app/menus.c:220 #, fuzzy msgid "/Dialogs/Input Devices..." msgstr "/Finestre/Dispositivi di Input..." -#: app/menus.c:222 +#: app/menus.c:221 #, fuzzy msgid "/Dialogs/Device Status..." msgstr "/Finestre/Stato dei Dispositivi..." -#: app/menus.c:229 +#: app/menus.c:228 msgid "/Automatic" msgstr "/Automatico" -#: app/menus.c:237 +#: app/menus.c:236 msgid "/By extension" msgstr "/Per estensione" -#: app/menus.c:436 +#: app/menus.c:290 +msgid "/New Path" +msgstr "" + +#: app/menus.c:291 +#, fuzzy +msgid "/Duplicate Path" +msgstr "/Selezione/Salva in Canale" + +#: app/menus.c:292 +#, fuzzy +msgid "/Path to Selection" +msgstr "/Livelli/Da Maschera a Selezione" + +#: app/menus.c:293 +msgid "/Stroke Path" +msgstr "" + +#: app/menus.c:294 +#, fuzzy +msgid "/Delete Path" +msgstr "/Selezione/Piuma" + +#: app/menus.c:296 +#, fuzzy +msgid "/Copy Path" +msgstr "/Modifica/Copia con Nome" + +#: app/menus.c:297 +#, fuzzy +msgid "/Paste Path" +msgstr "/Modifica/Incolla" + +#: app/menus.c:298 +msgid "/Import Path" +msgstr "" + +#: app/menus.c:299 +msgid "/Export Path" +msgstr "" + +#: app/menus.c:596 #, c-format msgid "Error opening file: %s\n" msgstr "Errore aprendo il file: %s\n" -#: app/menus.c:458 app/menus.c:539 +#: app/menus.c:618 app/menus.c:699 #, c-format msgid "/File/MRU%02d" msgstr "/File/MRU%02d" -#: app/move.c:438 +#: app/module_db.c:269 +msgid "Module DB" +msgstr "" + +#: app/module_db.c:567 +#, c-format +msgid "load module: \"%s\"\n" +msgstr "" + +#: app/module_db.c:574 +#, c-format +msgid "skipping module: \"%s\"\n" +msgstr "" + +#: app/module_db.c:598 +#, c-format +msgid "module load error: %s: %s" +msgstr "" + +#: app/module_db.c:616 +msgid "missing module_init() symbol" +msgstr "" + +#: app/module_db.c:619 +#, c-format +msgid "%s: module_init() symbol not found" +msgstr "" + +#: app/module_db.c:772 +msgid "" +msgstr "" + +#: app/module_db.c:785 app/module_db.c:794 +msgid "on disk" +msgstr "" + +#: app/module_db.c:785 +msgid "only in memory" +msgstr "" + +#: app/module_db.c:794 +msgid "nowhere (click 'refresh')" +msgstr "" + +#: app/module_db.c:830 +msgid "Load" +msgstr "" + +#: app/module_db.c:839 +msgid "Unload" +msgstr "" + +#: app/module_db.c:852 +msgid "Purpose: " +msgstr "" + +#: app/module_db.c:853 +#, fuzzy +msgid "Author: " +msgstr "/Automatico" + +#: app/module_db.c:854 +#, fuzzy +msgid "Version: " +msgstr "Versione" + +#: app/module_db.c:855 +msgid "Copyright: " +msgstr "" + +#: app/module_db.c:856 +#, fuzzy +msgid "Date: " +msgstr "/Modifica/Incolla" + +#: app/module_db.c:857 +#, fuzzy +msgid "Location: " +msgstr "/Selezione/Niente" + +#: app/module_db.c:858 +#, fuzzy +msgid "State: " +msgstr "/Modifica/Incolla" + +#: app/module_db.c:877 +msgid "Autoload during startup" +msgstr "" + +#: app/move.c:444 #, fuzzy msgid "Move Tool Options" msgstr "/Finestre/Opzioni dello Strumento..." -#: app/paint_core.c:547 +#: app/paint_core.c:586 msgid "No brushes available for use with this tool." msgstr "" -#: app/paint_core.c:1290 -msgid "paint_core_replace only works in INCREMENTAL mode" -msgstr "" - -#: app/paint_core.c:1427 +#: app/paint_core.c:1574 msgid "set_undo_tiles: undo_tiles is null" msgstr "" -#: app/paint_funcs.c:85 +#: app/paint_funcs.c:85 app/tool_options.c:777 msgid "Behind" msgstr "" @@ -4144,31 +4140,30 @@ msgstr "/Modifica/Incolla" msgid "Once Forward" msgstr "" -#: app/paintbrush.c:154 +#: app/paintbrush.c:155 msgid "Once Backward" msgstr "" -#: app/paintbrush.c:155 +#: app/paintbrush.c:157 msgid "Loop Sawtooth" msgstr "" -#: app/paintbrush.c:156 +#: app/paintbrush.c:159 msgid "Loop Triangle" msgstr "" -#: app/paintbrush.c:180 +#: app/paintbrush.c:185 msgid "Fade Out:" msgstr "" -#: app/paintbrush.c:207 +#: app/paintbrush.c:212 msgid "Length:" msgstr "" -#. the radio frame and box -#: app/paintbrush.c:232 -#, fuzzy -msgid "Gradient Type" -msgstr "/Selezione/Niente" +#. the gradient type +#: app/paintbrush.c:237 +msgid "Type:" +msgstr "" #: app/palette.c:484 #, c-format @@ -4353,587 +4348,585 @@ msgstr "" msgid "Perspective..." msgstr "" -#: app/plug_in.c:204 +#: app/plug_in.c:207 msgid "shmget failed...disabling shared memory tile transport" msgstr "" -#: app/plug_in.c:210 +#: app/plug_in.c:213 msgid "shmat failed...disabling shared memory tile transport" msgstr "" -#: app/plug_in.c:309 +#: app/plug_in.c:312 msgid "Plug-ins" msgstr "" -#: app/plug_in.c:321 +#: app/plug_in.c:324 #, c-format msgid "query plug-in: \"%s\"\n" msgstr "" -#: app/plug_in.c:359 +#: app/plug_in.c:362 #, c-format msgid "writing \"%s\"\n" msgstr "" -#: app/plug_in.c:374 +#: app/plug_in.c:377 msgid "Starting extensions: " msgstr "" -#: app/plug_in.c:375 +#: app/plug_in.c:378 #, fuzzy msgid "Extensions" msgstr "/Per estensione" -#: app/plug_in.c:690 +#: app/plug_in.c:693 #, c-format msgid "\"%s\" executable not found\n" msgstr "" -#: app/plug_in.c:743 +#: app/plug_in.c:746 #, c-format msgid "unable to locate plug-in: \"%s\"" msgstr "" -#: app/plug_in.c:825 +#: app/plug_in.c:828 msgid "unable to open pipe" msgstr "" -#: app/plug_in.c:914 +#: app/plug_in.c:917 #, c-format msgid "unable to run plug-in: %s" msgstr "" -#: app/plug_in.c:1281 -#, fuzzy -msgid "/Filters/Repeat last" -msgstr "/Filtri/Ripeti ultimo" - -#: app/plug_in.c:1282 -#, fuzzy -msgid "/Filters/Re-show last" -msgstr "/Filtri/Mostra ultimo" - -#: app/plug_in.c:1640 app/plug_in.c:1653 app/plug_in.c:1666 app/plug_in.c:1681 +#: app/plug_in.c:1648 app/plug_in.c:1661 app/plug_in.c:1674 app/plug_in.c:1689 #, c-format msgid "" "plug-in \"%s\" attempted to install procedure \"%s\" which does not take the " "standard plug-in args" msgstr "" -#: app/plug_in.c:1689 +#: app/plug_in.c:1697 #, c-format msgid "" "plug-in \"%s\" attempted to install procedure \"%s\" in an invalid menu " "location. Use either \"\", \"\", \"\", or \"\"." msgstr "" -#: app/plug_in.c:1709 +#: app/plug_in.c:1717 #, c-format msgid "" "plug_in \"%s\" attempted to install procedure \"%s\" which fails to comply " "with the array parameter passing standard. Argument %d is noncompliant." msgstr "" -#: app/plug_in.c:2141 +#: app/plug_in.c:2149 #, c-format msgid "duplicate plug-in: \"%s\" (skipping)\n" msgstr "" -#: app/plug_in.c:2349 +#: app/plug_in.c:2357 msgid "Unknown procedure type." msgstr "" -#: app/plug_in.c:2430 +#: app/plug_in.c:2438 #, c-format msgid "removing duplicate PDB procedure \"%s\"" msgstr "" -#: app/plug_in.c:2686 app/plug_in.c:2851 app/plug_in.c:2968 app/plug_in.c:3053 +#: app/plug_in.c:2694 app/plug_in.c:2859 app/plug_in.c:2976 app/plug_in.c:3061 msgid "the \"region\" arg type is not currently supported" msgstr "" -#: app/posterize.c:217 +#: app/posterize.c:164 msgid "Posterize does not operate on indexed drawables." msgstr "" -#: app/posterize.c:262 app/tools.c:521 +#: app/posterize.c:211 app/tools.c:547 msgid "Posterize" msgstr "" -#: app/posterize.c:276 +#: app/posterize.c:225 msgid "Posterize Levels: " msgstr "" -#: app/preferences_dialog.c:203 +#: app/preferences_dialog.c:205 msgid "Error: Levels of undo must be zero or greater." msgstr "" -#: app/preferences_dialog.c:209 +#: app/preferences_dialog.c:211 msgid "Error: Number of processors must be between 1 and 30." msgstr "" -#: app/preferences_dialog.c:215 +#: app/preferences_dialog.c:217 msgid "Error: Marching speed must be 50 or greater." msgstr "" -#: app/preferences_dialog.c:221 +#: app/preferences_dialog.c:223 msgid "Error: Default width must be one or greater." msgstr "" -#: app/preferences_dialog.c:227 +#: app/preferences_dialog.c:229 msgid "Error: Default height must be one or greater." msgstr "" -#: app/preferences_dialog.c:234 +#: app/preferences_dialog.c:236 msgid "Error: Default unit must be within unit range." msgstr "" -#: app/preferences_dialog.c:241 +#: app/preferences_dialog.c:243 msgid "Error: default resolution must not be zero." msgstr "" -#: app/preferences_dialog.c:249 +#: app/preferences_dialog.c:251 msgid "Error: Default resolution unit must be within unit range." msgstr "" -#: app/preferences_dialog.c:256 +#: app/preferences_dialog.c:258 msgid "Error: Monitor resolution must not be zero." msgstr "" -#: app/preferences_dialog.c:263 +#: app/preferences_dialog.c:265 msgid "Error: Image title format must not be NULL." msgstr "" -#: app/preferences_dialog.c:520 +#: app/preferences_dialog.c:536 msgid "You will need to restart GIMP for these changes to take effect." msgstr "" -#: app/preferences_dialog.c:1433 +#: app/preferences_dialog.c:1467 #, fuzzy msgid "Preferences" msgstr "/File/Preferenze..." #. The categories tree -#: app/preferences_dialog.c:1451 +#: app/preferences_dialog.c:1485 msgid "Categories" msgstr "" -#: app/preferences_dialog.c:1477 +#: app/preferences_dialog.c:1512 msgid "New File Settings" msgstr "" -#: app/preferences_dialog.c:1479 +#: app/preferences_dialog.c:1514 #, fuzzy msgid "New File" msgstr "/File/Nuovo" -#: app/preferences_dialog.c:1489 +#: app/preferences_dialog.c:1524 msgid "Default Image Size and Unit" msgstr "" -#: app/preferences_dialog.c:1503 +#: app/preferences_dialog.c:1538 msgid "Width" msgstr "" -#: app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1540 msgid "Height" msgstr "" -#: app/preferences_dialog.c:1532 +#: app/preferences_dialog.c:1567 msgid "Default Image Resolution and Resolution Unit" msgstr "" -#: app/preferences_dialog.c:1557 app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:1592 app/preferences_dialog.c:2294 msgid "dpi" msgstr "" -#: app/preferences_dialog.c:1602 +#: app/preferences_dialog.c:1637 msgid "Default Image Type:" msgstr "" -#: app/preferences_dialog.c:1607 +#: app/preferences_dialog.c:1642 msgid "Display Settings" msgstr "" -#: app/preferences_dialog.c:1609 +#: app/preferences_dialog.c:1644 msgid "Display" msgstr "" -#: app/preferences_dialog.c:1616 +#: app/preferences_dialog.c:1651 msgid "Transparency" msgstr "" -#: app/preferences_dialog.c:1634 +#: app/preferences_dialog.c:1669 msgid "Light Checks" msgstr "" -#: app/preferences_dialog.c:1636 +#: app/preferences_dialog.c:1671 msgid "Mid-Tone Checks" msgstr "" -#: app/preferences_dialog.c:1638 +#: app/preferences_dialog.c:1673 msgid "Dark Checks" msgstr "" -#: app/preferences_dialog.c:1640 +#: app/preferences_dialog.c:1675 msgid "White Only" msgstr "" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1677 msgid "Gray Only" msgstr "" -#: app/preferences_dialog.c:1644 +#: app/preferences_dialog.c:1679 msgid "Black Only" msgstr "" -#: app/preferences_dialog.c:1648 +#: app/preferences_dialog.c:1683 msgid "Transparency Type:" msgstr "" -#: app/preferences_dialog.c:1654 app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1689 app/preferences_dialog.c:1760 msgid "Small" msgstr "" -#: app/preferences_dialog.c:1656 app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1691 app/preferences_dialog.c:1761 msgid "Medium" msgstr "" -#: app/preferences_dialog.c:1658 app/preferences_dialog.c:1727 +#: app/preferences_dialog.c:1693 app/preferences_dialog.c:1762 msgid "Large" msgstr "" -#: app/preferences_dialog.c:1662 +#: app/preferences_dialog.c:1697 msgid "Check Size:" msgstr "" -#: app/preferences_dialog.c:1664 app/transform_tool.c:191 +#: app/preferences_dialog.c:1699 app/transform_tool.c:190 msgid "Scaling" msgstr "" -#: app/preferences_dialog.c:1673 +#: app/preferences_dialog.c:1708 #, fuzzy msgid "Cubic Interpolation" msgstr "/Selezione/Niente" -#: app/preferences_dialog.c:1684 +#: app/preferences_dialog.c:1719 msgid "Interface Settings" msgstr "" -#: app/preferences_dialog.c:1693 +#: app/preferences_dialog.c:1728 msgid "General" msgstr "" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1765 msgid "Preview Size:" msgstr "" -#: app/preferences_dialog.c:1739 +#: app/preferences_dialog.c:1774 #, fuzzy msgid "Levels of Undo:" msgstr "/Finestre/Opzioni dello Strumento..." -#: app/preferences_dialog.c:1748 +#: app/preferences_dialog.c:1783 msgid "Recent Documents List Size:" msgstr "" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1786 msgid "Help System" msgstr "" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1795 msgid "Show Tool Tips" msgstr "" -#: app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1806 msgid "Image Windows Settings" msgstr "" -#: app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1808 msgid "Image Windows" msgstr "" -#: app/preferences_dialog.c:1780 +#: app/preferences_dialog.c:1815 msgid "Appearance" msgstr "" -#: app/preferences_dialog.c:1789 +#: app/preferences_dialog.c:1824 #, fuzzy msgid "Resize Window on Zoom" msgstr "/Vista/Informazioni sulla finestra..." -#: app/preferences_dialog.c:1798 +#: app/preferences_dialog.c:1833 msgid "Show Rulers" msgstr "" -#: app/preferences_dialog.c:1807 +#: app/preferences_dialog.c:1842 #, fuzzy msgid "Show Statusbar" msgstr "/Vista/Barra di stato" -#: app/preferences_dialog.c:1831 +#: app/preferences_dialog.c:1866 msgid "Marching Ants Speed:" msgstr "" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:1839 +#: app/preferences_dialog.c:1874 msgid "Custom" msgstr "" #. set some commonly used format strings -#: app/preferences_dialog.c:1845 +#: app/preferences_dialog.c:1880 msgid "Standard" msgstr "" -#: app/preferences_dialog.c:1850 +#: app/preferences_dialog.c:1885 msgid "Show zoom percentage" msgstr "" -#: app/preferences_dialog.c:1855 +#: app/preferences_dialog.c:1890 msgid "Show zoom ratio" msgstr "" -#: app/preferences_dialog.c:1860 +#: app/preferences_dialog.c:1895 msgid "Show reversed zoom ratio" msgstr "" -#: app/preferences_dialog.c:1871 +#: app/preferences_dialog.c:1906 msgid "Image Title Format:" msgstr "" #. End of the title format string -#: app/preferences_dialog.c:1874 +#: app/preferences_dialog.c:1909 msgid "Pointer Movement Feedback" msgstr "" -#: app/preferences_dialog.c:1884 +#: app/preferences_dialog.c:1919 msgid "Perfect-but-slow Pointer Tracking" msgstr "" -#: app/preferences_dialog.c:1893 +#: app/preferences_dialog.c:1928 msgid "Disable Cursor Updating" msgstr "" -#: app/preferences_dialog.c:1904 +#: app/preferences_dialog.c:1939 #, fuzzy msgid "Tool Options Settings" msgstr "/Finestre/Opzioni dello Strumento..." -#: app/preferences_dialog.c:1906 app/tools.c:726 +#: app/preferences_dialog.c:1941 app/tools.c:884 #, fuzzy msgid "Tool Options" msgstr "/Finestre/Opzioni dello Strumento..." -#: app/preferences_dialog.c:1913 +#: app/preferences_dialog.c:1948 #, fuzzy msgid "Paint Options" msgstr "/Livelli/Da Maschera a Selezione" -#: app/preferences_dialog.c:1923 +#: app/preferences_dialog.c:1958 #, fuzzy msgid "Use Global Paint Options" msgstr "/Livelli/Da Maschera a Selezione" -#: app/preferences_dialog.c:1933 -msgid "(Switching this off does not yet work consistently.)" +#: app/preferences_dialog.c:1974 +msgid "Display brush and pattern indicators on Toolbar" msgstr "" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1988 msgid "Environment Settings" msgstr "" -#: app/preferences_dialog.c:1945 +#: app/preferences_dialog.c:1990 msgid "Environment" msgstr "" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1997 msgid "Resource Consumption" msgstr "" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:2006 msgid "Conservative Memory Usage" msgstr "" -#: app/preferences_dialog.c:2012 app/preferences_dialog.c:2053 +#: app/preferences_dialog.c:2057 app/preferences_dialog.c:2098 msgid "Bytes" msgstr "" -#: app/preferences_dialog.c:2013 app/preferences_dialog.c:2054 +#: app/preferences_dialog.c:2058 app/preferences_dialog.c:2099 msgid "KiloBytes" msgstr "" -#: app/preferences_dialog.c:2014 app/preferences_dialog.c:2055 +#: app/preferences_dialog.c:2059 app/preferences_dialog.c:2100 msgid "MegaBytes" msgstr "" -#: app/preferences_dialog.c:2019 +#: app/preferences_dialog.c:2064 msgid "Tile Cache Size:" msgstr "" -#: app/preferences_dialog.c:2060 +#: app/preferences_dialog.c:2105 msgid "Maximum Image Size:" msgstr "" -#: app/preferences_dialog.c:2070 +#: app/preferences_dialog.c:2115 msgid "Number of Processors to Use:" msgstr "" -#: app/preferences_dialog.c:2074 +#: app/preferences_dialog.c:2119 msgid "8-Bit Displays" msgstr "" -#: app/preferences_dialog.c:2085 +#: app/preferences_dialog.c:2130 msgid "Install Colormap" msgstr "" -#: app/preferences_dialog.c:2094 +#: app/preferences_dialog.c:2139 msgid "Colormap Cycling" msgstr "" -#: app/preferences_dialog.c:2105 +#: app/preferences_dialog.c:2148 +msgid "File Previews / Thumbnails" +msgstr "" + +#: app/preferences_dialog.c:2175 +msgid "Try to Write a Thumbnail File:" +msgstr "" + +#: app/preferences_dialog.c:2180 msgid "Session Management" msgstr "" -#: app/preferences_dialog.c:2107 +#: app/preferences_dialog.c:2182 #, fuzzy msgid "Session" msgstr "Versione" -#: app/preferences_dialog.c:2114 +#: app/preferences_dialog.c:2189 msgid "Window Positions" msgstr "" -#: app/preferences_dialog.c:2123 +#: app/preferences_dialog.c:2198 msgid "Save Window Positions on Exit" msgstr "" -#: app/preferences_dialog.c:2137 +#: app/preferences_dialog.c:2212 msgid "Clear Saved Window Positions" msgstr "" -#: app/preferences_dialog.c:2144 +#: app/preferences_dialog.c:2219 msgid "Always Try to Restore Session" msgstr "" -#: app/preferences_dialog.c:2153 +#: app/preferences_dialog.c:2228 #, fuzzy msgid "Devices" msgstr "/Finestre/Stato dei Dispositivi..." -#: app/preferences_dialog.c:2162 +#: app/preferences_dialog.c:2237 #, fuzzy msgid "Save Device Status on Exit" msgstr "/Finestre/Stato dei Dispositivi..." -#: app/preferences_dialog.c:2173 +#: app/preferences_dialog.c:2248 #, fuzzy msgid "Monitor Information" msgstr "/Finestre/Opzioni dello Strumento..." -#: app/preferences_dialog.c:2175 +#: app/preferences_dialog.c:2250 msgid "Monitor" msgstr "" -#: app/preferences_dialog.c:2182 +#: app/preferences_dialog.c:2257 msgid "Get Monitor Resolution" msgstr "" -#: app/preferences_dialog.c:2197 +#: app/preferences_dialog.c:2272 #, c-format msgid "(Currently %d x %d dpi)" msgstr "" -#: app/preferences_dialog.c:2244 +#: app/preferences_dialog.c:2319 msgid "From X Server" msgstr "" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2334 msgid "Manually:" msgstr "" -#: app/preferences_dialog.c:2272 +#: app/preferences_dialog.c:2347 msgid "Directories Settings" msgstr "" -#: app/preferences_dialog.c:2274 +#: app/preferences_dialog.c:2349 msgid "Directories" msgstr "" -#: app/preferences_dialog.c:2287 +#: app/preferences_dialog.c:2362 msgid "Temp Dir:" msgstr "" -#: app/preferences_dialog.c:2287 +#: app/preferences_dialog.c:2362 msgid "Select Temp Dir" msgstr "" -#: app/preferences_dialog.c:2288 +#: app/preferences_dialog.c:2363 msgid "Swap Dir:" msgstr "" -#: app/preferences_dialog.c:2288 +#: app/preferences_dialog.c:2363 #, fuzzy msgid "Select Swap Dir" msgstr "/Selezione/Metti a fuoco" -#: app/preferences_dialog.c:2320 +#: app/preferences_dialog.c:2395 msgid "Brushes Directories" msgstr "" -#: app/preferences_dialog.c:2320 +#: app/preferences_dialog.c:2395 #, fuzzy msgid "Select Brushes Dir" msgstr "/Selezione/Bordo" -#: app/preferences_dialog.c:2322 +#: app/preferences_dialog.c:2397 #, fuzzy msgid "Patterns Directories" msgstr "/Livelli/Da Maschera a Selezione" -#: app/preferences_dialog.c:2322 +#: app/preferences_dialog.c:2397 msgid "Select Patterns Dir" msgstr "" -#: app/preferences_dialog.c:2324 +#: app/preferences_dialog.c:2399 #, fuzzy msgid "Palettes Directories" msgstr "/Livelli/Da Maschera a Selezione" -#: app/preferences_dialog.c:2324 +#: app/preferences_dialog.c:2399 msgid "Select Palettes Dir" msgstr "" -#: app/preferences_dialog.c:2326 +#: app/preferences_dialog.c:2401 #, fuzzy msgid "Gradients Directories" msgstr "/Finestre/Editor di sfumature..." -#: app/preferences_dialog.c:2326 +#: app/preferences_dialog.c:2401 #, fuzzy msgid "Select Gradients Dir" msgstr "/Finestre/Editor di sfumature..." -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 msgid "Plug-Ins" msgstr "" -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 msgid "Plug-Ins Directories" msgstr "" -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 msgid "Select Plug-Ins Dir" msgstr "" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 msgid "Modules" msgstr "" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 msgid "Modules Directories" msgstr "" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 #, fuzzy msgid "Select Modules Dir" msgstr "/Selezione/Niente" @@ -4954,28 +4947,32 @@ msgid "" "Argument %d to '%s' should be a %s, but got passed a %s" msgstr "" -#: app/rect_select.c:179 +#: app/rect_select.c:180 #, fuzzy msgid "Selection: ADD" msgstr "/Selezione/Niente" -#: app/rect_select.c:182 +#: app/rect_select.c:183 msgid "Selection: SUBTRACT" msgstr "" -#: app/rect_select.c:185 +#: app/rect_select.c:186 msgid "Selection: INTERSECT" msgstr "" -#: app/rect_select.c:188 +#: app/rect_select.c:189 msgid "Selection: REPLACE" msgstr "" -#: app/rect_select.c:404 app/rect_select.c:411 +#: app/rect_select.c:405 app/rect_select.c:412 #, fuzzy msgid "Selection: " msgstr "/Selezione/Niente" +#: app/resize.c:159 +msgid "Scale Layer" +msgstr "" + #: app/resize.c:160 app/resize.c:181 #, fuzzy msgid "Size" @@ -4991,6 +4988,11 @@ msgstr "/Immagine/Scala" msgid "Pixel Dimensions" msgstr "/Per estensione" +#: app/resize.c:174 +#, fuzzy +msgid "Resize Layer" +msgstr "/Livelli/Porta livello in alto" + #: app/resize.c:178 #, fuzzy msgid "Image Resize" @@ -5024,11 +5026,11 @@ msgstr "" msgid "Rotation Information" msgstr "" -#: app/rotate_tool.c:105 +#: app/rotate_tool.c:106 msgid "Center X:" msgstr "" -#: app/rotate_tool.c:400 +#: app/rotate_tool.c:401 msgid "Rotating..." msgstr "" @@ -5072,65 +5074,65 @@ msgstr "" msgid "Shearing..." msgstr "" -#: app/text_tool.c:158 +#: app/text_tool.c:157 #, fuzzy msgid "Text Tool Options" msgstr "/Finestre/Opzioni dello Strumento..." -#: app/text_tool.c:169 +#: app/text_tool.c:168 app/tool_options.c:317 msgid "Antialiasing" msgstr "" -#: app/text_tool.c:183 +#: app/text_tool.c:182 msgid "Border:" msgstr "" -#: app/text_tool.c:209 +#: app/text_tool.c:208 msgid "Use Dynamic Text" msgstr "" -#: app/text_tool.c:285 +#: app/text_tool.c:278 msgid "text_call_gdyntext: gDynText procedure lookup failed" msgstr "" #. Create the shell -#: app/text_tool.c:408 app/text_tool.c:410 +#: app/text_tool.c:399 app/text_tool.c:401 msgid "Text Tool" msgstr "" -#: app/text_tool.c:617 +#: app/text_tool.c:609 #, c-format msgid "Font '%s' not found.%s" msgstr "" -#: app/text_tool.c:619 +#: app/text_tool.c:611 msgid "" "\n" "If you don't have scalable fonts, try turning off antialiasing in the tool " "options." msgstr "" -#: app/text_tool.c:730 +#: app/text_tool.c:722 msgid "Text Layer" msgstr "" -#: app/text_tool.c:773 +#: app/text_tool.c:765 msgid "text_render: could not allocate image" msgstr "" -#: app/threshold.c:234 +#: app/threshold.c:189 msgid "Threshold Options" msgstr "" -#: app/threshold.c:283 +#: app/threshold.c:232 msgid "Threshold does not operate on indexed drawables." msgstr "" -#: app/threshold.c:341 app/tools.c:536 +#: app/threshold.c:291 app/tools.c:562 msgid "Threshold" msgstr "" -#: app/threshold.c:356 +#: app/threshold.c:306 msgid "Threshold Range: " msgstr "" @@ -5138,21 +5140,21 @@ msgstr "" msgid "starting tile preswapper\n" msgstr "" -#: app/tile_swap.c:379 +#: app/tile_swap.c:381 msgid "unable to open swap file...BAD THINGS WILL HAPPEN SOON" msgstr "" -#: app/tile_swap.c:499 app/tile_swap.c:560 +#: app/tile_swap.c:501 app/tile_swap.c:562 #, c-format msgid "unable to seek to tile location on disk: %d" msgstr "" -#: app/tile_swap.c:518 +#: app/tile_swap.c:520 #, c-format msgid "unable to read tile data from disk: %d/%d ( %d ) bytes read" msgstr "" -#: app/tile_swap.c:573 +#: app/tile_swap.c:575 #, c-format msgid "unable to write tile data to disk: %d ( %d ) bytes written" msgstr "" @@ -5185,332 +5187,454 @@ msgid "" "GIMP data directory. Please check your installation." msgstr "" -#: app/tools.c:85 +#: app/tools.c:81 msgid "Rect Select" msgstr "" -#: app/tools.c:87 +#: app/tools.c:83 msgid "/Tools/Rect Select" msgstr "" -#: app/tools.c:90 +#: app/tools.c:86 msgid "Select rectangular regions" msgstr "" -#: app/tools.c:100 +#: app/tools.c:96 msgid "Ellipse Select" msgstr "" -#: app/tools.c:102 +#: app/tools.c:98 msgid "/Tools/Ellipse Select" msgstr "" -#: app/tools.c:105 +#: app/tools.c:101 msgid "Select elliptical regions" msgstr "" -#: app/tools.c:115 +#: app/tools.c:111 msgid "Free Select" msgstr "" -#: app/tools.c:117 +#: app/tools.c:113 msgid "/Tools/Free Select" msgstr "" -#: app/tools.c:120 +#: app/tools.c:116 msgid "Select hand-drawn regions" msgstr "" -#: app/tools.c:130 +#: app/tools.c:126 msgid "Fuzzy Select" msgstr "" -#: app/tools.c:132 +#: app/tools.c:128 msgid "/Tools/Fuzzy Select" msgstr "" -#: app/tools.c:135 +#: app/tools.c:131 msgid "Select contiguous regions" msgstr "" -#: app/tools.c:145 +#: app/tools.c:141 msgid "Bezier Select" msgstr "" -#: app/tools.c:147 +#: app/tools.c:143 msgid "/Tools/Bezier Select" msgstr "" -#: app/tools.c:150 +#: app/tools.c:146 msgid "Select regions using Bezier curves" msgstr "" -#: app/tools.c:160 +#: app/tools.c:156 msgid "Intelligent Scissors" msgstr "" -#: app/tools.c:162 +#: app/tools.c:158 msgid "/Tools/Intelligent Scissors" msgstr "" -#: app/tools.c:165 +#: app/tools.c:161 msgid "Select shapes from image" msgstr "" -#: app/tools.c:175 +#: app/tools.c:171 msgid "Move" msgstr "" -#: app/tools.c:177 +#: app/tools.c:173 #, fuzzy msgid "/Tools/Move" msgstr "/Strumenti/---" -#: app/tools.c:180 +#: app/tools.c:176 #, fuzzy msgid "Move layers & selections" msgstr "/Livelli/Da Maschera a Selezione" -#: app/tools.c:190 +#: app/tools.c:186 msgid "Magnify" msgstr "" -#: app/tools.c:192 +#: app/tools.c:188 msgid "/Tools/Magnify" msgstr "" -#: app/tools.c:195 +#: app/tools.c:191 msgid "Zoom in & out" msgstr "" -#: app/tools.c:205 +#: app/tools.c:201 #, fuzzy msgid "Crop & Resize" msgstr "/Immagine/Ridimensiona" -#: app/tools.c:207 +#: app/tools.c:203 #, fuzzy msgid "/Tools/Crop & Resize" msgstr "/Strumenti/---" -#: app/tools.c:210 +#: app/tools.c:206 msgid "Crop or resize the image" msgstr "" #. the first radio frame and box, for transform type -#: app/tools.c:220 app/tools.c:235 app/tools.c:250 app/tools.c:265 +#: app/tools.c:216 app/tools.c:231 app/tools.c:246 app/tools.c:261 #: app/transform_core.c:125 app/transform_tool.c:224 msgid "Transform" msgstr "" -#: app/tools.c:222 +#: app/tools.c:218 #, fuzzy msgid "/Tools/Transform" msgstr "/Strumenti/Tavolozza degli strumenti" -#: app/tools.c:225 +#: app/tools.c:221 msgid "Transform the layer or selection" msgstr "" -#: app/tools.c:280 +#: app/tools.c:276 msgid "Flip" msgstr "" -#: app/tools.c:282 +#: app/tools.c:278 #, fuzzy msgid "/Tools/Flip" msgstr "/Strumenti/---" -#: app/tools.c:285 +#: app/tools.c:281 msgid "Flip the layer or selection" msgstr "" -#: app/tools.c:295 +#: app/tools.c:291 msgid "Text" msgstr "" -#: app/tools.c:297 +#: app/tools.c:293 #, fuzzy msgid "/Tools/Text" msgstr "/Strumenti/Tavolozza degli strumenti" -#: app/tools.c:300 +#: app/tools.c:296 msgid "Add text to the image" msgstr "" -#: app/tools.c:312 +#: app/tools.c:308 #, fuzzy msgid "/Tools/Color Picker" msgstr "/Strumenti/Scambia Colori" -#: app/tools.c:315 +#: app/tools.c:311 msgid "Pick colors from the image" msgstr "" -#: app/tools.c:325 +#: app/tools.c:321 msgid "Bucket Fill" msgstr "" -#: app/tools.c:327 +#: app/tools.c:323 msgid "/Tools/Bucket Fill" msgstr "" -#: app/tools.c:330 +#: app/tools.c:326 msgid "Fill with a color or pattern" msgstr "" -#: app/tools.c:340 +#: app/tools.c:336 msgid "Blend" msgstr "" -#: app/tools.c:342 +#: app/tools.c:338 #, fuzzy msgid "/Tools/Blend" msgstr "/Strumenti/---" -#: app/tools.c:345 +#: app/tools.c:341 msgid "Fill with a color gradient" msgstr "" -#: app/tools.c:355 +#: app/tools.c:351 msgid "Pencil" msgstr "" -#: app/tools.c:357 +#: app/tools.c:353 #, fuzzy msgid "/Tools/Pencil" msgstr "/Strumenti/---" -#: app/tools.c:360 +#: app/tools.c:356 msgid "Draw sharp pencil strokes" msgstr "" -#: app/tools.c:370 +#: app/tools.c:366 msgid "Paintbrush" msgstr "" -#: app/tools.c:372 +#: app/tools.c:368 msgid "/Tools/Paintbrush" msgstr "" -#: app/tools.c:375 +#: app/tools.c:371 msgid "Paint fuzzy brush strokes" msgstr "" -#: app/tools.c:385 +#: app/tools.c:381 msgid "Eraser" msgstr "" -#: app/tools.c:387 +#: app/tools.c:383 #, fuzzy msgid "/Tools/Eraser" msgstr "/Strumenti/---" -#: app/tools.c:390 +#: app/tools.c:386 msgid "Erase to background or transparency" msgstr "" -#: app/tools.c:400 +#: app/tools.c:396 msgid "Airbrush" msgstr "" -#: app/tools.c:402 +#: app/tools.c:398 msgid "/Tools/Airbrush" msgstr "" -#: app/tools.c:405 +#: app/tools.c:401 msgid "Airbrush with variable pressure" msgstr "" -#: app/tools.c:415 +#: app/tools.c:411 msgid "Clone" msgstr "" -#: app/tools.c:417 +#: app/tools.c:413 #, fuzzy msgid "/Tools/Clone" msgstr "/Strumenti/Tavolozza degli strumenti" -#: app/tools.c:420 +#: app/tools.c:416 msgid "Paint using patterns or image regions" msgstr "" -#: app/tools.c:430 +#: app/tools.c:426 msgid "Convolve" msgstr "" -#: app/tools.c:432 +#: app/tools.c:428 #, fuzzy msgid "/Tools/Convolve" msgstr "/Strumenti/Tavolozza degli strumenti" -#: app/tools.c:435 +#: app/tools.c:431 msgid "Blur or sharpen" msgstr "" -#: app/tools.c:445 +#: app/tools.c:441 msgid "Ink" msgstr "" -#: app/tools.c:447 +#: app/tools.c:443 #, fuzzy msgid "/Tools/Ink" msgstr "/Strumenti/---" -#: app/tools.c:450 +#: app/tools.c:446 msgid "Draw in ink" msgstr "" -#: app/tools.c:461 +#: app/tools.c:456 app/tools.c:461 +msgid "Dodge or Burn" +msgstr "" + +#: app/tools.c:458 +#, fuzzy +msgid "/Tools/DodgeBurn" +msgstr "/Strumenti/---" + +#: app/tools.c:471 app/tools.c:476 +msgid "Smudge" +msgstr "" + +#: app/tools.c:473 +#, fuzzy +msgid "/Tools/Smudge" +msgstr "/Strumenti/---" + +#: app/tools.c:487 msgid "By Color Select" msgstr "" -#: app/tools.c:463 +#: app/tools.c:489 #, fuzzy msgid "/Select/By Color..." msgstr "/Selezione/Bordo" -#: app/tools.c:478 +#: app/tools.c:504 #, fuzzy msgid "/Image/Colors/Color Balance" msgstr "/Immagine/Colori/Equalizza" -#: app/tools.c:493 +#: app/tools.c:519 #, fuzzy msgid "/Image/Colors/Brightness-Contrast" msgstr "/Immagine/Colori/Riduci saturazione" -#: app/tools.c:508 +#: app/tools.c:534 #, fuzzy msgid "/Image/Colors/Hue-Saturation" msgstr "/Immagine/Colori/Riduci saturazione" -#: app/tools.c:523 +#: app/tools.c:549 #, fuzzy msgid "/Image/Colors/Posterize" msgstr "/Immagine/Colori/Riduci saturazione" -#: app/tools.c:538 +#: app/tools.c:564 #, fuzzy msgid "/Image/Colors/Threshold" msgstr "/Immagine/Colori/---" -#: app/tools.c:553 +#: app/tools.c:579 #, fuzzy msgid "/Image/Colors/Curves" msgstr "/Immagine/Colori/Inverti" -#: app/tools.c:568 +#: app/tools.c:594 #, fuzzy msgid "/Image/Colors/Levels" msgstr "/Immagine/Colori/Inverti" -#: app/tools.c:581 -msgid "Histogram" +#: app/tools.c:609 +msgid "/Image/Histogram" msgstr "" -#: app/tools.c:583 -msgid "/Image/Histogram" +#: app/tool_options.c:206 app/tool_options.c:688 +msgid "This tool has no options." +msgstr "" + +#: app/tool_options.c:230 +#, fuzzy +msgid "Rectangular Select Options" +msgstr "/Livelli/Da Maschera a Selezione" + +#: app/tool_options.c:232 +msgid "Elliptical Selection Options" +msgstr "" + +#: app/tool_options.c:234 +msgid "Free-hand Selection Options" +msgstr "" + +#: app/tool_options.c:236 +#, fuzzy +msgid "Fuzzy Selection Options" +msgstr "/File/Finestre/Opzioni dello strumento..." + +#: app/tool_options.c:238 +#, fuzzy +msgid "Bezier Selection Options" +msgstr "/Livelli/Da Maschera a Selezione" + +#: app/tool_options.c:240 +msgid "Intelligent Scissors Options" +msgstr "" + +#: app/tool_options.c:242 +#, fuzzy +msgid "By-Color Select Options" +msgstr "/Livelli/Da Maschera a Selezione" + +#: app/tool_options.c:243 +msgid "ERROR: Unknown Selection Type" +msgstr "" + +#: app/tool_options.c:273 +#, fuzzy +msgid "Feather" +msgstr "/Selezione/Piuma" + +#: app/tool_options.c:381 +msgid "Fixed size / aspect ratio" +msgstr "" + +#: app/tool_options.c:552 +#, fuzzy +msgid "Bucket Fill Options" +msgstr "/File/Finestre/Opzioni dello strumento..." + +#: app/tool_options.c:554 +#, fuzzy +msgid "Blend Options" +msgstr "/Finestre/Opzioni dello Strumento..." + +#: app/tool_options.c:556 +#, fuzzy +msgid "Pencil Options" +msgstr "/Finestre/Opzioni dello Strumento..." + +#: app/tool_options.c:558 +#, fuzzy +msgid "Paintbrush Options" +msgstr "/Livelli/Da Maschera a Selezione" + +#: app/tool_options.c:560 +#, fuzzy +msgid "Erazer Options" +msgstr "/Livelli/Da Maschera a Selezione" + +#: app/tool_options.c:562 +#, fuzzy +msgid "Airbrush Options" +msgstr "/File/Finestre/Opzioni dello strumento..." + +#: app/tool_options.c:564 +#, fuzzy +msgid "Clone Tool Options" +msgstr "/Finestre/Opzioni dello Strumento..." + +#: app/tool_options.c:566 +#, fuzzy +msgid "Convolver Options" +msgstr "/Finestre/Opzioni dello Strumento..." + +#: app/tool_options.c:568 +#, fuzzy +msgid "Ink Options" +msgstr "/Finestre/Opzioni dello Strumento..." + +#: app/tool_options.c:570 +#, fuzzy +msgid "Dodge or Burn Options" +msgstr "/Finestre/Opzioni dello Strumento..." + +#: app/tool_options.c:572 +#, fuzzy +msgid "Smudge Options" +msgstr "/Finestre/Opzioni dello Strumento..." + +#: app/tool_options.c:573 +msgid "ERROR: Unknown Paint Type" msgstr "" #: app/transform_core.c:122 @@ -5531,24 +5655,24 @@ msgid "" "layers that contain layer masks." msgstr "" -#: app/transform_core.c:1132 +#: app/transform_core.c:1140 msgid "homogeneous coordinate = 0...\n" msgstr "" -#: app/transform_core.c:1387 +#: app/transform_core.c:1395 #, fuzzy msgid "Transformation" msgstr "/Finestre/Opzioni dello Strumento..." -#: app/transform_tool.c:190 +#: app/transform_tool.c:189 msgid "Rotation" msgstr "" -#: app/transform_tool.c:192 +#: app/transform_tool.c:191 msgid "Shearing" msgstr "" -#: app/transform_tool.c:193 +#: app/transform_tool.c:192 msgid "Perspective" msgstr "" @@ -5669,6 +5793,95 @@ msgstr "" msgid "unable to read tile data from xcf file: %d ( %d ) bytes read" msgstr "" +#. pseudo unit +#: libgimp/gimpunit.c:44 +msgid "pixel" +msgstr "" + +#: libgimp/gimpunit.c:44 +msgid "pixels" +msgstr "" + +#. standard units +#: libgimp/gimpunit.c:47 +msgid "inch" +msgstr "" + +#: libgimp/gimpunit.c:47 +#, fuzzy +msgid "inches" +msgstr "/Finestre/Stato dei Dispositivi..." + +#: libgimp/gimpunit.c:48 +msgid "millimeter" +msgstr "" + +#: libgimp/gimpunit.c:48 +#, fuzzy +msgid "millimeters" +msgstr "/Flitri/" + +#. professional units +#: libgimp/gimpunit.c:51 +msgid "point" +msgstr "" + +#: libgimp/gimpunit.c:51 +msgid "points" +msgstr "" + +#: libgimp/gimpunit.c:52 +msgid "pica" +msgstr "" + +#: libgimp/gimpunit.c:52 +msgid "picas" +msgstr "" + +#: libgimp/gimpunit.c:59 +msgid "percent" +msgstr "" + +#: libgimp/gimpfileselection.c:352 +#, fuzzy +msgid "Select File" +msgstr "/Selezione/Niente" + +#: libgimp/gimpfileselection.c:355 libgimp/gimpunitmenu.c:510 +#, fuzzy +msgid "Select" +msgstr "/Selezione/Tutto" + +#: libgimp/gimpenv.c:82 +msgid "warning: no home directory." +msgstr "" + +#: libgimp/gimpunitmenu.c:207 +msgid "More..." +msgstr "" + +#: libgimp/gimpunitmenu.c:333 +msgid "unit-menu-format string ended within %%-sequence" +msgstr "" + +#: libgimp/gimpunitmenu.c:366 +msgid "unit-menu-format contains unknownformat sequence '%%%c'" +msgstr "" + +#: libgimp/gimpunitmenu.c:453 +#, fuzzy +msgid "Unit Selection" +msgstr "/Selezione/Niente" + +#: libgimp/gimpunitmenu.c:479 +msgid "Unit " +msgstr "" + +#: libgimp/gimpunitmenu.c:481 +#, fuzzy +msgid "Factor" +msgstr "/Selezione/Piuma" + #: app/regex.c:976 msgid "Success" msgstr "Successo" @@ -5757,6 +5970,234 @@ msgstr ") o \\) senza coppia" msgid "No previous regular expression" msgstr "Non esiste un'espressione regolare precedente" +#, fuzzy +#~ msgid "/File/Quit" +#~ msgstr "/File/Esci" + +#, fuzzy +#~ msgid "/File/Quit" +#~ msgstr "/File/Esci" + +#, fuzzy +#~ msgid "Automatic" +#~ msgstr "/Automatico" + +#, fuzzy +#~ msgid "/File/Open" +#~ msgstr "/File/Apri" + +#, fuzzy +#~ msgid "/File/Open" +#~ msgstr "/File/Apri" + +#, fuzzy +#~ msgid "/File/Save" +#~ msgstr "/File/Salva" + +#, fuzzy +#~ msgid "/File/Save as" +#~ msgstr "/File/Salva con nome" + +#, fuzzy +#~ msgid "/Layers/Stack/Previous Layer" +#~ msgstr "/Livelli/Porta livello in alto" + +#, fuzzy +#~ msgid "/Layers/Stack/Next Layer" +#~ msgstr "/Livelli/Porta livello in alto" + +#, fuzzy +#~ msgid "/Layers/Stack/Raise Layer" +#~ msgstr "/Livelli/Porta livello in alto" + +#, fuzzy +#~ msgid "/Layers/Stack/Lower Layer" +#~ msgstr "/Livelli/Porta livello in basso" + +#, fuzzy +#~ msgid "/Layers/Stack/Layer to Top" +#~ msgstr "/Livelli/Porta livello in alto" + +#, fuzzy +#~ msgid "/Layers/Anchor Layer" +#~ msgstr "/Livelli/Ancora livello" + +#, fuzzy +#~ msgid "/Layers/Merge Visible Layers" +#~ msgstr "/Livelli/Combina livelli visibili" + +#, fuzzy +#~ msgid "/Layers/Flatten Image" +#~ msgstr "/Livelli/Appiattisci immagine" + +#, fuzzy +#~ msgid "/Layers/Alpha To Selection" +#~ msgstr "/Livelli/Da Alpha a Selezione" + +#, fuzzy +#~ msgid "/Layers/Mask To Selection" +#~ msgstr "/Livelli/Da Maschera a Selezione" + +#, fuzzy +#~ msgid "/Layers/Add Alpha Channel" +#~ msgstr "/Livelli/Aggiungi Canale Alpha" + +#, fuzzy +#~ msgid "/Image/RGB" +#~ msgstr "/Immagine/RGB" + +#, fuzzy +#~ msgid "/Image/Grayscale" +#~ msgstr "/Immagine/Scala di grigio" + +#, fuzzy +#~ msgid "/Image/Indexed" +#~ msgstr "/Immagine/Indicizzata" + +#, fuzzy +#~ msgid "/Image/Colors/Threshold" +#~ msgstr "/Immagine/Colori/Inverti" + +#, fuzzy +#~ msgid "/Image/Colors/Posterize" +#~ msgstr "/Immagine/Colori/Riduci saturazione" + +#, fuzzy +#~ msgid "/Image/Colors/Equalize" +#~ msgstr "/Immagine/Colori/Equalizza" + +#, fuzzy +#~ msgid "/Image/Colors/Invert" +#~ msgstr "/Immagine/Colori/Inverti" + +#, fuzzy +#~ msgid "/Image/Colors/Color Balance" +#~ msgstr "/Immagine/Colori/Equalizza" + +#, fuzzy +#~ msgid "/Image/Colors/Brightness-Contrast" +#~ msgstr "/Immagine/Colori/Riduci saturazione" + +#, fuzzy +#~ msgid "/Image/Colors/Hue-Saturation" +#~ msgstr "/Immagine/Colori/Riduci saturazione" + +#, fuzzy +#~ msgid "/Image/Colors/Curves" +#~ msgstr "/Immagine/Colori/Inverti" + +#, fuzzy +#~ msgid "/Image/Colors/Levels" +#~ msgstr "/Immagine/Colori/Inverti" + +#, fuzzy +#~ msgid "/Image/Colors/Desaturate" +#~ msgstr "/Immagine/Colori/Riduci saturazione" + +#, fuzzy +#~ msgid "/Image/Alpha/Add Alpha Channel" +#~ msgstr "/Immagine/Alpha/Aggiungi canale alpha" + +#, fuzzy +#~ msgid "/Select" +#~ msgstr "/Immagine/Scala" + +#, fuzzy +#~ msgid "/Edit/Cut" +#~ msgstr "/Modifica/Taglia" + +#, fuzzy +#~ msgid "/Edit/Copy" +#~ msgstr "/Modifica/Copia" + +#, fuzzy +#~ msgid "/Edit/Paste" +#~ msgstr "/Modifica/Incolla" + +#, fuzzy +#~ msgid "/Edit/Paste Into" +#~ msgstr "/Modifica/Incolla dentro" + +#, fuzzy +#~ msgid "/Edit/Fill" +#~ msgstr "/Modifica/Riempi" + +#, fuzzy +#~ msgid "/Edit/Stroke" +#~ msgstr "/Modifica/Sbarra" + +#, fuzzy +#~ msgid "/Edit/Cut Named" +#~ msgstr "/Modifica/Taglia con Nome" + +#, fuzzy +#~ msgid "/Edit/Copy Named" +#~ msgstr "/Modifica/Copia con Nome" + +#, fuzzy +#~ msgid "/Edit/Paste Named" +#~ msgstr "/Modifica/Incolla con Nome" + +#, fuzzy +#~ msgid "/Image/Colors" +#~ msgstr "/Immagine/Colori/---" + +#, fuzzy +#~ msgid "/Image/Channel Ops/Offset" +#~ msgstr "/Immagine/Operazioni canale/Spostamento" + +#, fuzzy +#~ msgid "/Filters" +#~ msgstr "/Flitri/" + +#, fuzzy +#~ msgid "/Select/Save To Channel" +#~ msgstr "/Selezione/Salva in Canale" + +#, fuzzy +#~ msgid "/View/Toggle Rulers" +#~ msgstr "/Vista/Righelli" + +#, fuzzy +#~ msgid "/View/Toggle Guides" +#~ msgstr "/Vista/Guide" + +#, fuzzy +#~ msgid "/View/Snap To Guides" +#~ msgstr "/Vista/Costringi alle guide" + +#, fuzzy +#~ msgid "/View/Toggle Statusbar" +#~ msgstr "/Vista/Barra di stato" + +#, fuzzy +#~ msgid "/File/Close" +#~ msgstr "/File/Chiudi" + +#, fuzzy +#~ msgid "Replace Current Selection" +#~ msgstr "/Livelli/Da Maschera a Selezione" + +#, fuzzy +#~ msgid "Lower Layer" +#~ msgstr "/Livelli/Porta livello in basso" + +#, fuzzy +#~ msgid "/Select/Toggle" +#~ msgstr "/Selezione/Cambia" + +#, fuzzy +#~ msgid "Gradient Type" +#~ msgstr "/Selezione/Niente" + +#, fuzzy +#~ msgid "/Filters/Repeat last" +#~ msgstr "/Filtri/Ripeti ultimo" + +#, fuzzy +#~ msgid "/Filters/Re-show last" +#~ msgstr "/Filtri/Mostra ultimo" + #, fuzzy #~ msgid "Add Channel To Selection" #~ msgstr "/Livelli/Da Alpha a Selezione" @@ -5788,26 +6229,10 @@ msgstr "Non esiste un'espressione regolare precedente" #~ msgid "# GIMP sessionrc\n" #~ msgstr "Versione di GIMP" -#, fuzzy -#~ msgid "Clone Tool Options" -#~ msgstr "/Finestre/Opzioni dello Strumento..." - -#, fuzzy -#~ msgid "Selection" -#~ msgstr "/Selezione/Niente" - -#, fuzzy -#~ msgid "Ink Options" -#~ msgstr "/Finestre/Opzioni dello Strumento..." - #, fuzzy #~ msgid "Image procedures" #~ msgstr "/Immagine/Scala" -#, fuzzy -#~ msgid "Feather" -#~ msgstr "/Selezione/Piuma" - #, fuzzy #~ msgid "/_File" #~ msgstr "/File/Nuovo" @@ -5820,10 +6245,6 @@ msgstr "Non esiste un'espressione regolare precedente" #~ msgid "/_Edit" #~ msgstr "/Modifica/Taglia" -#, fuzzy -#~ msgid "/_Select" -#~ msgstr "/Selezione/Tutto" - #, fuzzy #~ msgid "/_View" #~ msgstr "/Vista/---" @@ -5836,26 +6257,14 @@ msgstr "Non esiste un'espressione regolare precedente" #~ msgid "/Image/_Colors" #~ msgstr "/Immagine/Colori/---" -#, fuzzy -#~ msgid "/Image/_Alpha" -#~ msgstr "/Immagine/Scala" - #, fuzzy #~ msgid "/_Tools" #~ msgstr "/Strumenti/---" -#, fuzzy -#~ msgid "/Filte_rs" -#~ msgstr "/Flitri/" - #, fuzzy #~ msgid "Gradient Length" #~ msgstr "/Finestre/Editor di sfumature..." -#, fuzzy -#~ msgid "Pencil Options" -#~ msgstr "/Finestre/Opzioni dello Strumento..." - #, fuzzy #~ msgid "GIMP Extension" #~ msgstr "Versione di GIMP" diff --git a/po/ja.po b/po/ja.po index 6e2a3dae02..fb2e93d83b 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: GIMP 1.1.7\n" -"POT-Creation-Date: 1999-07-03 23:07+0900\n" +"POT-Creation-Date: 1999-07-17 11:23-0700\n" "PO-Revision-Date: 1998-07-03 23:10+0900\n" "Last-Translator: гР╨Й бы╧╟ \n" "Language-Team: Japanese \n" @@ -70,23 +70,23 @@ msgid "Parasites" msgstr "╔я╔И╔╣╔╓╔х" #. initialize the global parasite table -#: app/app_procs.c:528 app/internal_procs.c:70 app/preferences_dialog.c:2401 +#: app/app_procs.c:528 app/internal_procs.c:70 app/preferences_dialog.c:2395 msgid "Brushes" msgstr "╔ж╔И╔╥" #. initialize the list of gimp brushes -#: app/app_procs.c:530 app/internal_procs.c:139 app/preferences_dialog.c:2403 +#: app/app_procs.c:530 app/internal_procs.c:139 app/preferences_dialog.c:2397 msgid "Patterns" msgstr "╔я╔©║╪╔С" #. initialize the list of gimp patterns -#: app/app_procs.c:532 app/preferences_dialog.c:2405 +#: app/app_procs.c:532 app/preferences_dialog.c:2399 msgid "Palettes" msgstr "╔я╔Л╔ц╔х" #. initialize the list of gimp palettes #: app/app_procs.c:534 app/gradient_select.c:557 app/internal_procs.c:109 -#: app/preferences_dialog.c:2407 +#: app/preferences_dialog.c:2401 msgid "Gradients" msgstr "╔╟╔И╔г║╪╔╥╔Г╔С" @@ -299,34 +299,34 @@ msgstr " msgid "Blend: 0, 0" msgstr "╔ж╔Л╔С╔и: 0, 0" -#: app/blend.c:586 +#: app/blend.c:587 msgid "Blend operation failed." msgstr "╔ж╔Л╔С╔иаЮ╨Н╪╨гт." -#: app/blend.c:592 +#: app/blend.c:593 msgid "Blending..." msgstr "╔ж╔Л╔С╔и..." -#: app/blend.c:642 app/blend.c:652 +#: app/blend.c:643 app/blend.c:653 msgid "Blend: " msgstr "╔ж╔Л╔С╔и: " -#: app/blend.c:1303 +#: app/blend.c:1307 #, c-format msgid "gradient_render_pixel(): unknown gradient type %d" msgstr "gradient_render_pixel(): итлю╓й╔╟╔И╔г║╪╔╥╔Г╔С╪О %d" -#: app/blend.c:1438 +#: app/blend.c:1445 #, c-format msgid "gradient_fill_region(): unknown blend mode %d" msgstr "gradient_fill_region(): итлю╓й╔ж╔Л╔С╔и╔Б║╪╔и %d" -#: app/blend.c:1479 +#: app/blend.c:1486 #, c-format msgid "gradient_fill_region(): unknown gradient type %d" msgstr "gradient_fill_region(): итлю╓й╔╟╔И╔г║╪╔╥╔Г╔С╪О %d" -#: app/blend.c:1501 +#: app/blend.c:1508 #, c-format msgid "gradient_fill_region(): unknown repeat mode %d" msgstr "gradient_fill_region(): итлю╓йх©иЭ╔Б║╪╔и %d" @@ -342,10 +342,10 @@ msgstr " #. Action area #: app/brightness_contrast.c:214 app/channel_ops.c:104 #: app/channels_dialog.c:1864 app/channels_dialog.c:2049 -#: app/color_balance.c:273 app/color_notebook.c:47 app/color_notebook.c:190 +#: app/color_balance.c:273 app/color_notebook.c:49 app/color_notebook.c:192 #: app/color_select.c:155 app/color_select.c:210 app/convert.c:295 #: app/curves.c:517 app/file_new_dialog.c:292 app/file_new_dialog.c:482 -#: app/hue_saturation.c:361 app/interface.c:897 app/interface.c:1283 +#: app/hue_saturation.c:361 app/interface.c:1009 app/interface.c:1395 #: app/layers_dialog.c:2901 app/layers_dialog.c:3119 app/layers_dialog.c:3262 #: app/layers_dialog.c:3738 app/levels.c:335 app/module_db.c:263 #: app/posterize.c:199 app/preferences_dialog.c:1469 app/resize.c:114 @@ -355,12 +355,12 @@ msgstr "н╩ #: app/brightness_contrast.c:215 app/channel_ops.c:113 #: app/channels_dialog.c:1865 app/channels_dialog.c:2050 -#: app/color_balance.c:274 app/color_notebook.c:48 app/color_notebook.c:191 +#: app/color_balance.c:274 app/color_notebook.c:50 app/color_notebook.c:193 #: app/color_select.c:156 app/color_select.c:211 app/convert.c:296 #: app/curves.c:518 app/file_new_dialog.c:294 app/file_new_dialog.c:484 -#: app/gdisplay_ops.c:349 app/gimpprogress.c:135 app/global_edit.c:593 +#: app/gdisplay_ops.c:349 app/gimpprogress.c:135 app/global_edit.c:705 #: app/gradient.c:1486 app/gradient.c:4566 app/gradient.c:4921 -#: app/hue_saturation.c:362 app/interface.c:808 app/interface.c:898 +#: app/hue_saturation.c:362 app/interface.c:913 app/interface.c:1010 #: app/layers_dialog.c:2902 app/layers_dialog.c:3120 app/layers_dialog.c:3263 #: app/layers_dialog.c:3410 app/layers_dialog.c:3739 app/levels.c:336 #: app/posterize.c:200 app/preferences_dialog.c:1473 app/resize.c:115 @@ -368,7 +368,7 @@ msgstr "н╩ msgid "Cancel" msgstr "╪Х╬ц" -#: app/brightness_contrast.c:226 app/tools.c:516 +#: app/brightness_contrast.c:226 app/tools.c:517 msgid "Brightness-Contrast" msgstr "люеы-╔Ё╔С╔х╔И╔╧╔х" @@ -390,14 +390,14 @@ msgid "Preview" msgstr "╔в╔Л╔с╔Е║╪" #. The close push button -#: app/brush_edit.c:38 app/brush_select.c:133 app/by_color_select.c:664 -#: app/color_notebook.c:185 app/color_picker.c:209 app/color_select.c:205 -#: app/colormap_dialog.i.c:94 app/colormap_dialog.i.c:103 app/crop.c:1033 -#: app/devices.c:124 app/docindexif.c:95 app/errorconsole.c:230 +#: app/brush_edit.c:38 app/brush_select.c:135 app/by_color_select.c:664 +#: app/color_notebook.c:187 app/color_picker.c:209 app/color_select.c:205 +#: app/colormap_dialog.i.c:94 app/colormap_dialog.i.c:103 app/crop.c:1027 +#: app/devices.c:124 app/docindexif.c:100 app/errorconsole.c:230 #: app/gdisplay_ops.c:348 app/gradient.c:646 app/gradient_select.c:76 -#: app/histogram_tool.c:262 app/info_window.c:121 app/lc_dialog.c:201 +#: app/histogram_tool.c:262 app/info_window.c:121 app/lc_dialog.c:196 #: app/palette.c:2235 app/palette_select.c:59 app/pattern_select.c:90 -#: app/tips_dialog.c:146 app/tools.c:870 libgimp/gimpfileselection.c:356 +#: app/tips_dialog.c:146 app/tools.c:874 libgimp/gimpfileselection.c:356 #: libgimp/gimpunitmenu.c:518 msgid "Close" msgstr "йд╓╦╓К" @@ -407,7 +407,7 @@ msgid "Brush Editor" msgstr "╔ж╔И╔╥╔╗╔г╔ё╔©" #. brush radius scale -#: app/brush_edit.c:240 app/color_picker.c:164 app/tool_options.c:290 +#: app/brush_edit.c:240 app/color_picker.c:164 app/tool_options.c:284 msgid "Radius:" msgstr "х╬╥б:" @@ -426,46 +426,46 @@ msgstr " msgid "Angle:" msgstr "Ёяеы:" -#: app/brush_select.c:132 app/module_db.c:307 app/palette.c:2243 +#: app/brush_select.c:134 app/module_db.c:307 app/palette.c:2243 #: app/pattern_select.c:89 msgid "Refresh" msgstr "╨ффи╓ъ╧Ч╓ъ" -#: app/brush_select.c:153 +#: app/brush_select.c:155 msgid "Brush Selection" msgstr "╔ж╔И╔╥а╙бР" -#: app/brush_select.c:241 app/pattern_select.c:147 +#: app/brush_select.c:244 app/pattern_select.c:147 msgid "Active" msgstr "м╜╦З" #. Create the opacity scale widget -#: app/brush_select.c:271 app/layers_dialog.c:334 app/tool_options.c:600 +#: app/brush_select.c:274 app/layers_dialog.c:334 app/tool_options.c:593 msgid "Opacity:" msgstr "итф╘люеы:" #. Create the paint mode option menu -#: app/brush_select.c:289 app/layers_dialog.c:307 app/tool_options.c:629 +#: app/brush_select.c:292 app/layers_dialog.c:307 app/tool_options.c:623 msgid "Mode:" msgstr "╔Б║╪╔и:" -#: app/brush_select.c:312 +#: app/brush_select.c:315 msgid "Edit Brush" msgstr "╔ж╔И╔╥йт╫╦" -#: app/brush_select.c:318 +#: app/brush_select.c:321 msgid "New Brush" msgstr "╔ж╔И╔╥╨Ню╝" -#: app/brush_select.c:340 +#: app/brush_select.c:343 msgid "Spacing:" msgstr "╢жЁж:" -#: app/brush_select.c:531 +#: app/brush_select.c:536 msgid "failed to run brush callback function" msgstr "╔ж╔И╔╥╔Ё║╪╔К╔п╔ц╔╞╢ь©Т╓н╪б╧т╓к╪╨гт" -#: app/brush_select.c:1187 +#: app/brush_select.c:1192 msgid "" "We are all fresh out of brush editors today,\n" "please write your own or try back tomorrow\n" @@ -485,7 +485,7 @@ msgstr " msgid "Pattern Fill" msgstr "╔я╔©║╪╔Сеи╓Й" -#: app/bucket_fill.c:156 app/color_picker.c:139 app/tool_options.c:364 +#: app/bucket_fill.c:156 app/color_picker.c:139 app/tool_options.c:358 msgid "Sample Merged" msgstr "╔Л╔╓╔Д║╪╥К╧Г©╖" @@ -494,11 +494,11 @@ msgstr " msgid "Fill Type" msgstr "еи╓Й╓д╓ж╓╥╓н╪ОнЮ" -#: app/bucket_fill.c:241 +#: app/bucket_fill.c:242 msgid "Bucket Fill operation failed." msgstr "еи╓Й╓д╓ж╓╥аЮ╨Н╪╨гт." -#: app/bucket_fill.c:343 +#: app/bucket_fill.c:344 msgid "No available patterns for this operation." msgstr "╩хмя╡дг╫╓й╔я╔©║╪╔С╓╛╓╒╓Й╓ч╓╩╓С." @@ -510,7 +510,7 @@ msgstr " msgid "Add" msgstr "ди╡ц" -#: app/by_color_select.c:544 app/layers_dialog.c:215 app/tool_options.c:797 +#: app/by_color_select.c:544 app/layers_dialog.c:215 app/tool_options.c:784 msgid "Subtract" msgstr "╦╨╩╩" @@ -537,7 +537,7 @@ msgstr " #. The reset push button #: app/by_color_select.c:654 app/curves.c:516 app/file_new_dialog.c:483 -#: app/tools.c:869 app/transform_core.c:116 +#: app/tools.c:873 app/transform_core.c:116 msgid "Reset" msgstr "╔Й╔╩╔ц╔х" @@ -546,13 +546,13 @@ msgid "copy" msgstr "╔Ё╔т║╪" #. formulate the new layer_mask name -#: app/channel.c:199 app/gradient.c:1359 app/layer.c:324 app/layer.c:1485 +#: app/channel.c:199 app/gradient.c:1359 app/layer.c:324 app/layer.c:1486 #, c-format msgid "%s copy" msgstr "%s ╔Ё╔т║╪" #. Create the new channel -#: app/channel.c:503 +#: app/channel.c:521 msgid "Selection Mask" msgstr "а╙бР╔ч╔╧╔╞" @@ -620,39 +620,39 @@ msgstr "" msgid "Delete Channel" msgstr "╔а╔Ц╔С╔м╔К╨О╫Э" -#: app/channels_dialog.c:537 app/menus.c:271 +#: app/channels_dialog.c:537 app/menus.c:273 msgid "/New Channel" msgstr "/©╥╣╛╔а╔Ц╔С╔м╔К" -#: app/channels_dialog.c:540 app/menus.c:272 +#: app/channels_dialog.c:540 app/menus.c:274 msgid "/Raise Channel" msgstr "/╔а╔Ц╔С╔м╔К╬Е╬╨" -#: app/channels_dialog.c:544 app/menus.c:273 +#: app/channels_dialog.c:544 app/menus.c:275 msgid "/Lower Channel" msgstr "/╔а╔Ц╔С╔м╔К╡╪╧ъ" -#: app/channels_dialog.c:548 app/menus.c:274 +#: app/channels_dialog.c:548 app/menus.c:276 msgid "/Duplicate Channel" msgstr "/╔а╔Ц╔С╔м╔Кйёю╫" -#: app/channels_dialog.c:552 app/menus.c:276 +#: app/channels_dialog.c:552 app/menus.c:278 msgid "/Channel to Selection" msgstr "/╔а╔Ц╔С╔м╔К╓Ра╙бРнн╟Х╓ь" -#: app/channels_dialog.c:555 app/menus.c:281 +#: app/channels_dialog.c:555 app/menus.c:283 msgid "/Delete Channel" msgstr "/╔а╔Ц╔С╔м╔К╨О╫Э" -#: app/channels_dialog.c:559 app/menus.c:277 +#: app/channels_dialog.c:559 app/menus.c:279 msgid "/Add to Selection" msgstr "/а╙бРнн╟Х╓к╡ц╓╗╓К" -#: app/channels_dialog.c:560 app/menus.c:278 +#: app/channels_dialog.c:560 app/menus.c:280 msgid "/Subtract From Selection" msgstr "/а╙бРнн╟Х╓╚╓И╟З╓╞" -#: app/channels_dialog.c:561 app/menus.c:279 +#: app/channels_dialog.c:561 app/menus.c:281 msgid "/Intersect With Selection" msgstr "/а╙бРнн╟Х╓х╓н╦Р╓О╓Й" @@ -764,7 +764,7 @@ msgstr " msgid "Highlights" msgstr "╔о╔╓╔И╔╓╔х" -#: app/color_balance.c:299 app/tools.c:501 +#: app/color_balance.c:299 app/tools.c:502 msgid "Color Balance" msgstr "╔╚╔И║╪╔п╔И╔С╔╧" @@ -792,11 +792,11 @@ msgstr " msgid "Preserve Luminosity" msgstr "╣╠еыйщб╦" -#: app/color_notebook.c:115 app/color_select.c:187 +#: app/color_notebook.c:117 app/color_select.c:187 msgid "Color Selection" msgstr "©╖а╙бР" -#: app/color_notebook.c:186 app/color_select.c:206 +#: app/color_notebook.c:188 app/color_select.c:206 msgid "Revert to Old Color" msgstr "╦╣╓н©╖╓клА╓╧" @@ -808,7 +808,7 @@ msgstr " msgid "Sample Average" msgstr "©╖╓Рй©╤я╓Р╪Х╓К" -#: app/color_picker.c:225 app/tools.c:305 +#: app/color_picker.c:225 app/tools.c:306 msgid "Color Picker" msgstr "╔╧╔щ╔╓╔х" @@ -862,7 +862,7 @@ msgid "Indexed Color Palette" msgstr "╔╓╔С╔г╔ц╔╞╔╧©╖╔я╔Л╔ц╔х" #. The GIMP image option menu -#: app/colormap_dialog.i.c:136 app/lc_dialog.c:136 +#: app/colormap_dialog.i.c:136 app/lc_dialog.c:131 msgid "Image:" msgstr "╡ХаЭ:" @@ -870,47 +870,47 @@ msgstr " msgid "Operations" msgstr "аЮ╨Н" -#: app/colormap_dialog.i.c:833 app/lc_dialog.c:644 +#: app/colormap_dialog.i.c:833 app/lc_dialog.c:614 msgid "none" msgstr "╓й╓╥" -#: app/commands.c:332 +#: app/commands.c:342 msgid "Border Selection" msgstr "╠Оа╙бР" -#: app/commands.c:333 +#: app/commands.c:343 msgid "Border selection by:" msgstr "а╙бРнн╟Х╓кбп╓╧╓К╠О╓ниЩ:" -#: app/commands.c:350 +#: app/commands.c:360 msgid "Feather Selection" msgstr "╓э╓╚╓╥╓©а╙бР" -#: app/commands.c:351 +#: app/commands.c:361 msgid "Feather selection by:" msgstr "╠О╓э╓╚╓╥╔╣╔╓╔╨:" -#: app/commands.c:368 +#: app/commands.c:378 msgid "Grow Selection" msgstr "а╙бРнн╟Х╓нЁхбГ" -#: app/commands.c:369 +#: app/commands.c:379 msgid "Grow selection by:" msgstr "а╙бРнн╟Х╓нЁхбГ╔╣╔╓╔╨:" -#: app/commands.c:386 +#: app/commands.c:396 msgid "Shrink Selection" msgstr "а╙бРнн╟Х╓н╫л╬╝" -#: app/commands.c:387 +#: app/commands.c:397 msgid "Shrink selection by:" msgstr "а╙бРнн╟Х╓н╫л╬╝╔╣╔╓╔╨:" -#: app/commands.c:1169 +#: app/commands.c:1179 msgid "Resize Error: Both width and height must be greater than zero." msgstr "╔╣╔╓╔╨йя╧╧╔╗╔И║╪: иЩ╓х╧Б╓╣╓о╓и╓а╓И╓Б0╓Х╓ЙбГ╓╜╓╞╓й╓╠╓Л╓п╓й╓Й╓ч╓╩╓С." -#: app/commands.c:1218 +#: app/commands.c:1228 msgid "Scale Error: Both width and height must be greater than zero." msgstr "ЁхбГ╫л╬╝╔╗╔И║╪: иЩ╓х╧Б╓╣╓о╓и╓а╓И╓Б0╓Х╓ЙбГ╓╜╓╞╓й╓╠╓Л╓п╓й╓Й╓ч╓╩╓С." @@ -966,11 +966,11 @@ msgstr " msgid "Convolve Type" msgstr "аЮ╨Н╓н╪ОнЮ" -#: app/crop.c:170 app/crop.c:1031 +#: app/crop.c:170 app/crop.c:1025 msgid "Crop" msgstr "юз╓Йх╢╓╜" -#: app/crop.c:170 app/crop.c:1032 +#: app/crop.c:170 app/crop.c:1026 msgid "Resize" msgstr "╔╣╔╓╔╨йя╧╧" @@ -996,43 +996,43 @@ msgstr " msgid "Crop: " msgstr "юз╓Йх╢╓╜: " -#: app/crop.c:1011 +#: app/crop.c:1005 msgid "Crop: 0 x 0" msgstr "юз╓Йх╢╓╜: 0 x 0" #. create the info dialog -#: app/crop.c:1039 +#: app/crop.c:1033 msgid "Crop & Resize Information" msgstr "юзх╢╓╜ & ╔╣╔╓╔╨йя╧╧╬ПйС" #. add the information fields -#: app/crop.c:1042 +#: app/crop.c:1036 msgid "Origin X:" msgstr "Ё╚╩оею ╓н X:" -#: app/crop.c:1045 app/file_new_dialog.c:753 app/resize.c:334 app/resize.c:419 -#: app/resize.c:577 app/rotate_tool.c:108 app/scale_tool.c:99 +#: app/crop.c:1039 app/file_new_dialog.c:753 app/resize.c:334 app/resize.c:419 +#: app/resize.c:577 app/rotate_tool.c:109 app/scale_tool.c:99 #: app/shear_tool.c:83 msgid "Y:" msgstr "" #. the pixel size labels -#: app/crop.c:1058 app/file_new_dialog.c:614 app/file_new_dialog.c:632 -#: app/tool_options.c:411 +#: app/crop.c:1052 app/file_new_dialog.c:614 app/file_new_dialog.c:632 +#: app/tool_options.c:405 msgid "Width:" msgstr "иЩ:" -#: app/crop.c:1061 app/file_new_dialog.c:620 app/file_new_dialog.c:638 +#: app/crop.c:1055 app/file_new_dialog.c:620 app/file_new_dialog.c:638 #: app/layers_dialog.c:2954 app/resize.c:245 app/resize.c:270 app/resize.c:514 -#: app/scale_tool.c:78 app/scale_tool.c:85 app/tool_options.c:433 +#: app/scale_tool.c:78 app/scale_tool.c:85 app/tool_options.c:427 msgid "Height:" msgstr "╧Б╓╣:" -#: app/crop.c:1083 +#: app/crop.c:1077 msgid "From Selection" msgstr "а╙бРнн╟Х╓╚╓И" -#: app/crop.c:1089 +#: app/crop.c:1083 msgid "Auto Shrink" msgstr "╪╚ф╟╫л╬╝" @@ -1041,7 +1041,7 @@ msgid "Curves Options" msgstr "╔╚║╪╔ж╔╙╔в╔╥╔Г╔С" #: app/curves.c:404 app/histogram_tool.c:278 app/layers_dialog.c:227 -#: app/levels.c:230 app/paint_funcs.c:97 app/tool_options.c:803 +#: app/levels.c:230 app/paint_funcs.c:97 app/tool_options.c:790 msgid "Value" msgstr "люеы" @@ -1061,7 +1061,7 @@ msgstr " msgid "Free" msgstr "╪╚мЁ╤йюЧ" -#: app/curves.c:550 app/tools.c:576 +#: app/curves.c:550 app/tools.c:577 msgid "Curves" msgstr "╔╚║╪╔ж" @@ -1114,49 +1114,49 @@ msgstr " msgid "There's no selection to remove." msgstr "╨О╫Э╓╧╓Кбп╬щ╓╛а╙бР╓╣╓Л╓ф╓╓╓ч╓╩╓С." -#: app/docindexif.c:75 +#: app/docindexif.c:80 msgid "Open" msgstr "Ё╚╓╞" -#: app/docindexif.c:75 +#: app/docindexif.c:80 msgid "Open a file" msgstr "╔у╔║╔╓╔К╓РЁ╚╓╞" -#: app/docindexif.c:80 +#: app/docindexif.c:85 msgid "Up" msgstr "╬Е╓ь" -#: app/docindexif.c:80 +#: app/docindexif.c:85 msgid "Move the selected entry up in the index" msgstr "╔╓╔С╔г╔ц╔╞╔╧цФ╓га╙бР╓╣╓Л╓©╓Б╓н╓Р╬Е╓ь╟эф╟" -#: app/docindexif.c:85 +#: app/docindexif.c:90 msgid "Down" msgstr "╡╪╓ь" -#: app/docindexif.c:85 +#: app/docindexif.c:90 msgid "Move the selected entry down in the index" msgstr "╔╓╔С╔г╔ц╔╞╔╧цФ╓га╙бР╓╣╓Л╓©╓Б╓н╓Р╡╪╓к╟эф╟" -#: app/docindexif.c:90 +#: app/docindexif.c:95 msgid "Remove" msgstr "╨О╫Э" -#: app/docindexif.c:90 +#: app/docindexif.c:95 msgid "Remove the selected entry from the index" msgstr "╔╓╔С╔г╔ц╔╞╔╧цФ╓га╙бР╓╣╓Л╓©╓Б╓н╓Р╨О╫Э" -#: app/docindexif.c:95 +#: app/docindexif.c:100 msgid "Close the Document Index" msgstr "й╦╫Ялэ╪║╓Рйд╓╦╓К" #. Set the GOWindow title -#: app/docindexif.c:213 +#: app/docindexif.c:218 msgid "Document Index" msgstr "й╦╫Ялэ╪║" #. Set the initial status message -#: app/docindexif.c:219 +#: app/docindexif.c:224 msgid "GTK successfully started" msgstr "GTK ╣╞ф╟ю╝╦Ы" @@ -1182,7 +1182,7 @@ msgid "Hard edge" msgstr "╔о║╪╔и╔╗╔ц╔╦" #. the incremental toggle -#: app/eraser.c:108 app/paintbrush.c:259 +#: app/eraser.c:108 app/paintbrush.c:257 msgid "Incremental" msgstr "╫е╓меи╓Й" @@ -1278,7 +1278,7 @@ msgstr "" msgid "Image Size: %s" msgstr "╡ХаЭ╓н╔╣╔╓╔╨: %s" -#: app/file_new_dialog.c:489 app/gdisplay.c:197 app/preferences_dialog.c:1633 +#: app/file_new_dialog.c:489 app/gdisplay.c:202 app/preferences_dialog.c:1633 msgid "RGB" msgstr "" @@ -1382,12 +1382,12 @@ msgid "File Exists!" msgstr "╔у╔║╔╓╔К╓об╦╨ъ╓╥╓ч╓╧!" #: app/flip_tool.c:71 app/preferences_dialog.c:1588 -#: app/preferences_dialog.c:2296 +#: app/preferences_dialog.c:2290 msgid "Horizontal" msgstr "©Ей©" #: app/flip_tool.c:71 app/preferences_dialog.c:1590 -#: app/preferences_dialog.c:2298 +#: app/preferences_dialog.c:2292 msgid "Vertical" msgstr "©Бд╬" @@ -1416,27 +1416,27 @@ msgstr "" msgid "Cannot properly scanline convert polygon!\n" msgstr "ю╣╬О╓к╔╧╔╜╔Ц╔С╔И╔╓╔С╓Р╔щ╔Й╔╢╔С╓кйя╢╧╓г╓╜╓ч╓╩╓С!\n" -#: app/gdisplay.c:197 +#: app/gdisplay.c:202 msgid "RGB-empty" msgstr "RGB-л╓иа╡Х" -#: app/gdisplay.c:200 +#: app/gdisplay.c:205 msgid "grayscale-empty" msgstr "╔╟╔Л║╪╔╧╔╠║╪╔К-л╓иа╡Х" -#: app/gdisplay.c:200 +#: app/gdisplay.c:205 msgid "grayscale" msgstr "╔╟╔Л║╪╔╧╔╠║╪╔К" -#: app/gdisplay.c:203 +#: app/gdisplay.c:208 msgid "indexed-empty" msgstr "╔╓╔С╔г╔ц╔╞╔╧-л╓иа╡Х" -#: app/gdisplay.c:203 +#: app/gdisplay.c:208 msgid "indexed" msgstr "╔╓╔С╔г╔ц╔╞╔╧" -#: app/gdisplay.c:2099 +#: app/gdisplay.c:2102 msgid "gdisplays_flush() called recursively." msgstr "gdisplays_flush() ╓╛╨ф╣╒е╙╓к╦ф╓с╫п╓╣╓Л╓ч╓╥╓©." @@ -1450,22 +1450,22 @@ msgstr "/ msgid "Changes were made to %s. Close anyway?" msgstr "%s ╓ойя╧╧╓╣╓Л╓ф╓╓╓ч╓╧. йя╧╧╓Рйщб╦╓╩╓╨╓кйд╓╦╓ч╓╧╓╚?" -#: app/gimage_mask.c:212 +#: app/gimage_mask.c:213 msgid "" "Unable to cut/copy because the selected\n" "region is empty." msgstr "а╙бРнн╟Х╓╛╤У╓й╓н╓г╔╚╔ц╔х/╔Ё╔т║╪╓о╧т╓╗╓ч╓╩╓С." -#: app/gimage_mask.c:342 +#: app/gimage_mask.c:343 msgid "Float Selection: No selection to float." msgstr "иБф╟а╙бР: иБф╟╡╫╓╧╓К╓©╓А╓на╙бРнн╟Х╓╛╓╒╓Й╓ч╓╩╓С." #. Create a new layer from the buffer -#: app/gimage_mask.c:353 +#: app/gimage_mask.c:354 msgid "Floated Layer" msgstr "иБф╟╔Л╔╓╔Д║╪" -#: app/gimage_mask.c:490 +#: app/gimage_mask.c:491 msgid "" "The active layer has no alpha channel\n" "to convert to a selection." @@ -1473,7 +1473,7 @@ msgstr "" "╦╫╨ъм╜╦З╓й╔Л╔╓╔Д║╪╓к╓оа╙бРнн╟Х╓кйя╢╧╓╧╓К╓©╓А╓н\n" "╔╒╔К╔у╔║╔а╔Ц╔С╔м╔К╓╛╓╒╓Й╓ч╓╩╓С." -#: app/gimage_mask.c:509 +#: app/gimage_mask.c:510 msgid "" "The active layer has no mask\n" "to convert to a selection." @@ -1481,7 +1481,7 @@ msgstr "" "╦╫╨ъм╜╦З╓й╔Л╔╓╔Д║╪╓к╓оа╙бРнн╟Х╓кйя╢╧╓╧╓К╓©╓А╓н\n" "╔Л╔╓╔Д║╪╔ч╔╧╔╞╓╛╓╒╓Й╓ч╓╩╓С." -#: app/gimage_mask.c:556 +#: app/gimage_mask.c:557 msgid "No selection to stroke!" msgstr "╔╧╔х╔М║╪╔╞иа╡Х╓╧╓Кнн╟Х╓╛а╙бР╓╣╓Л╓ф╓╓╓ч╓╩╓С." @@ -1519,41 +1519,41 @@ msgstr "л╬ msgid "Layer type %d not supported." msgstr "╔Л╔╓╔Д║╪╔©╔╓╔в %d ╓к╓обп╠Ч╓╥╓ф╓╓╓ч╓╩╓С." -#: app/gimpimage.c:596 app/gimpimage.c:690 +#: app/gimpimage.c:642 app/gimpimage.c:740 msgid "gimp_image_apply_image sent illegal parameters" msgstr "gimp_image_apply_image ╓╛итю╣╓й╔я╔И╔А║╪╔©╓РаВ╓Й╓ч╓╥╓©" -#: app/gimpimage.c:1096 +#: app/gimpimage.c:1172 msgid "Unable to project indexed image." msgstr "╔╓╔С╔г╔ц╔╞╔╧╡ХаЭ╓кеЙ╠ф╓г╓╜╓ч╓╩╓С." -#: app/gimpimage.c:1966 +#: app/gimpimage.c:2109 msgid "Layer cannot be raised any further" msgstr "╓Ё╓Л╟й╬Е╔Л╔╓╔Д║╪╓Ра╟лл╓к╟эф╟╓╣╓╩╓И╓Л╓ч╓╩╓С" -#: app/gimpimage.c:2040 +#: app/gimpimage.c:2184 msgid "Layer cannot be lowered any further" msgstr "╓Ё╓Л╟й╬Е╔Л╔╓╔Д║╪╓Ргьлл╓к╟эф╟╓╣╓╩╓И╓Л╓ч╓╩╓С" #. layer_arg is already the top_layer -#: app/gimpimage.c:2069 +#: app/gimpimage.c:2214 msgid "Layer is already on top" msgstr "╔Л╔╓╔Д║╪╓о╢Ш╓к╨га╟лл╓к╓╒╓Й╓ч╓╧" -#: app/gimpimage.c:2074 +#: app/gimpimage.c:2219 msgid "Can't raise Layer without alpha" msgstr "╔╒╔К╔у╔║╔а╔Ц╔С╔м╔К╓нл╣╓╓╔Л╔╓╔Д║╪╓Ра╟лл╓к╓о╫п╓╩╓ч╓╩╓С" #. there is no next layer below layer_arg -#: app/gimpimage.c:2168 +#: app/gimpimage.c:2314 msgid "Layer is already on bottom" msgstr "╔Л╔╓╔Д║╪╓о╢Ш╓к╨ггьлл╓к╓╒╓Й╓ч╓╧" -#: app/gimpimage.c:2181 +#: app/gimpimage.c:2327 msgid "BG has no alpha, layer was placed above" msgstr "гь╥й╓к╓о╔╒╔К╔у╔║╔а╔Ц╔С╔м╔К╓╛л╣╓╞, ╔Л╔╓╔Д║╪╓о╓╫╓на╟╓кцж╓╚╓Л╓ф╓╓╓ч╓╧" -#: app/gimpimage.c:2243 +#: app/gimpimage.c:2390 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." @@ -1561,27 +1561,27 @@ msgstr "" "еЩ╧Г╓╧╓К╓©╓А╓н╡д╩К╔Л╔╓╔Д║╪╓╛б╜╓Й╓ч╓╩╓С.\n" "╬╞╓й╓╞╓х╓БфС╓д╓ои╛мв╓г╓╧." -#: app/gimpimage.c:2321 +#: app/gimpimage.c:2468 msgid "There are not enough visible layers for a merge down." msgstr "╡╪╓н╔Л╔╓╔Д║╪╓х╥К╧Г╓╧╓К╓©╓А╓к╫╫й╛╓й╡д╩К╔Л╔╓╔Д║╪╓╛╓╒╓Й╓ч╓╩╓С." -#: app/gimpimage.c:2432 app/gimpimage.c:2465 +#: app/gimpimage.c:2581 app/gimpimage.c:2614 msgid "gimp_image_merge_layers: could not allocate merge layer" msgstr "gimp_image_merge_layers: еЩ╧Г╔Л╔╓╔Д║╪╓╛ЁД╓ЙеЖ╓ф╓И╓Л╓ч╓╩╓С╓г╓╥╓©" -#: app/gimpimage.c:2504 +#: app/gimpimage.c:2653 msgid "gimp_image_merge_layers attempting to merge incompatible layers\n" msgstr "gimp_image_merge_layers ╓╛ит╢╟а╢╓й╔Л╔╓╔Д║╪╓РеЩ╧Г╓╥╓Х╓╕╓х╓╥╓ч╓╥╓©\n" -#: app/gimpimage.c:2584 +#: app/gimpimage.c:2735 msgid "gimp_image_add_layer: attempt to add layer to wrong image" msgstr "gimp_image_add_layer: итю╣╓й╡ХаЭ╓к╔Л╔╓╔Д║╪╓Р╡ц╓╗╓Х╓╕╓х╓╥╓ч╓╥╓©" -#: app/gimpimage.c:2594 +#: app/gimpimage.c:2745 msgid "gimp_image_add_layer: trying to add layer to image twice" msgstr "gimp_image_add_layer: фСеы╡ХаЭ╓к╔Л╔╓╔Д║╪╓Р╡ц╓╗╓Х╓╕╓х╓╥╓ч╓╥╓©" -#: app/gimpimage.c:2710 +#: app/gimpimage.c:2864 msgid "" "Unable to add a layer mask since\n" "the layer already has one." @@ -1589,7 +1589,7 @@ msgstr "" "╢Ш╓к╔Л╔╓╔Д║╪╔ч╔╧╔╞╓╛╓╒╓К╓н╓г╓Ё╓Л╟й╬Е╔Л╔╓╔Д║╪╔ч╔╧╔╞╓Р\n" "иу╡ц╓╧╓К╩Ж╓о╓г╓╜╓ч╓╩╓С." -#: app/gimpimage.c:2714 +#: app/gimpimage.c:2868 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." @@ -1597,7 +1597,7 @@ msgstr "" "╔╓╔С╔г╔ц╔╞╔╧╡ХаЭцФ╓н╔Л╔╓╔Д║╪╓к╔Л╔╓╔Д║╪╔ч╔╧╔╞╓Р\n" "иу╡ц╓╧╓К╩Ж╓о╓г╓╜╓ч╓╩╓С." -#: app/gimpimage.c:2718 +#: app/gimpimage.c:2872 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." @@ -1605,28 +1605,28 @@ msgstr "" "╔╒╔К╔у╔║╔а╔Ц╔С╔м╔К╓Р╩Щ╓©╓й╓╓╔Л╔╓╔Д║╪╓к\n" "╔Л╔╓╔Д║╪╔ч╔╧╔╞╓Риу╡ц╓╧╓К╩Ж╓о╓г╓╜╓ч╓╩╓С." -#: app/gimpimage.c:2722 +#: app/gimpimage.c:2876 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "╩ьдЙ╓╥╓©╔Л╔╓╔Д║╪╓х╟ш╓КбГ╓╜╓╣╓Р╩Щ╓д╔Л╔╓╔Д║╪╔ч╔╧╔╞╓Риу╡ц╓╧╓К╓Ё╓х╓о╓г╓╜╓ч╓╩╓С." -#: app/gimpimage.c:2826 +#: app/gimpimage.c:2983 msgid "Channel cannot be raised any further" msgstr "╓Ё╓Л╟й╬Е╔а╔Ц╔С╔м╔К╓Р╬Е╬╨╓╣╓╩╓И╓Л╓ч╓╩╓С" -#: app/gimpimage.c:2873 +#: app/gimpimage.c:3031 msgid "Channel cannot be lowered any further" msgstr "╓Ё╓Л╟й╬Е╔а╔Ц╔С╔м╔К╓Р╡╪╧ъ╓╣╓╩╓И╓Л╓ч╓╩╓С" -#: app/gimpimage.c:2893 +#: app/gimpimage.c:3053 msgid "gimp_image_add_channel: attempt to add channel to wrong image" msgstr "gimp_image_add_channel: итю╣╓й╡ХаЭ╓к╔а╔Ц╔С╔м╔К╓Р╡ц╓╗╓Х╓╕╓х╓╥╓ч╓╥╓©" -#: app/gimpimage.c:2903 +#: app/gimpimage.c:3063 msgid "gimp_image_add_channel: trying to add channel to image twice" msgstr "gimp_image_add_channel: фСеы╡ХаЭ╓к╔а╔Ц╔С╔м╔К╓Р╡ц╓╗╓Х╓╕╓х╓╥╓ч╓╥╓©" -#: app/gimpimage.c:3029 app/palette.c:525 app/palette.c:550 app/palette.c:909 +#: app/gimpimage.c:3190 app/palette.c:525 app/palette.c:550 app/palette.c:909 #: app/palette.c:913 app/palette.c:2313 app/palette.c:2995 msgid "Untitled" msgstr "л╬╬нл╓юъдЙ" @@ -1684,41 +1684,46 @@ msgid "Can't write to %s; %s" msgstr "%s ╓к╫Я╓╜╧Ч╓А╓ч╓╩╓С; %s" #. Make a new floating layer -#: app/global_edit.c:284 +#: app/global_edit.c:289 app/global_edit.c:344 app/global_edit.c:354 msgid "Pasted Layer" msgstr "╔з║╪╔╧╔х╓╣╓Л╓©╔Л╔╓╔Д║╪" -#: app/global_edit.c:591 +#: app/global_edit.c:698 msgid "Paste" msgstr "╔з║╪╔╧╔х" +#: app/global_edit.c:699 +#, fuzzy +msgid "Paste Into" +msgstr "/йт╫╦/а╙бРнн╟ХфБ╓к╔з║╪╔╧╔х" + +#: app/global_edit.c:700 +msgid "Paste As New" +msgstr "" + #. Buttons -#: app/global_edit.c:592 app/gradient.c:1477 app/palette.c:1429 +#: app/global_edit.c:704 app/gradient.c:1477 app/palette.c:1429 #: app/palette.c:2179 msgid "Delete" msgstr "╨О╫Э" -#: app/global_edit.c:606 +#: app/global_edit.c:720 msgid "Paste Named Buffer" msgstr "л╬а╟╓Ра╙╓С╓г╔п╔ц╔у╔║╓Р╔з║╪╔╧╔х" -#: app/global_edit.c:618 +#: app/global_edit.c:732 msgid "Select a buffer to paste:" msgstr "╔з║╪╔╧╔х╓╧╓К╔п╔ц╔у╔║╓Ра╙бР:" -#: app/global_edit.c:637 -msgid "Replace Current Selection" -msgstr "╦╫╨ъ╓на╙бРнн╟Х╓Рцж╢╧" - -#: app/global_edit.c:699 +#: app/global_edit.c:820 msgid "Cut Named" msgstr "л╬а╟╓Риу╓╠╓ф╔╚╔ц╔х" -#: app/global_edit.c:700 app/global_edit.c:732 +#: app/global_edit.c:821 app/global_edit.c:853 msgid "Enter a name for this buffer" msgstr "╓Ё╓н╔п╔ц╔у╔║╓кбп╓╧╓Кл╬а╟╓РфЧно╓╥╓ф╡╪╓╣╓╓" -#: app/global_edit.c:731 +#: app/global_edit.c:852 msgid "Copy Named" msgstr "л╬а╟╓Риу╓╠╓ф╔Ё╔т║╪" @@ -1773,7 +1778,7 @@ msgstr " msgid "Gradients: " msgstr "╔╟╔И╔г║╪╔╥╔Г╔С: " -#: app/gradient.c:680 app/gradient_select.c:476 app/paintbrush.c:200 +#: app/gradient.c:680 app/gradient_select.c:476 app/paintbrush.c:204 #: app/palette.c:2833 msgid "Gradient" msgstr "╔╟╔И╔г║╪╔╥╔Г╔С" @@ -2169,7 +2174,7 @@ msgstr " msgid "Percentile:" msgstr "╔я║╪╔╩╔С╔х:" -#: app/histogram_tool.c:296 app/tools.c:606 +#: app/histogram_tool.c:296 app/tools.c:607 msgid "Histogram" msgstr "╔р╔╧╔х╔╟╔И╔Ю" @@ -2213,7 +2218,7 @@ msgstr "" msgid "M" msgstr "" -#: app/hue_saturation.c:394 app/tools.c:531 +#: app/hue_saturation.c:394 app/tools.c:532 msgid "Hue-Saturation" msgstr "©╖аЙ-╨леы" @@ -2223,7 +2228,7 @@ msgstr " #. Create the hue scale widget #: app/hue_saturation.c:466 app/layers_dialog.c:221 app/paint_funcs.c:94 -#: app/tool_options.c:800 +#: app/tool_options.c:787 msgid "Hue" msgstr "©╖аЙ" @@ -2234,7 +2239,7 @@ msgstr " #. Create the saturation scale widget #: app/hue_saturation.c:534 app/layers_dialog.c:223 app/paint_funcs.c:95 -#: app/tool_options.c:801 +#: app/tool_options.c:788 msgid "Saturation" msgstr "╨леы" @@ -2277,7 +2282,7 @@ msgstr " msgid "Resolution:" msgstr "╡РаЭеы:" -#: app/info_window.c:159 app/tool_options.c:455 +#: app/info_window.c:159 app/tool_options.c:449 msgid "Unit:" msgstr "ц╠╟л:" @@ -2664,7 +2669,7 @@ msgid "" "Installation failed. Contact system administrator.\n" msgstr "" -#: app/interface.c:289 +#: app/interface.c:325 msgid "" "Foreground & background colors. The black and white squares reset colors. " "The arrows swap colors. Double click to select a color from a colorrequester." @@ -2672,11 +2677,11 @@ msgstr "" "а╟╥й©╖╓хгь╥й©╖╓г╓╧. ╧У╓хгР╓н╩мЁя╓г©╖╓Р╫И╢Э╡╫╓г╓╜╓ч╓╧. " "лП╟У╓оа╟╥й©╖╓хгь╥й©╖╓Р╦Р╢╧╓╥╓ч╓╧. ╔╞╔Й╔ц╔╞╓╧╓К╓х©╖╓Ра╙бР╓г╓╜╓ч╓╧." -#: app/interface.c:505 +#: app/interface.c:541 msgid "The GIMP" msgstr "" -#: app/interface.c:1276 +#: app/interface.c:1388 msgid "GIMP Message" msgstr "GIMP ╔А╔ц╔╩║╪╔╦" @@ -2697,7 +2702,7 @@ msgid "Channel Ops" msgstr "╔а╔Ц╔С╔м╔КаЮ╨Н" #: app/internal_procs.c:79 app/layers_dialog.c:225 app/paint_funcs.c:96 -#: app/tool_options.c:802 +#: app/tool_options.c:789 msgid "Color" msgstr "©╖" @@ -2766,7 +2771,7 @@ msgstr " msgid "Parasite procedures" msgstr "╔я╔И╔╣╔╓╔х╔в╔М╔╥║╪╔╦╔Ц" -#: app/internal_procs.c:133 app/lc_dialog.c:185 +#: app/internal_procs.c:133 app/lc_dialog.c:180 msgid "Paths" msgstr "╔я╔╧" @@ -2850,43 +2855,43 @@ msgstr "%s msgid "Layer Select" msgstr "╔Л╔╓╔Д║╪а╙бР" -#: app/layers_dialog.c:199 app/paint_funcs.c:83 app/tool_options.c:788 +#: app/layers_dialog.c:199 app/paint_funcs.c:83 app/tool_options.c:775 msgid "Normal" msgstr "и╦╫Ю" -#: app/layers_dialog.c:201 app/paint_funcs.c:84 app/tool_options.c:789 +#: app/layers_dialog.c:201 app/paint_funcs.c:84 app/tool_options.c:776 msgid "Dissolve" msgstr "╬ц╩╤" -#: app/layers_dialog.c:203 app/paint_funcs.c:86 app/tool_options.c:791 +#: app/layers_dialog.c:203 app/paint_funcs.c:86 app/tool_options.c:778 msgid "Multiply (Burn)" msgstr "╬Х╩╩" -#: app/layers_dialog.c:205 app/paint_funcs.c:98 app/tool_options.c:792 +#: app/layers_dialog.c:205 app/paint_funcs.c:98 app/tool_options.c:779 msgid "Divide (Dodge)" msgstr "╫Э╩╩" -#: app/layers_dialog.c:207 app/paint_funcs.c:87 app/tool_options.c:793 +#: app/layers_dialog.c:207 app/paint_funcs.c:87 app/tool_options.c:780 msgid "Screen" msgstr "╔╧╔╞╔Й║╪╔С" -#: app/layers_dialog.c:209 app/paint_funcs.c:88 app/tool_options.c:794 +#: app/layers_dialog.c:209 app/paint_funcs.c:88 app/tool_options.c:781 msgid "Overlay" msgstr "╔╙║╪╔п║╪╔Л╔╓" -#: app/layers_dialog.c:211 app/paint_funcs.c:89 app/tool_options.c:795 +#: app/layers_dialog.c:211 app/paint_funcs.c:89 app/tool_options.c:782 msgid "Difference" msgstr "╨╧й╛" -#: app/layers_dialog.c:213 app/paint_funcs.c:90 app/tool_options.c:796 +#: app/layers_dialog.c:213 app/paint_funcs.c:90 app/tool_options.c:783 msgid "Addition" msgstr "╡ц╩╩" -#: app/layers_dialog.c:217 app/paint_funcs.c:92 app/tool_options.c:798 +#: app/layers_dialog.c:217 app/paint_funcs.c:92 app/tool_options.c:785 msgid "Darken Only" msgstr "хФЁс(╟е)" -#: app/layers_dialog.c:219 app/paint_funcs.c:93 app/tool_options.c:799 +#: app/layers_dialog.c:219 app/paint_funcs.c:93 app/tool_options.c:786 msgid "Lighten Only" msgstr "хФЁс(лю)" @@ -2926,83 +2931,83 @@ msgstr " msgid "Keep Trans." msgstr "ф╘люйщ╦Н" -#: app/layers_dialog.c:947 app/menus.c:243 +#: app/layers_dialog.c:947 app/menus.c:245 msgid "/Stack/Previous Layer" msgstr "/╫е╓й╓Й/а╟лл╓н╔Л╔╓╔Д║╪" -#: app/layers_dialog.c:949 app/menus.c:244 +#: app/layers_dialog.c:949 app/menus.c:246 msgid "/Stack/Next Layer" msgstr "/╫е╓й╓Й/гьлл╓н╔Л╔╓╔Д║╪" -#: app/layers_dialog.c:952 app/menus.c:245 +#: app/layers_dialog.c:952 app/menus.c:247 msgid "/Stack/Raise Layer" msgstr "/╫е╓й╓Й/╔Л╔╓╔Д║╪╓Ра╟лл╓ь" -#: app/layers_dialog.c:957 app/menus.c:246 +#: app/layers_dialog.c:957 app/menus.c:248 msgid "/Stack/Lower Layer" msgstr "/╫е╓й╓Й/╔Л╔╓╔Д║╪╓Ргьлл╓ь" -#: app/layers_dialog.c:962 app/menus.c:247 +#: app/layers_dialog.c:962 app/menus.c:249 msgid "/Stack/Layer to Top" msgstr "/╫е╓й╓Й/╔Л╔╓╔Д║╪╓Р╨га╟лл╓ь" -#: app/layers_dialog.c:964 app/menus.c:248 +#: app/layers_dialog.c:964 app/menus.c:250 msgid "/Stack/Layer to Bottom" msgstr "/╫е╓й╓Й/╔Л╔╓╔Д║╪╓Р╨ггьлл╓ь" -#: app/layers_dialog.c:967 app/menus.c:242 +#: app/layers_dialog.c:967 app/menus.c:244 msgid "/New Layer" msgstr "/©╥╣╛╔Л╔╓╔Д║╪" -#: app/layers_dialog.c:970 app/menus.c:249 +#: app/layers_dialog.c:970 app/menus.c:251 msgid "/Duplicate Layer" msgstr "/╔Л╔╓╔Д║╪йёю╫" -#: app/layers_dialog.c:974 app/menus.c:250 +#: app/layers_dialog.c:974 app/menus.c:252 msgid "/Anchor Layer" msgstr "/╔Л╔╓╔Д║╪╓Р╦гдЙ" -#: app/layers_dialog.c:978 app/menus.c:251 +#: app/layers_dialog.c:978 app/menus.c:253 msgid "/Delete Layer" msgstr "/╔Л╔╓╔Д║╪╨О╫Э" -#: app/layers_dialog.c:981 app/menus.c:253 +#: app/layers_dialog.c:981 app/menus.c:255 msgid "/Scale Layer" msgstr "/╔Л╔╓╔Д║╪ЁхбГ╫л╬╝" -#: app/layers_dialog.c:982 app/menus.c:254 +#: app/layers_dialog.c:982 app/menus.c:256 msgid "/Resize Layer" msgstr "/╔Л╔╓╔Д║╪╔╣╔╓╔╨йя╧╧" -#: app/layers_dialog.c:984 app/menus.c:256 +#: app/layers_dialog.c:984 app/menus.c:258 msgid "/Merge Visible Layers" msgstr "/╡д╩К╔Л╔╓╔Д║╪╓неЩ╧Г" -#: app/layers_dialog.c:986 app/menus.c:257 +#: app/layers_dialog.c:986 app/menus.c:259 msgid "/Merge Down" msgstr "/╡╪╓н╔Л╔╓╔Д║╪╓х╥К╧Г" -#: app/layers_dialog.c:987 app/menus.c:258 +#: app/layers_dialog.c:987 app/menus.c:260 msgid "/Flatten Image" msgstr "/╡ХаЭ╓неЩ╧Г" -#: app/layers_dialog.c:989 app/menus.c:260 +#: app/layers_dialog.c:989 app/menus.c:262 msgid "/Add Layer Mask" msgstr "/╔Л╔╓╔Д║╪╔ч╔╧╔╞ди╡ц" -#: app/layers_dialog.c:991 app/menus.c:261 +#: app/layers_dialog.c:991 app/menus.c:263 msgid "/Apply Layer Mask" msgstr "/╔Л╔╓╔Д║╪╔ч╔╧╔╞е╛мя" -#: app/layers_dialog.c:993 app/menus.c:262 +#: app/layers_dialog.c:993 app/menus.c:264 msgid "/Alpha to Selection" msgstr "/итф╘люиТй╛╓Ра╙бРнн╟Х╓к" -#: app/layers_dialog.c:995 app/menus.c:263 +#: app/layers_dialog.c:995 app/menus.c:265 msgid "/Mask to Selection" msgstr "/╔Л╔╓╔Д║╪╔ч╔╧╔╞╓Ра╙бРнн╟Х╓к" -#: app/layers_dialog.c:997 app/menus.c:264 +#: app/layers_dialog.c:997 app/menus.c:266 msgid "/Add Alpha Channel" msgstr "/╔╒╔К╔у╔║╔а╔Ц╔С╔м╔К╓Рди╡ц" @@ -3111,20 +3116,20 @@ msgstr " msgid "Final, anchored layer should be:" msgstr "╨г╫╙е╙╓к╦гдЙ╓╣╓Л╓©╔Л╔╓╔Д║╪╓о:" -#: app/lc_dialog.c:116 +#: app/lc_dialog.c:111 msgid "Layers & Channels" msgstr "╔Л╔╓╔Д║╪ & ╔а╔Ц╔С╔м╔К" #. The Auto-button -#: app/lc_dialog.c:155 +#: app/lc_dialog.c:150 msgid "Auto" msgstr "╪╚ф╟" -#: app/lc_dialog.c:175 +#: app/lc_dialog.c:170 msgid "Layers" msgstr "╔Л╔╓╔Д║╪" -#: app/lc_dialog.c:180 +#: app/lc_dialog.c:175 msgid "Channels" msgstr "╔а╔Ц╔С╔м╔К" @@ -3140,7 +3145,7 @@ msgstr " msgid "Auto Levels" msgstr "╪╚ф╟╔Л╔ы╔К" -#: app/levels.c:351 app/tools.c:591 +#: app/levels.c:351 app/tools.c:592 msgid "Levels" msgstr "╔Л╔ы╔К" @@ -3404,440 +3409,445 @@ msgid "/Edit/Paste Into" msgstr "/йт╫╦/а╙бРнн╟ХфБ╓к╔з║╪╔╧╔х" #: app/menus.c:106 -msgid "/Edit/Clear" -msgstr "/йт╫╦/╬ц╣Н" +#, fuzzy +msgid "/Edit/Paste As New" +msgstr "/йт╫╦/л╬а╟╓Ра╙╓С╓г╔з║╪╔╧╔х" -#: app/menus.c:107 -msgid "/Edit/Fill" -msgstr "/йт╫╦/еи╓Й╓д╓ж╓╥" - -#: app/menus.c:108 -msgid "/Edit/Stroke" -msgstr "/йт╫╦/╔╧╔х╔М║╪╔╞иа╡Х" - -#: app/menus.c:109 -msgid "/Edit/Undo" -msgstr "/йт╫╦/╪Х╓Й╬ц╓╥" - -#: app/menus.c:110 -msgid "/Edit/Redo" -msgstr "/йт╫╦/╓Д╓Й╓й╓╙╓╥" - -#: app/menus.c:111 app/menus.c:115 +#: app/menus.c:107 app/menus.c:113 app/menus.c:117 msgid "/Edit/---" msgstr "/йт╫╦/---" +#: app/menus.c:108 +msgid "/Edit/Clear" +msgstr "/йт╫╦/╬ц╣Н" + +#: app/menus.c:109 +msgid "/Edit/Fill" +msgstr "/йт╫╦/еи╓Й╓д╓ж╓╥" + +#: app/menus.c:110 +msgid "/Edit/Stroke" +msgstr "/йт╫╦/╔╧╔х╔М║╪╔╞иа╡Х" + +#: app/menus.c:111 +msgid "/Edit/Undo" +msgstr "/йт╫╦/╪Х╓Й╬ц╓╥" + #: app/menus.c:112 +msgid "/Edit/Redo" +msgstr "/йт╫╦/╓Д╓Й╓й╓╙╓╥" + +#: app/menus.c:114 msgid "/Edit/Cut Named" msgstr "/йт╫╦/л╬а╟╓Риу╓╠╓ф╔╚╔ц╔х" -#: app/menus.c:113 +#: app/menus.c:115 msgid "/Edit/Copy Named" msgstr "/йт╫╦/л╬а╟╓Риу╓╠╓ф╔Ё╔т║╪" -#: app/menus.c:114 +#: app/menus.c:116 msgid "/Edit/Paste Named" msgstr "/йт╫╦/л╬а╟╓Ра╙╓С╓г╔з║╪╔╧╔х" -#: app/menus.c:117 +#: app/menus.c:119 msgid "/Select/tearoff1" msgstr "/а╙бР/tearoff1" -#: app/menus.c:118 +#: app/menus.c:120 msgid "/Select/Invert" msgstr "/а╙бР/х©е╬" -#: app/menus.c:119 +#: app/menus.c:121 msgid "/Select/All" msgstr "/а╙бР/а╢╓ф╓Ра╙бР" -#: app/menus.c:120 +#: app/menus.c:122 msgid "/Select/None" msgstr "/а╙бР/╓й╓╥" -#: app/menus.c:121 +#: app/menus.c:123 msgid "/Select/Float" msgstr "/а╙бР/иБф╟╡╫" -#: app/menus.c:122 +#: app/menus.c:124 msgid "/Select/Sharpen" msgstr "/а╙бР/╔╥╔Ц║╪╔в╡╫" -#: app/menus.c:123 +#: app/menus.c:125 msgid "/Select/Border" msgstr "/а╙бР/╠О╪Х╓Й" -#: app/menus.c:124 +#: app/menus.c:126 msgid "/Select/Feather" msgstr "/а╙бР/╤╜Ё╕╓Р╓э╓╚╓╧" -#: app/menus.c:125 +#: app/menus.c:127 msgid "/Select/Grow" msgstr "/а╙бР/а╙бРнн╟Х╓нЁхбГ" -#: app/menus.c:126 +#: app/menus.c:128 msgid "/Select/Shrink" msgstr "/а╙бР/а╙бРнн╟Х╓н╫л╬╝" -#: app/menus.c:127 +#: app/menus.c:129 msgid "/Select/Save To Channel" msgstr "/а╙бР/©╥╣╛╔а╔Ц╔С╔м╔К╓кйщб╦" -#: app/menus.c:129 +#: app/menus.c:131 msgid "/View/tearoff1" msgstr "/и╫╪╗/tearoff1" -#: app/menus.c:130 +#: app/menus.c:132 msgid "/View/Zoom In" msgstr "/и╫╪╗/ЁхбГи╫╪╗" -#: app/menus.c:131 +#: app/menus.c:133 msgid "/View/Zoom Out" msgstr "/и╫╪╗/╫л╬╝и╫╪╗" -#: app/menus.c:132 +#: app/menus.c:134 msgid "/View/Zoom/16:1" msgstr "/и╫╪╗/ЁхбГн╗/16:1" -#: app/menus.c:133 +#: app/menus.c:135 msgid "/View/Zoom/8:1" msgstr "/и╫╪╗/ЁхбГн╗/8:1" -#: app/menus.c:134 +#: app/menus.c:136 msgid "/View/Zoom/4:1" msgstr "/и╫╪╗/ЁхбГн╗/4:1" -#: app/menus.c:135 +#: app/menus.c:137 msgid "/View/Zoom/2:1" msgstr "/и╫╪╗/ЁхбГн╗/2:1" -#: app/menus.c:136 +#: app/menus.c:138 msgid "/View/Zoom/1:1" msgstr "/и╫╪╗/ЁхбГн╗/1:1" -#: app/menus.c:137 +#: app/menus.c:139 msgid "/View/Zoom/1:2" msgstr "/и╫╪╗/ЁхбГн╗/1:2" -#: app/menus.c:138 +#: app/menus.c:140 msgid "/View/Zoom/1:4" msgstr "/и╫╪╗/ЁхбГн╗/1:4" -#: app/menus.c:139 +#: app/menus.c:141 msgid "/View/Zoom/1:8" msgstr "/и╫╪╗/ЁхбГн╗/1:8" -#: app/menus.c:140 +#: app/menus.c:142 msgid "/View/Zoom/1:16" msgstr "/и╫╪╗/ЁхбГн╗/1:16" -#: app/menus.c:141 +#: app/menus.c:143 msgid "/View/Dot for dot" msgstr "/и╫╪╗/ею╓кею╓Рбп╠Ч╓╣╓╩╓К" -#: app/menus.c:142 +#: app/menus.c:144 msgid "/View/Window Info..." msgstr "/и╫╪╗/╔╕╔ё╔С╔и╔╕╬ПйС..." -#: app/menus.c:144 app/menus.c:150 +#: app/menus.c:146 app/menus.c:152 msgid "/View/---" msgstr "/и╫╪╗/---" -#: app/menus.c:145 +#: app/menus.c:147 msgid "/View/Toggle Selection" msgstr "/и╫╪╗/а╙бРнн╟Х╓ни╫╪╗" -#: app/menus.c:146 +#: app/menus.c:148 msgid "/View/Toggle Rulers" msgstr "/и╫╪╗/╓Б╓н╓╣╓╥" -#: app/menus.c:147 +#: app/menus.c:149 msgid "/View/Toggle Statusbar" msgstr "/и╫╪╗/╬Убжи╫╪╗" -#: app/menus.c:148 +#: app/menus.c:150 msgid "/View/Toggle Guides" msgstr "/и╫╪╗/╔╛╔╓╔ии╫╪╗" -#: app/menus.c:149 +#: app/menus.c:151 msgid "/View/Snap To Guides" msgstr "/и╫╪╗/╔╛╔╓╔и╓к╔╧╔й╔ц╔в" -#: app/menus.c:152 +#: app/menus.c:154 msgid "/View/New View" msgstr "/и╫╪╗/©╥╣╛и╫╪╗" -#: app/menus.c:153 +#: app/menus.c:155 msgid "/View/Shrink Wrap" msgstr "/и╫╪╗/╡ХаЭ╓нбГ╓╜╓╣╓наК╓ги╫╪╗" -#: app/menus.c:155 +#: app/menus.c:157 msgid "/Image/tearoff1" msgstr "/╡ХаЭ/tearoff1" -#: app/menus.c:156 +#: app/menus.c:158 msgid "/Image/Colors/tearoff1" msgstr "/╡ХаЭ/©╖/tearoff1" -#: app/menus.c:157 +#: app/menus.c:159 msgid "/Image/Colors/Equalize" msgstr "/╡ХаЭ/©╖/й©╫Ю╡╫" -#: app/menus.c:158 +#: app/menus.c:160 msgid "/Image/Colors/Invert" msgstr "/╡ХаЭ/©╖/х©е╬" -#: app/menus.c:159 +#: app/menus.c:161 msgid "/Image/Colors/---" msgstr "/╡ХаЭ/©╖/---" -#: app/menus.c:160 +#: app/menus.c:162 msgid "/Image/Colors/Desaturate" msgstr "/╡ХаЭ/©╖/ц╕©╖" -#: app/menus.c:161 +#: app/menus.c:163 msgid "/Image/Channel Ops/tearoff1" msgstr "/╡ХаЭ/╔а╔Ц╔С╔м╔КаЮ╨Н/tearoff1" -#: app/menus.c:162 +#: app/menus.c:164 msgid "/Image/Channel Ops/Duplicate" msgstr "/╡ХаЭ/╔а╔Ц╔С╔м╔КаЮ╨Н/йёю╫" -#: app/menus.c:163 +#: app/menus.c:165 msgid "/Image/Channel Ops/Offset" msgstr "/╡ХаЭ/╔а╔Ц╔С╔м╔КаЮ╨Н/╔╙╔у╔╩╔ц╔х" -#: app/menus.c:164 +#: app/menus.c:166 msgid "/Image/Alpha/tearoff1" msgstr "/╡ХаЭ/╔╒╔К╔у╔║/tearoff1" -#: app/menus.c:165 +#: app/menus.c:167 msgid "/Image/Alpha/Add Alpha Channel" msgstr "/╡ХаЭ/╔╒╔К╔у╔║/╔╒╔К╔у╔║╔а╔Ц╔С╔м╔К╓Рди╡ц" -#: app/menus.c:167 app/menus.c:171 app/menus.c:174 +#: app/menus.c:169 app/menus.c:173 app/menus.c:176 msgid "/Image/---" msgstr "/╡ХаЭ/---" -#: app/menus.c:168 +#: app/menus.c:170 msgid "/Image/RGB" msgstr "/╡ХаЭ/RGB" -#: app/menus.c:169 +#: app/menus.c:171 msgid "/Image/Grayscale" msgstr "/╡ХаЭ/╔╟╔Л║╪╔╧╔╠║╪╔К" -#: app/menus.c:170 +#: app/menus.c:172 msgid "/Image/Indexed" msgstr "/╡ХаЭ/╔╓╔С╔г╔ц╔╞╔╧" -#: app/menus.c:172 +#: app/menus.c:174 msgid "/Image/Resize" msgstr "/╡ХаЭ/╔╣╔╓╔╨йя╧╧" -#: app/menus.c:173 +#: app/menus.c:175 msgid "/Image/Scale" msgstr "/╡ХаЭ/ЁхбГ╫л╬╝" -#: app/menus.c:176 +#: app/menus.c:178 msgid "/Layers/tearoff1" msgstr "/╔Л╔╓╔Д║╪/tearoff1" -#: app/menus.c:177 +#: app/menus.c:179 msgid "/Layers/Layers & Channels..." msgstr "/╔Л╔╓╔Д║╪/╔Л╔╓╔Д║╪ & ╔а╔Ц╔С╔м╔К..." -#: app/menus.c:178 +#: app/menus.c:180 msgid "/Layers/Stack/tearoff1" msgstr "/╔Л╔╓╔Д║╪/╫е╓й╓Й/tearoff1" -#: app/menus.c:179 +#: app/menus.c:181 msgid "/Layers/Stack/Previous Layer" msgstr "/╔Л╔╓╔Д║╪/╫е╓й╓Й/╔Л╔╓╔Д║╪╓Ра╟лл╓ь" -#: app/menus.c:180 +#: app/menus.c:182 msgid "/Layers/Stack/Next Layer" msgstr "/╔Л╔╓╔Д║╪/╫е╓й╓Й/╔Л╔╓╔Д║╪╓Ра╟лл╓ь" -#: app/menus.c:181 +#: app/menus.c:183 msgid "/Layers/Stack/Raise Layer" msgstr "/╔Л╔╓╔Д║╪/╫е╓й╓Й/╔Л╔╓╔Д║╪╓Ра╟лл╓ь" -#: app/menus.c:182 +#: app/menus.c:184 msgid "/Layers/Stack/Lower Layer" msgstr "/╔Л╔╓╔Д║╪/╫е╓й╓Й/╔Л╔╓╔Д║╪╓Ргьлл╓ь" -#: app/menus.c:183 +#: app/menus.c:185 msgid "/Layers/Stack/Layer to Top" msgstr "/╔Л╔╓╔Д║╪/╫е╓й╓Й/╔Л╔╓╔Д║╪╓Р╨га╟лл╓ь" -#: app/menus.c:184 +#: app/menus.c:186 msgid "/Layers/Stack/Layer to Bottom" msgstr "/╔Л╔╓╔Д║╪/╫е╓й╓Й/╔Л╔╓╔Д║╪╓Р╨ггьлл╓ь" -#: app/menus.c:185 app/menus.c:192 +#: app/menus.c:187 app/menus.c:194 msgid "/Layers/---" msgstr "/╔Л╔╓╔Д║╪/---" -#: app/menus.c:186 +#: app/menus.c:188 msgid "/Layers/Anchor Layer" msgstr "/╔Л╔╓╔Д║╪/╔Л╔╓╔Д║╪╓Р╦гдЙ" -#: app/menus.c:187 +#: app/menus.c:189 msgid "/Layers/Merge Visible Layers" msgstr "/╔Л╔╓╔Д║╪/╡д╩К╔Л╔╓╔Д║╪╓неЩ╧Г" -#: app/menus.c:188 +#: app/menus.c:190 msgid "/Layers/Flatten Image" msgstr "/╔Л╔╓╔Д║╪/╡ХаЭ╓неЩ╧Г" -#: app/menus.c:189 +#: app/menus.c:191 msgid "/Layers/Alpha To Selection" msgstr "/╔Л╔╓╔Д║╪/итф╘люиТй╛╓Ра╙бРнн╟Х╓к" -#: app/menus.c:190 +#: app/menus.c:192 msgid "/Layers/Mask To Selection" msgstr "/╔Л╔╓╔Д║╪/╔Л╔╓╔Д║╪╔ч╔╧╔╞╓Ра╙бРнн╟Х╓к" -#: app/menus.c:191 +#: app/menus.c:193 msgid "/Layers/Add Alpha Channel" msgstr "/╔Л╔╓╔Д║╪/╔╒╔К╔у╔║╔а╔Ц╔С╔м╔К╓Рди╡ц" -#: app/menus.c:194 +#: app/menus.c:196 msgid "/Tools/tearoff1" msgstr "/ф╩╤Я/tearoff1" -#: app/menus.c:195 +#: app/menus.c:197 msgid "/Tools/Toolbox" msgstr "/ф╩╤Я/ф╩╤Ях╒" -#: app/menus.c:196 +#: app/menus.c:198 msgid "/Tools/Default Colors" msgstr "/ф╩╤Я/╨г╫И╓н©╖╓клА╓╧" -#: app/menus.c:197 +#: app/menus.c:199 msgid "/Tools/Swap Colors" msgstr "/ф╩╤Я/а╟╥й©╖╓хгь╥й©╖╓н╦Р╢╧" -#: app/menus.c:198 +#: app/menus.c:200 msgid "/Tools/---" msgstr "/ф╩╤Я/---" #. the tool entries themselves are built on the fly -#: app/menus.c:202 +#: app/menus.c:204 msgid "/Filters/tearoff1" msgstr "" -#: app/menus.c:203 app/plug_in.c:1285 +#: app/menus.c:205 app/plug_in.c:1285 msgid "/Filters/Repeat last" msgstr "/Filters/╨фе╛мя" -#: app/menus.c:204 app/plug_in.c:1286 +#: app/menus.c:206 app/plug_in.c:1286 msgid "/Filters/Re-show last" msgstr "/Filters/╨ф╪б╧т" -#: app/menus.c:205 +#: app/menus.c:207 msgid "/Filters/---" msgstr "" -#: app/menus.c:207 +#: app/menus.c:209 msgid "/Script-Fu/tearoff1" msgstr "" -#: app/menus.c:208 +#: app/menus.c:210 msgid "/Script-Fu/" msgstr "" -#: app/menus.c:210 +#: app/menus.c:212 msgid "/Dialogs/tearoff1" msgstr "/╔ю╔╓╔╒╔М╔╟/tearoff1" -#: app/menus.c:211 +#: app/menus.c:213 msgid "/Dialogs/Brushes..." msgstr "/╔ю╔╓╔╒╔М╔╟/╔ж╔И╔╥..." -#: app/menus.c:212 +#: app/menus.c:214 msgid "/Dialogs/Patterns..." msgstr "/╔ю╔╓╔╒╔М╔╟/╔я╔©║╪╔С..." -#: app/menus.c:213 +#: app/menus.c:215 msgid "/Dialogs/Palette..." msgstr "/╔ю╔╓╔╒╔М╔╟/╔я╔Л╔ц╔х..." -#: app/menus.c:214 +#: app/menus.c:216 msgid "/Dialogs/Gradient..." msgstr "/╔ю╔╓╔╒╔М╔╟/╔╟╔И╔г║╪╔╥╔Г╔С..." -#: app/menus.c:215 +#: app/menus.c:217 msgid "/Dialogs/Layers & Channels..." msgstr "/╔ю╔╓╔╒╔М╔╟/╔Л╔╓╔Д║╪ & ╔а╔Ц╔С╔м╔К..." -#: app/menus.c:216 +#: app/menus.c:218 msgid "/Dialogs/Indexed Palette..." msgstr "/╔ю╔╓╔╒╔М╔╟/╔╓╔С╔г╔ц╔╞╔╧╔я╔Л╔ц╔х..." -#: app/menus.c:217 +#: app/menus.c:219 msgid "/Dialogs/Tool Options..." msgstr "/╔ю╔╓╔╒╔М╔╟/ф╩╤Я╔╙╔в╔╥╔Г╔С..." -#: app/menus.c:218 +#: app/menus.c:220 msgid "/Dialogs/Input Devices..." msgstr "/╔ю╔╓╔╒╔М╔╟/фЧно╔г╔п╔╓╔╧..." -#: app/menus.c:219 +#: app/menus.c:221 msgid "/Dialogs/Device Status..." msgstr "/╔ю╔╓╔╒╔М╔╟/╔г╔п╔╓╔╧╓н╬Убж..." -#: app/menus.c:226 +#: app/menus.c:228 msgid "/Automatic" msgstr "/╪╚ф╟" -#: app/menus.c:234 +#: app/menus.c:236 msgid "/By extension" msgstr "/Ёхд╔╩р╓г╪╚ф╟х╫йл" -#: app/menus.c:288 +#: app/menus.c:290 msgid "/New Path" msgstr "/©╥╣╛╔я╔╧" -#: app/menus.c:289 +#: app/menus.c:291 msgid "/Duplicate Path" msgstr "/╔я╔╧йёю╫" -#: app/menus.c:290 +#: app/menus.c:292 msgid "/Path to Selection" msgstr "/╔я╔╧╓Ра╙бРнн╟Х╓ь" -#: app/menus.c:291 +#: app/menus.c:293 msgid "/Stroke Path" msgstr "/╔я╔╧╓Р╔╧╔х╔М║╪╔╞иа╡Х" -#: app/menus.c:292 +#: app/menus.c:294 msgid "/Delete Path" msgstr "/╔я╔╧╨О╫Э" -#: app/menus.c:294 +#: app/menus.c:296 msgid "/Copy Path" msgstr "/╔я╔╧йёю╫" -#: app/menus.c:295 +#: app/menus.c:297 msgid "/Paste Path" msgstr "/╔я╔╧╔з║╪╔╧╔х" -#: app/menus.c:296 +#: app/menus.c:298 msgid "/Import Path" msgstr "/╔╓╔С╔щ║╪╔х╔я╔╧" -#: app/menus.c:297 +#: app/menus.c:299 msgid "/Export Path" msgstr "/╔╗╔╞╔╧╔щ║╪╔х╔я╔╧" -#: app/menus.c:589 +#: app/menus.c:596 #, c-format msgid "Error opening file: %s\n" msgstr "╔у╔║╔╓╔К╓РЁ╚╓╠╓ч╓╩╓С: %s\n" -#: app/menus.c:611 app/menus.c:692 +#: app/menus.c:618 app/menus.c:699 #, c-format msgid "/File/MRU%02d" msgstr "/╔у╔║╔╓╔К/MRU%02d" @@ -3846,83 +3856,83 @@ msgstr "/ msgid "Module DB" msgstr "╔Б╔╦╔Е║╪╔К DB" -#: app/module_db.c:555 +#: app/module_db.c:567 #, c-format msgid "load module: \"%s\"\n" msgstr "╔Б╔╦╔Е║╪╔Кфи╓ъ╧Ч╓ъ: \"%s\"\n" -#: app/module_db.c:562 +#: app/module_db.c:574 #, c-format msgid "skipping module: \"%s\"\n" msgstr "╔Б╔╦╔Е║╪╔К╓Р╔╧╔╜╔ц╔в: \"%s\"\n" -#: app/module_db.c:586 +#: app/module_db.c:598 #, c-format msgid "module load error: %s: %s" msgstr "╔Б╔╦╔Е║╪╔Кфи╓ъ╧Ч╓ъ╔╗╔И║╪: %s: %s" -#: app/module_db.c:604 +#: app/module_db.c:616 msgid "missing module_init() symbol" msgstr "module_init() ╔╥╔С╔э╔К╓╛╦╚еЖ╓©╓И╓й╓╓" -#: app/module_db.c:607 +#: app/module_db.c:619 #, c-format msgid "%s: module_init() symbol not found" msgstr "%s: module_init() ╔╥╔С╔э╔К╓╛╦╚еЖ╓©╓И╓й╓╓" -#: app/module_db.c:760 +#: app/module_db.c:772 msgid "" msgstr "<╔Б╔╦╔Е║╪╔К л╣╓╥>" -#: app/module_db.c:773 app/module_db.c:782 +#: app/module_db.c:785 app/module_db.c:794 msgid "on disk" msgstr "╔г╔ё╔╧╔╞╬Е" -#: app/module_db.c:773 +#: app/module_db.c:785 msgid "only in memory" msgstr "╔А╔Б╔Й║╪цФ╓н╓ъ" -#: app/module_db.c:782 +#: app/module_db.c:794 msgid "nowhere (click 'refresh')" msgstr "хСб╦╨ъ ('╨ффи╓ъ╧Ч╓ъ' ╓Р╔╞╔Й╔ц╔╞)" -#: app/module_db.c:818 +#: app/module_db.c:830 msgid "Load" msgstr "фи╓ъ╧Ч╓ъ" -#: app/module_db.c:827 +#: app/module_db.c:839 msgid "Unload" msgstr "╔╒╔С╔М║╪╔и" -#: app/module_db.c:840 +#: app/module_db.c:852 msgid "Purpose: " msgstr "лэе╙: " -#: app/module_db.c:841 +#: app/module_db.c:853 msgid "Author: " msgstr "╨Н╪т: " -#: app/module_db.c:842 +#: app/module_db.c:854 msgid "Version: " msgstr "╔п║╪╔╦╔Г╔С: " -#: app/module_db.c:843 +#: app/module_db.c:855 msgid "Copyright: " msgstr "цЬ╨Н╦╒и╫╪╗: " -#: app/module_db.c:844 +#: app/module_db.c:856 msgid "Date: " msgstr "фЭиу: " -#: app/module_db.c:845 +#: app/module_db.c:857 msgid "Location: " msgstr "╬Л╫Й: " -#: app/module_db.c:846 +#: app/module_db.c:858 msgid "State: " msgstr "╬Убж: " -#: app/module_db.c:865 +#: app/module_db.c:877 msgid "Autoload during startup" msgstr "╣╞ф╟╩Ч╓к╪╚ф╟фи╓ъ╧Ч╓ъ" @@ -3938,7 +3948,7 @@ msgstr "м╜ msgid "set_undo_tiles: undo_tiles is null" msgstr "set_undo_tiles: undo_tiles ╓╛ null ╓ю" -#: app/paint_funcs.c:85 app/tool_options.c:790 +#: app/paint_funcs.c:85 app/tool_options.c:777 msgid "Behind" msgstr "╦Е╓М" @@ -3950,7 +3960,7 @@ msgstr " msgid "Erase" msgstr "╬ц╓╥╔╢╔Ю" -#: app/paintbrush.c:154 +#: app/paintbrush.c:153 msgid "Once Forward" msgstr "ц╠фх╫ГйЩ╦Ч" @@ -3958,26 +3968,27 @@ msgstr "ц╠ msgid "Once Backward" msgstr "ц╠фх╣уйЩ╦Ч" -#: app/paintbrush.c:156 +#: app/paintbrush.c:157 msgid "Loop Sawtooth" msgstr "╣Ь╩У╥╚╓Ййж╓╥" -#: app/paintbrush.c:157 +#: app/paintbrush.c:159 msgid "Loop Triangle" msgstr "╩╟Ёягх╥╚╓Ййж╓╥" -#: app/paintbrush.c:181 +#: app/paintbrush.c:185 msgid "Fade Out:" msgstr "╔у╔╖║╪╔и╔╒╔╕╔х:" -#: app/paintbrush.c:208 +#: app/paintbrush.c:212 msgid "Length:" msgstr "д╧╓╣:" -#. the radio frame and box -#: app/paintbrush.c:233 -msgid "Gradient Type" -msgstr "╔╟╔И╔г║╪╔╥╔Г╔С╪О" +#. the gradient type +#: app/paintbrush.c:237 +#, fuzzy +msgid "Type:" +msgstr "╪ОнЮ" #: app/palette.c:484 #, c-format @@ -4270,7 +4281,7 @@ msgstr " msgid "Posterize does not operate on indexed drawables." msgstr "╔╓╔С╔г╔ц╔╞╔╧╡ХаЭ╓кбп╓╥╓ф╓о╔щ╔╧╔©║╪╡╫╓наЮ╨Н╓о╓г╓╜╓ч╓╩╓С." -#: app/posterize.c:211 app/tools.c:546 +#: app/posterize.c:211 app/tools.c:547 msgid "Posterize" msgstr "╔щ╔╧╔©║╪╡╫" @@ -4355,7 +4366,7 @@ msgstr " msgid "Default Image Resolution and Resolution Unit" msgstr "╔г╔у╔╘╔К╔х╡ХаЭ╡РаЭеы╓хц╠╟л" -#: app/preferences_dialog.c:1592 app/preferences_dialog.c:2300 +#: app/preferences_dialog.c:1592 app/preferences_dialog.c:2294 msgid "dpi" msgstr "" @@ -4526,7 +4537,7 @@ msgstr " msgid "Tool Options Settings" msgstr "ф╩╤Я╔╙╔в╔╥╔Г╔СюъдЙ" -#: app/preferences_dialog.c:1941 app/tools.c:880 +#: app/preferences_dialog.c:1941 app/tools.c:884 msgid "Tool Options" msgstr "ф╩╤Я╔╙╔в╔╥╔Г╔С" @@ -4538,208 +4549,204 @@ msgstr " msgid "Use Global Paint Options" msgstr "╔╟╔М║╪╔п╔КЁ╗и╝╔╙╔в╔╥╔Г╔С╓Р╩х╓╕" -#: app/preferences_dialog.c:1968 -msgid "(Switching this off does not yet work consistently.)" -msgstr "(╓Ё╓Л╓Р off ╓к╓╥╓ф╓Б╓╕╓ч╓╞ф╞╓╚╓й╓╓)" - -#: app/preferences_dialog.c:1980 +#: app/preferences_dialog.c:1974 msgid "Display brush and pattern indicators on Toolbar" msgstr "╔д║╪╔К╔п║╪╬Е╓к╔ж╔И╔╥╓х╔я╔©║╪╔С╓Ри╫╪╗╓╧╓К" -#: app/preferences_dialog.c:1994 +#: app/preferences_dialog.c:1988 msgid "Environment Settings" msgstr "╢д╤╜юъдЙ" -#: app/preferences_dialog.c:1996 +#: app/preferences_dialog.c:1990 msgid "Environment" msgstr "╢д╤╜" -#: app/preferences_dialog.c:2003 +#: app/preferences_dialog.c:1997 msgid "Resource Consumption" msgstr "╔Й╔╫║╪╔╧╬цхЯ" -#: app/preferences_dialog.c:2012 +#: app/preferences_dialog.c:2006 msgid "Conservative Memory Usage" msgstr "╔А╔Б╔Й╩хмя╓Р╓╠╓а╓К" -#: app/preferences_dialog.c:2063 app/preferences_dialog.c:2104 +#: app/preferences_dialog.c:2057 app/preferences_dialog.c:2098 msgid "Bytes" msgstr "" -#: app/preferences_dialog.c:2064 app/preferences_dialog.c:2105 +#: app/preferences_dialog.c:2058 app/preferences_dialog.c:2099 msgid "KiloBytes" msgstr "KBytes" -#: app/preferences_dialog.c:2065 app/preferences_dialog.c:2106 +#: app/preferences_dialog.c:2059 app/preferences_dialog.c:2100 msgid "MegaBytes" msgstr "MBytes" -#: app/preferences_dialog.c:2070 +#: app/preferences_dialog.c:2064 msgid "Tile Cache Size:" msgstr "╔©╔╓╔К╔╜╔Ц╔ц╔╥╔Е╔╣╔╓╔╨:" -#: app/preferences_dialog.c:2111 +#: app/preferences_dialog.c:2105 msgid "Maximum Image Size:" msgstr "╨гбГ╡ХаЭ╔╣╔╓╔╨:" -#: app/preferences_dialog.c:2121 +#: app/preferences_dialog.c:2115 msgid "Number of Processors to Use:" msgstr "╩хмя╓╧╓К╔в╔М╔╩╔ц╔╣╓н©Т:" -#: app/preferences_dialog.c:2125 +#: app/preferences_dialog.c:2119 msgid "8-Bit Displays" msgstr "8-Bit и╫╪╗╩Ч" -#: app/preferences_dialog.c:2136 +#: app/preferences_dialog.c:2130 msgid "Install Colormap" msgstr "╪╚а╟╓н╔╚╔И║╪╔ч╔ц╔в╓Р╩хмя" -#: app/preferences_dialog.c:2145 +#: app/preferences_dialog.c:2139 msgid "Colormap Cycling" msgstr "╔╚╔И║╪╔ч╔ц╔в╓н╔╣╔╓╔╞╔Й╔С╔╟" -#: app/preferences_dialog.c:2154 +#: app/preferences_dialog.c:2148 msgid "File Previews / Thumbnails" msgstr "╔у╔║╔╓╔К╔в╔Л╔с╔Е║╪ / ╢й╟ви╫╪╗" -#: app/preferences_dialog.c:2181 +#: app/preferences_dialog.c:2175 msgid "Try to Write a Thumbnail File:" msgstr "╢й╟ви╫╪╗╔у╔║╔╓╔К╫Я╓╜╫п╓╥:" -#: app/preferences_dialog.c:2186 +#: app/preferences_dialog.c:2180 msgid "Session Management" msgstr "╔╩╔ц╔╥╔Г╔С╢имЩ" -#: app/preferences_dialog.c:2188 +#: app/preferences_dialog.c:2182 msgid "Session" msgstr "╔╩╔ц╔╥╔Г╔С" -#: app/preferences_dialog.c:2195 +#: app/preferences_dialog.c:2189 msgid "Window Positions" msgstr "╔╕╔ё╔С╔и╔╕╟лцж" -#: app/preferences_dialog.c:2204 +#: app/preferences_dialog.c:2198 msgid "Save Window Positions on Exit" msgstr "╫╙н╩╩Ч╓к╔╕╔ё╔С╔и╔╕╓н╟лцж╓Рйщб╦╓╧╓К" -#: app/preferences_dialog.c:2218 +#: app/preferences_dialog.c:2212 msgid "Clear Saved Window Positions" msgstr "йщб╦╓╣╓Л╓ф╓╓╓К╔╕╔ё╔С╔и╔╕╟лцж╓Р╬ц╣Н" -#: app/preferences_dialog.c:2225 +#: app/preferences_dialog.c:2219 msgid "Always Try to Restore Session" msgstr "╔╩╔ц╔╥╔Г╔С╓Р╨фЁ╚╓╧╓К╓Х╓╕╓к╓╧╓К" -#: app/preferences_dialog.c:2234 +#: app/preferences_dialog.c:2228 msgid "Devices" msgstr "╔г╔п╔╓╔╧╓н╬Убж" -#: app/preferences_dialog.c:2243 +#: app/preferences_dialog.c:2237 msgid "Save Device Status on Exit" msgstr "╫╙н╩╩Ч╓к╔г╔п╔╓╔╧╓н╬Убж╓Рйщб╦╓╧╓К" -#: app/preferences_dialog.c:2254 +#: app/preferences_dialog.c:2248 msgid "Monitor Information" msgstr "╔Б╔к╔©║╪╬ПйС" -#: app/preferences_dialog.c:2256 +#: app/preferences_dialog.c:2250 msgid "Monitor" msgstr "╔Б╔к╔©║╪" -#: app/preferences_dialog.c:2263 +#: app/preferences_dialog.c:2257 msgid "Get Monitor Resolution" msgstr "╔Б╔к╔©║╪╡РаЭеы╓Р" -#: app/preferences_dialog.c:2278 +#: app/preferences_dialog.c:2272 #, c-format msgid "(Currently %d x %d dpi)" msgstr "(╦╫╨ъ %d x %d dpi)" -#: app/preferences_dialog.c:2325 +#: app/preferences_dialog.c:2319 msgid "From X Server" msgstr "X ╔╣║╪╔п╓╚╓Ифю╓К" -#: app/preferences_dialog.c:2340 +#: app/preferences_dialog.c:2334 msgid "Manually:" msgstr "╪╚й╛╓гюъдЙ╓╧╓К:" -#: app/preferences_dialog.c:2353 +#: app/preferences_dialog.c:2347 msgid "Directories Settings" msgstr "╔г╔ё╔Л╔╞╔х╔Й╓нюъдЙ" -#: app/preferences_dialog.c:2355 +#: app/preferences_dialog.c:2349 msgid "Directories" msgstr "╔г╔ё╔Л╔╞╔х╔Й" -#: app/preferences_dialog.c:2368 +#: app/preferences_dialog.c:2362 msgid "Temp Dir:" msgstr "╔ф╔С╔щ╔И╔Й:" -#: app/preferences_dialog.c:2368 +#: app/preferences_dialog.c:2362 msgid "Select Temp Dir" msgstr "╔ф╔С╔щ╔И╔Й Dir ╓Ра╙бР" -#: app/preferences_dialog.c:2369 +#: app/preferences_dialog.c:2363 msgid "Swap Dir:" msgstr "╔╧╔О╔ц╔в:" -#: app/preferences_dialog.c:2369 +#: app/preferences_dialog.c:2363 msgid "Select Swap Dir" msgstr "╔╧╔О╔ц╔в Dir ╓Ра╙бР" -#: app/preferences_dialog.c:2401 +#: app/preferences_dialog.c:2395 msgid "Brushes Directories" msgstr "╔ж╔И╔╥╔г╔ё╔Л╔╞╔х╔Й" -#: app/preferences_dialog.c:2401 +#: app/preferences_dialog.c:2395 msgid "Select Brushes Dir" msgstr "╔ж╔И╔╥ Dir ╓Ра╙бР" -#: app/preferences_dialog.c:2403 +#: app/preferences_dialog.c:2397 msgid "Patterns Directories" msgstr "╔я╔©║╪╔С╔г╔ё╔Л╔╞╔х╔Й" -#: app/preferences_dialog.c:2403 +#: app/preferences_dialog.c:2397 msgid "Select Patterns Dir" msgstr "╔я╔©║╪╔С Dir ╓Ра╙бР" -#: app/preferences_dialog.c:2405 +#: app/preferences_dialog.c:2399 msgid "Palettes Directories" msgstr "╔я╔Л╔ц╔х╔г╔ё╔Л╔╞╔х╔Й" -#: app/preferences_dialog.c:2405 +#: app/preferences_dialog.c:2399 msgid "Select Palettes Dir" msgstr "╔я╔Л╔ц╔х Dir ╓Ра╙бР" -#: app/preferences_dialog.c:2407 +#: app/preferences_dialog.c:2401 msgid "Gradients Directories" msgstr "╔╟╔И╔г║╪╔╥╔Г╔С╔г╔ё╔Л╔╞╔х╔Й" -#: app/preferences_dialog.c:2407 +#: app/preferences_dialog.c:2401 msgid "Select Gradients Dir" msgstr "╔╟╔И╔г║╪╔╥╔Г╔С Dir ╓Ра╙бР" -#: app/preferences_dialog.c:2409 +#: app/preferences_dialog.c:2403 msgid "Plug-Ins" msgstr "╔в╔И╔╟╔╓╔С" -#: app/preferences_dialog.c:2409 +#: app/preferences_dialog.c:2403 msgid "Plug-Ins Directories" msgstr "╔в╔И╔╟╔╓╔С╔г╔ё╔Л╔╞╔х╔Й" -#: app/preferences_dialog.c:2409 +#: app/preferences_dialog.c:2403 msgid "Select Plug-Ins Dir" msgstr "╔в╔И╔╟╔╓╔С Dir ╓Ра╙бР" -#: app/preferences_dialog.c:2411 +#: app/preferences_dialog.c:2405 msgid "Modules" msgstr "╔Б╔╦╔Е║╪╔К" -#: app/preferences_dialog.c:2411 +#: app/preferences_dialog.c:2405 msgid "Modules Directories" msgstr "╔Б╔╦╔Е║╪╔К╔г╔ё╔Л╔╞╔х╔Й" -#: app/preferences_dialog.c:2411 +#: app/preferences_dialog.c:2405 msgid "Select Modules Dir" msgstr "╔Б╔╦╔Е║╪╔К Dir ╓Ра╙бР" @@ -4834,11 +4841,11 @@ msgstr " msgid "Rotation Information" msgstr "╡Се╬╬ПйС" -#: app/rotate_tool.c:105 +#: app/rotate_tool.c:106 msgid "Center X:" msgstr "цФ©╢╨би╦ X:" -#: app/rotate_tool.c:400 +#: app/rotate_tool.c:401 msgid "Rotating..." msgstr "╡Се╬..." @@ -4886,7 +4893,7 @@ msgstr " msgid "Text Tool Options" msgstr "й╦╩З╔д║╪╔К╔╙╔в╔╥╔Г╔С" -#: app/text_tool.c:168 app/tool_options.c:323 +#: app/text_tool.c:168 app/tool_options.c:317 msgid "Antialiasing" msgstr "╔╒╔С╔а╔╗╔╓╔Й╔╒╔╥╔С╔╟" @@ -4938,7 +4945,7 @@ msgstr " msgid "Threshold does not operate on indexed drawables." msgstr "╔╓╔С╔г╔ц╔╞╔╧иа╡Хбп╬щ╓к╓оОГцмаЮ╨Н╓о╓г╓╜╓ч╓╩╓С." -#: app/threshold.c:291 app/tools.c:561 +#: app/threshold.c:291 app/tools.c:562 msgid "Threshold" msgstr "ОГцм" @@ -5001,413 +5008,413 @@ msgstr "" "╔г║╪╔©╔г╔ё╔Л╔╞╔х╔Й╓к╓╒╓К╓о╓╨╓г╓╧. GIMP ╓╛ю╣╓╥╓╞\n" "╔╓╔С╔╧╔х║╪╔К╓╣╓Л╓ф╓╓╓К╓╚Ёнг╖╓╥╓ф╓╞╓ю╓╣╓╓. " -#: app/tools.c:80 +#: app/tools.c:81 msgid "Rect Select" msgstr "╤К╥аа╙бР" -#: app/tools.c:82 +#: app/tools.c:83 msgid "/Tools/Rect Select" msgstr "/ф╩╤Я/╤К╥аа╙бР" -#: app/tools.c:85 +#: app/tools.c:86 msgid "Select rectangular regions" msgstr "╤К╥анн╟Х╓Ра╙бР╓╧╓К" -#: app/tools.c:95 +#: app/tools.c:96 msgid "Ellipse Select" msgstr "бй╠ъа╙бР" -#: app/tools.c:97 +#: app/tools.c:98 msgid "/Tools/Ellipse Select" msgstr "/ф╩╤Я/бй╠ъа╙бР" -#: app/tools.c:100 +#: app/tools.c:101 msgid "Select elliptical regions" msgstr "╠ъ╥анн╟Х╓Ра╙бР╓╧╓К" -#: app/tools.c:110 +#: app/tools.c:111 msgid "Free Select" msgstr "╪╚мЁа╙бР" -#: app/tools.c:112 +#: app/tools.c:113 msgid "/Tools/Free Select" msgstr "/ф╩╤Я/╪╚мЁа╙бР" -#: app/tools.c:115 +#: app/tools.c:116 msgid "Select hand-drawn regions" msgstr "╪Й╫Я╓╜╓гнн╟Ха╙бР" -#: app/tools.c:125 +#: app/tools.c:126 msgid "Fuzzy Select" msgstr "╔у╔║╔╦║╪а╙бР" -#: app/tools.c:127 +#: app/tools.c:128 msgid "/Tools/Fuzzy Select" msgstr "/ф╩╤Я/╔у╔║╔╦║╪а╙бР" -#: app/tools.c:130 +#: app/tools.c:131 msgid "Select contiguous regions" msgstr "ныюэ(©╖)нн╟Х╓на╙бР" -#: app/tools.c:140 +#: app/tools.c:141 msgid "Bezier Select" msgstr "╔ы╔╦╔╗а╙бР" -#: app/tools.c:142 +#: app/tools.c:143 msgid "/Tools/Bezier Select" msgstr "/ф╩╤Я/╔ы╔╦╔╗а╙бР" -#: app/tools.c:145 +#: app/tools.c:146 msgid "Select regions using Bezier curves" msgstr "╔ы╔╦╔╗╤йюЧ╓к╓Х╓Кнн╟Ха╙бР" -#: app/tools.c:155 +#: app/tools.c:156 msgid "Intelligent Scissors" msgstr "еег╬╓п╓╣╓ъ" -#: app/tools.c:157 +#: app/tools.c:158 msgid "/Tools/Intelligent Scissors" msgstr "/ф╩╤Я/еег╬╓п╓╣╓ъ" -#: app/tools.c:160 +#: app/tools.c:161 msgid "Select shapes from image" msgstr "╡ХаЭ╓╚╓И╓н╥а╬Уа╙бР" -#: app/tools.c:170 +#: app/tools.c:171 msgid "Move" msgstr "╟эф╟" -#: app/tools.c:172 +#: app/tools.c:173 msgid "/Tools/Move" msgstr "/ф╩╤Я/╟эф╟" -#: app/tools.c:175 +#: app/tools.c:176 msgid "Move layers & selections" msgstr "╔Л╔╓╔Д║╪╓ч╓©╓оа╙бРнн╟Х╓н╟эф╟" -#: app/tools.c:185 +#: app/tools.c:186 msgid "Magnify" msgstr "цН╓А╓╛╓м" -#: app/tools.c:187 +#: app/tools.c:188 msgid "/Tools/Magnify" msgstr "/ф╩╤Я/цН╓А╓╛╓м" -#: app/tools.c:190 +#: app/tools.c:191 msgid "Zoom in & out" msgstr "╔╨║╪╔Ю╔╓╔С & ╔╨║╪╔Ю╔╒╔╕╔х" -#: app/tools.c:200 +#: app/tools.c:201 msgid "Crop & Resize" msgstr "юзх╢╓╜ & ╔╣╔╓╔╨йя╧╧" -#: app/tools.c:202 +#: app/tools.c:203 msgid "/Tools/Crop & Resize" msgstr "/ф╩╤Я/юз╓Йх╢╓╜ & ╔╣╔╓╔╨йя╧╧" -#: app/tools.c:205 +#: app/tools.c:206 msgid "Crop or resize the image" msgstr "╡ХаЭ╓Рюз╓Йх╢╓╓╓©╓ЙбГ╓╜╓╣╓Рйя╓╗╓©╓Й╓╧╓К" #. the first radio frame and box, for transform type -#: app/tools.c:215 app/tools.c:230 app/tools.c:245 app/tools.c:260 +#: app/tools.c:216 app/tools.c:231 app/tools.c:246 app/tools.c:261 #: app/transform_core.c:125 app/transform_tool.c:224 msgid "Transform" msgstr "йя╥а" -#: app/tools.c:217 +#: app/tools.c:218 msgid "/Tools/Transform" msgstr "/ф╩╤Я/йя╥а" -#: app/tools.c:220 +#: app/tools.c:221 msgid "Transform the layer or selection" msgstr "╔Л╔╓╔Д║╪╓Да╙бРнн╟Х╓Рйя╥а╓╧╓К" -#: app/tools.c:275 +#: app/tools.c:276 msgid "Flip" msgstr "х©е╬" -#: app/tools.c:277 +#: app/tools.c:278 msgid "/Tools/Flip" msgstr "/ф╩╤Я/х©е╬" -#: app/tools.c:280 +#: app/tools.c:281 msgid "Flip the layer or selection" msgstr "╔Л╔╓╔Д║╪╓Да╙бРнн╟Х╓Рх©е╬╓╣╓╩╓К" -#: app/tools.c:290 +#: app/tools.c:291 msgid "Text" msgstr "й╦╩З" -#: app/tools.c:292 +#: app/tools.c:293 msgid "/Tools/Text" msgstr "/ф╩╤Я/й╦╩З" -#: app/tools.c:295 +#: app/tools.c:296 msgid "Add text to the image" msgstr "╡ХаЭ╓кй╦╩З╓Рди╡ц" -#: app/tools.c:307 +#: app/tools.c:308 msgid "/Tools/Color Picker" msgstr "/ф╩╤Я/╔╧╔щ╔╓╔х" -#: app/tools.c:310 +#: app/tools.c:311 msgid "Pick colors from the image" msgstr "╡ХаЭ╓╚╓И©╖╓Ра╙╓с╫п╓╧" -#: app/tools.c:320 +#: app/tools.c:321 msgid "Bucket Fill" msgstr "еи╓Й╓д╓ж╓╥" -#: app/tools.c:322 +#: app/tools.c:323 msgid "/Tools/Bucket Fill" msgstr "/ф╩╤Я/еи╓Й╓д╓ж╓╥" -#: app/tools.c:325 +#: app/tools.c:326 msgid "Fill with a color or pattern" msgstr "©╖╓Д╔я╔©║╪╔С╓геи╓Й╓д╓ж╓╧" -#: app/tools.c:335 +#: app/tools.c:336 msgid "Blend" msgstr "╔ж╔Л╔С╔и" -#: app/tools.c:337 +#: app/tools.c:338 msgid "/Tools/Blend" msgstr "/ф╩╤Я/╔ж╔Л╔С╔и" -#: app/tools.c:340 +#: app/tools.c:341 msgid "Fill with a color gradient" msgstr "╔╟╔И╔г║╪╔╥╔Г╔С╓Рмя╓╓╓феи╓Й╓д╓ж╓╧" -#: app/tools.c:350 +#: app/tools.c:351 msgid "Pencil" msgstr "╠Ти╝" -#: app/tools.c:352 +#: app/tools.c:353 msgid "/Tools/Pencil" msgstr "/ф╩╤Я/╠Ти╝" -#: app/tools.c:355 +#: app/tools.c:356 msgid "Draw sharp pencil strokes" msgstr "╔╥╔Ц║╪╔в╔з╔С╔╥╔К╓гюЧ╓Р╟З╓╞" -#: app/tools.c:365 +#: app/tools.c:366 msgid "Paintbrush" msgstr "Ё╗и╝" -#: app/tools.c:367 +#: app/tools.c:368 msgid "/Tools/Paintbrush" msgstr "/ф╩╤Я/Ё╗и╝" -#: app/tools.c:370 +#: app/tools.c:371 msgid "Paint fuzzy brush strokes" msgstr "Ё╗и╝╓гюЧ╓Р╟З╓╞" -#: app/tools.c:380 +#: app/tools.c:381 msgid "Eraser" msgstr "╬ц╓╥╔╢╔Ю" -#: app/tools.c:382 +#: app/tools.c:383 msgid "/Tools/Eraser" msgstr "/ф╩╤Я/╬ц╓╥╔╢╔Ю" -#: app/tools.c:385 +#: app/tools.c:386 msgid "Erase to background or transparency" msgstr "╬ц╓╥╔╢╔Ю╓ггь╥й©╖╓Дф╘лю╓клА╓╧" -#: app/tools.c:395 +#: app/tools.c:396 msgid "Airbrush" msgstr "╔╗╔╒╔ж╔И╔╥" -#: app/tools.c:397 +#: app/tools.c:398 msgid "/Tools/Airbrush" msgstr "/ф╩╤Я/╔╗╔╒╔ж╔И╔╥" -#: app/tools.c:400 +#: app/tools.c:401 msgid "Airbrush with variable pressure" msgstr "╟╣нод╢ю╟╡дг╫╓й╔╗╔╒╔ж╔И╔╥" -#: app/tools.c:410 +#: app/tools.c:411 msgid "Clone" msgstr "╔╧╔©╔С╔в" -#: app/tools.c:412 +#: app/tools.c:413 msgid "/Tools/Clone" msgstr "/ф╩╤Я/╔╧╔©╔С╔в" -#: app/tools.c:415 +#: app/tools.c:416 msgid "Paint using patterns or image regions" msgstr "╔я╔©║╪╔С╓╒╓К╓╓╓о╡ХаЭ╓н╟ЛиТ╓геи╓К" -#: app/tools.c:425 +#: app/tools.c:426 msgid "Convolve" msgstr "©╖╨╝╓╪" -#: app/tools.c:427 +#: app/tools.c:428 msgid "/Tools/Convolve" msgstr "/ф╩╤Я/©╖╨╝╓╪" -#: app/tools.c:430 +#: app/tools.c:431 msgid "Blur or sharpen" msgstr "╓э╓╚╓╧/╔╥╔Ц║╪╔в╓к╓╧╓К" -#: app/tools.c:440 +#: app/tools.c:441 msgid "Ink" msgstr "╔╓╔С╔╞" -#: app/tools.c:442 +#: app/tools.c:443 msgid "/Tools/Ink" msgstr "/ф╩╤Я/╔╓╔С╔╞" -#: app/tools.c:445 +#: app/tools.c:446 msgid "Draw in ink" msgstr "╔╓╔С╔╞╓гиа╓╞" -#: app/tools.c:455 app/tools.c:460 +#: app/tools.c:456 app/tools.c:461 msgid "Dodge or Burn" msgstr "╬ф╓╜╧Ч╓ъ" -#: app/tools.c:457 +#: app/tools.c:458 msgid "/Tools/DodgeBurn" msgstr "/ф╩╤Я/╬ф╓╜╧Ч╓ъ" -#: app/tools.c:470 app/tools.c:475 +#: app/tools.c:471 app/tools.c:476 msgid "Smudge" msgstr "╓╥╓ъ" -#: app/tools.c:472 +#: app/tools.c:473 msgid "/Tools/Smudge" msgstr "/ф╩╤Я/╓╥╓ъ" -#: app/tools.c:486 +#: app/tools.c:487 msgid "By Color Select" msgstr "©╖╓к╓Х╓Ка╙бР" -#: app/tools.c:488 +#: app/tools.c:489 msgid "/Select/By Color..." msgstr "/а╙бР/©╖╓к╓Х╓Ка╙бР..." -#: app/tools.c:503 +#: app/tools.c:504 msgid "/Image/Colors/Color Balance" msgstr "/╡ХаЭ/©╖/╔п╔И╔С╔╧" -#: app/tools.c:518 +#: app/tools.c:519 msgid "/Image/Colors/Brightness-Contrast" msgstr "/╡ХаЭ/©╖/люеы-╔Ё╔С╔х╔И╔╧╔х" -#: app/tools.c:533 +#: app/tools.c:534 msgid "/Image/Colors/Hue-Saturation" msgstr "/╡ХаЭ/©╖/©╖аЙ-╨леы" -#: app/tools.c:548 +#: app/tools.c:549 msgid "/Image/Colors/Posterize" msgstr "/╡ХаЭ/©╖/╔щ╔╧╔©║╪╡╫" -#: app/tools.c:563 +#: app/tools.c:564 msgid "/Image/Colors/Threshold" msgstr "/╡ХаЭ/©╖/ОГцм" -#: app/tools.c:578 +#: app/tools.c:579 msgid "/Image/Colors/Curves" msgstr "/╡ХаЭ/©╖/╔╚║╪╔ж" -#: app/tools.c:593 +#: app/tools.c:594 msgid "/Image/Colors/Levels" msgstr "/╡ХаЭ/©╖/╔Л╔ы╔К" -#: app/tools.c:608 +#: app/tools.c:609 msgid "/Image/Histogram" msgstr "/╡ХаЭ/╔р╔╧╔х╔╟╔И╔Ю" -#: app/tool_options.c:212 app/tool_options.c:686 +#: app/tool_options.c:206 app/tool_options.c:688 msgid "This tool has no options." msgstr "╓Ё╓н╔д║╪╔К╓к╓о╔╙╔в╔╥╔Г╔С╓о╓╒╓Й╓ч╓╩╓С." -#: app/tool_options.c:236 +#: app/tool_options.c:230 msgid "Rectangular Select Options" msgstr "╤К╥аа╙бР╔╙╔в╔╥╔Г╔С" -#: app/tool_options.c:238 +#: app/tool_options.c:232 msgid "Elliptical Selection Options" msgstr "бй╠ъ╥аа╙бР╔╙╔в╔╥╔Г╔С" -#: app/tool_options.c:240 +#: app/tool_options.c:234 msgid "Free-hand Selection Options" msgstr "╪╚мЁа╙бР╔╙╔в╔╥╔Г╔С" -#: app/tool_options.c:242 +#: app/tool_options.c:236 msgid "Fuzzy Selection Options" msgstr "╔у╔║╔╦║╪а╙бР╔╙╔в╔╥╔Г╔С" -#: app/tool_options.c:244 +#: app/tool_options.c:238 msgid "Bezier Selection Options" msgstr "╔ы╔╦╔╗а╙бР╔╙╔в╔╥╔Г╔С" -#: app/tool_options.c:246 +#: app/tool_options.c:240 msgid "Intelligent Scissors Options" msgstr "еег╬╓п╓╣╓ъ╔╙╔в╔╥╔Г╔С" -#: app/tool_options.c:248 +#: app/tool_options.c:242 msgid "By-Color Select Options" msgstr "©╖╓га╙бР╔╙╔в╔╥╔Г╔С" -#: app/tool_options.c:249 +#: app/tool_options.c:243 msgid "ERROR: Unknown Selection Type" msgstr "╔╗╔И║╪: итлю╓йа╙бР╪О" -#: app/tool_options.c:279 +#: app/tool_options.c:273 msgid "Feather" msgstr "╓э╓╚╓╧" -#: app/tool_options.c:387 +#: app/tool_options.c:381 msgid "Fixed size / aspect ratio" msgstr "╦гдЙ╔╣╔╓╔╨ / ╫д╡ёхФ" -#: app/tool_options.c:556 +#: app/tool_options.c:552 msgid "Bucket Fill Options" msgstr "еи╓Й╓д╓ж╓╥╔╙╔в╔╥╔Г╔С" -#: app/tool_options.c:558 +#: app/tool_options.c:554 msgid "Blend Options" msgstr "╔ж╔Л╔С╔и╔╙╔в╔╥╔Г╔С" -#: app/tool_options.c:560 +#: app/tool_options.c:556 msgid "Pencil Options" msgstr "╠Ти╝╔╙╔в╔╥╔Г╔С" -#: app/tool_options.c:562 +#: app/tool_options.c:558 msgid "Paintbrush Options" msgstr "Ё╗и╝╔╙╔в╔╥╔Г╔С" -#: app/tool_options.c:564 +#: app/tool_options.c:560 msgid "Erazer Options" msgstr "╬ц╓╥╔╢╔Ю╔╙╔в╔╥╔Г╔С" -#: app/tool_options.c:566 +#: app/tool_options.c:562 msgid "Airbrush Options" msgstr "╔╗╔╒╔ж╔И╔╥╔╙╔в╔╥╔Г╔С" -#: app/tool_options.c:568 +#: app/tool_options.c:564 msgid "Clone Tool Options" msgstr "╔╧╔©╔С╔в╔╙╔в╔╥╔Г╔С" -#: app/tool_options.c:570 +#: app/tool_options.c:566 msgid "Convolver Options" msgstr "©╖╨╝╓╪╔╙╔в╔╥╔Г╔С" -#: app/tool_options.c:572 +#: app/tool_options.c:568 msgid "Ink Options" msgstr "╔╓╔С╔╞╔╙╔в╔╥╔Г╔С" -#: app/tool_options.c:574 +#: app/tool_options.c:570 msgid "Dodge or Burn Options" msgstr "╬ф╓╜╧Ч╓ъ╔╙╔в╔╥╔Г╔С" -#: app/tool_options.c:576 +#: app/tool_options.c:572 msgid "Smudge Options" msgstr "╓╥╓ъ╔╙╔в╔╥╔Г╔С" -#: app/tool_options.c:577 +#: app/tool_options.c:573 msgid "ERROR: Unknown Paint Type" msgstr "╔╗╔И║╪: итлю╓йеи╓Й╪О" @@ -5431,11 +5438,11 @@ msgstr "" "╔Л╔╓╔Д║╪╔ч╔╧╔╞╓Р╩Щ╓д╔Л╔╓╔Д║╪╓к╓о\n" "йя╥ааЮ╨Н╓╛╓г╓╜╓ч╓╩╓С." -#: app/transform_core.c:1135 +#: app/transform_core.c:1140 msgid "homogeneous coordinate = 0...\n" msgstr "ф╠╟ЛйЩ╦Ч = 0...\n" -#: app/transform_core.c:1390 +#: app/transform_core.c:1395 msgid "Transformation" msgstr "йя╥а" @@ -5626,7 +5633,7 @@ msgstr " msgid "Select" msgstr "а╙бР" -#: libgimp/gimpenv.c:81 +#: libgimp/gimpenv.c:82 msgid "warning: no home directory." msgstr "╥ы╧П: ╔ш║╪╔Ю╔г╔ё╔Л╔╞╔х╔Й╓╛╓╒╓Й╓ч╓╩╓С" @@ -5742,6 +5749,15 @@ msgstr ") msgid "No previous regular expression" msgstr "╓ч╓юю╣╣╛и╫╦╫╓╛╩хмя╓╣╓Л╓ф╓╓╓ч╓╩╓С" +#~ msgid "Replace Current Selection" +#~ msgstr "╦╫╨ъ╓на╙бРнн╟Х╓Рцж╢╧" + +#~ msgid "Gradient Type" +#~ msgstr "╔╟╔И╔г║╪╔╥╔Г╔С╪О" + +#~ msgid "(Switching this off does not yet work consistently.)" +#~ msgstr "(╓Ё╓Л╓Р off ╓к╓╥╓ф╓Б╓╕╓ч╓╞ф╞╓╚╓й╓╓)" + #~ msgid "/File/Quit" #~ msgstr "/╔у╔║╔╓╔К/╫╙н╩" diff --git a/po/ko.po b/po/ko.po index eb6242c467..561e32c8d2 100644 --- a/po/ko.po +++ b/po/ko.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: gimp 1.1.6\n" -"POT-Creation-Date: 1999-07-08 11:58+0900\n" +"POT-Creation-Date: 1999-07-17 11:23-0700\n" "PO-Revision-Date: 1999-07-08 03:50:14+0900\n" "Last-Translator: Sung-Hyun Nam \n" "Language-Team: Korean \n" @@ -351,7 +351,7 @@ msgstr "" #: app/color_balance.c:273 app/color_notebook.c:49 app/color_notebook.c:192 #: app/color_select.c:155 app/color_select.c:210 app/convert.c:295 #: app/curves.c:517 app/file_new_dialog.c:292 app/file_new_dialog.c:482 -#: app/hue_saturation.c:361 app/interface.c:1007 app/interface.c:1393 +#: app/hue_saturation.c:361 app/interface.c:1009 app/interface.c:1395 #: app/layers_dialog.c:2901 app/layers_dialog.c:3119 app/layers_dialog.c:3262 #: app/layers_dialog.c:3738 app/levels.c:335 app/module_db.c:263 #: app/posterize.c:199 app/preferences_dialog.c:1469 app/resize.c:114 @@ -366,7 +366,7 @@ msgstr " #: app/curves.c:518 app/file_new_dialog.c:294 app/file_new_dialog.c:484 #: app/gdisplay_ops.c:349 app/gimpprogress.c:135 app/global_edit.c:705 #: app/gradient.c:1486 app/gradient.c:4566 app/gradient.c:4921 -#: app/hue_saturation.c:362 app/interface.c:911 app/interface.c:1008 +#: app/hue_saturation.c:362 app/interface.c:913 app/interface.c:1010 #: app/layers_dialog.c:2902 app/layers_dialog.c:3120 app/layers_dialog.c:3263 #: app/layers_dialog.c:3410 app/layers_dialog.c:3739 app/levels.c:336 #: app/posterize.c:200 app/preferences_dialog.c:1473 app/resize.c:115 @@ -398,8 +398,8 @@ msgstr " #. The close push button #: app/brush_edit.c:38 app/brush_select.c:135 app/by_color_select.c:664 #: app/color_notebook.c:187 app/color_picker.c:209 app/color_select.c:205 -#: app/colormap_dialog.i.c:94 app/colormap_dialog.i.c:103 app/crop.c:1033 -#: app/devices.c:124 app/docindexif.c:95 app/errorconsole.c:230 +#: app/colormap_dialog.i.c:94 app/colormap_dialog.i.c:103 app/crop.c:1027 +#: app/devices.c:124 app/docindexif.c:100 app/errorconsole.c:230 #: app/gdisplay_ops.c:348 app/gradient.c:646 app/gradient_select.c:76 #: app/histogram_tool.c:262 app/info_window.c:121 app/lc_dialog.c:196 #: app/palette.c:2235 app/palette_select.c:59 app/pattern_select.c:90 @@ -970,11 +970,11 @@ msgstr "Sharpen" msgid "Convolve Type" msgstr "╟Н╪╠ а╬╥Ы" -#: app/crop.c:170 app/crop.c:1031 +#: app/crop.c:170 app/crop.c:1025 msgid "Crop" msgstr "юъ╤СЁ╩╠Б" -#: app/crop.c:170 app/crop.c:1032 +#: app/crop.c:170 app/crop.c:1026 msgid "Resize" msgstr "е╘╠Ба╤а╓" @@ -1000,43 +1000,43 @@ msgstr " msgid "Crop: " msgstr "юъ╤СЁ╩╠Б: " -#: app/crop.c:1011 +#: app/crop.c:1005 msgid "Crop: 0 x 0" msgstr "юъ╤СЁ╩╠Б: 0 x 0" #. create the info dialog -#: app/crop.c:1039 +#: app/crop.c:1033 msgid "Crop & Resize Information" msgstr "" #. add the information fields -#: app/crop.c:1042 +#: app/crop.c:1036 msgid "Origin X:" msgstr "X ╫цюш:" -#: app/crop.c:1045 app/file_new_dialog.c:753 app/resize.c:334 app/resize.c:419 -#: app/resize.c:577 app/rotate_tool.c:108 app/scale_tool.c:99 +#: app/crop.c:1039 app/file_new_dialog.c:753 app/resize.c:334 app/resize.c:419 +#: app/resize.c:577 app/rotate_tool.c:109 app/scale_tool.c:99 #: app/shear_tool.c:83 msgid "Y:" msgstr "Y:" #. the pixel size labels -#: app/crop.c:1058 app/file_new_dialog.c:614 app/file_new_dialog.c:632 +#: app/crop.c:1052 app/file_new_dialog.c:614 app/file_new_dialog.c:632 #: app/tool_options.c:405 msgid "Width:" msgstr "Ёпюл:" -#: app/crop.c:1061 app/file_new_dialog.c:620 app/file_new_dialog.c:638 +#: app/crop.c:1055 app/file_new_dialog.c:620 app/file_new_dialog.c:638 #: app/layers_dialog.c:2954 app/resize.c:245 app/resize.c:270 app/resize.c:514 #: app/scale_tool.c:78 app/scale_tool.c:85 app/tool_options.c:427 msgid "Height:" msgstr "ЁТюл:" -#: app/crop.c:1083 +#: app/crop.c:1077 msgid "From Selection" msgstr "" -#: app/crop.c:1089 +#: app/crop.c:1083 msgid "Auto Shrink" msgstr "" @@ -1118,49 +1118,49 @@ msgstr " msgid "There's no selection to remove." msgstr "аЖ©О╦╦гя ╪╠ец╣х ╟мюл ╬Ь╫ю╢о╢ы." -#: app/docindexif.c:75 +#: app/docindexif.c:80 msgid "Open" msgstr "©╜╠Б" -#: app/docindexif.c:75 +#: app/docindexif.c:80 msgid "Open a file" msgstr "фдюо ©╜╠Б" -#: app/docindexif.c:80 +#: app/docindexif.c:85 msgid "Up" msgstr "ю╖╥н" -#: app/docindexif.c:80 +#: app/docindexif.c:85 msgid "Move the selected entry up in the index" msgstr "юн╣╕╫╨©║╪╜ ╪╠ец╣х ©ёф╝╦╝ ю╖╥н юл╣©" -#: app/docindexif.c:85 +#: app/docindexif.c:90 msgid "Down" msgstr "╬ф╥║╥н" -#: app/docindexif.c:85 +#: app/docindexif.c:90 msgid "Move the selected entry down in the index" msgstr "юн╣╕╫╨©║╪╜ ╪╠ец╣х ©ёф╝╦╝ ╬ф╥║╥н юл╣©" -#: app/docindexif.c:90 +#: app/docindexif.c:95 msgid "Remove" msgstr "╩Ха╕" -#: app/docindexif.c:90 +#: app/docindexif.c:95 msgid "Remove the selected entry from the index" msgstr "юн╣╕╫╨©║╪╜ ╪╠ец╣х ©ёф╝╦╝ ╩Ха╕" -#: app/docindexif.c:95 +#: app/docindexif.c:100 msgid "Close the Document Index" msgstr "╧╝╪╜ юн╣╕╫╨ ╢щ╠Б" #. Set the GOWindow title -#: app/docindexif.c:213 +#: app/docindexif.c:218 msgid "Document Index" msgstr "╧╝╪╜ ╩Жюн" #. Set the initial status message -#: app/docindexif.c:219 +#: app/docindexif.c:224 msgid "GTK successfully started" msgstr "GDK╟║ ╪╨╟ЬюШю╦╥н ╫цюш╣й" @@ -1436,7 +1436,7 @@ msgstr "" msgid "indexed" msgstr "" -#: app/gdisplay.c:2093 +#: app/gdisplay.c:2102 msgid "gdisplays_flush() called recursively." msgstr "" @@ -1521,41 +1521,41 @@ msgstr "" msgid "Layer type %d not supported." msgstr "╟ХцЧ ю╞гЭ %d╢б аЖ©Ь╣гаЖ ╬й╫ю╢о╢ы." -#: app/gimpimage.c:596 app/gimpimage.c:690 +#: app/gimpimage.c:642 app/gimpimage.c:740 msgid "gimp_image_apply_image sent illegal parameters" msgstr "gimp_image_apply_image╟║ ╨Яа╓╩СюШюн фд╤С╧лем╦╕ ╨╦Ёб╫ю╢о╢ы" -#: app/gimpimage.c:1096 +#: app/gimpimage.c:1172 msgid "Unable to project indexed image." msgstr "" -#: app/gimpimage.c:1982 +#: app/gimpimage.c:2109 msgid "Layer cannot be raised any further" msgstr "╢Уюл╩С ╟ХцЧю╩ ©ц╦╠ ╪Ж ╬Ь╫ю╢о╢ы" -#: app/gimpimage.c:2056 +#: app/gimpimage.c:2184 msgid "Layer cannot be lowered any further" msgstr "╢Уюл╩С ╟ХцЧю╩ Ё╩╦╠ ╪Ж ╬Ь╫ю╢о╢ы" #. layer_arg is already the top_layer -#: app/gimpimage.c:2085 +#: app/gimpimage.c:2214 msgid "Layer is already on top" msgstr "╟ХцЧюл юл╧л цж╩СцЧ©║ юж╫ю╢о╢ы" -#: app/gimpimage.c:2090 +#: app/gimpimage.c:2219 msgid "Can't raise Layer without alpha" msgstr "╬кфд╬Ьюл ╟ХцЧю╩ ©ц╦╠ ╪Ж ╬Ь╫ю╢о╢ы" #. there is no next layer below layer_arg -#: app/gimpimage.c:2184 +#: app/gimpimage.c:2314 msgid "Layer is already on bottom" msgstr "╟ХцЧюл юл╧л цжгоцЧ©║ юж╫ю╢о╢ы" -#: app/gimpimage.c:2197 +#: app/gimpimage.c:2327 msgid "BG has no alpha, layer was placed above" msgstr "" -#: app/gimpimage.c:2259 +#: app/gimpimage.c:2390 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." @@ -1563,27 +1563,27 @@ msgstr "" "гуд╔ ╪Ж южю╩ ╦╦е╜юг ╟ХцЧюл ╨╦юлаЖ ╬й╫ю╢о╢ы.\n" "юШ╬Н╣╣ ╣н╟Ё╢б ╨╦©╘╬ъ╦╦ гу╢о╢ы." -#: app/gimpimage.c:2337 +#: app/gimpimage.c:2468 msgid "There are not enough visible layers for a merge down." msgstr "" -#: app/gimpimage.c:2448 app/gimpimage.c:2481 +#: app/gimpimage.c:2581 app/gimpimage.c:2614 msgid "gimp_image_merge_layers: could not allocate merge layer" msgstr "" -#: app/gimpimage.c:2520 +#: app/gimpimage.c:2653 msgid "gimp_image_merge_layers attempting to merge incompatible layers\n" msgstr "" -#: app/gimpimage.c:2600 +#: app/gimpimage.c:2735 msgid "gimp_image_add_layer: attempt to add layer to wrong image" msgstr "" -#: app/gimpimage.c:2610 +#: app/gimpimage.c:2745 msgid "gimp_image_add_layer: trying to add layer to image twice" msgstr "" -#: app/gimpimage.c:2726 +#: app/gimpimage.c:2864 msgid "" "Unable to add a layer mask since\n" "the layer already has one." @@ -1591,7 +1591,7 @@ msgstr "" "╟ХцЧюл юл╧л ╦╤╫╨е╘╦╕ ╟║аЖ╟М южю╦╧г╥н\n" "╢У юл╩С цъ╟║гр ╪Ж ╬Ь╫ю╢о╢ы." -#: app/gimpimage.c:2730 +#: app/gimpimage.c:2868 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." @@ -1599,7 +1599,7 @@ msgstr "" "╩Жюн╣х юл╧лаЖ ╬хюг ╟ХцЧ©║╢б\n" "╦╤╫╨е╘╦╕ цъ╟║гр ╪Ж ╬Ь╫ю╢о╢ы." -#: app/gimpimage.c:2734 +#: app/gimpimage.c:2872 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." @@ -1607,27 +1607,27 @@ msgstr "" "╬кфд ц╓Ёнюл ╬Ь╢б ╟ХцЧ©║╢б\n" "╦╤╫╨е╘╦╕ цъ╟║гр ╪Ж ╬Ь╫ю╢о╢ы." -#: app/gimpimage.c:2738 +#: app/gimpimage.c:2876 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -#: app/gimpimage.c:2842 +#: app/gimpimage.c:2983 msgid "Channel cannot be raised any further" msgstr "╢У юл╩С ц╓Ёню╩ ©ц╦╠ ╪Ж ╬Ь╫ю╢о╢ы" -#: app/gimpimage.c:2889 +#: app/gimpimage.c:3031 msgid "Channel cannot be lowered any further" msgstr "╢У юл╩С ц╓Ёню╩ Ё╩╦╠ ╪Ж ╬Ь╫ю╢о╢ы" -#: app/gimpimage.c:2909 +#: app/gimpimage.c:3053 msgid "gimp_image_add_channel: attempt to add channel to wrong image" msgstr "" -#: app/gimpimage.c:2919 +#: app/gimpimage.c:3063 msgid "gimp_image_add_channel: trying to add channel to image twice" msgstr "" -#: app/gimpimage.c:3045 app/palette.c:525 app/palette.c:550 app/palette.c:909 +#: app/gimpimage.c:3190 app/palette.c:525 app/palette.c:550 app/palette.c:909 #: app/palette.c:913 app/palette.c:2313 app/palette.c:2995 msgid "Untitled" msgstr "а╕╦Я╬Ью╫" @@ -2661,17 +2661,17 @@ msgstr "" "\n" "юн╫╨еГ ╫гфп. ╫ц╫╨еш ╟Э╦╝юз╦╕ ╦╦Ё╙╨╦╫й╫ц©ю.\n" -#: app/interface.c:323 +#: app/interface.c:325 msgid "" "Foreground & background colors. The black and white squares reset colors. " "The arrows swap colors. Double click to select a color from a colorrequester." msgstr "" -#: app/interface.c:539 +#: app/interface.c:541 msgid "The GIMP" msgstr "The GIMP" -#: app/interface.c:1386 +#: app/interface.c:1388 msgid "GIMP Message" msgstr "GIMP ╦ч╫цаЖ" @@ -3828,12 +3828,12 @@ msgstr "" msgid "/Export Path" msgstr "" -#: app/menus.c:591 +#: app/menus.c:596 #, c-format msgid "Error opening file: %s\n" msgstr "фдюо ©╜╠Б ©║╥╞: %s\n" -#: app/menus.c:613 app/menus.c:694 +#: app/menus.c:618 app/menus.c:699 #, c-format msgid "/File/MRU%02d" msgstr "/File/MRU%02d" @@ -3842,83 +3842,83 @@ msgstr "/File/MRU%02d" msgid "Module DB" msgstr "╦П╣Б DB" -#: app/module_db.c:555 +#: app/module_db.c:567 #, c-format msgid "load module: \"%s\"\n" msgstr "" -#: app/module_db.c:562 +#: app/module_db.c:574 #, c-format msgid "skipping module: \"%s\"\n" msgstr "" -#: app/module_db.c:586 +#: app/module_db.c:598 #, c-format msgid "module load error: %s: %s" msgstr "" -#: app/module_db.c:604 +#: app/module_db.c:616 msgid "missing module_init() symbol" msgstr "" -#: app/module_db.c:607 +#: app/module_db.c:619 #, c-format msgid "%s: module_init() symbol not found" msgstr "" -#: app/module_db.c:760 +#: app/module_db.c:772 msgid "" msgstr "<╦П╣Б ╬Ью╫>" -#: app/module_db.c:773 app/module_db.c:782 +#: app/module_db.c:785 app/module_db.c:794 msgid "on disk" msgstr "" -#: app/module_db.c:773 +#: app/module_db.c:785 msgid "only in memory" msgstr "" -#: app/module_db.c:782 +#: app/module_db.c:794 msgid "nowhere (click 'refresh')" msgstr "" -#: app/module_db.c:818 +#: app/module_db.c:830 msgid "Load" msgstr "" -#: app/module_db.c:827 +#: app/module_db.c:839 msgid "Unload" msgstr "" -#: app/module_db.c:840 +#: app/module_db.c:852 msgid "Purpose: " msgstr "" -#: app/module_db.c:841 +#: app/module_db.c:853 msgid "Author: " msgstr "юЗюз: " -#: app/module_db.c:842 +#: app/module_db.c:854 msgid "Version: " msgstr "фг╧Ьхё: " -#: app/module_db.c:843 +#: app/module_db.c:855 msgid "Copyright: " msgstr "Copyright: " -#: app/module_db.c:844 +#: app/module_db.c:856 msgid "Date: " msgstr "Ё╞б╔: " -#: app/module_db.c:845 +#: app/module_db.c:857 msgid "Location: " msgstr "ю╖д║: " -#: app/module_db.c:846 +#: app/module_db.c:858 msgid "State: " msgstr "State: " -#: app/module_db.c:865 +#: app/module_db.c:877 msgid "Autoload during startup" msgstr "" @@ -4801,11 +4801,11 @@ msgstr "" msgid "Rotation Information" msgstr "х╦юЭ а╓╨╦" -#: app/rotate_tool.c:105 +#: app/rotate_tool.c:106 msgid "Center X:" msgstr "аъ╬с X:" -#: app/rotate_tool.c:400 +#: app/rotate_tool.c:401 msgid "Rotating..." msgstr "х╦юЭ..." @@ -5388,11 +5388,11 @@ msgid "" "layers that contain layer masks." msgstr "" -#: app/transform_core.c:1135 +#: app/transform_core.c:1140 msgid "homogeneous coordinate = 0...\n" msgstr "" -#: app/transform_core.c:1390 +#: app/transform_core.c:1395 msgid "Transformation" msgstr "" @@ -5579,7 +5579,7 @@ msgstr " msgid "Select" msgstr "╪╠ец" -#: libgimp/gimpenv.c:81 +#: libgimp/gimpenv.c:82 msgid "warning: no home directory." msgstr "" diff --git a/po/nl.po b/po/nl.po index 89c8afd33c..35b95d72f2 100644 --- a/po/nl.po +++ b/po/nl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Gimp 1.1.0\n" -"POT-Creation-Date: 1999-06-05 15:50-0700\n" +"POT-Creation-Date: 1999-07-17 11:23-0700\n" "PO-Revision-Date: 1998-12-30 03:50+0100\n" "Last-Translator: Wing Tung Leung \n" "Language-Team: Dutch \n" @@ -14,27 +14,27 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: app/about_dialog.c:153 +#: app/about_dialog.c:156 msgid "About the GIMP" msgstr "Over GIMP" -#: app/about_dialog.c:196 +#: app/about_dialog.c:199 msgid "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-*-*" msgstr "" -#: app/about_dialog.c:199 +#: app/about_dialog.c:202 msgid "Version " msgstr "Versie" -#: app/about_dialog.c:200 +#: app/about_dialog.c:203 msgid " brought to you by" msgstr " u gebracht door" -#: app/about_dialog.c:206 +#: app/about_dialog.c:209 msgid "Spencer Kimball & Peter Mattis" msgstr "" -#: app/about_dialog.c:239 +#: app/about_dialog.c:242 msgid "Please visit http://www.gimp.org/ for more info" msgstr "Gelieve http://www.gimp.org/ te bezoeken voor meer info" @@ -54,360 +54,364 @@ msgid "killing stray timer, please report to lewing@gimp.org" msgstr "" "bezig met doden van zwervende timer, gelieve te melden aan lewing@gimp.org" -#: app/app_procs.c:355 +#: app/app_procs.c:358 msgid "GIMP Startup" msgstr "Opstarten van Gimp" -#: app/app_procs.c:468 app/gimprc.c:389 +#: app/app_procs.c:471 app/gimprc.c:394 #, c-format msgid "parsing \"%s\"\n" msgstr "bezig met parsen van \"%s\"\n" #. initialize the xcf file format routines -#: app/app_procs.c:524 +#: app/app_procs.c:526 msgid "Looking for data files" msgstr "Bezig met zoeken naar data bestanden" -#: app/app_procs.c:524 +#: app/app_procs.c:526 #, fuzzy msgid "Parasites" msgstr "Plakken" #. initialize the global parasite table -#: app/app_procs.c:526 app/internal_procs.c:70 app/preferences_dialog.c:2320 +#: app/app_procs.c:528 app/internal_procs.c:70 app/preferences_dialog.c:2395 msgid "Brushes" msgstr "Penselen" #. initialize the list of gimp brushes -#: app/app_procs.c:528 app/internal_procs.c:139 app/preferences_dialog.c:2322 +#: app/app_procs.c:530 app/internal_procs.c:139 app/preferences_dialog.c:2397 msgid "Patterns" msgstr "Patronen" #. initialize the list of gimp patterns -#: app/app_procs.c:530 app/preferences_dialog.c:2324 +#: app/app_procs.c:532 app/preferences_dialog.c:2399 msgid "Palettes" msgstr "Paletten" #. initialize the list of gimp palettes -#: app/app_procs.c:532 app/gradient_select.c:557 app/internal_procs.c:109 -#: app/preferences_dialog.c:2326 +#: app/app_procs.c:534 app/gradient_select.c:557 app/internal_procs.c:109 +#: app/preferences_dialog.c:2401 msgid "Gradients" msgstr "Gradaties" -#: app/app_procs.c:696 app/app_procs.c:717 -msgid "/File/Quit" -msgstr "/Bestand/Afsluiten" - -#: app/app_procs.c:697 app/app_procs.c:718 -msgid "/File/Quit" +#: app/app_procs.c:702 app/app_procs.c:703 app/app_procs.c:728 +#: app/app_procs.c:729 app/menus.c:83 app/menus.c:98 +#, fuzzy +msgid "/File/Quit" msgstr "/Bestand/Afsluiten" -#: app/app_procs.c:722 +#: app/app_procs.c:733 msgid "Really Quit?" msgstr "Echt afsluiten?" -#: app/app_procs.c:730 app/fileops.c:1420 +#: app/app_procs.c:741 app/fileops.c:1576 msgid "Yes" msgstr "Ja" -#: app/app_procs.c:739 app/fileops.c:1421 +#: app/app_procs.c:750 app/fileops.c:1577 msgid "No" msgstr "Neen" -#: app/app_procs.c:747 -msgid "Some files unsaved. Quit the GIMP?" +#: app/app_procs.c:776 +#, fuzzy +msgid "" +"Some files unsaved.\n" +"\n" +"Quit the GIMP?" msgstr "Sommige bestanden zijn niet bewaard. GIMP afsluiten?" -#: app/batch.c:69 +#: app/batch.c:65 msgid "script-fu not available: batch mode disabled\n" msgstr "script-fu niet beschikbaar: batch modus uitgeschakeld\n" -#: app/batch.c:78 +#: app/batch.c:74 msgid "reading batch commands from stdin\n" msgstr "bezig met inlezen van batch commando's van stdin\n" -#: app/batch.c:118 +#: app/batch.c:114 msgid "batch command: experienced an execution error.\n" msgstr "batch commando: een uitvoeringsfout ondervonden.\n" -#: app/batch.c:121 +#: app/batch.c:117 msgid "batch command: experienced a calling error.\n" msgstr "btach commando: een aanroepfout ondervonden.\n" -#: app/batch.c:124 +#: app/batch.c:120 msgid "batch command: executed successfully.\n" msgstr "btach commando: succesvol uitgevoerd.\n" -#: app/batch.c:205 +#: app/batch.c:204 msgid "extension_perl_server not available: unable to start the perl server\n" msgstr "" -#: app/batch.c:221 +#: app/batch.c:220 #, fuzzy msgid "perl server: experienced an execution error.\n" msgstr "batch commando: een uitvoeringsfout ondervonden.\n" -#: app/batch.c:224 +#: app/batch.c:223 #, fuzzy msgid "perl server: experienced a calling error.\n" msgstr "btach commando: een aanroepfout ondervonden.\n" -#: app/batch.c:227 +#: app/batch.c:226 #, fuzzy msgid "perl server: executed successfully.\n" msgstr "btach commando: succesvol uitgevoerd.\n" -#: app/bezier_select.c:480 +#: app/bezier_select.c:477 msgid "Bezier path already closed." msgstr "" -#: app/bezier_select.c:501 +#: app/bezier_select.c:498 #, fuzzy msgid "Corrupt curve" msgstr "Corrigerend" -#: app/bezier_select.c:1011 +#: app/bezier_select.c:1012 msgid "tried to edit on open bezier curve in edit selection" msgstr "probeerde een open bezier kromme te editeren in editselectie" -#: app/bezier_select.c:1291 +#: app/bezier_select.c:1292 msgid "Encountered orphaned bezier control point" msgstr "Achtergelaten bezier controle punt gevonden" -#: app/bezier_select.c:1971 app/bezier_select.c:3170 +#: app/bezier_select.c:1975 app/bezier_select.c:3176 msgid "bad bezier segment" msgstr "ongeldig bezier segment" -#: app/bezier_select.c:1988 app/bezier_select.c:2630 +#: app/bezier_select.c:1992 app/bezier_select.c:2636 #, c-format msgid "unknown coordinate space: %d" msgstr "onbekende coordinaatsruimte: %d" -#: app/bezier_select.c:2131 +#: app/bezier_select.c:2135 msgid "tried to convert an open bezier curve" msgstr "probeerde een open bezier kromme te converteren" -#: app/bezier_select.c:3126 +#: app/bezier_select.c:3132 #, fuzzy msgid "Paintbrush operation failed." msgstr "Mengopertatie mislukt." -#: app/blend.c:261 +#: app/blend.c:264 #, fuzzy msgid "FG to BG (RGB)" msgstr "FG naar BG RGB" -#: app/blend.c:263 +#: app/blend.c:266 #, fuzzy msgid "FG to BG (HSV)" msgstr "FG naar BG HSV" -#: app/blend.c:265 +#: app/blend.c:268 msgid "FG to Transparent" msgstr "FG naar Transparant" -#: app/blend.c:267 +#: app/blend.c:270 msgid "Custom from editor" msgstr "Aangepast van editor" -#: app/blend.c:273 app/gradient.c:395 +#: app/blend.c:276 app/gradient.c:395 msgid "Linear" msgstr "Lineair" -#: app/blend.c:275 +#: app/blend.c:278 msgid "Bi-Linear" msgstr "Bi-Lineair" -#: app/blend.c:277 +#: app/blend.c:280 msgid "Radial" msgstr "Radiaal" -#: app/blend.c:279 +#: app/blend.c:282 msgid "Square" msgstr "Vierkant" -#: app/blend.c:281 +#: app/blend.c:284 msgid "Conical (symmetric)" msgstr "Conisch (symmetrisch)" -#: app/blend.c:283 +#: app/blend.c:286 msgid "Conical (asymmetric)" msgstr "Conisch (asymmetrisch)" -#: app/blend.c:285 +#: app/blend.c:288 msgid "Shapeburst (angular)" msgstr "" -#: app/blend.c:287 +#: app/blend.c:290 msgid "Shapeburst (spherical)" msgstr "" -#: app/blend.c:289 +#: app/blend.c:292 msgid "Shapeburst (dimpled)" msgstr "" -#: app/blend.c:291 +#: app/blend.c:294 #, fuzzy msgid "Spiral (clockwise)" msgstr "HSV (heu metwijzersmee)" -#: app/blend.c:293 +#: app/blend.c:296 #, fuzzy msgid "Spiral (anticlockwise)" msgstr "HSV (heu metwijzersmee)" -#: app/blend.c:299 app/preferences_dialog.c:1724 +#: app/blend.c:302 app/preferences_dialog.c:1759 msgid "None" msgstr "Geen" -#: app/blend.c:301 +#: app/blend.c:304 msgid "Sawtooth wave" msgstr "" -#: app/blend.c:303 +#: app/blend.c:306 msgid "Triangular wave" msgstr "" -#: app/blend.c:331 +#: app/blend.c:334 msgid "Offset:" msgstr "" #. the blend mode menu -#: app/blend.c:349 +#: app/blend.c:352 msgid "Blend:" msgstr "Meng:" #. the gradient type menu -#: app/blend.c:367 +#: app/blend.c:370 msgid "Gradient:" msgstr "Gradaties:" #. the repeat option -#: app/blend.c:385 +#: app/blend.c:388 msgid "Repeat:" msgstr "Herhaal:" -#: app/blend.c:418 +#: app/blend.c:421 msgid "Adaptive supersampling" msgstr "Adaptieve oversampling" #. max depth scale -#: app/blend.c:440 +#: app/blend.c:443 msgid "Max depth:" msgstr "Max diepte:" #. threshold scale -#: app/blend.c:458 app/bucket_fill.c:137 app/iscissors.c:356 +#: app/blend.c:461 app/bucket_fill.c:136 app/iscissors.c:356 msgid "Threshold:" msgstr "" -#: app/blend.c:496 +#: app/blend.c:499 msgid "Blend: Invalid for indexed images." msgstr "Meng: Ongeldig voor geindexeerde beelden." -#: app/blend.c:521 +#: app/blend.c:524 msgid "Blend: 0, 0" msgstr "Meng: 0, 0" -#: app/blend.c:583 +#: app/blend.c:587 msgid "Blend operation failed." msgstr "Mengopertatie mislukt." -#: app/blend.c:589 +#: app/blend.c:593 msgid "Blending..." msgstr "" -#: app/blend.c:639 app/blend.c:649 +#: app/blend.c:643 app/blend.c:653 #, fuzzy msgid "Blend: " msgstr "Meng:" -#: app/blend.c:1295 +#: app/blend.c:1307 #, c-format msgid "gradient_render_pixel(): unknown gradient type %d" msgstr "" -#: app/blend.c:1430 +#: app/blend.c:1445 #, c-format msgid "gradient_fill_region(): unknown blend mode %d" msgstr "" -#: app/blend.c:1471 +#: app/blend.c:1486 #, c-format msgid "gradient_fill_region(): unknown gradient type %d" msgstr "" -#: app/blend.c:1493 +#: app/blend.c:1508 #, c-format msgid "gradient_fill_region(): unknown repeat mode %d" msgstr "" -#: app/brightness_contrast.c:176 +#: app/brightness_contrast.c:136 msgid "Brightness-Contrast Options" msgstr "Helderheid-Contrast Opties" -#: app/brightness_contrast.c:221 +#: app/brightness_contrast.c:172 msgid "Brightness-Contrast does not operate on indexed drawables." msgstr "Helderheid-Contrast werkt niet op geindexeerde tekeningen." #. Action area -#: app/brightness_contrast.c:252 app/channel_ops.c:104 -#: app/channels_dialog.c:1889 app/channels_dialog.c:2062 -#: app/color_balance.c:301 app/color_notebook.c:43 app/color_notebook.c:186 -#: app/color_select.c:154 app/color_select.c:209 app/convert.c:295 -#: app/curves.c:417 app/file_new_dialog.c:288 app/file_new_dialog.c:478 -#: app/hue_saturation.c:411 app/interface.c:877 app/interface.c:1263 -#: app/layers_dialog.c:3218 app/layers_dialog.c:3432 app/layers_dialog.c:3574 -#: app/layers_dialog.c:4049 app/levels.c:373 app/posterize.c:241 -#: app/preferences_dialog.c:1435 app/resize.c:114 app/threshold.c:318 +#: app/brightness_contrast.c:214 app/channel_ops.c:104 +#: app/channels_dialog.c:1864 app/channels_dialog.c:2049 +#: app/color_balance.c:273 app/color_notebook.c:49 app/color_notebook.c:192 +#: app/color_select.c:155 app/color_select.c:210 app/convert.c:295 +#: app/curves.c:517 app/file_new_dialog.c:292 app/file_new_dialog.c:482 +#: app/hue_saturation.c:361 app/interface.c:1009 app/interface.c:1395 +#: app/layers_dialog.c:2901 app/layers_dialog.c:3119 app/layers_dialog.c:3262 +#: app/layers_dialog.c:3738 app/levels.c:335 app/module_db.c:263 +#: app/posterize.c:199 app/preferences_dialog.c:1469 app/resize.c:114 +#: app/threshold.c:278 msgid "OK" msgstr "" -#: app/brightness_contrast.c:253 app/channel_ops.c:113 -#: app/channels_dialog.c:1890 app/channels_dialog.c:2063 -#: app/color_balance.c:302 app/color_notebook.c:44 app/color_notebook.c:187 -#: app/color_select.c:155 app/color_select.c:210 app/convert.c:296 -#: app/curves.c:418 app/file_new_dialog.c:290 app/file_new_dialog.c:480 -#: app/gdisplay_ops.c:353 app/gimpprogress.c:135 app/global_edit.c:593 +#: app/brightness_contrast.c:215 app/channel_ops.c:113 +#: app/channels_dialog.c:1865 app/channels_dialog.c:2050 +#: app/color_balance.c:274 app/color_notebook.c:50 app/color_notebook.c:193 +#: app/color_select.c:156 app/color_select.c:211 app/convert.c:296 +#: app/curves.c:518 app/file_new_dialog.c:294 app/file_new_dialog.c:484 +#: app/gdisplay_ops.c:349 app/gimpprogress.c:135 app/global_edit.c:705 #: app/gradient.c:1486 app/gradient.c:4566 app/gradient.c:4921 -#: app/hue_saturation.c:412 app/interface.c:788 app/interface.c:878 -#: app/layers_dialog.c:3219 app/layers_dialog.c:3433 app/layers_dialog.c:3575 -#: app/layers_dialog.c:3722 app/layers_dialog.c:4050 app/levels.c:374 -#: app/posterize.c:242 app/preferences_dialog.c:1439 app/resize.c:115 -#: app/threshold.c:319 +#: app/hue_saturation.c:362 app/interface.c:913 app/interface.c:1010 +#: app/layers_dialog.c:2902 app/layers_dialog.c:3120 app/layers_dialog.c:3263 +#: app/layers_dialog.c:3410 app/layers_dialog.c:3739 app/levels.c:336 +#: app/posterize.c:200 app/preferences_dialog.c:1473 app/resize.c:115 +#: app/threshold.c:279 msgid "Cancel" msgstr "Annuleren" -#: app/brightness_contrast.c:276 app/tools.c:491 +#: app/brightness_contrast.c:226 app/tools.c:517 msgid "Brightness-Contrast" msgstr "Helderheid-Contrast" #. Create the brightness scale widget -#: app/brightness_contrast.c:292 +#: app/brightness_contrast.c:242 msgid "Brightness" msgstr "Helderheid" #. Create the contrast scale widget -#: app/brightness_contrast.c:325 +#: app/brightness_contrast.c:275 msgid "Contrast" msgstr "" #. The preview toggle -#: app/brightness_contrast.c:363 app/color_balance.c:481 app/curves.c:661 -#: app/fileops.c:395 app/hue_saturation.c:620 app/levels.c:583 -#: app/palette.c:2849 app/posterize.c:297 app/threshold.c:404 +#: app/brightness_contrast.c:313 app/color_balance.c:438 app/curves.c:651 +#: app/fileops.c:395 app/hue_saturation.c:572 app/levels.c:531 +#: app/palette.c:2849 app/posterize.c:246 app/threshold.c:354 msgid "Preview" msgstr "" #. The close push button -#: app/brush_edit.c:38 app/brush_select.c:133 app/by_color_select.c:678 -#: app/color_notebook.c:181 app/color_picker.c:208 app/color_select.c:204 -#: app/colormap_dialog.i.c:94 app/colormap_dialog.i.c:103 app/crop.c:1011 -#: app/devices.c:124 app/docindexif.c:95 app/errorconsole.c:228 -#: app/gdisplay_ops.c:352 app/gradient.c:646 app/gradient_select.c:76 -#: app/info_window.c:121 app/layers_dialog.c:419 app/palette.c:2235 -#: app/palette_select.c:59 app/pattern_select.c:90 app/tips_dialog.c:146 -#: app/tools.c:716 +#: app/brush_edit.c:38 app/brush_select.c:135 app/by_color_select.c:664 +#: app/color_notebook.c:187 app/color_picker.c:209 app/color_select.c:205 +#: app/colormap_dialog.i.c:94 app/colormap_dialog.i.c:103 app/crop.c:1027 +#: app/devices.c:124 app/docindexif.c:100 app/errorconsole.c:230 +#: app/gdisplay_ops.c:348 app/gradient.c:646 app/gradient_select.c:76 +#: app/histogram_tool.c:262 app/info_window.c:121 app/lc_dialog.c:196 +#: app/palette.c:2235 app/palette_select.c:59 app/pattern_select.c:90 +#: app/tips_dialog.c:146 app/tools.c:874 libgimp/gimpfileselection.c:356 +#: libgimp/gimpunitmenu.c:518 msgid "Close" msgstr "Sluit" @@ -416,7 +420,7 @@ msgid "Brush Editor" msgstr "Penseel Editor" #. brush radius scale -#: app/brush_edit.c:240 app/color_picker.c:163 +#: app/brush_edit.c:240 app/color_picker.c:164 app/tool_options.c:284 msgid "Radius:" msgstr "" @@ -435,45 +439,46 @@ msgstr "" msgid "Angle:" msgstr "Hoek:" -#: app/brush_select.c:132 app/palette.c:2243 app/pattern_select.c:89 +#: app/brush_select.c:134 app/module_db.c:307 app/palette.c:2243 +#: app/pattern_select.c:89 msgid "Refresh" msgstr "Hernieuw" -#: app/brush_select.c:153 +#: app/brush_select.c:155 msgid "Brush Selection" msgstr "Penseel Selectie" -#: app/brush_select.c:241 app/pattern_select.c:147 +#: app/brush_select.c:244 app/pattern_select.c:147 msgid "Active" msgstr "Actief" #. Create the opacity scale widget -#: app/brush_select.c:271 app/layers_dialog.c:756 +#: app/brush_select.c:274 app/layers_dialog.c:334 app/tool_options.c:593 msgid "Opacity:" msgstr "Ondoorzichtigheid" #. Create the paint mode option menu -#: app/brush_select.c:289 app/layers_dialog.c:733 +#: app/brush_select.c:292 app/layers_dialog.c:307 app/tool_options.c:623 msgid "Mode:" msgstr "Modus:" -#: app/brush_select.c:312 +#: app/brush_select.c:315 msgid "Edit Brush" msgstr "Editeer Penseel" -#: app/brush_select.c:318 +#: app/brush_select.c:321 msgid "New Brush" msgstr "Nieuwe Penseel" -#: app/brush_select.c:340 +#: app/brush_select.c:343 msgid "Spacing:" msgstr "Spatiering" -#: app/brush_select.c:531 +#: app/brush_select.c:536 msgid "failed to run brush callback function" msgstr "" -#: app/brush_select.c:1187 +#: app/brush_select.c:1192 msgid "" "We are all fresh out of brush editors today,\n" "please write your own or try back tomorrow\n" @@ -481,26 +486,26 @@ msgstr "" "Vandaag zijn de penseel editors uitverkocht,\n" "gelieve uw eigen te schrijven of morgen opnieuw te proberen.\n" -#: app/bucket_fill.c:114 +#: app/bucket_fill.c:113 #, fuzzy msgid "FG Color Fill" msgstr "Kleur Opvullen" -#: app/bucket_fill.c:115 +#: app/bucket_fill.c:114 #, fuzzy msgid "BG Color Fill" msgstr "Kleur Opvullen" -#: app/bucket_fill.c:116 +#: app/bucket_fill.c:115 msgid "Pattern Fill" msgstr "Patroon Opvullen" -#: app/bucket_fill.c:157 app/color_picker.c:138 +#: app/bucket_fill.c:156 app/color_picker.c:139 app/tool_options.c:358 msgid "Sample Merged" msgstr "" #. fill type -#: app/bucket_fill.c:165 app/file_new_dialog.c:838 +#: app/bucket_fill.c:164 app/file_new_dialog.c:842 msgid "Fill Type" msgstr "Vultype" @@ -508,61 +513,61 @@ msgstr "Vultype" msgid "Bucket Fill operation failed." msgstr "" -#: app/bucket_fill.c:361 +#: app/bucket_fill.c:344 msgid "No available patterns for this operation." msgstr "Geen beschikbare patronen voor deze bewerking." -#: app/by_color_select.c:557 app/paint_funcs.c:100 +#: app/by_color_select.c:542 app/paint_funcs.c:100 msgid "Replace" msgstr "Vervangen" -#: app/by_color_select.c:558 app/colormap_dialog.i.c:99 +#: app/by_color_select.c:543 app/colormap_dialog.i.c:99 msgid "Add" msgstr "Toevoegen" -#: app/by_color_select.c:559 app/layers_dialog.c:282 +#: app/by_color_select.c:544 app/layers_dialog.c:215 app/tool_options.c:784 msgid "Subtract" msgstr "" -#: app/by_color_select.c:560 +#: app/by_color_select.c:545 msgid "Intersect" msgstr "Intersectie" -#: app/by_color_select.c:578 +#: app/by_color_select.c:564 msgid "By Color Selection" msgstr "Door Kleurselectie" -#: app/by_color_select.c:621 +#: app/by_color_select.c:607 msgid "Inactive" msgstr "Inactief" #. Create the selection mode radio box -#: app/by_color_select.c:628 +#: app/by_color_select.c:614 msgid "Selection Mode" msgstr "Selectiemodus" -#: app/by_color_select.c:652 +#: app/by_color_select.c:638 msgid "Fuzziness Threshold" msgstr "" #. The reset push button -#: app/by_color_select.c:668 app/curves.c:416 app/file_new_dialog.c:479 -#: app/tools.c:715 app/transform_core.c:116 +#: app/by_color_select.c:654 app/curves.c:516 app/file_new_dialog.c:483 +#: app/tools.c:873 app/transform_core.c:116 msgid "Reset" msgstr "Reset" -#: app/channel.c:190 app/channel.c:192 app/layer.c:314 app/layer.c:316 +#: app/channel.c:191 app/channel.c:193 app/layer.c:316 app/layer.c:318 msgid "copy" msgstr "kopieer" #. formulate the new layer_mask name -#: app/channel.c:198 app/gradient.c:1359 app/layer.c:322 app/layer.c:1481 +#: app/channel.c:199 app/gradient.c:1359 app/layer.c:324 app/layer.c:1486 #, c-format msgid "%s copy" msgstr "" #. Create the new channel -#: app/channel.c:503 +#: app/channel.c:521 msgid "Selection Mask" msgstr "Selectiemasker" @@ -589,12 +594,12 @@ msgstr "" msgid "Fill Options" msgstr "Fliphulpopties" -#: app/channel_ops.c:164 app/file_new_dialog.c:133 app/file_new_dialog.c:493 -#: app/layers_dialog.c:3210 +#: app/channel_ops.c:164 app/file_new_dialog.c:135 app/file_new_dialog.c:497 +#: app/layers_dialog.c:2893 msgid "Background" msgstr "Achtergrond" -#: app/channel_ops.c:175 app/file_new_dialog.c:495 app/layers_dialog.c:3212 +#: app/channel_ops.c:175 app/file_new_dialog.c:499 app/layers_dialog.c:2895 msgid "Transparent" msgstr "Transparant" @@ -603,253 +608,278 @@ msgstr "Transparant" msgid "Offset by (x/2),(y/2)" msgstr "" -#: app/channels_dialog.c:159 app/channels_dialog.c:193 -#: app/channels_dialog.c:1936 +#: app/channels_dialog.c:165 app/channels_dialog.c:1911 msgid "New Channel" msgstr "Nieuw kanaal" -#: app/channels_dialog.c:161 app/channels_dialog.c:194 +#: app/channels_dialog.c:167 msgid "Raise Channel" msgstr "Verhoog Kanaal" -#: app/channels_dialog.c:163 app/channels_dialog.c:195 +#: app/channels_dialog.c:169 msgid "Lower Channel" msgstr "Verlaag Kanaal" -#: app/channels_dialog.c:165 app/channels_dialog.c:196 +#: app/channels_dialog.c:171 msgid "Duplicate Channel" msgstr "Dupliceer Kanaal" -#: app/channels_dialog.c:167 app/channels_dialog.c:197 -msgid "Delete Channel" -msgstr "Verwijder Kanaal" - -#: app/channels_dialog.c:169 -msgid "Channel To Selection" -msgstr "" - -#: app/channels_dialog.c:171 -#, fuzzy -msgid "Add To Selection" -msgstr "Door Kleurselectie" - #: app/channels_dialog.c:173 -#, fuzzy -msgid "Subtract From Selection" -msgstr "Door Kleurselectie" - -#: app/channels_dialog.c:175 -#, fuzzy -msgid "Intersect With Selection" -msgstr "Penseel Selectie" - -#: app/channels_dialog.c:198 msgid "" -"Channel To Selection \n" +"Channel to Selection \n" " Add Subtract Intersect" msgstr "" -#: app/channels_dialog.c:633 app/channels_dialog.c:687 +#: app/channels_dialog.c:178 +msgid "Delete Channel" +msgstr "Verwijder Kanaal" + +#: app/channels_dialog.c:537 app/menus.c:273 +#, fuzzy +msgid "/New Channel" +msgstr "Nieuw kanaal" + +#: app/channels_dialog.c:540 app/menus.c:274 +#, fuzzy +msgid "/Raise Channel" +msgstr "Verhoog Kanaal" + +#: app/channels_dialog.c:544 app/menus.c:275 +#, fuzzy +msgid "/Lower Channel" +msgstr "Verlaag Kanaal" + +#: app/channels_dialog.c:548 app/menus.c:276 +#, fuzzy +msgid "/Duplicate Channel" +msgstr "Dupliceer Kanaal" + +#: app/channels_dialog.c:552 app/menus.c:278 +#, fuzzy +msgid "/Channel to Selection" +msgstr "Kleurselectie" + +#: app/channels_dialog.c:555 app/menus.c:283 +#, fuzzy +msgid "/Delete Channel" +msgstr "Verwijder Kanaal" + +#: app/channels_dialog.c:559 app/menus.c:279 +#, fuzzy +msgid "/Add to Selection" +msgstr "Door Kleurselectie" + +#: app/channels_dialog.c:560 app/menus.c:280 +#, fuzzy +msgid "/Subtract From Selection" +msgstr "Door Kleurselectie" + +#: app/channels_dialog.c:561 app/menus.c:281 +#, fuzzy +msgid "/Intersect With Selection" +msgstr "Penseel Selectie" + +#: app/channels_dialog.c:608 app/channels_dialog.c:662 #, c-format msgid "error in %s at %d: this shouldn't happen." msgstr "fout in %s aan %d: dit zou niet mogen gebeuren." -#: app/channels_dialog.c:1166 app/color_balance.c:413 app/curves.c:424 -#: app/levels.c:282 +#: app/channels_dialog.c:1137 app/color_balance.c:370 app/curves.c:405 +#: app/histogram_tool.c:279 app/levels.c:231 msgid "Red" msgstr "Rood" -#: app/channels_dialog.c:1170 app/color_balance.c:440 app/curves.c:425 -#: app/levels.c:283 +#: app/channels_dialog.c:1141 app/color_balance.c:397 app/curves.c:406 +#: app/histogram_tool.c:280 app/levels.c:232 msgid "Green" msgstr "Groen" -#: app/channels_dialog.c:1174 app/color_balance.c:467 app/curves.c:426 -#: app/levels.c:284 +#: app/channels_dialog.c:1145 app/color_balance.c:424 app/curves.c:407 +#: app/histogram_tool.c:281 app/levels.c:233 msgid "Blue" msgstr "Blauw" -#: app/channels_dialog.c:1178 +#: app/channels_dialog.c:1149 msgid "Gray" msgstr "Grijs" -#: app/channels_dialog.c:1182 +#: app/channels_dialog.c:1153 msgid "Indexed" msgstr "Geindexeerd" -#: app/channels_dialog.c:1908 +#: app/channels_dialog.c:1883 msgid "New Channel Options" msgstr "Nieuw Kanaal Opties" #. the name entry hbox, label and entry -#: app/channels_dialog.c:1926 +#: app/channels_dialog.c:1901 msgid "Channel name: " msgstr "Kanaalnaam: " #. the opacity scale -#: app/channels_dialog.c:1940 +#: app/channels_dialog.c:1915 msgid "Fill Opacity: " msgstr "Ondoorzichtigheid Van Opvullen: " -#: app/channels_dialog.c:2087 +#: app/channels_dialog.c:2066 msgid "Edit Channel Attributes" msgstr "Editeer Kanaalattributen" -#: app/channels_dialog.c:2107 +#: app/channels_dialog.c:2086 msgid "Channel name:" msgstr "Kanaalnaam:" -#: app/channels_dialog.c:2122 +#: app/channels_dialog.c:2101 msgid "Fill Opacity" msgstr "" -#: app/clone.c:134 +#: app/clone.c:137 msgid "Image Source" msgstr "Beeldbron" -#: app/clone.c:135 +#: app/clone.c:138 msgid "Pattern Source" msgstr "Patroonbron" -#: app/clone.c:139 +#: app/clone.c:144 #, fuzzy msgid "Non Aligned" msgstr "Gealigneerd" -#: app/clone.c:140 +#: app/clone.c:145 msgid "Aligned" msgstr "Gealigneerd" -#: app/clone.c:141 +#: app/clone.c:146 msgid "Registered" msgstr "" #. the radio frame and box -#: app/clone.c:156 +#: app/clone.c:162 msgid "Source" msgstr "Bron" #. the radio frame and box -#: app/clone.c:181 +#: app/clone.c:187 #, fuzzy msgid "Alignment" msgstr "Gealigneerd" -#: app/clone.c:308 +#: app/clone.c:314 msgid "No patterns available for this operation." msgstr "Geen patronen beschikbaar voor deze operatie." -#: app/color_balance.c:222 +#: app/color_balance.c:184 msgid "Color Balance Options" msgstr "Opties voor kleurbalans" -#: app/color_balance.c:269 +#: app/color_balance.c:222 msgid "Color balance operates only on RGB color drawables." msgstr "Kleurbalans werkt enkel op RGB kleur tekeningen." -#: app/color_balance.c:323 +#: app/color_balance.c:279 msgid "Shadows" msgstr "Shaduwen" -#: app/color_balance.c:324 +#: app/color_balance.c:280 msgid "Midtones" msgstr "" -#: app/color_balance.c:325 +#: app/color_balance.c:281 msgid "Highlights" msgstr "" -#: app/color_balance.c:342 app/tools.c:476 +#: app/color_balance.c:299 app/tools.c:502 msgid "Color Balance" msgstr "Kleurbalans" -#: app/color_balance.c:357 +#: app/color_balance.c:314 msgid "Color Levels: " msgstr "Kleurniveaus" #. Create the cyan-red scale widget -#: app/color_balance.c:396 +#: app/color_balance.c:353 msgid "Cyan" msgstr "Cyaan" #. Create the magenta-green scale widget -#: app/color_balance.c:423 +#: app/color_balance.c:380 msgid "Magenta" msgstr "" #. Create the yellow-blue scale widget -#: app/color_balance.c:450 +#: app/color_balance.c:407 msgid "Yellow" msgstr "Geel" #. The preserve luminosity toggle -#: app/color_balance.c:490 +#: app/color_balance.c:447 msgid "Preserve Luminosity" msgstr "Lichtheid behouden" -#: app/color_notebook.c:111 app/color_select.c:186 +#: app/color_notebook.c:117 app/color_select.c:187 msgid "Color Selection" msgstr "Kleurselectie" -#: app/color_notebook.c:182 app/color_select.c:205 +#: app/color_notebook.c:188 app/color_select.c:206 msgid "Revert to Old Color" msgstr "Keer Terug naar Oude Kleur" -#: app/color_picker.c:127 +#: app/color_picker.c:128 msgid "Color Picker Options" msgstr "Kleurpikker Opties" -#: app/color_picker.c:153 +#: app/color_picker.c:154 #, fuzzy msgid "Sample Average" msgstr "Voorbeeldgrootte" -#: app/color_picker.c:224 app/tools.c:310 +#: app/color_picker.c:225 app/tools.c:306 msgid "Color Picker" msgstr "Kleurpikker" -#: app/color_picker.c:231 app/color_picker.c:241 +#: app/color_picker.c:232 app/color_picker.c:242 #, fuzzy msgid "Red:" msgstr "Rood" -#: app/color_picker.c:232 app/color_picker.c:242 +#: app/color_picker.c:233 app/color_picker.c:243 #, fuzzy msgid "Green:" msgstr "Groen" -#: app/color_picker.c:233 app/color_picker.c:243 +#: app/color_picker.c:234 app/color_picker.c:244 #, fuzzy msgid "Blue:" msgstr "Blauw" -#: app/color_picker.c:234 app/color_picker.c:240 app/color_picker.c:249 +#: app/color_picker.c:235 app/color_picker.c:241 app/color_picker.c:250 msgid "Alpha:" msgstr "" -#: app/color_picker.c:235 app/color_picker.c:250 app/color_select.c:386 -#: app/colormap_dialog.i.c:199 +#: app/color_picker.c:236 app/color_picker.c:251 app/color_select.c:387 +#: app/colormap_dialog.i.c:201 msgid "Hex Triplet:" msgstr "Hex triple:" -#: app/color_picker.c:239 app/colormap_dialog.i.c:192 +#: app/color_picker.c:240 app/colormap_dialog.i.c:194 #, fuzzy msgid "Index:" msgstr "Geindexeerd" -#: app/color_picker.c:244 +#: app/color_picker.c:245 msgid "Hex Triplet" msgstr "Hex Triple" -#: app/color_picker.c:248 app/histogram_tool.c:311 +#: app/color_picker.c:249 app/histogram_tool.c:271 #, fuzzy msgid "Intensity:" msgstr "Intensiteit" -#: app/color_picker.c:541 app/color_picker.c:542 app/color_picker.c:543 -#: app/color_picker.c:544 app/color_picker.c:545 app/color_picker.c:546 -#: app/color_picker.c:547 app/color_picker.c:560 app/color_picker.c:572 -#: app/color_picker.c:587 +#: app/color_picker.c:547 app/color_picker.c:548 app/color_picker.c:549 +#: app/color_picker.c:550 app/color_picker.c:551 app/color_picker.c:552 +#: app/color_picker.c:553 app/color_picker.c:566 app/color_picker.c:578 +#: app/color_picker.c:593 msgid "N/A" msgstr "" @@ -864,7 +894,7 @@ msgid "Indexed Color Palette" msgstr "Kleurenpalet" #. The GIMP image option menu -#: app/colormap_dialog.i.c:136 app/layers_dialog.c:359 +#: app/colormap_dialog.i.c:136 app/lc_dialog.c:131 msgid "Image:" msgstr "" @@ -873,48 +903,48 @@ msgstr "" msgid "Operations" msgstr "Openopties" -#: app/colormap_dialog.i.c:831 app/layers_dialog.c:879 +#: app/colormap_dialog.i.c:833 app/lc_dialog.c:614 msgid "none" msgstr "" -#: app/commands.c:366 +#: app/commands.c:342 msgid "Border Selection" msgstr "Rand Selectie" -#: app/commands.c:366 +#: app/commands.c:343 msgid "Border selection by:" msgstr "Rand selectie door:" -#: app/commands.c:384 +#: app/commands.c:360 msgid "Feather Selection" msgstr "" -#: app/commands.c:384 +#: app/commands.c:361 msgid "Feather selection by:" msgstr "" -#: app/commands.c:402 +#: app/commands.c:378 msgid "Grow Selection" msgstr "Groeiselectie" -#: app/commands.c:402 +#: app/commands.c:379 msgid "Grow selection by:" msgstr "Groeiselectie door:" -#: app/commands.c:420 +#: app/commands.c:396 msgid "Shrink Selection" msgstr "Krimpselectie" -#: app/commands.c:420 +#: app/commands.c:397 msgid "Shrink selection by:" msgstr "Krimpselectie door:" -#: app/commands.c:1199 +#: app/commands.c:1179 msgid "Resize Error: Both width and height must be greater than zero." msgstr "" "Fout bij instellen van afmeting: breedte en hoogte moeten groter zijn dan 0" -#: app/commands.c:1248 +#: app/commands.c:1228 msgid "Scale Error: Both width and height must be greater than zero." msgstr "" "Fout bij instellen van schaal: breedte en hoogte moeten groter zijn dan 0" @@ -972,118 +1002,118 @@ msgstr "Scherp" msgid "Convolve Type" msgstr "Type van Kromme: " -#: app/crop.c:169 app/crop.c:1009 +#: app/crop.c:170 app/crop.c:1025 msgid "Crop" msgstr "Knip" -#: app/crop.c:169 app/crop.c:1010 +#: app/crop.c:170 app/crop.c:1026 msgid "Resize" msgstr "" -#: app/crop.c:175 +#: app/crop.c:176 #, fuzzy msgid "Crop & Resize Options" msgstr "Knip Opties" -#: app/crop.c:186 +#: app/crop.c:187 msgid "Current layer only" msgstr "Enkel huidige laag" #. enlarge toggle -#: app/crop.c:197 +#: app/crop.c:198 msgid "Allow Enlarging" msgstr "" #. tool toggle -#: app/crop.c:208 app/flip_tool.c:84 +#: app/crop.c:209 app/flip_tool.c:85 msgid "Tool Toggle" msgstr "" -#: app/crop.c:500 app/crop.c:508 +#: app/crop.c:501 app/crop.c:509 #, fuzzy msgid "Crop: " msgstr "Knip" -#: app/crop.c:997 +#: app/crop.c:1005 msgid "Crop: 0 x 0" msgstr "Knip: 0 x 0" #. create the info dialog -#: app/crop.c:1025 +#: app/crop.c:1033 #, fuzzy msgid "Crop & Resize Information" msgstr "Knip Informatie" #. add the information fields -#: app/crop.c:1028 +#: app/crop.c:1036 #, fuzzy msgid "Origin X:" msgstr "X Bron: " -#: app/crop.c:1031 app/file_new_dialog.c:749 app/resize.c:334 app/resize.c:419 -#: app/resize.c:577 app/rotate_tool.c:108 app/scale_tool.c:99 +#: app/crop.c:1039 app/file_new_dialog.c:753 app/resize.c:334 app/resize.c:419 +#: app/resize.c:577 app/rotate_tool.c:109 app/scale_tool.c:99 #: app/shear_tool.c:83 msgid "Y:" msgstr "" #. the pixel size labels -#: app/crop.c:1059 app/file_new_dialog.c:610 app/file_new_dialog.c:628 +#: app/crop.c:1052 app/file_new_dialog.c:614 app/file_new_dialog.c:632 +#: app/tool_options.c:405 #, fuzzy msgid "Width:" msgstr "Breedte: " -#: app/crop.c:1062 app/file_new_dialog.c:616 app/file_new_dialog.c:634 -#: app/layers_dialog.c:3271 app/resize.c:245 app/resize.c:270 app/resize.c:514 -#: app/scale_tool.c:78 app/scale_tool.c:85 +#: app/crop.c:1055 app/file_new_dialog.c:620 app/file_new_dialog.c:638 +#: app/layers_dialog.c:2954 app/resize.c:245 app/resize.c:270 app/resize.c:514 +#: app/scale_tool.c:78 app/scale_tool.c:85 app/tool_options.c:427 #, fuzzy msgid "Height:" msgstr "Hoogte: " -#: app/crop.c:1097 +#: app/crop.c:1077 #, fuzzy msgid "From Selection" msgstr "Groeiselectie" -#: app/crop.c:1103 -#, fuzzy -msgid "Automatic" -msgstr "/Automatisch" +#: app/crop.c:1083 +msgid "Auto Shrink" +msgstr "" -#: app/curves.c:373 +#: app/curves.c:368 msgid "Curves Options" msgstr "Krommen-Opties" -#: app/curves.c:423 app/layers_dialog.c:288 app/levels.c:281 -#: app/paint_funcs.c:97 +#: app/curves.c:404 app/histogram_tool.c:278 app/layers_dialog.c:227 +#: app/levels.c:230 app/paint_funcs.c:97 app/tool_options.c:790 msgid "Value" msgstr "Waarde" -#: app/curves.c:427 app/levels.c:285 +#: app/curves.c:408 app/levels.c:234 msgid "Alpha" msgstr "" -#: app/curves.c:433 -msgid "Smooth" -msgstr "" - -#: app/curves.c:434 -msgid "Free" -msgstr "" - -#: app/curves.c:445 +#: app/curves.c:419 msgid "Curves for indexed drawables cannot be adjusted." msgstr "Krommen voor geindexeerde tekeningen kunnen niet aangepast worden." -#: app/curves.c:560 app/tools.c:551 +#: app/curves.c:523 +msgid "Smooth" +msgstr "" + +#: app/curves.c:524 +msgid "Free" +msgstr "" + +#: app/curves.c:550 app/tools.c:577 msgid "Curves" msgstr "Krommen" -#: app/curves.c:574 +#: app/curves.c:564 msgid "Modify Curves for Channel: " msgstr "Verander Krommen voor Kanaal: " #. The option menu for selecting the drawing method -#: app/curves.c:648 +#: app/curves.c:638 msgid "Curve Type: " msgstr "Type van Kromme: " @@ -1091,7 +1121,7 @@ msgstr "Type van Kromme: " msgid "Desaturate operates only on RGB color drawables." msgstr "Desatureren werkt enkel op RGB kleurentekeningen." -#: app/devices.c:123 app/palette.c:2187 app/preferences_dialog.c:1437 +#: app/devices.c:123 app/palette.c:2187 app/preferences_dialog.c:1471 msgid "Save" msgstr "Bewaar" @@ -1127,49 +1157,49 @@ msgstr "Er is geen selectie om naar beneden te verschuiven." msgid "There's no selection to remove." msgstr "Er is geen selectie om te verwijderen." -#: app/docindexif.c:75 +#: app/docindexif.c:80 msgid "Open" msgstr "Open" -#: app/docindexif.c:75 +#: app/docindexif.c:80 msgid "Open a file" msgstr "Open een bestand" -#: app/docindexif.c:80 +#: app/docindexif.c:85 msgid "Up" msgstr "Boven" -#: app/docindexif.c:80 +#: app/docindexif.c:85 msgid "Move the selected entry up in the index" msgstr "Beweeg de geselecteerde ingang in de index naar boven" -#: app/docindexif.c:85 +#: app/docindexif.c:90 msgid "Down" msgstr "Onder" -#: app/docindexif.c:85 +#: app/docindexif.c:90 msgid "Move the selected entry down in the index" msgstr "Beweeg de geselecteerde ingang in de index naar onder" -#: app/docindexif.c:90 +#: app/docindexif.c:95 msgid "Remove" msgstr "Verwijder" -#: app/docindexif.c:90 +#: app/docindexif.c:95 msgid "Remove the selected entry from the index" msgstr "Verwijder de selecteerde ingang van de index" -#: app/docindexif.c:95 +#: app/docindexif.c:100 msgid "Close the Document Index" msgstr "Sluit de Documentindex" #. Set the GOWindow title -#: app/docindexif.c:213 +#: app/docindexif.c:218 msgid "Document Index" msgstr "Documentindex" #. Set the initial status message -#: app/docindexif.c:219 +#: app/docindexif.c:224 msgid "GTK successfully started" msgstr "GTK succesvol opgestartd" @@ -1177,11 +1207,11 @@ msgstr "GTK succesvol opgestartd" msgid "drawable_fill called with unknown fill type" msgstr "" -#: app/edit_selection.c:164 +#: app/edit_selection.c:163 msgid "Move: 0, 0" msgstr "Beweeg: 0, 0" -#: app/edit_selection.c:443 app/edit_selection.c:453 +#: app/edit_selection.c:442 app/edit_selection.c:452 #, fuzzy msgid "Move: " msgstr "Modus: " @@ -1196,41 +1226,41 @@ msgid "Hard edge" msgstr "" #. the incremental toggle -#: app/eraser.c:108 app/paintbrush.c:258 +#: app/eraser.c:108 app/paintbrush.c:257 msgid "Incremental" msgstr "Incrementeel" -#: app/errorconsole.c:168 +#: app/errorconsole.c:170 #, c-format msgid "Error opening file %s: %s" msgstr "Fout bij openen van bestand %s: %s" -#: app/errorconsole.c:183 +#: app/errorconsole.c:185 msgid "Can't save, nothing selected!" msgstr "Kan niet bewaren, niets geselecteerd!" -#: app/errorconsole.c:187 +#: app/errorconsole.c:189 msgid "Save error log to file..." msgstr "Bewaar foutenlog naar bestand..." -#: app/errorconsole.c:244 +#: app/errorconsole.c:246 msgid "GIMP Error console" msgstr "GIMP fouten console" -#: app/errorconsole.c:259 +#: app/errorconsole.c:261 msgid "Write all errors to file..." msgstr "Schrijf alle fouten naar bestand..." -#: app/errorconsole.c:266 +#: app/errorconsole.c:268 msgid "Write selection to file..." msgstr "Schrijf selectie naar bestand..." -#: app/file_new_dialog.c:299 +#: app/file_new_dialog.c:303 #, fuzzy msgid "Confirm Image Size" msgstr "Afmeting instellen" -#: app/file_new_dialog.c:313 +#: app/file_new_dialog.c:317 #, c-format msgid "" "You are trying to create an image which\n" @@ -1246,84 +1276,84 @@ msgid "" "preferences dialog." msgstr "" -#: app/file_new_dialog.c:407 +#: app/file_new_dialog.c:411 #, c-format msgid "%d Bytes" msgstr "" -#: app/file_new_dialog.c:409 +#: app/file_new_dialog.c:413 #, c-format msgid "%.2f KB" msgstr "" -#: app/file_new_dialog.c:411 +#: app/file_new_dialog.c:415 #, c-format msgid "%.1f KB" msgstr "" -#: app/file_new_dialog.c:413 +#: app/file_new_dialog.c:417 #, c-format msgid "%d KB" msgstr "" -#: app/file_new_dialog.c:415 +#: app/file_new_dialog.c:419 #, c-format msgid "%.2f MB" msgstr "" -#: app/file_new_dialog.c:417 +#: app/file_new_dialog.c:421 #, c-format msgid "%.1f MB" msgstr "" #. bytes per pixel #. alpha channel -#: app/file_new_dialog.c:442 +#: app/file_new_dialog.c:446 #, fuzzy, c-format msgid "Image Size: %s" msgstr "Afmeting instellen" -#: app/file_new_dialog.c:485 app/gdisplay.c:197 app/preferences_dialog.c:1598 +#: app/file_new_dialog.c:489 app/gdisplay.c:202 app/preferences_dialog.c:1633 msgid "RGB" msgstr "" -#: app/file_new_dialog.c:486 app/info_window.c:50 app/info_window.c:241 -#: app/preferences_dialog.c:1599 +#: app/file_new_dialog.c:490 app/info_window.c:50 app/info_window.c:241 +#: app/preferences_dialog.c:1634 msgid "Grayscale" msgstr "Grijswaarden" -#: app/file_new_dialog.c:492 app/layers_dialog.c:3209 +#: app/file_new_dialog.c:496 app/layers_dialog.c:2892 msgid "Foreground" msgstr "Voorgrond" -#: app/file_new_dialog.c:494 app/layers_dialog.c:3211 +#: app/file_new_dialog.c:498 app/layers_dialog.c:2894 msgid "White" msgstr "Wit" -#: app/file_new_dialog.c:568 +#: app/file_new_dialog.c:572 msgid "New Image" msgstr "Nieuwe beeld" -#: app/file_new_dialog.c:674 app/preferences_dialog.c:1507 +#: app/file_new_dialog.c:678 app/preferences_dialog.c:1542 msgid "Pixels" msgstr "" #. the resolution labels -#: app/file_new_dialog.c:743 app/resize.c:571 +#: app/file_new_dialog.c:747 app/resize.c:571 #, fuzzy msgid "Resolution X:" msgstr "Resolutie" -#: app/file_new_dialog.c:764 app/resize.c:592 +#: app/file_new_dialog.c:768 app/resize.c:592 msgid "pixels/%a" msgstr "" #. frame for Image Type -#: app/file_new_dialog.c:808 +#: app/file_new_dialog.c:812 msgid "Image Type" msgstr "Beeldtype" -#: app/fileops.c:222 app/fileops.c:251 +#: app/fileops.c:224 app/fileops.c:253 msgid "Load Image" msgstr "Laad beeld" @@ -1332,80 +1362,80 @@ msgstr "Laad beeld" msgid "Open Options" msgstr "Openopties" -#: app/fileops.c:278 app/fileops.c:479 +#: app/fileops.c:278 app/fileops.c:482 msgid "Determine file type:" msgstr "Bepaal bestandstype:" -#: app/fileops.c:441 app/fileops.c:463 +#: app/fileops.c:443 app/fileops.c:465 msgid "Save Image" msgstr "Bewaar Beeld" -#: app/fileops.c:471 +#: app/fileops.c:474 msgid "Save Options" msgstr "Bewaaropties" -#: app/fileops.c:522 +#: app/fileops.c:526 msgid "Can't revert. No filename associated with this image" msgstr "" -#: app/fileops.c:536 +#: app/fileops.c:540 #, fuzzy msgid "Revert failed." msgstr "Bewaren mislukt: " -#: app/fileops.c:1212 app/fileops.c:1302 +#: app/fileops.c:1364 app/fileops.c:1454 msgid "Open failed: " msgstr "Openen mislukt: " -#: app/fileops.c:1368 +#: app/fileops.c:1520 #, c-format msgid "%s is an irregular file (%s)" msgstr "%s is een abnormaal bestand (%s)" -#: app/fileops.c:1382 app/fileops.c:1485 +#: app/fileops.c:1534 app/fileops.c:1641 msgid "Save failed: " msgstr "Bewaren mislukt: " -#: app/fileops.c:1394 app/fileops.c:1407 -msgid "/File/Open" -msgstr "/Bestand/Open" - -#: app/fileops.c:1395 app/fileops.c:1408 -msgid "/File/Open" +#: app/fileops.c:1546 app/fileops.c:1547 app/fileops.c:1559 app/fileops.c:1560 +#: app/menus.c:58 app/menus.c:90 +#, fuzzy +msgid "/File/Open" msgstr "/Bestand/Open" -#: app/fileops.c:1396 app/fileops.c:1409 -msgid "/File/Save" +#: app/fileops.c:1548 app/fileops.c:1564 app/menus.c:91 +#, fuzzy +msgid "/File/Save" msgstr "/Bestand/Bewaar" -#: app/fileops.c:1397 app/fileops.c:1410 -msgid "/File/Save as" +#: app/fileops.c:1549 app/fileops.c:1565 app/menus.c:92 +#, fuzzy +msgid "/File/Save as" msgstr "/Bestand/Bewaar als" -#: app/fileops.c:1430 +#: app/fileops.c:1586 #, c-format msgid "%s exists, overwrite?" msgstr "%s bestaat, overschrijven?" -#: app/fileops.c:1436 +#: app/fileops.c:1592 msgid "File Exists!" msgstr "Bestand Bestaat!" -#: app/flip_tool.c:70 app/preferences_dialog.c:1553 -#: app/preferences_dialog.c:2215 +#: app/flip_tool.c:71 app/preferences_dialog.c:1588 +#: app/preferences_dialog.c:2290 msgid "Horizontal" msgstr "Horizontaal" -#: app/flip_tool.c:70 app/preferences_dialog.c:1555 -#: app/preferences_dialog.c:2217 +#: app/flip_tool.c:71 app/preferences_dialog.c:1590 +#: app/preferences_dialog.c:2292 msgid "Vertical" msgstr "Verticaal" -#: app/flip_tool.c:76 +#: app/flip_tool.c:77 msgid "Flip Tool Options" msgstr "Fliphulpopties" -#: app/floating_sel.c:108 +#: app/floating_sel.c:107 msgid "" "Cannot anchor this layer because\n" "it is not a floating selection." @@ -1413,7 +1443,7 @@ msgstr "" "Kan deze laag niet verankeren\n" "het is geen drijvende selectie." -#: app/floating_sel.c:174 +#: app/floating_sel.c:173 msgid "" "Cannot create a new layer from the floating\n" "selection because it belongs to a\n" @@ -1423,235 +1453,41 @@ msgstr "" "selectie omdat it toebehoort aan een\n" "laagmasker of kanaal." -#: app/free_select.c:220 +#: app/free_select.c:219 msgid "Cannot properly scanline convert polygon!\n" msgstr "" -#: app/gdisplay.c:197 +#: app/gdisplay.c:202 msgid "RGB-empty" msgstr "RGB-leeg" -#: app/gdisplay.c:200 +#: app/gdisplay.c:205 msgid "grayscale-empty" msgstr "grijswaardenleeg" -#: app/gdisplay.c:200 +#: app/gdisplay.c:205 msgid "grayscale" msgstr "grijswaarden" -#: app/gdisplay.c:203 +#: app/gdisplay.c:208 msgid "indexed-empty" msgstr "geindexeerd-leeg" -#: app/gdisplay.c:203 +#: app/gdisplay.c:208 msgid "indexed" msgstr "geindexeerd" -#: app/gdisplay.c:1573 -#, fuzzy -msgid "/Layers/Stack/Previous Layer" -msgstr "/Lagen/Verhoog Laag" - -#: app/gdisplay.c:1574 -#, fuzzy -msgid "/Layers/Stack/Next Layer" -msgstr "/Lagen/Verhoog Laag" - -#: app/gdisplay.c:1575 -#, fuzzy -msgid "/Layers/Stack/Raise Layer" -msgstr "/Lagen/Verhoog Laag" - -#: app/gdisplay.c:1576 -#, fuzzy -msgid "/Layers/Stack/Lower Layer" -msgstr "/Lagen/Verlaag Laag" - -#: app/gdisplay.c:1577 -#, fuzzy -msgid "/Layers/Stack/Layer to Top" -msgstr "/Lagen/Verhoog Laag" - -#: app/gdisplay.c:1578 -#, fuzzy -msgid "/Layers/Stack/Layer to Bottom" -msgstr "/Lagen/Verhoog Laag" - -#: app/gdisplay.c:1579 -msgid "/Layers/Anchor Layer" -msgstr "/Lagen/Veranker Laag" - -#: app/gdisplay.c:1580 -msgid "/Layers/Merge Visible Layers" -msgstr "/Lagen/Voeg Zichtbare Lagen Samen" - -#: app/gdisplay.c:1581 -msgid "/Layers/Flatten Image" -msgstr "" - -#: app/gdisplay.c:1582 -msgid "/Layers/Alpha To Selection" -msgstr "" - -#: app/gdisplay.c:1583 -msgid "/Layers/Mask To Selection" -msgstr "" - -#: app/gdisplay.c:1584 -msgid "/Layers/Add Alpha Channel" -msgstr "/Lagen/Voeg Alfa Kanaal toe" - -#: app/gdisplay.c:1586 -msgid "/Image/RGB" -msgstr "/Beeld/RGB" - -#: app/gdisplay.c:1587 -msgid "/Image/Grayscale" -msgstr "/Beeld/Grijswaarden" - -#: app/gdisplay.c:1588 -msgid "/Image/Indexed" -msgstr "/Beeld/Geindexeerd" - -#: app/gdisplay.c:1590 -msgid "/Image/Colors/Threshold" -msgstr "" - -#: app/gdisplay.c:1591 -msgid "/Image/Colors/Posterize" -msgstr "" - -#: app/gdisplay.c:1592 -msgid "/Image/Colors/Equalize" -msgstr "" - -#: app/gdisplay.c:1593 -msgid "/Image/Colors/Invert" -msgstr "/Beeld/Kleuren/Inverteren" - -#: app/gdisplay.c:1595 -msgid "/Image/Colors/Color Balance" -msgstr "/Beeld/Kleuren/Kleurenbalans" - -#: app/gdisplay.c:1596 -msgid "/Image/Colors/Brightness-Contrast" -msgstr "/Beeld/Kleuren/Helderheid-Contrast" - -#: app/gdisplay.c:1597 -msgid "/Image/Colors/Hue-Saturation" -msgstr "/Beeld/Kleuren/Hue-Saturation" - -#: app/gdisplay.c:1598 -msgid "/Image/Colors/Curves" -msgstr "/Beeld/Kleuren/Krommen" - -#: app/gdisplay.c:1599 -msgid "/Image/Colors/Levels" -msgstr "/Beeld/Kleuren/Niveaus" - -#: app/gdisplay.c:1601 -msgid "/Image/Colors/Desaturate" -msgstr "/Beeld/Kleuren/Desaturate" - -#: app/gdisplay.c:1603 -msgid "/Image/Alpha/Add Alpha Channel" -msgstr "/Beeld/Alfa/Voeg Alfa Kanaal toe" - -#: app/gdisplay.c:1605 -msgid "/Select" -msgstr "/Selecteer" - -#: app/gdisplay.c:1606 -msgid "/Edit/Cut" -msgstr "/Editeer/Knip" - -#: app/gdisplay.c:1607 -msgid "/Edit/Copy" -msgstr "/Editeer/Kopieer" - -#: app/gdisplay.c:1608 -msgid "/Edit/Paste" -msgstr "/Editeer/Plak" - -#: app/gdisplay.c:1609 -msgid "/Edit/Paste Into" -msgstr "/Editeer/Plak op" - -#: app/gdisplay.c:1610 -msgid "/Edit/Clear" -msgstr "/Editeer/Wis" - -#: app/gdisplay.c:1611 -msgid "/Edit/Fill" -msgstr "/Editeer/Vul" - -#: app/gdisplay.c:1612 -msgid "/Edit/Stroke" -msgstr "/Editeer/Stroke" - -#: app/gdisplay.c:1613 -msgid "/Edit/Cut Named" -msgstr "/Editeer/Knip met naam" - -#: app/gdisplay.c:1614 -msgid "/Edit/Copy Named" -msgstr "/Editeer/Kopieer met naam" - -#: app/gdisplay.c:1615 -msgid "/Edit/Paste Named" -msgstr "/Editeer/Plak met naam" - -#: app/gdisplay.c:1616 -msgid "/Image/Colors" -msgstr "/Beeld/Kleuren" - -#: app/gdisplay.c:1617 -msgid "/Image/Channel Ops/Offset" -msgstr "/Beeld/Kanaal Ops/Offset" - -#: app/gdisplay.c:1618 -msgid "/Image/Histogram" -msgstr "/Beeld/Histogram" - -#: app/gdisplay.c:1619 -msgid "/Filters" -msgstr "/Filters" - -#. save selection to channel -#: app/gdisplay.c:1622 -msgid "/Select/Save To Channel" -msgstr "/Selecteer/Bewaar in kanaal" - -#: app/gdisplay.c:1624 -msgid "/View/Toggle Rulers" -msgstr "/Zicht/Linealen" - -#: app/gdisplay.c:1625 -msgid "/View/Toggle Guides" -msgstr "/Zicht/Hulplijnen" - -#: app/gdisplay.c:1626 -msgid "/View/Snap To Guides" -msgstr "/Zicht/Snap To Guides" - -#: app/gdisplay.c:1627 -msgid "/View/Toggle Statusbar" -msgstr "/Zicht/Statusbalk" - -#: app/gdisplay.c:1628 -msgid "/View/Dot for dot" -msgstr "/Zicht/Punt voor punt" - -#: app/gdisplay.c:2063 +#: app/gdisplay.c:2102 msgid "gdisplays_flush() called recursively." msgstr "" -#: app/gdisplay_ops.c:305 app/gdisplay_ops.c:324 app/gdisplay_ops.c:334 -#: app/gdisplay_ops.c:370 -msgid "/File/Close" +#: app/gdisplay_ops.c:305 app/gdisplay_ops.c:320 app/gdisplay_ops.c:330 +#: app/gdisplay_ops.c:366 app/menus.c:97 +#, fuzzy +msgid "/File/Close" msgstr "/Bestand/Sluit" -#: app/gdisplay_ops.c:392 +#: app/gdisplay_ops.c:388 #, fuzzy, c-format msgid "Changes were made to %s. Close anyway?" msgstr "Veranderingen gemaakt in %s. Toch sluiten?" @@ -1723,67 +1559,67 @@ msgstr "onbenoemd" msgid "Layer type %d not supported." msgstr "Laagtype %d niet ondersteund." -#: app/gimpimage.c:596 app/gimpimage.c:690 +#: app/gimpimage.c:642 app/gimpimage.c:740 msgid "gimp_image_apply_image sent illegal parameters" msgstr "" -#: app/gimpimage.c:1096 +#: app/gimpimage.c:1172 msgid "Unable to project indexed image." msgstr "Kan geindexeerd beeld niet projecteren." -#: app/gimpimage.c:1966 +#: app/gimpimage.c:2109 msgid "Layer cannot be raised any further" msgstr "Laag kan niet verder naar boven" -#: app/gimpimage.c:2040 +#: app/gimpimage.c:2184 msgid "Layer cannot be lowered any further" msgstr "Laag kan niet verder naar beneden" #. layer_arg is already the top_layer -#: app/gimpimage.c:2069 +#: app/gimpimage.c:2214 msgid "Layer is already on top" msgstr "Laag is reeds de bovenste" -#: app/gimpimage.c:2074 +#: app/gimpimage.c:2219 msgid "Can't raise Layer without alpha" msgstr "Kan laag niet verhogen zonder alfa" #. there is no next layer below layer_arg -#: app/gimpimage.c:2168 +#: app/gimpimage.c:2314 msgid "Layer is already on bottom" msgstr "Laag is reeds op de bodem" -#: app/gimpimage.c:2181 +#: app/gimpimage.c:2327 msgid "BG has no alpha, layer was placed above" msgstr "" -#: app/gimpimage.c:2243 +#: app/gimpimage.c:2390 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." msgstr "" -#: app/gimpimage.c:2321 +#: app/gimpimage.c:2468 msgid "There are not enough visible layers for a merge down." msgstr "Er zijn niet genoeg zichtbare lagen voor een neerwaarte samenvoeging." -#: app/gimpimage.c:2432 app/gimpimage.c:2465 +#: app/gimpimage.c:2581 app/gimpimage.c:2614 msgid "gimp_image_merge_layers: could not allocate merge layer" msgstr "" -#: app/gimpimage.c:2504 +#: app/gimpimage.c:2653 msgid "gimp_image_merge_layers attempting to merge incompatible layers\n" msgstr "" -#: app/gimpimage.c:2584 +#: app/gimpimage.c:2735 msgid "gimp_image_add_layer: attempt to add layer to wrong image" msgstr "" -#: app/gimpimage.c:2594 +#: app/gimpimage.c:2745 msgid "gimp_image_add_layer: trying to add layer to image twice" msgstr "" -#: app/gimpimage.c:2710 +#: app/gimpimage.c:2864 msgid "" "Unable to add a layer mask since\n" "the layer already has one." @@ -1791,7 +1627,7 @@ msgstr "" "Kan geen laagmasker toevoegen omdat\n" "de laag reeds een heeft." -#: app/gimpimage.c:2714 +#: app/gimpimage.c:2868 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." @@ -1799,7 +1635,7 @@ msgstr "" "Kan geen laagmasker toevoegen\n" " ineen laag van een geindexeerd beeld." -#: app/gimpimage.c:2718 +#: app/gimpimage.c:2872 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." @@ -1807,29 +1643,29 @@ msgstr "" "Kan geen laagmasker toevoegen in een laag\n" "zonder alfa kanaal." -#: app/gimpimage.c:2722 +#: app/gimpimage.c:2876 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Kan geen laagmasker met verschillende afmetingen dan gespecifieerde laag " "toevoegen " -#: app/gimpimage.c:2826 +#: app/gimpimage.c:2983 msgid "Channel cannot be raised any further" msgstr "Kanaal kan niet verder naar boven" -#: app/gimpimage.c:2873 +#: app/gimpimage.c:3031 msgid "Channel cannot be lowered any further" msgstr "Kanaal kan niet verder naar beneden" -#: app/gimpimage.c:2893 +#: app/gimpimage.c:3053 msgid "gimp_image_add_channel: attempt to add channel to wrong image" msgstr "" -#: app/gimpimage.c:2903 +#: app/gimpimage.c:3063 msgid "gimp_image_add_channel: trying to add channel to image twice" msgstr "" -#: app/gimpimage.c:3029 app/palette.c:525 app/palette.c:550 app/palette.c:909 +#: app/gimpimage.c:3190 app/palette.c:525 app/palette.c:550 app/palette.c:909 #: app/palette.c:913 app/palette.c:2313 app/palette.c:2995 msgid "Untitled" msgstr "Ongetiteld" @@ -1838,95 +1674,99 @@ msgstr "Ongetiteld" msgid "Progress" msgstr "" -#: app/gimprc.c:353 app/plug_in.c:302 +#: app/gimprc.c:358 app/plug_in.c:305 msgid "Resource configuration" msgstr "Bronconfiguratie" -#: app/gimprc.c:408 +#: app/gimprc.c:413 #, c-format msgid "error parsing: \"%s\"\n" msgstr "fout bij het parsen: \"%s\"\n" -#: app/gimprc.c:409 +#: app/gimprc.c:414 #, c-format msgid " at line %d column %d\n" msgstr " in lijn %d kolom %d\n" -#: app/gimprc.c:410 +#: app/gimprc.c:415 #, c-format msgid " unexpected token: %s\n" msgstr " onverwacht teken: %s\n" -#: app/gimprc.c:1300 +#: app/gimprc.c:1305 msgid "error parsing pluginrc" msgstr "fout bij parsen van pluginrc" -#: app/gimprc.c:1635 +#: app/gimprc.c:1640 #, c-format msgid "gimprc token referenced but not defined: %s" msgstr "gimprc teken gerefereerd maar niet gedefinieerd: %s" -#: app/gimprc.c:2518 +#: app/gimprc.c:2522 #, c-format msgid "Can't open %s; %s" msgstr "" -#: app/gimprc.c:2537 +#: app/gimprc.c:2541 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "" -#: app/gimprc.c:2543 +#: app/gimprc.c:2547 #, c-format msgid "Couldn't reopen %s\n" msgstr "" -#: app/gimprc.c:2555 +#: app/gimprc.c:2559 #, c-format msgid "Can't write to %s; %s" msgstr "" #. Make a new floating layer -#: app/global_edit.c:284 +#: app/global_edit.c:289 app/global_edit.c:344 app/global_edit.c:354 #, fuzzy msgid "Pasted Layer" msgstr "Tekstlaag" -#: app/global_edit.c:591 +#: app/global_edit.c:698 msgid "Paste" msgstr "Plakken" +#: app/global_edit.c:699 +#, fuzzy +msgid "Paste Into" +msgstr "/Editeer/Plak op" + +#: app/global_edit.c:700 +msgid "Paste As New" +msgstr "" + #. Buttons -#: app/global_edit.c:592 app/gradient.c:1477 app/palette.c:1429 +#: app/global_edit.c:704 app/gradient.c:1477 app/palette.c:1429 #: app/palette.c:2179 msgid "Delete" msgstr "Verwijder" -#: app/global_edit.c:606 +#: app/global_edit.c:720 #, fuzzy msgid "Paste Named Buffer" msgstr "Plak Bezier Buffer Met Naam" -#: app/global_edit.c:618 +#: app/global_edit.c:732 #, fuzzy msgid "Select a buffer to paste:" msgstr "Kies een buffer om mee te werken:" -#: app/global_edit.c:637 -#, fuzzy -msgid "Replace Current Selection" -msgstr "Repliceer selectie" - -#: app/global_edit.c:699 +#: app/global_edit.c:820 #, fuzzy msgid "Cut Named" msgstr "onbenoemd" -#: app/global_edit.c:700 app/global_edit.c:732 +#: app/global_edit.c:821 app/global_edit.c:853 msgid "Enter a name for this buffer" msgstr "Geef een naam voor deze buffer" -#: app/global_edit.c:731 +#: app/global_edit.c:852 #, fuzzy msgid "Copy Named" msgstr "Kopieer gradatie" @@ -1982,7 +1822,7 @@ msgstr "Gradatie Editor" msgid "Gradients: " msgstr "Gradaties: " -#: app/gradient.c:680 app/gradient_select.c:476 app/paintbrush.c:199 +#: app/gradient.c:680 app/gradient_select.c:476 app/paintbrush.c:204 #: app/palette.c:2833 msgid "Gradient" msgstr "Gradatie" @@ -2340,97 +2180,112 @@ msgstr "" msgid "Gradient Selection" msgstr "Rand Selectie" -#: app/histogram_tool.c:207 +#: app/histogram_tool.c:173 #, fuzzy msgid "Histogram Options" msgstr "Uitwisopties" -#: app/histogram_tool.c:307 +#: app/histogram_tool.c:210 +#, fuzzy +msgid "Histogram does not operate on indexed drawables." +msgstr "Helderheid-Contrast werkt niet op geindexeerde tekeningen." + +#: app/histogram_tool.c:267 #, fuzzy msgid "Mean:" msgstr "Modus: " -#: app/histogram_tool.c:308 +#: app/histogram_tool.c:268 msgid "Std Dev:" msgstr "" -#: app/histogram_tool.c:309 +#: app/histogram_tool.c:269 #, fuzzy msgid "Median:" msgstr "Modus: " -#: app/histogram_tool.c:310 +#: app/histogram_tool.c:270 msgid "Pixels:" msgstr "" -#: app/histogram_tool.c:312 +#: app/histogram_tool.c:272 msgid "Count:" msgstr "" -#: app/histogram_tool.c:313 +#: app/histogram_tool.c:273 #, fuzzy msgid "Percentile:" msgstr "Perspectief" -#: app/hue_saturation.c:301 +#: app/histogram_tool.c:296 app/tools.c:607 +msgid "Histogram" +msgstr "" + +#: app/histogram_tool.c:315 +msgid "Information on Channel:" +msgstr "" + +#: app/hue_saturation.c:260 msgid "Hue-Saturation Options" msgstr "" -#: app/hue_saturation.c:348 +#: app/hue_saturation.c:298 #, fuzzy msgid "Hue-Saturation operates only on RGB color drawables." msgstr "Desatureren werkt enkel op RGB kleurentekeningen." -#: app/hue_saturation.c:416 +#: app/hue_saturation.c:367 #, fuzzy msgid "Master" msgstr "Plakken" -#: app/hue_saturation.c:417 +#: app/hue_saturation.c:368 msgid "R" msgstr "" -#: app/hue_saturation.c:418 +#: app/hue_saturation.c:369 msgid "Y" msgstr "" -#: app/hue_saturation.c:419 +#: app/hue_saturation.c:370 msgid "G" msgstr "" -#: app/hue_saturation.c:420 +#: app/hue_saturation.c:371 msgid "C" msgstr "" -#: app/hue_saturation.c:421 +#: app/hue_saturation.c:372 msgid "B" msgstr "" -#: app/hue_saturation.c:422 +#: app/hue_saturation.c:373 msgid "M" msgstr "" -#: app/hue_saturation.c:442 app/tools.c:506 +#: app/hue_saturation.c:394 app/tools.c:532 msgid "Hue-Saturation" msgstr "" -#: app/hue_saturation.c:504 +#: app/hue_saturation.c:456 msgid "Hue / Lightness / Saturation Adjustments" msgstr "" #. Create the hue scale widget -#: app/hue_saturation.c:514 app/layers_dialog.c:285 app/paint_funcs.c:94 +#: app/hue_saturation.c:466 app/layers_dialog.c:221 app/paint_funcs.c:94 +#: app/tool_options.c:787 msgid "Hue" msgstr "" #. Create the lightness scale widget -#: app/hue_saturation.c:548 +#: app/hue_saturation.c:500 #, fuzzy msgid "Lightness" msgstr "Helderheid" #. Create the saturation scale widget -#: app/hue_saturation.c:582 app/layers_dialog.c:286 app/paint_funcs.c:95 +#: app/hue_saturation.c:534 app/layers_dialog.c:223 app/paint_funcs.c:95 +#: app/tool_options.c:788 msgid "Saturation" msgstr "" @@ -2476,7 +2331,7 @@ msgstr "" msgid "Resolution:" msgstr "Resolutie" -#: app/info_window.c:159 +#: app/info_window.c:159 app/tool_options.c:449 #, fuzzy msgid "Unit:" msgstr "Ongetiteld" @@ -2526,44 +2381,44 @@ msgid "Indexed Color" msgstr "Geindexeerde Kleur Conversie" #. size slider -#: app/ink.c:292 +#: app/ink.c:294 msgid "Size:" msgstr "" #. sens slider -#: app/ink.c:310 app/ink.c:334 app/ink.c:364 +#: app/ink.c:312 app/ink.c:336 app/ink.c:366 msgid "Sensitivity:" msgstr "" #. tilt sens slider -#: app/ink.c:328 +#: app/ink.c:330 msgid "Tilt" msgstr "" #. velocity sens slider -#: app/ink.c:358 +#: app/ink.c:360 msgid "Speed" msgstr "" #. angle adjust slider -#: app/ink.c:388 +#: app/ink.c:390 #, fuzzy msgid "Angle" msgstr "Hoek:" -#: app/ink.c:394 +#: app/ink.c:396 #, fuzzy msgid "Adjust:" msgstr "Hoek:" #. Brush type radiobuttons -#: app/ink.c:417 +#: app/ink.c:419 #, fuzzy msgid "Type" msgstr "Opvultype :" #. Brush shape widget -#: app/ink.c:481 +#: app/ink.c:483 #, fuzzy msgid "Shape" msgstr "Scherp" @@ -2881,18 +2736,18 @@ msgid "" "Installation failed. Contact system administrator.\n" msgstr "" -#: app/interface.c:268 +#: app/interface.c:325 msgid "" "Foreground & background colors. The black and white squares reset colors. " "The arrows swap colors. Double click to select a color from a colorrequester." msgstr "" -#: app/interface.c:485 +#: app/interface.c:541 #, fuzzy msgid "The GIMP" msgstr "Over GIMP" -#: app/interface.c:1256 +#: app/interface.c:1388 msgid "GIMP Message" msgstr "" @@ -2916,7 +2771,8 @@ msgstr "Nieuw kanaal" msgid "Channel Ops" msgstr "Nieuw Kanaal Opties" -#: app/internal_procs.c:79 app/layers_dialog.c:287 app/paint_funcs.c:96 +#: app/internal_procs.c:79 app/layers_dialog.c:225 app/paint_funcs.c:96 +#: app/tool_options.c:789 msgid "Color" msgstr "Kleur" @@ -2974,7 +2830,7 @@ msgstr "Gradatie" msgid "Guide procedures" msgstr "Beeldbron" -#: app/internal_procs.c:118 app/preferences_dialog.c:1686 +#: app/internal_procs.c:118 app/preferences_dialog.c:1721 msgid "Interface" msgstr "" @@ -2997,7 +2853,7 @@ msgstr "Palet" msgid "Parasite procedures" msgstr "Editeer Kromme" -#: app/internal_procs.c:133 app/layers_dialog.c:407 +#: app/internal_procs.c:133 app/lc_dialog.c:180 #, fuzzy msgid "Paths" msgstr "Patronen" @@ -3066,23 +2922,23 @@ msgstr "Ondoorzichtigheid" msgid "Convert to Bezier Curve" msgstr "" -#: app/iscissors.c:1779 +#: app/iscissors.c:1780 msgid "Boundary contains < 4 points! Cannot bezierify." msgstr "" -#: app/layer.c:246 +#: app/layer.c:248 msgid "Zero width or height layers not allowed." msgstr "" -#: app/layer.c:352 +#: app/layer.c:354 msgid "layer_copy: could not allocate new layer" msgstr "" -#: app/layer.c:429 +#: app/layer.c:431 msgid "layer_from_tiles: could not allocate new layer" msgstr "" -#: app/layer.c:484 +#: app/layer.c:486 #, c-format msgid "%s mask" msgstr "" @@ -3092,289 +2948,331 @@ msgstr "" msgid "Layer Select" msgstr "Rand Selectie" -#: app/layers_dialog.c:232 app/layers_dialog.c:303 app/layers_dialog.c:3261 -msgid "New Layer" -msgstr "" - -#: app/layers_dialog.c:234 -msgid "Raise Layer" -msgstr "" - -#: app/layers_dialog.c:236 -msgid "Lower Layer" -msgstr "" - -#: app/layers_dialog.c:238 app/layers_dialog.c:306 -msgid "Duplicate Layer" -msgstr "" - -#: app/layers_dialog.c:240 app/layers_dialog.c:307 -msgid "Delete Layer" -msgstr "" - -#: app/layers_dialog.c:242 app/resize.c:159 -msgid "Scale Layer" -msgstr "" - -#: app/layers_dialog.c:244 app/resize.c:174 -msgid "Resize Layer" -msgstr "" - -#: app/layers_dialog.c:246 -msgid "Add Layer Mask" -msgstr "" - -#: app/layers_dialog.c:248 -msgid "Apply Layer Mask" -msgstr "" - -#: app/layers_dialog.c:250 app/layers_dialog.c:308 -msgid "Anchor Layer" -msgstr "" - -#: app/layers_dialog.c:252 -msgid "Merge Visible Layers" -msgstr "" - -#: app/layers_dialog.c:254 -msgid "Merge Down" -msgstr "" - -#: app/layers_dialog.c:256 -msgid "Flatten Image" -msgstr "" - -#: app/layers_dialog.c:258 -msgid "Alpha To Selection" -msgstr "" - -#: app/layers_dialog.c:260 -msgid "Mask To Selection" -msgstr "" - -#: app/layers_dialog.c:262 -msgid "Add Alpha Channel" -msgstr "" - -#: app/layers_dialog.c:264 -msgid "Layer to Top" -msgstr "" - -#: app/layers_dialog.c:266 -msgid "Layer to Bottom" -msgstr "" - -#: app/layers_dialog.c:274 app/paint_funcs.c:83 +#: app/layers_dialog.c:199 app/paint_funcs.c:83 app/tool_options.c:775 msgid "Normal" msgstr "Normaal" -#: app/layers_dialog.c:275 app/paint_funcs.c:84 +#: app/layers_dialog.c:201 app/paint_funcs.c:84 app/tool_options.c:776 msgid "Dissolve" msgstr "Oplossen" -#: app/layers_dialog.c:276 app/paint_funcs.c:86 +#: app/layers_dialog.c:203 app/paint_funcs.c:86 app/tool_options.c:778 msgid "Multiply (Burn)" msgstr "Vermenigvuldig (burn)" -#: app/layers_dialog.c:277 app/paint_funcs.c:98 +#: app/layers_dialog.c:205 app/paint_funcs.c:98 app/tool_options.c:779 msgid "Divide (Dodge)" msgstr "Deel (Dodge)" -#: app/layers_dialog.c:278 app/paint_funcs.c:87 +#: app/layers_dialog.c:207 app/paint_funcs.c:87 app/tool_options.c:780 msgid "Screen" msgstr "Scherm" -#: app/layers_dialog.c:279 app/paint_funcs.c:88 +#: app/layers_dialog.c:209 app/paint_funcs.c:88 app/tool_options.c:781 msgid "Overlay" msgstr "" -#: app/layers_dialog.c:280 app/paint_funcs.c:89 +#: app/layers_dialog.c:211 app/paint_funcs.c:89 app/tool_options.c:782 msgid "Difference" msgstr "Verschil" -#: app/layers_dialog.c:281 app/paint_funcs.c:90 +#: app/layers_dialog.c:213 app/paint_funcs.c:90 app/tool_options.c:783 msgid "Addition" msgstr "Optelling" -#: app/layers_dialog.c:283 app/paint_funcs.c:92 +#: app/layers_dialog.c:217 app/paint_funcs.c:92 app/tool_options.c:785 msgid "Darken Only" msgstr "Enkel donker maken" -#: app/layers_dialog.c:284 app/paint_funcs.c:93 +#: app/layers_dialog.c:219 app/paint_funcs.c:93 app/tool_options.c:786 msgid "Lighten Only" msgstr "Enkel lichter maken" -#: app/layers_dialog.c:304 +#: app/layers_dialog.c:246 app/layers_dialog.c:2944 +msgid "New Layer" +msgstr "" + +#: app/layers_dialog.c:248 msgid "" "Raise Layer \n" " To Top" msgstr "" -#: app/layers_dialog.c:305 +#: app/layers_dialog.c:251 msgid "" "Lower Layer \n" " To Bottom" msgstr "" -#: app/layers_dialog.c:335 -msgid "Layers & Channels" +#: app/layers_dialog.c:254 +msgid "Duplicate Layer" msgstr "" -#. The Auto-button -#: app/layers_dialog.c:373 -#, fuzzy -msgid "Auto" -msgstr "/Automatisch" - -#: app/layers_dialog.c:391 -msgid "Layers" +#: app/layers_dialog.c:256 +msgid "Anchor Layer" msgstr "" -#: app/layers_dialog.c:401 -msgid "Channels" +#: app/layers_dialog.c:258 +msgid "Delete Layer" msgstr "" -#: app/layers_dialog.c:744 +#: app/layers_dialog.c:321 msgid "Keep Trans." msgstr "" -#: app/layers_dialog.c:1489 +#: app/layers_dialog.c:947 app/menus.c:245 +#, fuzzy +msgid "/Stack/Previous Layer" +msgstr "/Lagen/Verhoog Laag" + +#: app/layers_dialog.c:949 app/menus.c:246 +#, fuzzy +msgid "/Stack/Next Layer" +msgstr "/Lagen/Verhoog Laag" + +#: app/layers_dialog.c:952 app/menus.c:247 +#, fuzzy +msgid "/Stack/Raise Layer" +msgstr "/Lagen/Verhoog Laag" + +#: app/layers_dialog.c:957 app/menus.c:248 +#, fuzzy +msgid "/Stack/Lower Layer" +msgstr "/Lagen/Verlaag Laag" + +#: app/layers_dialog.c:962 app/menus.c:249 +#, fuzzy +msgid "/Stack/Layer to Top" +msgstr "/Lagen/Verhoog Laag" + +#: app/layers_dialog.c:964 app/menus.c:250 +#, fuzzy +msgid "/Stack/Layer to Bottom" +msgstr "Laag is reeds op de bodem" + +#: app/layers_dialog.c:967 app/menus.c:244 +#, fuzzy +msgid "/New Layer" +msgstr "Tekstlaag" + +#: app/layers_dialog.c:970 app/menus.c:251 +#, fuzzy +msgid "/Duplicate Layer" +msgstr "Dupliceer Kanaal" + +#: app/layers_dialog.c:974 app/menus.c:252 +#, fuzzy +msgid "/Anchor Layer" +msgstr "/Lagen/Veranker Laag" + +#: app/layers_dialog.c:978 app/menus.c:253 +#, fuzzy +msgid "/Delete Layer" +msgstr "Tekstlaag" + +#: app/layers_dialog.c:981 app/menus.c:255 +#, fuzzy +msgid "/Scale Layer" +msgstr "Tekstlaag" + +#: app/layers_dialog.c:982 app/menus.c:256 +#, fuzzy +msgid "/Resize Layer" +msgstr "Tekstlaag" + +#: app/layers_dialog.c:984 app/menus.c:258 +#, fuzzy +msgid "/Merge Visible Layers" +msgstr "/Lagen/Voeg Zichtbare Lagen Samen" + +#: app/layers_dialog.c:986 app/menus.c:259 +#, fuzzy +msgid "/Merge Down" +msgstr "Samenvoegen" + +#: app/layers_dialog.c:987 app/menus.c:260 +#, fuzzy +msgid "/Flatten Image" +msgstr "/Lagen/Verhoog Laag" + +#: app/layers_dialog.c:989 app/menus.c:262 +msgid "/Add Layer Mask" +msgstr "" + +#: app/layers_dialog.c:991 app/menus.c:263 +msgid "/Apply Layer Mask" +msgstr "" + +#: app/layers_dialog.c:993 app/menus.c:264 +#, fuzzy +msgid "/Alpha to Selection" +msgstr "Penseel Selectie" + +#: app/layers_dialog.c:995 app/menus.c:265 +#, fuzzy +msgid "/Mask to Selection" +msgstr "Rand Selectie" + +#: app/layers_dialog.c:997 app/menus.c:266 +#, fuzzy +msgid "/Add Alpha Channel" +msgstr "/Lagen/Voeg Alfa Kanaal toe" + +#: app/layers_dialog.c:1185 msgid "Unknown layer mode" msgstr "" -#: app/layers_dialog.c:2206 app/layers_dialog.c:3028 app/layers_dialog.c:3471 +#: app/layers_dialog.c:1890 app/layers_dialog.c:2712 app/layers_dialog.c:3157 msgid "Floating Selection" msgstr "" -#: app/layers_dialog.c:3149 +#: app/layers_dialog.c:2832 msgid "new_layer_query_ok_callback: could not allocate new layer" msgstr "" -#: app/layers_dialog.c:3231 +#: app/layers_dialog.c:2914 msgid "New Layer Options" msgstr "" #. the name label and entry -#: app/layers_dialog.c:3251 +#: app/layers_dialog.c:2934 #, fuzzy msgid "Layer Name:" msgstr "Tekstlaag" #. the size labels -#: app/layers_dialog.c:3265 +#: app/layers_dialog.c:2948 #, fuzzy msgid "Layer Width:" msgstr "Nieuwe breedte:" #. the radio frame and box -#: app/layers_dialog.c:3324 +#: app/layers_dialog.c:3007 msgid "Layer Fill Type" msgstr "" -#: app/layers_dialog.c:3447 +#: app/layers_dialog.c:3131 msgid "Edit Layer Attributes" msgstr "" -#: app/layers_dialog.c:3464 +#: app/layers_dialog.c:3149 msgid "Layer name: " msgstr "" -#: app/layers_dialog.c:3587 +#: app/layers_dialog.c:3275 msgid "White (Full Opacity)" msgstr "" -#: app/layers_dialog.c:3588 +#: app/layers_dialog.c:3276 msgid "Black (Full Transparency)" msgstr "" -#: app/layers_dialog.c:3589 +#: app/layers_dialog.c:3277 msgid "Layer's Alpha Channel" msgstr "" -#: app/layers_dialog.c:3606 +#: app/layers_dialog.c:3294 msgid "Add Mask Options" msgstr "" #. the name entry hbox, label and entry -#: app/layers_dialog.c:3621 +#: app/layers_dialog.c:3309 msgid "Initialize Layer Mask To:" msgstr "" -#: app/layers_dialog.c:3720 +#: app/layers_dialog.c:3408 msgid "Apply" msgstr "" -#: app/layers_dialog.c:3721 +#: app/layers_dialog.c:3409 msgid "Discard" msgstr "" -#: app/layers_dialog.c:3735 +#: app/layers_dialog.c:3423 msgid "Layer Mask Options" msgstr "" #. the name entry hbox, label and entry -#: app/layers_dialog.c:3751 +#: app/layers_dialog.c:3439 msgid "Apply layer mask?" msgstr "" -#: app/layers_dialog.c:3811 app/layers_dialog.c:3909 +#: app/layers_dialog.c:3499 app/layers_dialog.c:3597 msgid "Invalid width or height. Both must be positive." msgstr "" -#: app/layers_dialog.c:4062 +#: app/layers_dialog.c:3751 msgid "Expanded as necessary" msgstr "" -#: app/layers_dialog.c:4063 +#: app/layers_dialog.c:3752 msgid "Clipped to image" msgstr "" -#: app/layers_dialog.c:4064 +#: app/layers_dialog.c:3753 msgid "Clipped to bottom layer" msgstr "" -#: app/layers_dialog.c:4082 +#: app/layers_dialog.c:3771 msgid "Layer Merge Options" msgstr "" -#: app/layers_dialog.c:4098 +#: app/layers_dialog.c:3787 msgid "Final, merged layer should be:" msgstr "" -#: app/layers_dialog.c:4100 +#: app/layers_dialog.c:3789 msgid "Final, anchored layer should be:" msgstr "" -#: app/levels.c:239 +#: app/lc_dialog.c:111 +msgid "Layers & Channels" +msgstr "" + +#. The Auto-button +#: app/lc_dialog.c:150 +#, fuzzy +msgid "Auto" +msgstr "/Automatisch" + +#: app/lc_dialog.c:170 +msgid "Layers" +msgstr "" + +#: app/lc_dialog.c:175 +msgid "Channels" +msgstr "" + +#: app/levels.c:197 #, fuzzy msgid "Levels Options" msgstr "Krommen-Opties" -#: app/levels.c:296 +#: app/levels.c:245 #, fuzzy msgid "Levels for indexed drawables cannot be adjusted." msgstr "Krommen voor geindexeerde tekeningen kunnen niet aangepast worden." -#: app/levels.c:372 +#: app/levels.c:334 #, fuzzy msgid "Auto Levels" msgstr "Kleurniveaus" -#: app/levels.c:403 app/tools.c:566 +#: app/levels.c:351 app/tools.c:592 msgid "Levels" msgstr "" -#: app/levels.c:418 +#: app/levels.c:366 #, fuzzy msgid "Modify Levels for Channel: " msgstr "Verander Krommen voor Kanaal: " -#: app/levels.c:434 +#: app/levels.c:382 #, fuzzy msgid "Input Levels: " msgstr "Kleurniveaus" -#: app/levels.c:522 +#: app/levels.c:470 #, fuzzy msgid "Output Levels: " msgstr "Kleurniveaus" @@ -3388,727 +3286,885 @@ msgstr "Openopties" msgid "Allow Window Resizing" msgstr "" -#: app/main.c:279 +#: app/main.c:287 msgid "GIMP version" msgstr "" -#: app/main.c:283 +#: app/main.c:291 #, c-format msgid "Usage: %s [option ...] [files ...]\n" msgstr "" -#: app/main.c:284 +#: app/main.c:292 msgid "Valid options are:\n" msgstr "" -#: app/main.c:285 +#: app/main.c:293 msgid " -h --help Output this help.\n" msgstr "" -#: app/main.c:286 +#: app/main.c:294 msgid " -v --version Output version info.\n" msgstr "" -#: app/main.c:287 +#: app/main.c:295 msgid " -b --batch Run in batch mode.\n" msgstr "" -#: app/main.c:288 +#: app/main.c:296 msgid " -g --gimprc Use an alternate gimprc file.\n" msgstr "" -#: app/main.c:289 +#: app/main.c:297 msgid " -n --no-interface Run without a user interface.\n" msgstr "" -#: app/main.c:290 +#: app/main.c:298 msgid " -r --restore-session Try to restore saved session.\n" msgstr "" -#: app/main.c:291 +#: app/main.c:299 msgid "" " --no-data Do not load patterns, gradients, palettes, " "brushes.\n" msgstr "" -#: app/main.c:292 +#: app/main.c:300 msgid " --verbose Show startup messages.\n" msgstr "" -#: app/main.c:293 +#: app/main.c:301 msgid " --no-splash Do not show the startup window.\n" msgstr "" -#: app/main.c:294 +#: app/main.c:302 msgid " --no-splash-image Do not add an image to the startup window.\n" msgstr "" -#: app/main.c:295 +#: app/main.c:303 msgid "" " --no-shm Do not use shared memory between GIMP and its " "plugins.\n" msgstr "" -#: app/main.c:296 +#: app/main.c:304 msgid " --no-xshm Do not use the X Shared Memory extension.\n" msgstr "" -#: app/main.c:297 +#: app/main.c:305 msgid "" " --console-messages Display warnings to console instead of a dialog " "box.\n" msgstr "" -#: app/main.c:298 +#: app/main.c:306 msgid " --debug-handlers Enable debugging signal handlers.\n" msgstr "" -#: app/main.c:299 +#: app/main.c:307 msgid "" " --display Use the designated X display.\n" "\n" msgstr "" -#: app/main.c:300 +#: app/main.c:308 msgid " --system-gimprc Use an alternate system gimprc file.\n" msgstr "" -#: app/main.c:412 +#: app/main.c:420 msgid "sighup caught" msgstr "" -#: app/main.c:417 +#: app/main.c:425 msgid "sigint caught" msgstr "" -#: app/main.c:422 +#: app/main.c:430 msgid "sigquit caught" msgstr "" -#: app/main.c:427 +#: app/main.c:435 msgid "sigabrt caught" msgstr "" -#: app/main.c:432 +#: app/main.c:440 msgid "sigbus caught" msgstr "" -#: app/main.c:437 +#: app/main.c:445 msgid "sigsegv caught" msgstr "" -#: app/main.c:442 +#: app/main.c:450 msgid "sigpipe caught" msgstr "" -#: app/main.c:447 +#: app/main.c:455 msgid "sigterm caught" msgstr "" -#: app/main.c:452 +#: app/main.c:460 msgid "sigfpe caught" msgstr "" -#: app/main.c:456 +#: app/main.c:464 msgid "unknown signal" msgstr "" -#: app/menus.c:43 +#: app/menus.c:46 msgid "/File/MRU00 " msgstr "" -#: app/menus.c:53 app/menus.c:80 +#: app/menus.c:56 app/menus.c:88 +#, fuzzy +msgid "/File/tearoff1" +msgstr "/Bestand/Bewaar" + +#: app/menus.c:57 app/menus.c:89 #, fuzzy msgid "/File/New" msgstr "/Bestand/Open" -#: app/menus.c:54 app/menus.c:81 -#, fuzzy -msgid "/File/Open" -msgstr "/Bestand/Open" - -#: app/menus.c:55 +#: app/menus.c:59 #, fuzzy msgid "/File/About..." msgstr "/Bestand/Afsluiten" -#: app/menus.c:56 app/menus.c:85 +#: app/menus.c:60 app/menus.c:94 msgid "/File/Preferences..." msgstr "" -#: app/menus.c:57 +#: app/menus.c:61 #, fuzzy msgid "/File/Tip of the day" msgstr "GIMP Tip van de dag" -#: app/menus.c:58 +#: app/menus.c:63 #, fuzzy msgid "/File/Dialogs/Brushes..." msgstr "Documentindex" -#: app/menus.c:59 +#: app/menus.c:64 #, fuzzy msgid "/File/Dialogs/Patterns..." msgstr "Fliphulpopties" -#: app/menus.c:60 +#: app/menus.c:65 #, fuzzy msgid "/File/Dialogs/Palette..." msgstr "Kleurenpalet" -#: app/menus.c:61 +#: app/menus.c:66 #, fuzzy msgid "/File/Dialogs/Gradient..." msgstr "Documentindex" -#: app/menus.c:62 +#: app/menus.c:67 #, fuzzy msgid "/File/Dialogs/Layers & Channels..." msgstr "Documentindex" -#: app/menus.c:63 +#: app/menus.c:68 #, fuzzy msgid "/File/Dialogs/Tool Options..." msgstr "Fliphulpopties" -#: app/menus.c:64 +#: app/menus.c:69 #, fuzzy msgid "/File/Dialogs/Input Devices..." msgstr "Fliphulpopties" -#: app/menus.c:65 +#: app/menus.c:70 #, fuzzy msgid "/File/Dialogs/Device Status..." msgstr "Apperaat Status" -#: app/menus.c:66 +#: app/menus.c:71 #, fuzzy msgid "/File/Dialogs/Document Index..." msgstr "Documentindex" -#: app/menus.c:67 +#: app/menus.c:72 #, fuzzy msgid "/File/Dialogs/Error Console..." msgstr "Fliphulpopties" -#: app/menus.c:68 +#: app/menus.c:74 +msgid "/Xtns/tearoff1" +msgstr "" + +#: app/menus.c:75 #, fuzzy msgid "/Xtns/Module Browser" msgstr "Fliphulpopties" -#: app/menus.c:69 app/menus.c:70 app/menus.c:75 app/menus.c:86 +#: app/menus.c:76 app/menus.c:77 app/menus.c:82 app/menus.c:95 msgid "/File/---" msgstr "" -#: app/menus.c:76 app/menus.c:89 -#, fuzzy -msgid "/File/Quit" -msgstr "/Bestand/Afsluiten" +#: app/menus.c:87 +msgid "/tearoff1" +msgstr "" -#: app/menus.c:82 -#, fuzzy -msgid "/File/Save" -msgstr "/Bestand/Bewaar" - -#: app/menus.c:83 -#, fuzzy -msgid "/File/Save as" -msgstr "/Bestand/Bewaar als" - -#: app/menus.c:84 +#: app/menus.c:93 #, fuzzy msgid "/File/Revert" msgstr "/Bestand/Bewaar" -#: app/menus.c:88 -#, fuzzy -msgid "/File/Close" -msgstr "/Bestand/Sluit" - -#: app/menus.c:90 +#: app/menus.c:99 msgid "/File/---moved" msgstr "" -#: app/menus.c:92 +#: app/menus.c:101 +#, fuzzy +msgid "/Edit/tearoff1" +msgstr "/Editeer/Wis" + +#: app/menus.c:102 #, fuzzy msgid "/Edit/Cut" msgstr "/Editeer/Knip" -#: app/menus.c:93 +#: app/menus.c:103 #, fuzzy msgid "/Edit/Copy" msgstr "/Editeer/Kopieer" -#: app/menus.c:94 +#: app/menus.c:104 #, fuzzy msgid "/Edit/Paste" msgstr "/Editeer/Plak" -#: app/menus.c:95 +#: app/menus.c:105 #, fuzzy msgid "/Edit/Paste Into" msgstr "/Editeer/Plak op" -#: app/menus.c:96 +#: app/menus.c:106 +#, fuzzy +msgid "/Edit/Paste As New" +msgstr "/Editeer/Plak met naam" + +#: app/menus.c:107 app/menus.c:113 app/menus.c:117 +msgid "/Edit/---" +msgstr "" + +#: app/menus.c:108 #, fuzzy msgid "/Edit/Clear" msgstr "/Editeer/Wis" -#: app/menus.c:97 +#: app/menus.c:109 #, fuzzy msgid "/Edit/Fill" msgstr "/Editeer/Vul" -#: app/menus.c:98 +#: app/menus.c:110 #, fuzzy msgid "/Edit/Stroke" msgstr "/Editeer/Stroke" -#: app/menus.c:99 +#: app/menus.c:111 #, fuzzy msgid "/Edit/Undo" msgstr "/Editeer/Kopieer" -#: app/menus.c:100 +#: app/menus.c:112 #, fuzzy msgid "/Edit/Redo" msgstr "/Editeer/Kopieer" -#: app/menus.c:101 app/menus.c:105 -msgid "/Edit/---" -msgstr "" - -#: app/menus.c:102 +#: app/menus.c:114 #, fuzzy msgid "/Edit/Cut Named" msgstr "/Editeer/Knip met naam" -#: app/menus.c:103 +#: app/menus.c:115 #, fuzzy msgid "/Edit/Copy Named" msgstr "/Editeer/Kopieer met naam" -#: app/menus.c:104 +#: app/menus.c:116 #, fuzzy msgid "/Edit/Paste Named" msgstr "/Editeer/Plak met naam" -#: app/menus.c:107 +#: app/menus.c:119 #, fuzzy -msgid "/Select/Toggle" +msgid "/Select/tearoff1" msgstr "Selectie" -#: app/menus.c:108 +#: app/menus.c:120 #, fuzzy msgid "/Select/Invert" msgstr "Selectie" -#: app/menus.c:109 +#: app/menus.c:121 #, fuzzy msgid "/Select/All" msgstr "Selectie" -#: app/menus.c:110 +#: app/menus.c:122 #, fuzzy msgid "/Select/None" msgstr "Selectie" -#: app/menus.c:111 +#: app/menus.c:123 #, fuzzy msgid "/Select/Float" msgstr "Selectie" -#: app/menus.c:112 +#: app/menus.c:124 #, fuzzy msgid "/Select/Sharpen" msgstr "Scherp" -#: app/menus.c:113 +#: app/menus.c:125 #, fuzzy msgid "/Select/Border" msgstr "Selectiemodus" -#: app/menus.c:114 +#: app/menus.c:126 #, fuzzy msgid "/Select/Feather" msgstr "Selectie" -#: app/menus.c:115 +#: app/menus.c:127 #, fuzzy msgid "/Select/Grow" msgstr "Selectie" -#: app/menus.c:116 +#: app/menus.c:128 #, fuzzy msgid "/Select/Shrink" msgstr "Selectie" -#: app/menus.c:117 +#: app/menus.c:129 #, fuzzy msgid "/Select/Save To Channel" msgstr "/Selecteer/Bewaar in kanaal" -#: app/menus.c:119 +#: app/menus.c:131 +msgid "/View/tearoff1" +msgstr "" + +#: app/menus.c:132 msgid "/View/Zoom In" msgstr "" -#: app/menus.c:120 +#: app/menus.c:133 #, fuzzy msgid "/View/Zoom Out" msgstr "/Zicht/Punt voor punt" -#: app/menus.c:121 +#: app/menus.c:134 msgid "/View/Zoom/16:1" msgstr "" -#: app/menus.c:122 +#: app/menus.c:135 msgid "/View/Zoom/8:1" msgstr "" -#: app/menus.c:123 +#: app/menus.c:136 msgid "/View/Zoom/4:1" msgstr "" -#: app/menus.c:124 +#: app/menus.c:137 msgid "/View/Zoom/2:1" msgstr "" -#: app/menus.c:125 +#: app/menus.c:138 msgid "/View/Zoom/1:1" msgstr "" -#: app/menus.c:126 +#: app/menus.c:139 msgid "/View/Zoom/1:2" msgstr "" -#: app/menus.c:127 +#: app/menus.c:140 msgid "/View/Zoom/1:4" msgstr "" -#: app/menus.c:128 +#: app/menus.c:141 msgid "/View/Zoom/1:8" msgstr "" -#: app/menus.c:129 -msgid "/View/Zoom/1:16" -msgstr "" - -#: app/menus.c:130 -#, fuzzy -msgid "/View/Dot for dot" -msgstr "/Zicht/Punt voor punt" - -#: app/menus.c:131 -msgid "/View/Window Info..." -msgstr "" - -#: app/menus.c:132 -#, fuzzy -msgid "/View/Toggle Rulers" -msgstr "/Zicht/Linealen" - -#: app/menus.c:133 -#, fuzzy -msgid "/View/Toggle Statusbar" -msgstr "/Zicht/Statusbalk" - -#: app/menus.c:134 -#, fuzzy -msgid "/View/Toggle Guides" -msgstr "/Zicht/Hulplijnen" - -#: app/menus.c:135 -#, fuzzy -msgid "/View/Snap To Guides" -msgstr "/Zicht/Snap To Guides" - -#: app/menus.c:136 -msgid "/View/---" -msgstr "" - -#: app/menus.c:137 -msgid "/View/New View" -msgstr "" - -#: app/menus.c:138 -msgid "/View/Shrink Wrap" -msgstr "" - -#: app/menus.c:140 -#, fuzzy -msgid "/Image/Colors/Equalize" -msgstr "/Beeld/Kleuren/Krommen" - -#: app/menus.c:141 -#, fuzzy -msgid "/Image/Colors/Invert" -msgstr "/Beeld/Kleuren/Inverteren" - #: app/menus.c:142 -msgid "/Image/Colors/---" +msgid "/View/Zoom/1:16" msgstr "" #: app/menus.c:143 #, fuzzy +msgid "/View/Dot for dot" +msgstr "/Zicht/Punt voor punt" + +#: app/menus.c:144 +msgid "/View/Window Info..." +msgstr "" + +#: app/menus.c:146 app/menus.c:152 +msgid "/View/---" +msgstr "" + +#: app/menus.c:147 +#, fuzzy +msgid "/View/Toggle Selection" +msgstr "/Zicht/Linealen" + +#: app/menus.c:148 +#, fuzzy +msgid "/View/Toggle Rulers" +msgstr "/Zicht/Linealen" + +#: app/menus.c:149 +#, fuzzy +msgid "/View/Toggle Statusbar" +msgstr "/Zicht/Statusbalk" + +#: app/menus.c:150 +#, fuzzy +msgid "/View/Toggle Guides" +msgstr "/Zicht/Hulplijnen" + +#: app/menus.c:151 +#, fuzzy +msgid "/View/Snap To Guides" +msgstr "/Zicht/Snap To Guides" + +#: app/menus.c:154 +msgid "/View/New View" +msgstr "" + +#: app/menus.c:155 +msgid "/View/Shrink Wrap" +msgstr "" + +#: app/menus.c:157 +#, fuzzy +msgid "/Image/tearoff1" +msgstr "/Editeer/Wis" + +#: app/menus.c:158 +#, fuzzy +msgid "/Image/Colors/tearoff1" +msgstr "/Beeld/Kleuren/Inverteren" + +#: app/menus.c:159 +#, fuzzy +msgid "/Image/Colors/Equalize" +msgstr "/Beeld/Kleuren/Krommen" + +#: app/menus.c:160 +#, fuzzy +msgid "/Image/Colors/Invert" +msgstr "/Beeld/Kleuren/Inverteren" + +#: app/menus.c:161 +msgid "/Image/Colors/---" +msgstr "" + +#: app/menus.c:162 +#, fuzzy msgid "/Image/Colors/Desaturate" msgstr "/Beeld/Kleuren/Desaturate" -#: app/menus.c:144 +#: app/menus.c:163 +#, fuzzy +msgid "/Image/Channel Ops/tearoff1" +msgstr "/Beeld/Kanaal Ops/Offset" + +#: app/menus.c:164 #, fuzzy msgid "/Image/Channel Ops/Duplicate" msgstr "/Beeld/Kanaal Ops/Offset" -#: app/menus.c:145 +#: app/menus.c:165 #, fuzzy msgid "/Image/Channel Ops/Offset" msgstr "/Beeld/Kanaal Ops/Offset" -#: app/menus.c:146 +#: app/menus.c:166 +msgid "/Image/Alpha/tearoff1" +msgstr "" + +#: app/menus.c:167 #, fuzzy msgid "/Image/Alpha/Add Alpha Channel" msgstr "/Beeld/Alfa/Voeg Alfa Kanaal toe" -#: app/menus.c:148 app/menus.c:152 app/menus.c:155 +#: app/menus.c:169 app/menus.c:173 app/menus.c:176 msgid "/Image/---" msgstr "" -#: app/menus.c:149 +#: app/menus.c:170 #, fuzzy msgid "/Image/RGB" msgstr "/Beeld/RGB" -#: app/menus.c:150 +#: app/menus.c:171 #, fuzzy msgid "/Image/Grayscale" msgstr "/Beeld/Grijswaarden" -#: app/menus.c:151 +#: app/menus.c:172 #, fuzzy msgid "/Image/Indexed" msgstr "/Beeld/Geindexeerd" -#: app/menus.c:153 +#: app/menus.c:174 #, fuzzy msgid "/Image/Resize" msgstr "Afmeting instellen" -#: app/menus.c:154 +#: app/menus.c:175 #, fuzzy msgid "/Image/Scale" msgstr "Schaal instellen" -#: app/menus.c:157 +#: app/menus.c:178 +#, fuzzy +msgid "/Layers/tearoff1" +msgstr "/Lagen/Verhoog Laag" + +#: app/menus.c:179 #, fuzzy msgid "/Layers/Layers & Channels..." msgstr "/Lagen/Voeg Alfa Kanaal toe" -#: app/menus.c:158 +#: app/menus.c:180 +#, fuzzy +msgid "/Layers/Stack/tearoff1" +msgstr "/Lagen/Verhoog Laag" + +#: app/menus.c:181 #, fuzzy msgid "/Layers/Stack/Previous Layer" msgstr "/Lagen/Verhoog Laag" -#: app/menus.c:159 +#: app/menus.c:182 #, fuzzy msgid "/Layers/Stack/Next Layer" msgstr "/Lagen/Verhoog Laag" -#: app/menus.c:160 +#: app/menus.c:183 #, fuzzy msgid "/Layers/Stack/Raise Layer" msgstr "/Lagen/Verhoog Laag" -#: app/menus.c:161 +#: app/menus.c:184 #, fuzzy msgid "/Layers/Stack/Lower Layer" msgstr "/Lagen/Verlaag Laag" -#: app/menus.c:162 +#: app/menus.c:185 #, fuzzy msgid "/Layers/Stack/Layer to Top" msgstr "/Lagen/Verhoog Laag" -#: app/menus.c:163 +#: app/menus.c:186 #, fuzzy msgid "/Layers/Stack/Layer to Bottom" msgstr "Laag is reeds op de bodem" -#: app/menus.c:164 +#: app/menus.c:187 app/menus.c:194 #, fuzzy msgid "/Layers/---" msgstr "Tekstlaag" -#: app/menus.c:165 +#: app/menus.c:188 #, fuzzy msgid "/Layers/Anchor Layer" msgstr "/Lagen/Veranker Laag" -#: app/menus.c:166 +#: app/menus.c:189 #, fuzzy msgid "/Layers/Merge Visible Layers" msgstr "/Lagen/Voeg Zichtbare Lagen Samen" -#: app/menus.c:167 +#: app/menus.c:190 #, fuzzy msgid "/Layers/Flatten Image" msgstr "/Lagen/Verhoog Laag" -#: app/menus.c:168 +#: app/menus.c:191 #, fuzzy msgid "/Layers/Alpha To Selection" msgstr "Penseel Selectie" -#: app/menus.c:169 +#: app/menus.c:192 #, fuzzy msgid "/Layers/Mask To Selection" msgstr "Rand Selectie" -#: app/menus.c:170 +#: app/menus.c:193 #, fuzzy msgid "/Layers/Add Alpha Channel" msgstr "/Lagen/Voeg Alfa Kanaal toe" -#. these are built on the fly -#. -#. { N_("/Tools/Ellipse Select"), "E", tools_select_cmd_callback, ELLIPSE_SELECT }, -#. { N_("/Tools/Free Select"), "F", tools_select_cmd_callback, FREE_SELECT }, -#. { N_("/Tools/Fuzzy Select"), "Z", tools_select_cmd_callback, FUZZY_SELECT }, -#. { N_("/Tools/Bezier Select"), "B", tools_select_cmd_callback, BEZIER_SELECT }, -#. { N_("/Tools/Intelligent Scissors"), "I", tools_select_cmd_callback, ISCISSORS }, -#. { N_("/Tools/Move"), "M", tools_select_cmd_callback, MOVE }, -#. { N_("/Tools/Magnify"), "M", tools_select_cmd_callback, MAGNIFY }, -#. { N_("/Tools/Crop"), "C", tools_select_cmd_callback, CROP }, -#. { N_("/Tools/Transform"), "T", tools_select_cmd_callback, ROTATE }, -#. { N_("/Tools/Flip"), "F", tools_select_cmd_callback, FLIP }, -#. { N_("/Tools/Text"), "T", tools_select_cmd_callback, TEXT }, -#. { N_("/Tools/Color Picker"), "O", tools_select_cmd_callback, COLOR_PICKER }, -#. { N_("/Tools/Bucket Fill"), "B", tools_select_cmd_callback, BUCKET_FILL }, -#. { N_("/Tools/Blend"), "L", tools_select_cmd_callback, BLEND }, -#. { N_("/Tools/Paintbrush"), "P", tools_select_cmd_callback, PAINTBRUSH }, -#. { N_("/Tools/Pencil"), "P", tools_select_cmd_callback, PENCIL }, -#. { N_("/Tools/Eraser"), "E", tools_select_cmd_callback, ERASER }, -#. { N_("/Tools/Airbrush"), "A", tools_select_cmd_callback, AIRBRUSH }, -#. { N_("/Tools/Clone"), "C", tools_select_cmd_callback, CLONE }, -#. { N_("/Tools/Convolve"), "V", tools_select_cmd_callback, CONVOLVE }, -#. { N_("/Tools/Ink"), "K", tools_select_cmd_callback, INK }, -#. { N_("/Tools/Default Colors"), "D", tools_default_colors_cmd_callback, 0 }, -#. { N_("/Tools/Toolbox"), NULL, toolbox_raise_callback, 0 }, -#. { N_("/Tools/---"), NULL, NULL, 0, "" }, -#. { N_("/Tools/Default Colors"), "D", tools_default_colors_cmd_callback, 0 }, -#. { N_("/Tools/Swap Colors"), "X", tools_swap_colors_cmd_callback, 0 }, -#. -#: app/menus.c:203 +#: app/menus.c:196 +msgid "/Tools/tearoff1" +msgstr "" + +#: app/menus.c:197 msgid "/Tools/Toolbox" msgstr "" -#: app/menus.c:204 +#: app/menus.c:198 msgid "/Tools/Default Colors" msgstr "" -#: app/menus.c:205 +#: app/menus.c:199 msgid "/Tools/Swap Colors" msgstr "" -#: app/menus.c:206 +#: app/menus.c:200 msgid "/Tools/---" msgstr "" -#: app/menus.c:208 +#. the tool entries themselves are built on the fly +#: app/menus.c:204 +#, fuzzy +msgid "/Filters/tearoff1" +msgstr "/Filters" + +#: app/menus.c:205 app/plug_in.c:1285 msgid "/Filters/Repeat last" msgstr "" -#: app/menus.c:209 +#: app/menus.c:206 app/plug_in.c:1286 msgid "/Filters/Re-show last" msgstr "" -#: app/menus.c:210 +#: app/menus.c:207 msgid "/Filters/---" msgstr "" -#: app/menus.c:212 +#: app/menus.c:209 +msgid "/Script-Fu/tearoff1" +msgstr "" + +#: app/menus.c:210 msgid "/Script-Fu/" msgstr "" -#: app/menus.c:214 +#: app/menus.c:212 +#, fuzzy +msgid "/Dialogs/tearoff1" +msgstr "Kleurenpalet" + +#: app/menus.c:213 #, fuzzy msgid "/Dialogs/Brushes..." msgstr "Apperaat Status" -#: app/menus.c:215 +#: app/menus.c:214 #, fuzzy msgid "/Dialogs/Patterns..." msgstr "Kleurenpalet" -#: app/menus.c:216 +#: app/menus.c:215 #, fuzzy msgid "/Dialogs/Palette..." msgstr "Kleurenpalet" -#: app/menus.c:217 +#: app/menus.c:216 #, fuzzy msgid "/Dialogs/Gradient..." msgstr "Apperaat Status" -#: app/menus.c:218 +#: app/menus.c:217 msgid "/Dialogs/Layers & Channels..." msgstr "" -#: app/menus.c:219 +#: app/menus.c:218 #, fuzzy msgid "/Dialogs/Indexed Palette..." msgstr "Kleurenpalet" -#: app/menus.c:220 +#: app/menus.c:219 #, fuzzy msgid "/Dialogs/Tool Options..." msgstr "Kloonhulp Opties" -#: app/menus.c:221 +#: app/menus.c:220 #, fuzzy msgid "/Dialogs/Input Devices..." msgstr "Apperaat Status" -#: app/menus.c:222 +#: app/menus.c:221 #, fuzzy msgid "/Dialogs/Device Status..." msgstr "Apperaat Status" -#: app/menus.c:229 +#: app/menus.c:228 msgid "/Automatic" msgstr "/Automatisch" -#: app/menus.c:237 +#: app/menus.c:236 msgid "/By extension" msgstr "/Door extensie" -#: app/menus.c:436 +#: app/menus.c:290 +#, fuzzy +msgid "/New Path" +msgstr "Nieuw palet" + +#: app/menus.c:291 +#, fuzzy +msgid "/Duplicate Path" +msgstr "Dupliceer Kanaal" + +#: app/menus.c:292 +#, fuzzy +msgid "/Path to Selection" +msgstr "Verwijder selectie" + +#: app/menus.c:293 +msgid "/Stroke Path" +msgstr "" + +#: app/menus.c:294 +#, fuzzy +msgid "/Delete Path" +msgstr "Verwijder" + +#: app/menus.c:296 +#, fuzzy +msgid "/Copy Path" +msgstr "Kopieer gradatie" + +#: app/menus.c:297 +#, fuzzy +msgid "/Paste Path" +msgstr "Plakken" + +#: app/menus.c:298 +#, fuzzy +msgid "/Import Path" +msgstr "Importeer Palet" + +#: app/menus.c:299 +#, fuzzy +msgid "/Export Path" +msgstr "Importeer Palet" + +#: app/menus.c:596 #, c-format msgid "Error opening file: %s\n" msgstr "" -#: app/menus.c:458 app/menus.c:539 +#: app/menus.c:618 app/menus.c:699 #, c-format msgid "/File/MRU%02d" msgstr "" -#: app/move.c:438 +#: app/module_db.c:269 +#, fuzzy +msgid "Module DB" +msgstr "Modus:" + +#: app/module_db.c:567 +#, c-format +msgid "load module: \"%s\"\n" +msgstr "" + +#: app/module_db.c:574 +#, c-format +msgid "skipping module: \"%s\"\n" +msgstr "" + +#: app/module_db.c:598 +#, c-format +msgid "module load error: %s: %s" +msgstr "" + +#: app/module_db.c:616 +msgid "missing module_init() symbol" +msgstr "" + +#: app/module_db.c:619 +#, c-format +msgid "%s: module_init() symbol not found" +msgstr "" + +#: app/module_db.c:772 +#, fuzzy +msgid "" +msgstr "Modus:" + +#: app/module_db.c:785 app/module_db.c:794 +msgid "on disk" +msgstr "" + +#: app/module_db.c:785 +msgid "only in memory" +msgstr "" + +#: app/module_db.c:794 +msgid "nowhere (click 'refresh')" +msgstr "" + +#: app/module_db.c:830 +msgid "Load" +msgstr "Laad" + +#: app/module_db.c:839 +#, fuzzy +msgid "Unload" +msgstr "Onbenoemd" + +#: app/module_db.c:852 +msgid "Purpose: " +msgstr "" + +#: app/module_db.c:853 +#, fuzzy +msgid "Author: " +msgstr "/Automatisch" + +#: app/module_db.c:854 +#, fuzzy +msgid "Version: " +msgstr "Versie" + +#: app/module_db.c:855 +msgid "Copyright: " +msgstr "" + +#: app/module_db.c:856 +#, fuzzy +msgid "Date: " +msgstr "Ratio: " + +#: app/module_db.c:857 +#, fuzzy +msgid "Location: " +msgstr "Selectie" + +#: app/module_db.c:858 +#, fuzzy +msgid "State: " +msgstr "Ratio: " + +#: app/module_db.c:877 +msgid "Autoload during startup" +msgstr "" + +#: app/move.c:444 #, fuzzy msgid "Move Tool Options" msgstr "Kloonhulp Opties" -#: app/paint_core.c:547 +#: app/paint_core.c:586 #, fuzzy msgid "No brushes available for use with this tool." msgstr "Geen patronen beschikbaar voor deze operatie." -#: app/paint_core.c:1290 -msgid "paint_core_replace only works in INCREMENTAL mode" -msgstr "" - -#: app/paint_core.c:1427 +#: app/paint_core.c:1574 msgid "set_undo_tiles: undo_tiles is null" msgstr "" -#: app/paint_funcs.c:85 +#: app/paint_funcs.c:85 app/tool_options.c:777 msgid "Behind" msgstr "Achter" @@ -4126,31 +4182,31 @@ msgstr "Plakken" msgid "Once Forward" msgstr "" -#: app/paintbrush.c:154 +#: app/paintbrush.c:155 msgid "Once Backward" msgstr "" -#: app/paintbrush.c:155 +#: app/paintbrush.c:157 msgid "Loop Sawtooth" msgstr "" -#: app/paintbrush.c:156 +#: app/paintbrush.c:159 msgid "Loop Triangle" msgstr "" -#: app/paintbrush.c:180 +#: app/paintbrush.c:185 msgid "Fade Out:" msgstr "" -#: app/paintbrush.c:207 +#: app/paintbrush.c:212 msgid "Length:" msgstr "" -#. the radio frame and box -#: app/paintbrush.c:232 +#. the gradient type +#: app/paintbrush.c:237 #, fuzzy -msgid "Gradient Type" -msgstr "Gradatie" +msgid "Type:" +msgstr "Opvultype :" #: app/palette.c:484 #, c-format @@ -4336,620 +4392,620 @@ msgstr "" msgid "Perspective..." msgstr "Perspectief" -#: app/plug_in.c:204 +#: app/plug_in.c:207 msgid "shmget failed...disabling shared memory tile transport" msgstr "" -#: app/plug_in.c:210 +#: app/plug_in.c:213 msgid "shmat failed...disabling shared memory tile transport" msgstr "" -#: app/plug_in.c:309 +#: app/plug_in.c:312 msgid "Plug-ins" msgstr "" -#: app/plug_in.c:321 +#: app/plug_in.c:324 #, c-format msgid "query plug-in: \"%s\"\n" msgstr "" -#: app/plug_in.c:359 +#: app/plug_in.c:362 #, c-format msgid "writing \"%s\"\n" msgstr "" -#: app/plug_in.c:374 +#: app/plug_in.c:377 msgid "Starting extensions: " msgstr "" -#: app/plug_in.c:375 +#: app/plug_in.c:378 msgid "Extensions" msgstr "" -#: app/plug_in.c:690 +#: app/plug_in.c:693 #, c-format msgid "\"%s\" executable not found\n" msgstr "" -#: app/plug_in.c:743 +#: app/plug_in.c:746 #, c-format msgid "unable to locate plug-in: \"%s\"" msgstr "" -#: app/plug_in.c:825 +#: app/plug_in.c:828 msgid "unable to open pipe" msgstr "" -#: app/plug_in.c:914 +#: app/plug_in.c:917 #, c-format msgid "unable to run plug-in: %s" msgstr "" -#: app/plug_in.c:1281 -msgid "/Filters/Repeat last" -msgstr "" - -#: app/plug_in.c:1282 -msgid "/Filters/Re-show last" -msgstr "" - -#: app/plug_in.c:1640 app/plug_in.c:1653 app/plug_in.c:1666 app/plug_in.c:1681 +#: app/plug_in.c:1648 app/plug_in.c:1661 app/plug_in.c:1674 app/plug_in.c:1689 #, c-format msgid "" "plug-in \"%s\" attempted to install procedure \"%s\" which does not take the " "standard plug-in args" msgstr "" -#: app/plug_in.c:1689 +#: app/plug_in.c:1697 #, c-format msgid "" "plug-in \"%s\" attempted to install procedure \"%s\" in an invalid menu " "location. Use either \"\", \"\", \"\", or \"\"." msgstr "" -#: app/plug_in.c:1709 +#: app/plug_in.c:1717 #, c-format msgid "" "plug_in \"%s\" attempted to install procedure \"%s\" which fails to comply " "with the array parameter passing standard. Argument %d is noncompliant." msgstr "" -#: app/plug_in.c:2141 +#: app/plug_in.c:2149 #, c-format msgid "duplicate plug-in: \"%s\" (skipping)\n" msgstr "" -#: app/plug_in.c:2349 +#: app/plug_in.c:2357 msgid "Unknown procedure type." msgstr "Onbekende proceduretype" -#: app/plug_in.c:2430 +#: app/plug_in.c:2438 #, c-format msgid "removing duplicate PDB procedure \"%s\"" msgstr "" -#: app/plug_in.c:2686 app/plug_in.c:2851 app/plug_in.c:2968 app/plug_in.c:3053 +#: app/plug_in.c:2694 app/plug_in.c:2859 app/plug_in.c:2976 app/plug_in.c:3061 msgid "the \"region\" arg type is not currently supported" msgstr "" -#: app/posterize.c:217 +#: app/posterize.c:164 #, fuzzy msgid "Posterize does not operate on indexed drawables." msgstr "Helderheid-Contrast werkt niet op geindexeerde tekeningen." -#: app/posterize.c:262 app/tools.c:521 +#: app/posterize.c:211 app/tools.c:547 msgid "Posterize" msgstr "" -#: app/posterize.c:276 +#: app/posterize.c:225 #, fuzzy msgid "Posterize Levels: " msgstr "Kleurniveaus" -#: app/preferences_dialog.c:203 +#: app/preferences_dialog.c:205 msgid "Error: Levels of undo must be zero or greater." msgstr "" -#: app/preferences_dialog.c:209 +#: app/preferences_dialog.c:211 msgid "Error: Number of processors must be between 1 and 30." msgstr "" -#: app/preferences_dialog.c:215 +#: app/preferences_dialog.c:217 msgid "Error: Marching speed must be 50 or greater." msgstr "" -#: app/preferences_dialog.c:221 +#: app/preferences_dialog.c:223 msgid "Error: Default width must be one or greater." msgstr "Fout: standaardbreedte moet minstens een zijn." -#: app/preferences_dialog.c:227 +#: app/preferences_dialog.c:229 msgid "Error: Default height must be one or greater." msgstr "Fout: Standaardhoogte moet minstens een zijn." -#: app/preferences_dialog.c:234 +#: app/preferences_dialog.c:236 #, fuzzy msgid "Error: Default unit must be within unit range." msgstr "Fout: standaardbreedte moet minstens een zijn." -#: app/preferences_dialog.c:241 +#: app/preferences_dialog.c:243 #, fuzzy msgid "Error: default resolution must not be zero." msgstr "Fout: monitorresolutie mag niet nul zijn." -#: app/preferences_dialog.c:249 +#: app/preferences_dialog.c:251 #, fuzzy msgid "Error: Default resolution unit must be within unit range." msgstr "Fout: standaardbreedte moet minstens een zijn." -#: app/preferences_dialog.c:256 +#: app/preferences_dialog.c:258 #, fuzzy msgid "Error: Monitor resolution must not be zero." msgstr "Fout: monitorresolutie mag niet nul zijn." -#: app/preferences_dialog.c:263 +#: app/preferences_dialog.c:265 #, fuzzy msgid "Error: Image title format must not be NULL." msgstr "Fout: monitorresolutie mag niet nul zijn." -#: app/preferences_dialog.c:520 +#: app/preferences_dialog.c:536 msgid "You will need to restart GIMP for these changes to take effect." msgstr "U moet GIMP heropstarten om deze veranderingen door te voeren." -#: app/preferences_dialog.c:1433 +#: app/preferences_dialog.c:1467 msgid "Preferences" msgstr "" #. The categories tree -#: app/preferences_dialog.c:1451 +#: app/preferences_dialog.c:1485 msgid "Categories" msgstr "" -#: app/preferences_dialog.c:1477 +#: app/preferences_dialog.c:1512 #, fuzzy msgid "New File Settings" msgstr "Toon instellingen" -#: app/preferences_dialog.c:1479 +#: app/preferences_dialog.c:1514 #, fuzzy msgid "New File" msgstr "Vultype" -#: app/preferences_dialog.c:1489 +#: app/preferences_dialog.c:1524 #, fuzzy msgid "Default Image Size and Unit" msgstr "Standaard beelgrootte" -#: app/preferences_dialog.c:1503 +#: app/preferences_dialog.c:1538 msgid "Width" msgstr "Breedte" -#: app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1540 msgid "Height" msgstr "Hoogte" -#: app/preferences_dialog.c:1532 +#: app/preferences_dialog.c:1567 #, fuzzy msgid "Default Image Resolution and Resolution Unit" msgstr "Standaard beelgrootte" -#: app/preferences_dialog.c:1557 app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:1592 app/preferences_dialog.c:2294 msgid "dpi" msgstr "dpi" -#: app/preferences_dialog.c:1602 +#: app/preferences_dialog.c:1637 #, fuzzy msgid "Default Image Type:" msgstr "Standaard beeldtype" -#: app/preferences_dialog.c:1607 +#: app/preferences_dialog.c:1642 #, fuzzy msgid "Display Settings" msgstr "Toon instellingen" -#: app/preferences_dialog.c:1609 +#: app/preferences_dialog.c:1644 msgid "Display" msgstr "Toon" -#: app/preferences_dialog.c:1616 +#: app/preferences_dialog.c:1651 #, fuzzy msgid "Transparency" msgstr "Transparant" -#: app/preferences_dialog.c:1634 +#: app/preferences_dialog.c:1669 msgid "Light Checks" msgstr "" -#: app/preferences_dialog.c:1636 +#: app/preferences_dialog.c:1671 msgid "Mid-Tone Checks" msgstr "" -#: app/preferences_dialog.c:1638 +#: app/preferences_dialog.c:1673 msgid "Dark Checks" msgstr "" -#: app/preferences_dialog.c:1640 +#: app/preferences_dialog.c:1675 msgid "White Only" msgstr "Enkel wit" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1677 msgid "Gray Only" msgstr "Enkel grijs" -#: app/preferences_dialog.c:1644 +#: app/preferences_dialog.c:1679 msgid "Black Only" msgstr "Enkel zwart" -#: app/preferences_dialog.c:1648 +#: app/preferences_dialog.c:1683 #, fuzzy msgid "Transparency Type:" msgstr "Transparantietype" -#: app/preferences_dialog.c:1654 app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1689 app/preferences_dialog.c:1760 msgid "Small" msgstr "" -#: app/preferences_dialog.c:1656 app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1691 app/preferences_dialog.c:1761 msgid "Medium" msgstr "" -#: app/preferences_dialog.c:1658 app/preferences_dialog.c:1727 +#: app/preferences_dialog.c:1693 app/preferences_dialog.c:1762 msgid "Large" msgstr "" -#: app/preferences_dialog.c:1662 +#: app/preferences_dialog.c:1697 #, fuzzy msgid "Check Size:" msgstr "Contreleer grootte" -#: app/preferences_dialog.c:1664 app/transform_tool.c:191 +#: app/preferences_dialog.c:1699 app/transform_tool.c:190 msgid "Scaling" msgstr "Schalend" -#: app/preferences_dialog.c:1673 +#: app/preferences_dialog.c:1708 #, fuzzy msgid "Cubic Interpolation" msgstr "Kubische interpolatie" -#: app/preferences_dialog.c:1684 +#: app/preferences_dialog.c:1719 #, fuzzy msgid "Interface Settings" msgstr "Interne GIMP procedure" -#: app/preferences_dialog.c:1693 +#: app/preferences_dialog.c:1728 #, fuzzy msgid "General" msgstr "Interval:" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1765 msgid "Preview Size:" msgstr "" -#: app/preferences_dialog.c:1739 +#: app/preferences_dialog.c:1774 #, fuzzy msgid "Levels of Undo:" msgstr "Niveau om ongedaan maken" -#: app/preferences_dialog.c:1748 +#: app/preferences_dialog.c:1783 msgid "Recent Documents List Size:" msgstr "" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1786 msgid "Help System" msgstr "" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1795 #, fuzzy msgid "Show Tool Tips" msgstr "Toon gereedschaptips" -#: app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1806 msgid "Image Windows Settings" msgstr "" -#: app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1808 msgid "Image Windows" msgstr "" -#: app/preferences_dialog.c:1780 +#: app/preferences_dialog.c:1815 msgid "Appearance" msgstr "" -#: app/preferences_dialog.c:1789 +#: app/preferences_dialog.c:1824 #, fuzzy msgid "Resize Window on Zoom" msgstr "Pas venstergrootte aan bij vergroten/verkleinen" -#: app/preferences_dialog.c:1798 +#: app/preferences_dialog.c:1833 #, fuzzy msgid "Show Rulers" msgstr "Toon regels" -#: app/preferences_dialog.c:1807 +#: app/preferences_dialog.c:1842 #, fuzzy msgid "Show Statusbar" msgstr "Toon statusbalk" -#: app/preferences_dialog.c:1831 +#: app/preferences_dialog.c:1866 msgid "Marching Ants Speed:" msgstr "" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:1839 +#: app/preferences_dialog.c:1874 msgid "Custom" msgstr "Eigen" #. set some commonly used format strings -#: app/preferences_dialog.c:1845 +#: app/preferences_dialog.c:1880 msgid "Standard" msgstr "" -#: app/preferences_dialog.c:1850 +#: app/preferences_dialog.c:1885 msgid "Show zoom percentage" msgstr "" -#: app/preferences_dialog.c:1855 +#: app/preferences_dialog.c:1890 #, fuzzy msgid "Show zoom ratio" msgstr "Toon gereedschaptips" -#: app/preferences_dialog.c:1860 +#: app/preferences_dialog.c:1895 msgid "Show reversed zoom ratio" msgstr "" -#: app/preferences_dialog.c:1871 +#: app/preferences_dialog.c:1906 msgid "Image Title Format:" msgstr "" #. End of the title format string -#: app/preferences_dialog.c:1874 +#: app/preferences_dialog.c:1909 msgid "Pointer Movement Feedback" msgstr "" -#: app/preferences_dialog.c:1884 +#: app/preferences_dialog.c:1919 msgid "Perfect-but-slow Pointer Tracking" msgstr "" -#: app/preferences_dialog.c:1893 +#: app/preferences_dialog.c:1928 msgid "Disable Cursor Updating" msgstr "" -#: app/preferences_dialog.c:1904 +#: app/preferences_dialog.c:1939 #, fuzzy msgid "Tool Options Settings" msgstr "Fliphulpopties" -#: app/preferences_dialog.c:1906 app/tools.c:726 +#: app/preferences_dialog.c:1941 app/tools.c:884 msgid "Tool Options" msgstr "" -#: app/preferences_dialog.c:1913 +#: app/preferences_dialog.c:1948 #, fuzzy msgid "Paint Options" msgstr "Paletopties" -#: app/preferences_dialog.c:1923 +#: app/preferences_dialog.c:1958 #, fuzzy msgid "Use Global Paint Options" msgstr "Opties voor kleurbalans" -#: app/preferences_dialog.c:1933 -msgid "(Switching this off does not yet work consistently.)" +#: app/preferences_dialog.c:1974 +msgid "Display brush and pattern indicators on Toolbar" msgstr "" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1988 #, fuzzy msgid "Environment Settings" msgstr "Omgevingsvariabelen" -#: app/preferences_dialog.c:1945 +#: app/preferences_dialog.c:1990 msgid "Environment" msgstr "Omgeving" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1997 #, fuzzy msgid "Resource Consumption" msgstr "Bronconfiguratie" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:2006 #, fuzzy msgid "Conservative Memory Usage" msgstr "Conservatief geheugengebruik" -#: app/preferences_dialog.c:2012 app/preferences_dialog.c:2053 +#: app/preferences_dialog.c:2057 app/preferences_dialog.c:2098 msgid "Bytes" msgstr "" -#: app/preferences_dialog.c:2013 app/preferences_dialog.c:2054 +#: app/preferences_dialog.c:2058 app/preferences_dialog.c:2099 msgid "KiloBytes" msgstr "" -#: app/preferences_dialog.c:2014 app/preferences_dialog.c:2055 +#: app/preferences_dialog.c:2059 app/preferences_dialog.c:2100 msgid "MegaBytes" msgstr "" -#: app/preferences_dialog.c:2019 +#: app/preferences_dialog.c:2064 #, fuzzy msgid "Tile Cache Size:" msgstr "Contreleer grootte" -#: app/preferences_dialog.c:2060 +#: app/preferences_dialog.c:2105 msgid "Maximum Image Size:" msgstr "" -#: app/preferences_dialog.c:2070 +#: app/preferences_dialog.c:2115 msgid "Number of Processors to Use:" msgstr "" -#: app/preferences_dialog.c:2074 +#: app/preferences_dialog.c:2119 #, fuzzy msgid "8-Bit Displays" msgstr "Toon" -#: app/preferences_dialog.c:2085 +#: app/preferences_dialog.c:2130 #, fuzzy msgid "Install Colormap" msgstr "Installeer kleurenmap (enkel 8-bit)" -#: app/preferences_dialog.c:2094 +#: app/preferences_dialog.c:2139 msgid "Colormap Cycling" msgstr "" -#: app/preferences_dialog.c:2105 +#: app/preferences_dialog.c:2148 +msgid "File Previews / Thumbnails" +msgstr "" + +#: app/preferences_dialog.c:2175 +msgid "Try to Write a Thumbnail File:" +msgstr "" + +#: app/preferences_dialog.c:2180 #, fuzzy msgid "Session Management" msgstr "Sessiemanagement" -#: app/preferences_dialog.c:2107 +#: app/preferences_dialog.c:2182 msgid "Session" msgstr "Sessie" -#: app/preferences_dialog.c:2114 +#: app/preferences_dialog.c:2189 #, fuzzy msgid "Window Positions" msgstr "Wis bewaarde vensterposities" -#: app/preferences_dialog.c:2123 +#: app/preferences_dialog.c:2198 #, fuzzy msgid "Save Window Positions on Exit" msgstr "Bewaar vensterposities bij einde" -#: app/preferences_dialog.c:2137 +#: app/preferences_dialog.c:2212 #, fuzzy msgid "Clear Saved Window Positions" msgstr "Wis bewaarde vensterposities" -#: app/preferences_dialog.c:2144 +#: app/preferences_dialog.c:2219 #, fuzzy msgid "Always Try to Restore Session" msgstr "Altijd sessie proberen herstellen" -#: app/preferences_dialog.c:2153 +#: app/preferences_dialog.c:2228 #, fuzzy msgid "Devices" msgstr "Apperaat Status" -#: app/preferences_dialog.c:2162 +#: app/preferences_dialog.c:2237 #, fuzzy msgid "Save Device Status on Exit" msgstr "Bewaar apperaattoestand bij einde" -#: app/preferences_dialog.c:2173 +#: app/preferences_dialog.c:2248 #, fuzzy msgid "Monitor Information" msgstr "Beeldscherminformatie" -#: app/preferences_dialog.c:2175 +#: app/preferences_dialog.c:2250 msgid "Monitor" msgstr "Beeldscherm" -#: app/preferences_dialog.c:2182 +#: app/preferences_dialog.c:2257 #, fuzzy msgid "Get Monitor Resolution" msgstr "Beeldscherminformatie" -#: app/preferences_dialog.c:2197 +#: app/preferences_dialog.c:2272 #, fuzzy, c-format msgid "(Currently %d x %d dpi)" msgstr "(huidig %d x %d dpi)" -#: app/preferences_dialog.c:2244 +#: app/preferences_dialog.c:2319 #, fuzzy msgid "From X Server" msgstr "van X server" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2334 #, fuzzy msgid "Manually:" msgstr "handmatig" -#: app/preferences_dialog.c:2272 +#: app/preferences_dialog.c:2347 #, fuzzy msgid "Directories Settings" msgstr "Mapinstellingen" -#: app/preferences_dialog.c:2274 +#: app/preferences_dialog.c:2349 msgid "Directories" msgstr "Mappen" -#: app/preferences_dialog.c:2287 +#: app/preferences_dialog.c:2362 msgid "Temp Dir:" msgstr "" -#: app/preferences_dialog.c:2287 +#: app/preferences_dialog.c:2362 msgid "Select Temp Dir" msgstr "" -#: app/preferences_dialog.c:2288 +#: app/preferences_dialog.c:2363 msgid "Swap Dir:" msgstr "" -#: app/preferences_dialog.c:2288 +#: app/preferences_dialog.c:2363 msgid "Select Swap Dir" msgstr "" -#: app/preferences_dialog.c:2320 +#: app/preferences_dialog.c:2395 #, fuzzy msgid "Brushes Directories" msgstr "Mappen" -#: app/preferences_dialog.c:2320 +#: app/preferences_dialog.c:2395 msgid "Select Brushes Dir" msgstr "" -#: app/preferences_dialog.c:2322 +#: app/preferences_dialog.c:2397 #, fuzzy msgid "Patterns Directories" msgstr "Mappen" -#: app/preferences_dialog.c:2322 +#: app/preferences_dialog.c:2397 msgid "Select Patterns Dir" msgstr "" -#: app/preferences_dialog.c:2324 +#: app/preferences_dialog.c:2399 #, fuzzy msgid "Palettes Directories" msgstr "Mappen" -#: app/preferences_dialog.c:2324 +#: app/preferences_dialog.c:2399 #, fuzzy msgid "Select Palettes Dir" msgstr "Voeg palet samen" -#: app/preferences_dialog.c:2326 +#: app/preferences_dialog.c:2401 #, fuzzy msgid "Gradients Directories" msgstr "Gradatie Editor" -#: app/preferences_dialog.c:2326 +#: app/preferences_dialog.c:2401 #, fuzzy msgid "Select Gradients Dir" msgstr "Bewaar Gradaties" -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 #, fuzzy msgid "Plug-Ins" msgstr "\t\tplug-ins.\n" -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 #, fuzzy msgid "Plug-Ins Directories" msgstr "Mappen" -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 msgid "Select Plug-Ins Dir" msgstr "" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 #, fuzzy msgid "Modules" msgstr "Modus:" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 #, fuzzy msgid "Modules Directories" msgstr "Mappen" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 #, fuzzy msgid "Select Modules Dir" msgstr "Selectiemodus" @@ -4970,27 +5026,31 @@ msgid "" "Argument %d to '%s' should be a %s, but got passed a %s" msgstr "" -#: app/rect_select.c:179 +#: app/rect_select.c:180 msgid "Selection: ADD" msgstr "" -#: app/rect_select.c:182 +#: app/rect_select.c:183 msgid "Selection: SUBTRACT" msgstr "" -#: app/rect_select.c:185 +#: app/rect_select.c:186 msgid "Selection: INTERSECT" msgstr "" -#: app/rect_select.c:188 +#: app/rect_select.c:189 msgid "Selection: REPLACE" msgstr "" -#: app/rect_select.c:404 app/rect_select.c:411 +#: app/rect_select.c:405 app/rect_select.c:412 #, fuzzy msgid "Selection: " msgstr "Selectie" +#: app/resize.c:159 +msgid "Scale Layer" +msgstr "" + #: app/resize.c:160 app/resize.c:181 msgid "Size" msgstr "" @@ -5003,6 +5063,10 @@ msgstr "Schaal instellen" msgid "Pixel Dimensions" msgstr "" +#: app/resize.c:174 +msgid "Resize Layer" +msgstr "" + #: app/resize.c:178 msgid "Image Resize" msgstr "Afmeting instellen" @@ -5038,11 +5102,11 @@ msgstr "" msgid "Rotation Information" msgstr "Rotatie-informatie" -#: app/rotate_tool.c:105 +#: app/rotate_tool.c:106 msgid "Center X:" msgstr "" -#: app/rotate_tool.c:400 +#: app/rotate_tool.c:401 #, fuzzy msgid "Rotating..." msgstr "Rotatie" @@ -5090,66 +5154,66 @@ msgstr "" msgid "Shearing..." msgstr "" -#: app/text_tool.c:158 +#: app/text_tool.c:157 #, fuzzy msgid "Text Tool Options" msgstr "Tekstopties" -#: app/text_tool.c:169 +#: app/text_tool.c:168 app/tool_options.c:317 msgid "Antialiasing" msgstr "" -#: app/text_tool.c:183 +#: app/text_tool.c:182 #, fuzzy msgid "Border:" msgstr "Rand: " -#: app/text_tool.c:209 +#: app/text_tool.c:208 msgid "Use Dynamic Text" msgstr "" -#: app/text_tool.c:285 +#: app/text_tool.c:278 msgid "text_call_gdyntext: gDynText procedure lookup failed" msgstr "" #. Create the shell -#: app/text_tool.c:408 app/text_tool.c:410 +#: app/text_tool.c:399 app/text_tool.c:401 msgid "Text Tool" msgstr "Tekstgereedschap" -#: app/text_tool.c:617 +#: app/text_tool.c:609 #, c-format msgid "Font '%s' not found.%s" msgstr "Lettertype '%s' niet gevonden.%s" -#: app/text_tool.c:619 +#: app/text_tool.c:611 msgid "" "\n" "If you don't have scalable fonts, try turning off antialiasing in the tool " "options." msgstr "" -#: app/text_tool.c:730 +#: app/text_tool.c:722 msgid "Text Layer" msgstr "Tekstlaag" -#: app/text_tool.c:773 +#: app/text_tool.c:765 msgid "text_render: could not allocate image" msgstr "" -#: app/threshold.c:234 +#: app/threshold.c:189 msgid "Threshold Options" msgstr "" -#: app/threshold.c:283 +#: app/threshold.c:232 msgid "Threshold does not operate on indexed drawables." msgstr "" -#: app/threshold.c:341 app/tools.c:536 +#: app/threshold.c:291 app/tools.c:562 msgid "Threshold" msgstr "" -#: app/threshold.c:356 +#: app/threshold.c:306 msgid "Threshold Range: " msgstr "" @@ -5157,21 +5221,21 @@ msgstr "" msgid "starting tile preswapper\n" msgstr "" -#: app/tile_swap.c:379 +#: app/tile_swap.c:381 msgid "unable to open swap file...BAD THINGS WILL HAPPEN SOON" msgstr "" -#: app/tile_swap.c:499 app/tile_swap.c:560 +#: app/tile_swap.c:501 app/tile_swap.c:562 #, c-format msgid "unable to seek to tile location on disk: %d" msgstr "" -#: app/tile_swap.c:518 +#: app/tile_swap.c:520 #, c-format msgid "unable to read tile data from disk: %d/%d ( %d ) bytes read" msgstr "" -#: app/tile_swap.c:573 +#: app/tile_swap.c:575 #, c-format msgid "unable to write tile data to disk: %d ( %d ) bytes written" msgstr "" @@ -5207,310 +5271,429 @@ msgstr "" "Uw GIMP tipbestand is niet gevonden!\n" "Er zou een bestand met de naam " -#: app/tools.c:85 +#: app/tools.c:81 msgid "Rect Select" msgstr "" -#: app/tools.c:87 +#: app/tools.c:83 msgid "/Tools/Rect Select" msgstr "" -#: app/tools.c:90 +#: app/tools.c:86 msgid "Select rectangular regions" msgstr "" -#: app/tools.c:100 +#: app/tools.c:96 msgid "Ellipse Select" msgstr "" -#: app/tools.c:102 +#: app/tools.c:98 msgid "/Tools/Ellipse Select" msgstr "" -#: app/tools.c:105 +#: app/tools.c:101 msgid "Select elliptical regions" msgstr "" -#: app/tools.c:115 +#: app/tools.c:111 msgid "Free Select" msgstr "" -#: app/tools.c:117 +#: app/tools.c:113 msgid "/Tools/Free Select" msgstr "" -#: app/tools.c:120 +#: app/tools.c:116 msgid "Select hand-drawn regions" msgstr "" -#: app/tools.c:130 +#: app/tools.c:126 msgid "Fuzzy Select" msgstr "" -#: app/tools.c:132 +#: app/tools.c:128 msgid "/Tools/Fuzzy Select" msgstr "" -#: app/tools.c:135 +#: app/tools.c:131 msgid "Select contiguous regions" msgstr "" -#: app/tools.c:145 +#: app/tools.c:141 msgid "Bezier Select" msgstr "" -#: app/tools.c:147 +#: app/tools.c:143 msgid "/Tools/Bezier Select" msgstr "" -#: app/tools.c:150 +#: app/tools.c:146 msgid "Select regions using Bezier curves" msgstr "" -#: app/tools.c:160 +#: app/tools.c:156 msgid "Intelligent Scissors" msgstr "" -#: app/tools.c:162 +#: app/tools.c:158 msgid "/Tools/Intelligent Scissors" msgstr "" -#: app/tools.c:165 +#: app/tools.c:161 msgid "Select shapes from image" msgstr "" -#: app/tools.c:175 +#: app/tools.c:171 msgid "Move" msgstr "" -#: app/tools.c:177 +#: app/tools.c:173 msgid "/Tools/Move" msgstr "" -#: app/tools.c:180 +#: app/tools.c:176 msgid "Move layers & selections" msgstr "" -#: app/tools.c:190 +#: app/tools.c:186 msgid "Magnify" msgstr "" -#: app/tools.c:192 +#: app/tools.c:188 msgid "/Tools/Magnify" msgstr "" -#: app/tools.c:195 +#: app/tools.c:191 msgid "Zoom in & out" msgstr "" -#: app/tools.c:205 +#: app/tools.c:201 msgid "Crop & Resize" msgstr "" -#: app/tools.c:207 +#: app/tools.c:203 msgid "/Tools/Crop & Resize" msgstr "" -#: app/tools.c:210 +#: app/tools.c:206 msgid "Crop or resize the image" msgstr "" #. the first radio frame and box, for transform type -#: app/tools.c:220 app/tools.c:235 app/tools.c:250 app/tools.c:265 +#: app/tools.c:216 app/tools.c:231 app/tools.c:246 app/tools.c:261 #: app/transform_core.c:125 app/transform_tool.c:224 msgid "Transform" msgstr "" -#: app/tools.c:222 +#: app/tools.c:218 msgid "/Tools/Transform" msgstr "" -#: app/tools.c:225 +#: app/tools.c:221 msgid "Transform the layer or selection" msgstr "" -#: app/tools.c:280 +#: app/tools.c:276 msgid "Flip" msgstr "" -#: app/tools.c:282 +#: app/tools.c:278 msgid "/Tools/Flip" msgstr "" -#: app/tools.c:285 +#: app/tools.c:281 msgid "Flip the layer or selection" msgstr "" -#: app/tools.c:295 +#: app/tools.c:291 msgid "Text" msgstr "" -#: app/tools.c:297 +#: app/tools.c:293 msgid "/Tools/Text" msgstr "" -#: app/tools.c:300 +#: app/tools.c:296 msgid "Add text to the image" msgstr "" -#: app/tools.c:312 +#: app/tools.c:308 msgid "/Tools/Color Picker" msgstr "" -#: app/tools.c:315 +#: app/tools.c:311 msgid "Pick colors from the image" msgstr "" -#: app/tools.c:325 +#: app/tools.c:321 msgid "Bucket Fill" msgstr "" -#: app/tools.c:327 +#: app/tools.c:323 msgid "/Tools/Bucket Fill" msgstr "" -#: app/tools.c:330 +#: app/tools.c:326 msgid "Fill with a color or pattern" msgstr "" -#: app/tools.c:340 +#: app/tools.c:336 msgid "Blend" msgstr "" -#: app/tools.c:342 +#: app/tools.c:338 msgid "/Tools/Blend" msgstr "" -#: app/tools.c:345 +#: app/tools.c:341 msgid "Fill with a color gradient" msgstr "" -#: app/tools.c:355 +#: app/tools.c:351 msgid "Pencil" msgstr "" -#: app/tools.c:357 +#: app/tools.c:353 msgid "/Tools/Pencil" msgstr "" -#: app/tools.c:360 +#: app/tools.c:356 msgid "Draw sharp pencil strokes" msgstr "" -#: app/tools.c:370 +#: app/tools.c:366 msgid "Paintbrush" msgstr "" -#: app/tools.c:372 +#: app/tools.c:368 msgid "/Tools/Paintbrush" msgstr "" -#: app/tools.c:375 +#: app/tools.c:371 msgid "Paint fuzzy brush strokes" msgstr "" -#: app/tools.c:385 +#: app/tools.c:381 msgid "Eraser" msgstr "" -#: app/tools.c:387 +#: app/tools.c:383 msgid "/Tools/Eraser" msgstr "" -#: app/tools.c:390 +#: app/tools.c:386 msgid "Erase to background or transparency" msgstr "" -#: app/tools.c:400 +#: app/tools.c:396 msgid "Airbrush" msgstr "" -#: app/tools.c:402 +#: app/tools.c:398 msgid "/Tools/Airbrush" msgstr "" -#: app/tools.c:405 +#: app/tools.c:401 msgid "Airbrush with variable pressure" msgstr "" -#: app/tools.c:415 +#: app/tools.c:411 msgid "Clone" msgstr "" -#: app/tools.c:417 +#: app/tools.c:413 msgid "/Tools/Clone" msgstr "" -#: app/tools.c:420 +#: app/tools.c:416 msgid "Paint using patterns or image regions" msgstr "" -#: app/tools.c:430 +#: app/tools.c:426 msgid "Convolve" msgstr "" -#: app/tools.c:432 +#: app/tools.c:428 msgid "/Tools/Convolve" msgstr "" -#: app/tools.c:435 +#: app/tools.c:431 msgid "Blur or sharpen" msgstr "" -#: app/tools.c:445 +#: app/tools.c:441 msgid "Ink" msgstr "" -#: app/tools.c:447 +#: app/tools.c:443 msgid "/Tools/Ink" msgstr "" -#: app/tools.c:450 +#: app/tools.c:446 msgid "Draw in ink" msgstr "" -#: app/tools.c:461 +#: app/tools.c:456 app/tools.c:461 +msgid "Dodge or Burn" +msgstr "" + +#: app/tools.c:458 +msgid "/Tools/DodgeBurn" +msgstr "" + +#: app/tools.c:471 app/tools.c:476 +msgid "Smudge" +msgstr "" + +#: app/tools.c:473 +msgid "/Tools/Smudge" +msgstr "" + +#: app/tools.c:487 msgid "By Color Select" msgstr "" -#: app/tools.c:463 +#: app/tools.c:489 msgid "/Select/By Color..." msgstr "" -#: app/tools.c:478 +#: app/tools.c:504 msgid "/Image/Colors/Color Balance" msgstr "" -#: app/tools.c:493 +#: app/tools.c:519 msgid "/Image/Colors/Brightness-Contrast" msgstr "" -#: app/tools.c:508 +#: app/tools.c:534 msgid "/Image/Colors/Hue-Saturation" msgstr "" -#: app/tools.c:523 +#: app/tools.c:549 msgid "/Image/Colors/Posterize" msgstr "" -#: app/tools.c:538 +#: app/tools.c:564 msgid "/Image/Colors/Threshold" msgstr "" -#: app/tools.c:553 +#: app/tools.c:579 msgid "/Image/Colors/Curves" msgstr "" -#: app/tools.c:568 +#: app/tools.c:594 msgid "/Image/Colors/Levels" msgstr "" -#: app/tools.c:581 -msgid "Histogram" +#: app/tools.c:609 +msgid "/Image/Histogram" msgstr "" -#: app/tools.c:583 -msgid "/Image/Histogram" +#: app/tool_options.c:206 app/tool_options.c:688 +msgid "This tool has no options." +msgstr "" + +#: app/tool_options.c:230 +msgid "Rectangular Select Options" +msgstr "Rechthoekige Selectie-opties" + +#: app/tool_options.c:232 +#, fuzzy +msgid "Elliptical Selection Options" +msgstr "Selectieopertaties" + +#: app/tool_options.c:234 +#, fuzzy +msgid "Free-hand Selection Options" +msgstr "Selectieopertaties" + +#: app/tool_options.c:236 +#, fuzzy +msgid "Fuzzy Selection Options" +msgstr "Selectieopertaties" + +#: app/tool_options.c:238 +#, fuzzy +msgid "Bezier Selection Options" +msgstr "Selectieopertaties" + +#: app/tool_options.c:240 +msgid "Intelligent Scissors Options" +msgstr "" + +#: app/tool_options.c:242 +#, fuzzy +msgid "By-Color Select Options" +msgstr "Door Kleurselectie" + +#: app/tool_options.c:243 +msgid "ERROR: Unknown Selection Type" +msgstr "" + +#: app/tool_options.c:273 +#, fuzzy +msgid "Feather" +msgstr "Selectie" + +#: app/tool_options.c:381 +msgid "Fixed size / aspect ratio" +msgstr "" + +#: app/tool_options.c:552 +#, fuzzy +msgid "Bucket Fill Options" +msgstr "Fliphulpopties" + +#: app/tool_options.c:554 +msgid "Blend Options" +msgstr "Mengopties" + +#: app/tool_options.c:556 +#, fuzzy +msgid "Pencil Options" +msgstr "Openopties" + +#: app/tool_options.c:558 +#, fuzzy +msgid "Paintbrush Options" +msgstr "Paletopties" + +#: app/tool_options.c:560 +#, fuzzy +msgid "Erazer Options" +msgstr "Uitwisopties" + +#: app/tool_options.c:562 +#, fuzzy +msgid "Airbrush Options" +msgstr "Krommen-Opties" + +#: app/tool_options.c:564 +msgid "Clone Tool Options" +msgstr "Kloonhulp Opties" + +#: app/tool_options.c:566 +#, fuzzy +msgid "Convolver Options" +msgstr "Kloonhulp Opties" + +#: app/tool_options.c:568 +#, fuzzy +msgid "Ink Options" +msgstr "Openopties" + +#: app/tool_options.c:570 +#, fuzzy +msgid "Dodge or Burn Options" +msgstr "Opties voor kleurbalans" + +#: app/tool_options.c:572 +#, fuzzy +msgid "Smudge Options" +msgstr "Bewaaropties" + +#: app/tool_options.c:573 +msgid "ERROR: Unknown Paint Type" msgstr "" #: app/transform_core.c:122 @@ -5531,24 +5714,24 @@ msgid "" "layers that contain layer masks." msgstr "" -#: app/transform_core.c:1132 +#: app/transform_core.c:1140 msgid "homogeneous coordinate = 0...\n" msgstr "" -#: app/transform_core.c:1387 +#: app/transform_core.c:1395 #, fuzzy msgid "Transformation" msgstr "Knip Informatie" -#: app/transform_tool.c:190 +#: app/transform_tool.c:189 msgid "Rotation" msgstr "Rotatie" -#: app/transform_tool.c:192 +#: app/transform_tool.c:191 msgid "Shearing" msgstr "" -#: app/transform_tool.c:193 +#: app/transform_tool.c:192 msgid "Perspective" msgstr "Perspectief" @@ -5670,6 +5853,98 @@ msgstr "" msgid "unable to read tile data from xcf file: %d ( %d ) bytes read" msgstr "" +#. pseudo unit +#: libgimp/gimpunit.c:44 +msgid "pixel" +msgstr "" + +#: libgimp/gimpunit.c:44 +msgid "pixels" +msgstr "" + +#. standard units +#: libgimp/gimpunit.c:47 +msgid "inch" +msgstr "" + +#: libgimp/gimpunit.c:47 +#, fuzzy +msgid "inches" +msgstr "Apperaat Status" + +#: libgimp/gimpunit.c:48 +msgid "millimeter" +msgstr "" + +#: libgimp/gimpunit.c:48 +#, fuzzy +msgid "millimeters" +msgstr "/Filters" + +#. professional units +#: libgimp/gimpunit.c:51 +#, fuzzy +msgid "point" +msgstr "Splits" + +#: libgimp/gimpunit.c:51 +msgid "points" +msgstr "" + +#: libgimp/gimpunit.c:52 +#, fuzzy +msgid "pica" +msgstr "Repliceer" + +#: libgimp/gimpunit.c:52 +msgid "picas" +msgstr "" + +#: libgimp/gimpunit.c:59 +#, fuzzy +msgid "percent" +msgstr "Perspectief" + +#: libgimp/gimpfileselection.c:352 +#, fuzzy +msgid "Select File" +msgstr "Selectie" + +#: libgimp/gimpfileselection.c:355 libgimp/gimpunitmenu.c:510 +#, fuzzy +msgid "Select" +msgstr "Selectie" + +#: libgimp/gimpenv.c:82 +msgid "warning: no home directory." +msgstr "waarschuwing: geen home map" + +#: libgimp/gimpunitmenu.c:207 +msgid "More..." +msgstr "" + +#: libgimp/gimpunitmenu.c:333 +msgid "unit-menu-format string ended within %%-sequence" +msgstr "" + +#: libgimp/gimpunitmenu.c:366 +msgid "unit-menu-format contains unknownformat sequence '%%%c'" +msgstr "" + +#: libgimp/gimpunitmenu.c:453 +#, fuzzy +msgid "Unit Selection" +msgstr "Selectie" + +#: libgimp/gimpunitmenu.c:479 +#, fuzzy +msgid "Unit " +msgstr "Ongetiteld" + +#: libgimp/gimpunitmenu.c:481 +msgid "Factor" +msgstr "" + #: app/regex.c:976 msgid "Success" msgstr "Succes" @@ -5758,6 +6033,169 @@ msgstr "" msgid "No previous regular expression" msgstr "Geen vorige reguliere uitdrukking" +#~ msgid "/File/Quit" +#~ msgstr "/Bestand/Afsluiten" + +#~ msgid "/File/Quit" +#~ msgstr "/Bestand/Afsluiten" + +#, fuzzy +#~ msgid "Automatic" +#~ msgstr "/Automatisch" + +#~ msgid "/File/Open" +#~ msgstr "/Bestand/Open" + +#~ msgid "/File/Open" +#~ msgstr "/Bestand/Open" + +#~ msgid "/File/Save" +#~ msgstr "/Bestand/Bewaar" + +#~ msgid "/File/Save as" +#~ msgstr "/Bestand/Bewaar als" + +#, fuzzy +#~ msgid "/Layers/Stack/Previous Layer" +#~ msgstr "/Lagen/Verhoog Laag" + +#, fuzzy +#~ msgid "/Layers/Stack/Next Layer" +#~ msgstr "/Lagen/Verhoog Laag" + +#, fuzzy +#~ msgid "/Layers/Stack/Raise Layer" +#~ msgstr "/Lagen/Verhoog Laag" + +#, fuzzy +#~ msgid "/Layers/Stack/Lower Layer" +#~ msgstr "/Lagen/Verlaag Laag" + +#, fuzzy +#~ msgid "/Layers/Stack/Layer to Top" +#~ msgstr "/Lagen/Verhoog Laag" + +#, fuzzy +#~ msgid "/Layers/Stack/Layer to Bottom" +#~ msgstr "/Lagen/Verhoog Laag" + +#~ msgid "/Layers/Anchor Layer" +#~ msgstr "/Lagen/Veranker Laag" + +#~ msgid "/Layers/Merge Visible Layers" +#~ msgstr "/Lagen/Voeg Zichtbare Lagen Samen" + +#~ msgid "/Layers/Add Alpha Channel" +#~ msgstr "/Lagen/Voeg Alfa Kanaal toe" + +#~ msgid "/Image/RGB" +#~ msgstr "/Beeld/RGB" + +#~ msgid "/Image/Grayscale" +#~ msgstr "/Beeld/Grijswaarden" + +#~ msgid "/Image/Indexed" +#~ msgstr "/Beeld/Geindexeerd" + +#~ msgid "/Image/Colors/Invert" +#~ msgstr "/Beeld/Kleuren/Inverteren" + +#~ msgid "/Image/Colors/Color Balance" +#~ msgstr "/Beeld/Kleuren/Kleurenbalans" + +#~ msgid "/Image/Colors/Brightness-Contrast" +#~ msgstr "/Beeld/Kleuren/Helderheid-Contrast" + +#~ msgid "/Image/Colors/Hue-Saturation" +#~ msgstr "/Beeld/Kleuren/Hue-Saturation" + +#~ msgid "/Image/Colors/Curves" +#~ msgstr "/Beeld/Kleuren/Krommen" + +#~ msgid "/Image/Colors/Levels" +#~ msgstr "/Beeld/Kleuren/Niveaus" + +#~ msgid "/Image/Colors/Desaturate" +#~ msgstr "/Beeld/Kleuren/Desaturate" + +#~ msgid "/Image/Alpha/Add Alpha Channel" +#~ msgstr "/Beeld/Alfa/Voeg Alfa Kanaal toe" + +#~ msgid "/Select" +#~ msgstr "/Selecteer" + +#~ msgid "/Edit/Cut" +#~ msgstr "/Editeer/Knip" + +#~ msgid "/Edit/Copy" +#~ msgstr "/Editeer/Kopieer" + +#~ msgid "/Edit/Paste" +#~ msgstr "/Editeer/Plak" + +#~ msgid "/Edit/Paste Into" +#~ msgstr "/Editeer/Plak op" + +#~ msgid "/Edit/Fill" +#~ msgstr "/Editeer/Vul" + +#~ msgid "/Edit/Stroke" +#~ msgstr "/Editeer/Stroke" + +#~ msgid "/Edit/Cut Named" +#~ msgstr "/Editeer/Knip met naam" + +#~ msgid "/Edit/Copy Named" +#~ msgstr "/Editeer/Kopieer met naam" + +#~ msgid "/Edit/Paste Named" +#~ msgstr "/Editeer/Plak met naam" + +#~ msgid "/Image/Colors" +#~ msgstr "/Beeld/Kleuren" + +#~ msgid "/Image/Channel Ops/Offset" +#~ msgstr "/Beeld/Kanaal Ops/Offset" + +#~ msgid "/Image/Histogram" +#~ msgstr "/Beeld/Histogram" + +#~ msgid "/Filters" +#~ msgstr "/Filters" + +#~ msgid "/Select/Save To Channel" +#~ msgstr "/Selecteer/Bewaar in kanaal" + +#~ msgid "/View/Toggle Rulers" +#~ msgstr "/Zicht/Linealen" + +#~ msgid "/View/Toggle Guides" +#~ msgstr "/Zicht/Hulplijnen" + +#~ msgid "/View/Snap To Guides" +#~ msgstr "/Zicht/Snap To Guides" + +#~ msgid "/View/Toggle Statusbar" +#~ msgstr "/Zicht/Statusbalk" + +#~ msgid "/View/Dot for dot" +#~ msgstr "/Zicht/Punt voor punt" + +#~ msgid "/File/Close" +#~ msgstr "/Bestand/Sluit" + +#, fuzzy +#~ msgid "Replace Current Selection" +#~ msgstr "Repliceer selectie" + +#, fuzzy +#~ msgid "/Select/Toggle" +#~ msgstr "Selectie" + +#, fuzzy +#~ msgid "Gradient Type" +#~ msgstr "Gradatie" + #~ msgid "Non-existant colour was expected to be in non-destructive colourmap." #~ msgstr "Onbestaande kleur verwacht in niet-destructieve kleurenmap." @@ -5987,30 +6425,18 @@ msgstr "Geen vorige reguliere uitdrukking" #~ msgid "encountered garbage after reading level: %d" #~ msgstr "rommel tegengekomen na het lezen van niveau: %d" -#~ msgid "Blend Options" -#~ msgstr "Mengopties" - #~ msgid "Mode: " #~ msgstr "Modus: " #~ msgid "Fill Type: " #~ msgstr "Opvultype :" -#~ msgid "Clone Tool Options" -#~ msgstr "Kloonhulp Opties" - #~ msgid "Intensity" #~ msgstr "Intensiteit" -#~ msgid "Selection" -#~ msgstr "Selectie" - #~ msgid "Y Origin: " #~ msgstr "Y Bron: " -#~ msgid "Eraser Options" -#~ msgstr "Uitwisopties" - #~ msgid "attempt to register non-existant load handler \"%s\"" #~ msgstr "poging om onbestaande laad handler te registereren \"%s" @@ -6021,10 +6447,6 @@ msgstr "Geen vorige reguliere uitdrukking" #~ msgid "attempt to register non-existant save handler \"%s\"" #~ msgstr "poging om onbestaande bewaarhandler te registereren \"%s\"" -#, fuzzy -#~ msgid "Ink Options" -#~ msgstr "Openopties" - #, fuzzy #~ msgid "Layer procedures" #~ msgstr "Tijdelijke Procedure" @@ -6057,18 +6479,10 @@ msgstr "Geen vorige reguliere uitdrukking" #~ msgid "/Image/C_hannel Ops" #~ msgstr "/Beeld/Kanaal Ops/Offset" -#, fuzzy -#~ msgid "/Filte_rs" -#~ msgstr "/Filters" - #, fuzzy #~ msgid "Gradient Length" #~ msgstr "Gradatie" -#, fuzzy -#~ msgid "Pencil Options" -#~ msgstr "Openopties" - #, fuzzy #~ msgid "Internal error counting plugins" #~ msgstr "fout bij parsen van pluginrc" @@ -6082,9 +6496,6 @@ msgstr "Geen vorige reguliere uitdrukking" #~ msgid "Temporary Procedure" #~ msgstr "Tijdelijke Procedure" -#~ msgid "Rectangular Select Options" -#~ msgstr "Rechthoekige Selectie-opties" - #~ msgid "New height:" #~ msgstr "Nieuwe hoogte:" @@ -6127,9 +6538,6 @@ msgstr "Geen vorige reguliere uitdrukking" #~ msgid "Remove Point" #~ msgstr "Verwijder Punt" -#~ msgid "Load" -#~ msgstr "Laad" - #~ msgid "Paste Bezier Named Buffer" #~ msgstr "Plak Bezier Buffer Met Naam" @@ -6145,9 +6553,6 @@ msgstr "Geen vorige reguliere uitdrukking" #~ msgid "Move: %d, %d" #~ msgstr "Beweeg: %d, %d" -#~ msgid "warning: no home directory." -#~ msgstr "waarschuwing: geen home map" - #~ msgid "Can't open gimprc; permission problems" #~ msgstr "Kan gimprc niet openen: permissei problemen" diff --git a/po/no.po b/po/no.po index cb577e256b..f65e7035fa 100644 --- a/po/no.po +++ b/po/no.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: gimp 1.1.1\n" -"POT-Creation-Date: 1999-07-11 18:28+0200\n" +"POT-Creation-Date: 1999-07-17 11:23-0700\n" "PO-Revision-Date: 1999-07-11 19:39+0200\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -1507,97 +1507,97 @@ msgstr "" msgid "Unable to project indexed image." msgstr "" -#: app/gimpimage.c:2106 +#: app/gimpimage.c:2109 msgid "Layer cannot be raised any further" msgstr "" -#: app/gimpimage.c:2181 +#: app/gimpimage.c:2184 msgid "Layer cannot be lowered any further" msgstr "" #. layer_arg is already the top_layer -#: app/gimpimage.c:2211 +#: app/gimpimage.c:2214 msgid "Layer is already on top" msgstr "" -#: app/gimpimage.c:2216 +#: app/gimpimage.c:2219 msgid "Can't raise Layer without alpha" msgstr "" #. there is no next layer below layer_arg -#: app/gimpimage.c:2311 +#: app/gimpimage.c:2314 msgid "Layer is already on bottom" msgstr "" -#: app/gimpimage.c:2324 +#: app/gimpimage.c:2327 msgid "BG has no alpha, layer was placed above" msgstr "" -#: app/gimpimage.c:2387 +#: app/gimpimage.c:2390 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." msgstr "" -#: app/gimpimage.c:2465 +#: app/gimpimage.c:2468 msgid "There are not enough visible layers for a merge down." msgstr "" -#: app/gimpimage.c:2578 app/gimpimage.c:2611 +#: app/gimpimage.c:2581 app/gimpimage.c:2614 msgid "gimp_image_merge_layers: could not allocate merge layer" msgstr "" -#: app/gimpimage.c:2650 +#: app/gimpimage.c:2653 msgid "gimp_image_merge_layers attempting to merge incompatible layers\n" msgstr "" -#: app/gimpimage.c:2732 +#: app/gimpimage.c:2735 msgid "gimp_image_add_layer: attempt to add layer to wrong image" msgstr "" -#: app/gimpimage.c:2742 +#: app/gimpimage.c:2745 msgid "gimp_image_add_layer: trying to add layer to image twice" msgstr "" -#: app/gimpimage.c:2861 +#: app/gimpimage.c:2864 msgid "" "Unable to add a layer mask since\n" "the layer already has one." msgstr "" -#: app/gimpimage.c:2865 +#: app/gimpimage.c:2868 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." msgstr "" -#: app/gimpimage.c:2869 +#: app/gimpimage.c:2872 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." msgstr "" -#: app/gimpimage.c:2873 +#: app/gimpimage.c:2876 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -#: app/gimpimage.c:2980 +#: app/gimpimage.c:2983 msgid "Channel cannot be raised any further" msgstr "" -#: app/gimpimage.c:3028 +#: app/gimpimage.c:3031 msgid "Channel cannot be lowered any further" msgstr "" -#: app/gimpimage.c:3050 +#: app/gimpimage.c:3053 msgid "gimp_image_add_channel: attempt to add channel to wrong image" msgstr "" -#: app/gimpimage.c:3060 +#: app/gimpimage.c:3063 msgid "gimp_image_add_channel: trying to add channel to image twice" msgstr "" -#: app/gimpimage.c:3187 app/palette.c:525 app/palette.c:550 app/palette.c:909 +#: app/gimpimage.c:3190 app/palette.c:525 app/palette.c:550 app/palette.c:909 #: app/palette.c:913 app/palette.c:2313 app/palette.c:2995 msgid "Untitled" msgstr "" @@ -3182,7 +3182,8 @@ msgstr " --no-splash-image Ikke vis bilde i oppstartsvinduet.\n" msgid "" " --no-shm Do not use shared memory between GIMP and its " "plugins.\n" -msgstr " --no-shm Ikke bruk delt minne mellom GIMP og dens tillegg.\n" +msgstr "" +" --no-shm Ikke bruk delt minne mellom GIMP og dens tillegg.\n" #: app/main.c:304 msgid " --no-xshm Do not use the X Shared Memory extension.\n" @@ -3192,7 +3193,9 @@ msgstr " --no-xshm Ikke bruk X-utvidelsen for delt minne.\n" msgid "" " --console-messages Display warnings to console instead of a dialog " "box.\n" -msgstr " --console-messages Vis advarsler pЕ konsollet i stedet for i en dialogboks.\n" +msgstr "" +" --console-messages Vis advarsler pЕ konsollet i stedet for i en " +"dialogboks.\n" #: app/main.c:306 msgid " --debug-handlers Enable debugging signal handlers.\n" @@ -3789,12 +3792,12 @@ msgstr "/Importer sti" msgid "/Export Path" msgstr "/Eksporter sti" -#: app/menus.c:591 +#: app/menus.c:596 #, c-format msgid "Error opening file: %s\n" msgstr "Feil under Еpning av fil: %s\n" -#: app/menus.c:613 app/menus.c:694 +#: app/menus.c:618 app/menus.c:699 #, c-format msgid "/File/MRU%02d" msgstr "/Fil/MRU%02d" @@ -3803,83 +3806,83 @@ msgstr "/Fil/MRU%02d" msgid "Module DB" msgstr "Modul DB" -#: app/module_db.c:555 +#: app/module_db.c:567 #, c-format msgid "load module: \"%s\"\n" msgstr "last modul: \"%s\"\n" -#: app/module_db.c:562 +#: app/module_db.c:574 #, c-format msgid "skipping module: \"%s\"\n" msgstr "hopper over modul: \"%s\"\n" -#: app/module_db.c:586 +#: app/module_db.c:598 #, c-format msgid "module load error: %s: %s" msgstr "feil under lasting av modul: %s: %s" -#: app/module_db.c:604 +#: app/module_db.c:616 msgid "missing module_init() symbol" msgstr "manglende module_init() symbol" -#: app/module_db.c:607 +#: app/module_db.c:619 #, c-format msgid "%s: module_init() symbol not found" msgstr "%s: module_init() symbol ikke funnet" -#: app/module_db.c:760 +#: app/module_db.c:772 msgid "" msgstr "" -#: app/module_db.c:773 app/module_db.c:782 +#: app/module_db.c:785 app/module_db.c:794 msgid "on disk" msgstr "pЕ disk" -#: app/module_db.c:773 +#: app/module_db.c:785 msgid "only in memory" msgstr "kun i minne" -#: app/module_db.c:782 +#: app/module_db.c:794 msgid "nowhere (click 'refresh')" msgstr "ingensteder (klikk 'gjenles')" -#: app/module_db.c:818 +#: app/module_db.c:830 msgid "Load" msgstr "Last" -#: app/module_db.c:827 +#: app/module_db.c:839 msgid "Unload" msgstr "Frigi" -#: app/module_db.c:840 +#: app/module_db.c:852 msgid "Purpose: " msgstr "Mening: " -#: app/module_db.c:841 +#: app/module_db.c:853 msgid "Author: " msgstr "Forfatter: " -#: app/module_db.c:842 +#: app/module_db.c:854 msgid "Version: " msgstr "Versjon: " -#: app/module_db.c:843 +#: app/module_db.c:855 msgid "Copyright: " msgstr "Lisens: " -#: app/module_db.c:844 +#: app/module_db.c:856 msgid "Date: " msgstr "Dato: " -#: app/module_db.c:845 +#: app/module_db.c:857 msgid "Location: " msgstr "Plassering: " -#: app/module_db.c:846 +#: app/module_db.c:858 msgid "State: " msgstr "Tilstand: " -#: app/module_db.c:865 +#: app/module_db.c:877 msgid "Autoload during startup" msgstr "Autolasting under oppstart" @@ -4182,7 +4185,9 @@ msgstr "kunne ikke kj msgid "" "plug-in \"%s\" attempted to install procedure \"%s\" which does not take the " "standard plug-in args" -msgstr "Tillegg \"%s\" prЬvde Е installere prosedyre \"%s\" som ikke tar standard argumenter for tillegg" +msgstr "" +"Tillegg \"%s\" prЬvde Е installere prosedyre \"%s\" som ikke tar standard " +"argumenter for tillegg" #: app/plug_in.c:1697 #, c-format @@ -4190,7 +4195,8 @@ msgid "" "plug-in \"%s\" attempted to install procedure \"%s\" in an invalid menu " "location. Use either \"\", \"\", \"\", or \"\"." msgstr "" -"Tillegg \"%s\" prЬvde Е installere prosedyre \"%s\" i en ugyldig menyplassering.\n" +"Tillegg \"%s\" prЬvde Е installere prosedyre \"%s\" i en ugyldig " +"menyplassering.\n" "Bruk enten \"\", \",\"\", eller \"\"." #: app/plug_in.c:1717 @@ -4199,7 +4205,8 @@ msgid "" "plug_in \"%s\" attempted to install procedure \"%s\" which fails to comply " "with the array parameter passing standard. Argument %d is noncompliant." msgstr "" -"Tillegg \"%s\" prЬvde Е installere prosedyre \"%s\" som ikke fЬlger standarden for\n" +"Tillegg \"%s\" prЬvde Е installere prosedyre \"%s\" som ikke fЬlger " +"standarden for\n" "sending av arrayparametere. Argument %d fЬlger ikke standarden." #: app/plug_in.c:2149 @@ -4274,7 +4281,8 @@ msgstr "Feil: Tittelformat for bildet m #: app/preferences_dialog.c:536 msgid "You will need to restart GIMP for these changes to take effect." -msgstr "Du vil mЕtte starte GIMP pЕ nytt for at disse endringene skal tre i kraft." +msgstr "" +"Du vil mЕtte starte GIMP pЕ nytt for at disse endringene skal tre i kraft." #: app/preferences_dialog.c:1467 msgid "Preferences" @@ -4866,7 +4874,10 @@ msgid "" "\n" "If you don't have scalable fonts, try turning off antialiasing in the tool " "options." -msgstr "\nHvis du ikke har skalerbare skrifttyper, prЬv Е slЕ av antialiasing i alternativene for verktЬy." +msgstr "" +"\n" +"Hvis du ikke har skalerbare skrifttyper, prЬv Е slЕ av antialiasing i " +"alternativene for verktЬy." #: app/text_tool.c:722 msgid "Text Layer" @@ -5561,7 +5572,7 @@ msgstr "Velg fil" msgid "Select" msgstr "Velg" -#: libgimp/gimpenv.c:81 +#: libgimp/gimpenv.c:82 msgid "warning: no home directory." msgstr "advarsel: ingen hjemmekatalog" diff --git a/po/pl.po b/po/pl.po index 50483c5827..3f781d0228 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: GIMP 1.1.0\n" -"POT-Creation-Date: 1999-06-05 15:50-0700\n" +"POT-Creation-Date: 1999-07-17 11:23-0700\n" "PO-Revision-Date: 1999-01-07 19:22+0900\n" "Last-Translator: PaweЁ DziekoЯski \n" "Language-Team: Polish \n" @@ -15,27 +15,27 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8-bit\n" -#: app/about_dialog.c:153 +#: app/about_dialog.c:156 msgid "About the GIMP" msgstr "O programie GIMP" -#: app/about_dialog.c:196 +#: app/about_dialog.c:199 msgid "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-*-*" msgstr "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-iso8859-2" -#: app/about_dialog.c:199 +#: app/about_dialog.c:202 msgid "Version " msgstr "Wersja" -#: app/about_dialog.c:200 +#: app/about_dialog.c:203 msgid " brought to you by" msgstr " wykonane przez" -#: app/about_dialog.c:206 +#: app/about_dialog.c:209 msgid "Spencer Kimball & Peter Mattis" msgstr "Spencer Kimball i Peter Mattis" -#: app/about_dialog.c:239 +#: app/about_dialog.c:242 msgid "Please visit http://www.gimp.org/ for more info" msgstr "WiЙcej informacji znajdziesz na http://www.gimp.org/" @@ -54,356 +54,360 @@ msgstr "Ci msgid "killing stray timer, please report to lewing@gimp.org" msgstr "" -#: app/app_procs.c:355 +#: app/app_procs.c:358 msgid "GIMP Startup" msgstr "" -#: app/app_procs.c:468 app/gimprc.c:389 +#: app/app_procs.c:471 app/gimprc.c:394 #, c-format msgid "parsing \"%s\"\n" msgstr "przetwarzanie \"%s\"\n" #. initialize the xcf file format routines -#: app/app_procs.c:524 +#: app/app_procs.c:526 msgid "Looking for data files" msgstr "Szukanie danych" -#: app/app_procs.c:524 +#: app/app_procs.c:526 #, fuzzy msgid "Parasites" msgstr "Wklej" #. initialize the global parasite table -#: app/app_procs.c:526 app/internal_procs.c:70 app/preferences_dialog.c:2320 +#: app/app_procs.c:528 app/internal_procs.c:70 app/preferences_dialog.c:2395 msgid "Brushes" msgstr "PЙdzle" #. initialize the list of gimp brushes -#: app/app_procs.c:528 app/internal_procs.c:139 app/preferences_dialog.c:2322 +#: app/app_procs.c:530 app/internal_procs.c:139 app/preferences_dialog.c:2397 msgid "Patterns" msgstr "Szablony" #. initialize the list of gimp patterns -#: app/app_procs.c:530 app/preferences_dialog.c:2324 +#: app/app_procs.c:532 app/preferences_dialog.c:2399 msgid "Palettes" msgstr "Palety" #. initialize the list of gimp palettes -#: app/app_procs.c:532 app/gradient_select.c:557 app/internal_procs.c:109 -#: app/preferences_dialog.c:2326 +#: app/app_procs.c:534 app/gradient_select.c:557 app/internal_procs.c:109 +#: app/preferences_dialog.c:2401 msgid "Gradients" msgstr "Gradienty" -#: app/app_procs.c:696 app/app_procs.c:717 -msgid "/File/Quit" -msgstr "/Plik/Wyj╤cie" +#: app/app_procs.c:702 app/app_procs.c:703 app/app_procs.c:728 +#: app/app_procs.c:729 app/menus.c:83 app/menus.c:98 +#, fuzzy +msgid "/File/Quit" +msgstr "/Plik/Wyj╤cie" -#: app/app_procs.c:697 app/app_procs.c:718 -msgid "/File/Quit" -msgstr "/Plik/Wyj╤cie" - -#: app/app_procs.c:722 +#: app/app_procs.c:733 msgid "Really Quit?" msgstr "NaprawdЙ zakoЯczyФ pracЙ?" -#: app/app_procs.c:730 app/fileops.c:1420 +#: app/app_procs.c:741 app/fileops.c:1576 msgid "Yes" msgstr "Tak" -#: app/app_procs.c:739 app/fileops.c:1421 +#: app/app_procs.c:750 app/fileops.c:1577 msgid "No" msgstr "Nie" -#: app/app_procs.c:747 -msgid "Some files unsaved. Quit the GIMP?" +#: app/app_procs.c:776 +#, fuzzy +msgid "" +"Some files unsaved.\n" +"\n" +"Quit the GIMP?" msgstr "NiektСre pliki nie s╠ zachowane. Zamkn╠Ф Gimpa?" -#: app/batch.c:69 +#: app/batch.c:65 msgid "script-fu not available: batch mode disabled\n" msgstr "skrypty script-fu nie s╠ dostЙpne: tryb wsadowy wyЁ╠czony\n" -#: app/batch.c:78 +#: app/batch.c:74 msgid "reading batch commands from stdin\n" msgstr "czytanie komend wsadowych ze standartowego wej╤cia\n" -#: app/batch.c:118 +#: app/batch.c:114 msgid "batch command: experienced an execution error.\n" msgstr "komenda wsadowa: bЁ╠d wykonania.\n" -#: app/batch.c:121 +#: app/batch.c:117 msgid "batch command: experienced a calling error.\n" msgstr "komenda wsadowa: bЁ╠d wywoЁania\n" -#: app/batch.c:124 +#: app/batch.c:120 msgid "batch command: executed successfully.\n" msgstr "komenda wsadowa: wykonano pomy╤lnie.\n" -#: app/batch.c:205 +#: app/batch.c:204 msgid "extension_perl_server not available: unable to start the perl server\n" msgstr "" -#: app/batch.c:221 +#: app/batch.c:220 #, fuzzy msgid "perl server: experienced an execution error.\n" msgstr "komenda wsadowa: bЁ╠d wykonania.\n" -#: app/batch.c:224 +#: app/batch.c:223 #, fuzzy msgid "perl server: experienced a calling error.\n" msgstr "komenda wsadowa: bЁ╠d wywoЁania\n" -#: app/batch.c:227 +#: app/batch.c:226 #, fuzzy msgid "perl server: executed successfully.\n" msgstr "komenda wsadowa: wykonano pomy╤lnie.\n" -#: app/bezier_select.c:480 +#: app/bezier_select.c:477 msgid "Bezier path already closed." msgstr "" -#: app/bezier_select.c:501 +#: app/bezier_select.c:498 msgid "Corrupt curve" msgstr "" -#: app/bezier_select.c:1011 +#: app/bezier_select.c:1012 msgid "tried to edit on open bezier curve in edit selection" msgstr "" -#: app/bezier_select.c:1291 +#: app/bezier_select.c:1292 msgid "Encountered orphaned bezier control point" msgstr "" -#: app/bezier_select.c:1971 app/bezier_select.c:3170 +#: app/bezier_select.c:1975 app/bezier_select.c:3176 msgid "bad bezier segment" msgstr "bЁЙdny segment bezier" -#: app/bezier_select.c:1988 app/bezier_select.c:2630 +#: app/bezier_select.c:1992 app/bezier_select.c:2636 #, c-format msgid "unknown coordinate space: %d" msgstr "" -#: app/bezier_select.c:2131 +#: app/bezier_select.c:2135 msgid "tried to convert an open bezier curve" msgstr "" -#: app/bezier_select.c:3126 +#: app/bezier_select.c:3132 #, fuzzy msgid "Paintbrush operation failed." msgstr "WypeЁnianie kubeЁkiem nie powiodЁo siЙ." -#: app/blend.c:261 +#: app/blend.c:264 msgid "FG to BG (RGB)" msgstr "" -#: app/blend.c:263 +#: app/blend.c:266 msgid "FG to BG (HSV)" msgstr "" -#: app/blend.c:265 +#: app/blend.c:268 msgid "FG to Transparent" msgstr "" -#: app/blend.c:267 +#: app/blend.c:270 msgid "Custom from editor" msgstr "WЁasny z edytora" -#: app/blend.c:273 app/gradient.c:395 +#: app/blend.c:276 app/gradient.c:395 msgid "Linear" msgstr "Liniowy" -#: app/blend.c:275 +#: app/blend.c:278 msgid "Bi-Linear" msgstr "" -#: app/blend.c:277 +#: app/blend.c:280 msgid "Radial" msgstr "Promieniowy" -#: app/blend.c:279 +#: app/blend.c:282 msgid "Square" msgstr "Kwadratowy" -#: app/blend.c:281 +#: app/blend.c:284 msgid "Conical (symmetric)" msgstr "Sto©kowy (symetryczny)" -#: app/blend.c:283 +#: app/blend.c:286 msgid "Conical (asymmetric)" msgstr "Sto©kowy (asymetryczny)" -#: app/blend.c:285 +#: app/blend.c:288 msgid "Shapeburst (angular)" msgstr "" -#: app/blend.c:287 +#: app/blend.c:290 msgid "Shapeburst (spherical)" msgstr "" -#: app/blend.c:289 +#: app/blend.c:292 msgid "Shapeburst (dimpled)" msgstr "" -#: app/blend.c:291 +#: app/blend.c:294 msgid "Spiral (clockwise)" msgstr "" -#: app/blend.c:293 +#: app/blend.c:296 msgid "Spiral (anticlockwise)" msgstr "" -#: app/blend.c:299 app/preferences_dialog.c:1724 +#: app/blend.c:302 app/preferences_dialog.c:1759 msgid "None" msgstr "╞aden" -#: app/blend.c:301 +#: app/blend.c:304 msgid "Sawtooth wave" msgstr "" -#: app/blend.c:303 +#: app/blend.c:306 msgid "Triangular wave" msgstr "" -#: app/blend.c:331 +#: app/blend.c:334 msgid "Offset:" msgstr "PrzesuniЙcie:" #. the blend mode menu -#: app/blend.c:349 +#: app/blend.c:352 msgid "Blend:" msgstr "Gradient:" #. the gradient type menu -#: app/blend.c:367 +#: app/blend.c:370 msgid "Gradient:" msgstr "Gradient:" #. the repeat option -#: app/blend.c:385 +#: app/blend.c:388 msgid "Repeat:" msgstr "PowtСrz:" -#: app/blend.c:418 +#: app/blend.c:421 msgid "Adaptive supersampling" msgstr "" #. max depth scale -#: app/blend.c:440 +#: app/blend.c:443 msgid "Max depth:" msgstr "Maksymalna gЁЙbia:" #. threshold scale -#: app/blend.c:458 app/bucket_fill.c:137 app/iscissors.c:356 +#: app/blend.c:461 app/bucket_fill.c:136 app/iscissors.c:356 msgid "Threshold:" msgstr "PrСg:" -#: app/blend.c:496 +#: app/blend.c:499 msgid "Blend: Invalid for indexed images." msgstr "" -#: app/blend.c:521 +#: app/blend.c:524 msgid "Blend: 0, 0" msgstr "" -#: app/blend.c:583 +#: app/blend.c:587 msgid "Blend operation failed." msgstr "" -#: app/blend.c:589 +#: app/blend.c:593 #, fuzzy msgid "Blending..." msgstr "Gradient" -#: app/blend.c:639 app/blend.c:649 +#: app/blend.c:643 app/blend.c:653 #, fuzzy msgid "Blend: " msgstr "Gradient:" -#: app/blend.c:1295 +#: app/blend.c:1307 #, c-format msgid "gradient_render_pixel(): unknown gradient type %d" msgstr "gradient_render_pixel(): nieznany typ gradientu %d" -#: app/blend.c:1430 +#: app/blend.c:1445 #, c-format msgid "gradient_fill_region(): unknown blend mode %d" msgstr "" -#: app/blend.c:1471 +#: app/blend.c:1486 #, c-format msgid "gradient_fill_region(): unknown gradient type %d" msgstr "gradient_fill_region(): nieznany typ gradientu %d" -#: app/blend.c:1493 +#: app/blend.c:1508 #, c-format msgid "gradient_fill_region(): unknown repeat mode %d" msgstr "gradient_fill_region(): nieznany tryb powtarzania %d" -#: app/brightness_contrast.c:176 +#: app/brightness_contrast.c:136 msgid "Brightness-Contrast Options" msgstr "Opcje Jasno╤Ф-Kontrast" -#: app/brightness_contrast.c:221 +#: app/brightness_contrast.c:172 msgid "Brightness-Contrast does not operate on indexed drawables." msgstr "Jasno╤Ф-Kontrast nie mo©e zostaФ u©yta w trybie koloru indeksowanego." #. Action area -#: app/brightness_contrast.c:252 app/channel_ops.c:104 -#: app/channels_dialog.c:1889 app/channels_dialog.c:2062 -#: app/color_balance.c:301 app/color_notebook.c:43 app/color_notebook.c:186 -#: app/color_select.c:154 app/color_select.c:209 app/convert.c:295 -#: app/curves.c:417 app/file_new_dialog.c:288 app/file_new_dialog.c:478 -#: app/hue_saturation.c:411 app/interface.c:877 app/interface.c:1263 -#: app/layers_dialog.c:3218 app/layers_dialog.c:3432 app/layers_dialog.c:3574 -#: app/layers_dialog.c:4049 app/levels.c:373 app/posterize.c:241 -#: app/preferences_dialog.c:1435 app/resize.c:114 app/threshold.c:318 +#: app/brightness_contrast.c:214 app/channel_ops.c:104 +#: app/channels_dialog.c:1864 app/channels_dialog.c:2049 +#: app/color_balance.c:273 app/color_notebook.c:49 app/color_notebook.c:192 +#: app/color_select.c:155 app/color_select.c:210 app/convert.c:295 +#: app/curves.c:517 app/file_new_dialog.c:292 app/file_new_dialog.c:482 +#: app/hue_saturation.c:361 app/interface.c:1009 app/interface.c:1395 +#: app/layers_dialog.c:2901 app/layers_dialog.c:3119 app/layers_dialog.c:3262 +#: app/layers_dialog.c:3738 app/levels.c:335 app/module_db.c:263 +#: app/posterize.c:199 app/preferences_dialog.c:1469 app/resize.c:114 +#: app/threshold.c:278 msgid "OK" msgstr "OK" -#: app/brightness_contrast.c:253 app/channel_ops.c:113 -#: app/channels_dialog.c:1890 app/channels_dialog.c:2063 -#: app/color_balance.c:302 app/color_notebook.c:44 app/color_notebook.c:187 -#: app/color_select.c:155 app/color_select.c:210 app/convert.c:296 -#: app/curves.c:418 app/file_new_dialog.c:290 app/file_new_dialog.c:480 -#: app/gdisplay_ops.c:353 app/gimpprogress.c:135 app/global_edit.c:593 +#: app/brightness_contrast.c:215 app/channel_ops.c:113 +#: app/channels_dialog.c:1865 app/channels_dialog.c:2050 +#: app/color_balance.c:274 app/color_notebook.c:50 app/color_notebook.c:193 +#: app/color_select.c:156 app/color_select.c:211 app/convert.c:296 +#: app/curves.c:518 app/file_new_dialog.c:294 app/file_new_dialog.c:484 +#: app/gdisplay_ops.c:349 app/gimpprogress.c:135 app/global_edit.c:705 #: app/gradient.c:1486 app/gradient.c:4566 app/gradient.c:4921 -#: app/hue_saturation.c:412 app/interface.c:788 app/interface.c:878 -#: app/layers_dialog.c:3219 app/layers_dialog.c:3433 app/layers_dialog.c:3575 -#: app/layers_dialog.c:3722 app/layers_dialog.c:4050 app/levels.c:374 -#: app/posterize.c:242 app/preferences_dialog.c:1439 app/resize.c:115 -#: app/threshold.c:319 +#: app/hue_saturation.c:362 app/interface.c:913 app/interface.c:1010 +#: app/layers_dialog.c:2902 app/layers_dialog.c:3120 app/layers_dialog.c:3263 +#: app/layers_dialog.c:3410 app/layers_dialog.c:3739 app/levels.c:336 +#: app/posterize.c:200 app/preferences_dialog.c:1473 app/resize.c:115 +#: app/threshold.c:279 msgid "Cancel" msgstr "Anuluj" -#: app/brightness_contrast.c:276 app/tools.c:491 +#: app/brightness_contrast.c:226 app/tools.c:517 msgid "Brightness-Contrast" msgstr "Jasno╤Ф-Kontrast" #. Create the brightness scale widget -#: app/brightness_contrast.c:292 +#: app/brightness_contrast.c:242 msgid "Brightness" msgstr "Kontrast" #. Create the contrast scale widget -#: app/brightness_contrast.c:325 +#: app/brightness_contrast.c:275 msgid "Contrast" msgstr "Kontrast" #. The preview toggle -#: app/brightness_contrast.c:363 app/color_balance.c:481 app/curves.c:661 -#: app/fileops.c:395 app/hue_saturation.c:620 app/levels.c:583 -#: app/palette.c:2849 app/posterize.c:297 app/threshold.c:404 +#: app/brightness_contrast.c:313 app/color_balance.c:438 app/curves.c:651 +#: app/fileops.c:395 app/hue_saturation.c:572 app/levels.c:531 +#: app/palette.c:2849 app/posterize.c:246 app/threshold.c:354 msgid "Preview" msgstr "Podgl╠d" #. The close push button -#: app/brush_edit.c:38 app/brush_select.c:133 app/by_color_select.c:678 -#: app/color_notebook.c:181 app/color_picker.c:208 app/color_select.c:204 -#: app/colormap_dialog.i.c:94 app/colormap_dialog.i.c:103 app/crop.c:1011 -#: app/devices.c:124 app/docindexif.c:95 app/errorconsole.c:228 -#: app/gdisplay_ops.c:352 app/gradient.c:646 app/gradient_select.c:76 -#: app/info_window.c:121 app/layers_dialog.c:419 app/palette.c:2235 -#: app/palette_select.c:59 app/pattern_select.c:90 app/tips_dialog.c:146 -#: app/tools.c:716 +#: app/brush_edit.c:38 app/brush_select.c:135 app/by_color_select.c:664 +#: app/color_notebook.c:187 app/color_picker.c:209 app/color_select.c:205 +#: app/colormap_dialog.i.c:94 app/colormap_dialog.i.c:103 app/crop.c:1027 +#: app/devices.c:124 app/docindexif.c:100 app/errorconsole.c:230 +#: app/gdisplay_ops.c:348 app/gradient.c:646 app/gradient_select.c:76 +#: app/histogram_tool.c:262 app/info_window.c:121 app/lc_dialog.c:196 +#: app/palette.c:2235 app/palette_select.c:59 app/pattern_select.c:90 +#: app/tips_dialog.c:146 app/tools.c:874 libgimp/gimpfileselection.c:356 +#: libgimp/gimpunitmenu.c:518 msgid "Close" msgstr "Zamknij" @@ -412,7 +416,7 @@ msgid "Brush Editor" msgstr "Edytor PЙdzli" #. brush radius scale -#: app/brush_edit.c:240 app/color_picker.c:163 +#: app/brush_edit.c:240 app/color_picker.c:164 app/tool_options.c:284 msgid "Radius:" msgstr "PromieЯ:" @@ -431,70 +435,71 @@ msgstr "Wsp msgid "Angle:" msgstr "K╠t:" -#: app/brush_select.c:132 app/palette.c:2243 app/pattern_select.c:89 +#: app/brush_select.c:134 app/module_db.c:307 app/palette.c:2243 +#: app/pattern_select.c:89 msgid "Refresh" msgstr "Od╤wie©" -#: app/brush_select.c:153 +#: app/brush_select.c:155 msgid "Brush Selection" msgstr "WybСr pЙdzla" -#: app/brush_select.c:241 app/pattern_select.c:147 +#: app/brush_select.c:244 app/pattern_select.c:147 msgid "Active" msgstr "Aktywny" #. Create the opacity scale widget -#: app/brush_select.c:271 app/layers_dialog.c:756 +#: app/brush_select.c:274 app/layers_dialog.c:334 app/tool_options.c:593 msgid "Opacity:" msgstr "" #. Create the paint mode option menu -#: app/brush_select.c:289 app/layers_dialog.c:733 +#: app/brush_select.c:292 app/layers_dialog.c:307 app/tool_options.c:623 msgid "Mode:" msgstr "Tryb:" -#: app/brush_select.c:312 +#: app/brush_select.c:315 msgid "Edit Brush" msgstr "Edycja pЙdzla" -#: app/brush_select.c:318 +#: app/brush_select.c:321 msgid "New Brush" msgstr "Nowy pЙdzel" -#: app/brush_select.c:340 +#: app/brush_select.c:343 msgid "Spacing:" msgstr "OdstЙp:" -#: app/brush_select.c:531 +#: app/brush_select.c:536 msgid "failed to run brush callback function" msgstr "" -#: app/brush_select.c:1187 +#: app/brush_select.c:1192 msgid "" "We are all fresh out of brush editors today,\n" "please write your own or try back tomorrow\n" msgstr "" -#: app/bucket_fill.c:114 +#: app/bucket_fill.c:113 #, fuzzy msgid "FG Color Fill" msgstr "WypeЁnienie kolorem" -#: app/bucket_fill.c:115 +#: app/bucket_fill.c:114 #, fuzzy msgid "BG Color Fill" msgstr "WypeЁnienie kolorem" -#: app/bucket_fill.c:116 +#: app/bucket_fill.c:115 msgid "Pattern Fill" msgstr "WypeЁnienie szablonem" -#: app/bucket_fill.c:157 app/color_picker.c:138 +#: app/bucket_fill.c:156 app/color_picker.c:139 app/tool_options.c:358 msgid "Sample Merged" msgstr "PrСbkuj spЁaszczone" #. fill type -#: app/bucket_fill.c:165 app/file_new_dialog.c:838 +#: app/bucket_fill.c:164 app/file_new_dialog.c:842 msgid "Fill Type" msgstr "Typ wypeЁnienia" @@ -502,61 +507,61 @@ msgstr "Typ wype msgid "Bucket Fill operation failed." msgstr "WypeЁnianie kubeЁkiem nie powiodЁo siЙ." -#: app/bucket_fill.c:361 +#: app/bucket_fill.c:344 msgid "No available patterns for this operation." msgstr "Brak szablonСw dla tej operacji." -#: app/by_color_select.c:557 app/paint_funcs.c:100 +#: app/by_color_select.c:542 app/paint_funcs.c:100 msgid "Replace" msgstr "ZamieЯ" -#: app/by_color_select.c:558 app/colormap_dialog.i.c:99 +#: app/by_color_select.c:543 app/colormap_dialog.i.c:99 msgid "Add" msgstr "Dodaj" -#: app/by_color_select.c:559 app/layers_dialog.c:282 +#: app/by_color_select.c:544 app/layers_dialog.c:215 app/tool_options.c:784 msgid "Subtract" msgstr "OdjЙcie" -#: app/by_color_select.c:560 +#: app/by_color_select.c:545 msgid "Intersect" msgstr "" -#: app/by_color_select.c:578 +#: app/by_color_select.c:564 msgid "By Color Selection" msgstr "Przez wybСr barwy" -#: app/by_color_select.c:621 +#: app/by_color_select.c:607 msgid "Inactive" msgstr "Nieaktywny" #. Create the selection mode radio box -#: app/by_color_select.c:628 +#: app/by_color_select.c:614 msgid "Selection Mode" msgstr "Tryb zaznaczania" -#: app/by_color_select.c:652 +#: app/by_color_select.c:638 msgid "Fuzziness Threshold" msgstr "" #. The reset push button -#: app/by_color_select.c:668 app/curves.c:416 app/file_new_dialog.c:479 -#: app/tools.c:715 app/transform_core.c:116 +#: app/by_color_select.c:654 app/curves.c:516 app/file_new_dialog.c:483 +#: app/tools.c:873 app/transform_core.c:116 msgid "Reset" msgstr "Zresetuj" -#: app/channel.c:190 app/channel.c:192 app/layer.c:314 app/layer.c:316 +#: app/channel.c:191 app/channel.c:193 app/layer.c:316 app/layer.c:318 msgid "copy" msgstr "kopiuj" #. formulate the new layer_mask name -#: app/channel.c:198 app/gradient.c:1359 app/layer.c:322 app/layer.c:1481 +#: app/channel.c:199 app/gradient.c:1359 app/layer.c:324 app/layer.c:1486 #, c-format msgid "%s copy" msgstr "%s kopiuj" #. Create the new channel -#: app/channel.c:503 +#: app/channel.c:521 msgid "Selection Mask" msgstr "Maska zaznaczenia" @@ -584,12 +589,12 @@ msgstr "" msgid "Fill Options" msgstr "Opcje wypeЁnienia KubeЁkiem" -#: app/channel_ops.c:164 app/file_new_dialog.c:133 app/file_new_dialog.c:493 -#: app/layers_dialog.c:3210 +#: app/channel_ops.c:164 app/file_new_dialog.c:135 app/file_new_dialog.c:497 +#: app/layers_dialog.c:2893 msgid "Background" msgstr "TЁo" -#: app/channel_ops.c:175 app/file_new_dialog.c:495 app/layers_dialog.c:3212 +#: app/channel_ops.c:175 app/file_new_dialog.c:499 app/layers_dialog.c:2895 msgid "Transparent" msgstr "Przeroczysty" @@ -598,254 +603,279 @@ msgstr "Przeroczysty" msgid "Offset by (x/2),(y/2)" msgstr "" -#: app/channels_dialog.c:159 app/channels_dialog.c:193 -#: app/channels_dialog.c:1936 +#: app/channels_dialog.c:165 app/channels_dialog.c:1911 msgid "New Channel" msgstr "Nowy kanaЁ" -#: app/channels_dialog.c:161 app/channels_dialog.c:194 +#: app/channels_dialog.c:167 msgid "Raise Channel" msgstr "Podnie╤ kanaЁ" -#: app/channels_dialog.c:163 app/channels_dialog.c:195 +#: app/channels_dialog.c:169 msgid "Lower Channel" msgstr "Obni© kanaЁ" -#: app/channels_dialog.c:165 app/channels_dialog.c:196 +#: app/channels_dialog.c:171 msgid "Duplicate Channel" msgstr "Duplikat kanaЁu" -#: app/channels_dialog.c:167 app/channels_dialog.c:197 -msgid "Delete Channel" -msgstr "UsuЯ kanaЁ" - -#: app/channels_dialog.c:169 -msgid "Channel To Selection" -msgstr "KanaЁ na zaznaczenie" - -#: app/channels_dialog.c:171 -#, fuzzy -msgid "Add To Selection" -msgstr "KanaЁ na zaznaczenie" - #: app/channels_dialog.c:173 -#, fuzzy -msgid "Subtract From Selection" -msgstr "KanaЁ na zaznaczenie" - -#: app/channels_dialog.c:175 -#, fuzzy -msgid "Intersect With Selection" -msgstr "WybСr pЙdzla" - -#: app/channels_dialog.c:198 msgid "" -"Channel To Selection \n" +"Channel to Selection \n" " Add Subtract Intersect" msgstr "" -#: app/channels_dialog.c:633 app/channels_dialog.c:687 +#: app/channels_dialog.c:178 +msgid "Delete Channel" +msgstr "UsuЯ kanaЁ" + +#: app/channels_dialog.c:537 app/menus.c:273 +#, fuzzy +msgid "/New Channel" +msgstr "Nowy kanaЁ" + +#: app/channels_dialog.c:540 app/menus.c:274 +#, fuzzy +msgid "/Raise Channel" +msgstr "Podnie╤ kanaЁ" + +#: app/channels_dialog.c:544 app/menus.c:275 +#, fuzzy +msgid "/Lower Channel" +msgstr "Obni© kanaЁ" + +#: app/channels_dialog.c:548 app/menus.c:276 +#, fuzzy +msgid "/Duplicate Channel" +msgstr "Duplikat kanaЁu" + +#: app/channels_dialog.c:552 app/menus.c:278 +#, fuzzy +msgid "/Channel to Selection" +msgstr "KanaЁ na zaznaczenie" + +#: app/channels_dialog.c:555 app/menus.c:283 +#, fuzzy +msgid "/Delete Channel" +msgstr "UsuЯ kanaЁ" + +#: app/channels_dialog.c:559 app/menus.c:279 +#, fuzzy +msgid "/Add to Selection" +msgstr "KanaЁ na zaznaczenie" + +#: app/channels_dialog.c:560 app/menus.c:280 +#, fuzzy +msgid "/Subtract From Selection" +msgstr "KanaЁ na zaznaczenie" + +#: app/channels_dialog.c:561 app/menus.c:281 +#, fuzzy +msgid "/Intersect With Selection" +msgstr "WybСr pЙdzla" + +#: app/channels_dialog.c:608 app/channels_dialog.c:662 #, c-format msgid "error in %s at %d: this shouldn't happen." msgstr "bЁ╠d w %s przy %d: to nie powinno siЙ zdarzyФ." -#: app/channels_dialog.c:1166 app/color_balance.c:413 app/curves.c:424 -#: app/levels.c:282 +#: app/channels_dialog.c:1137 app/color_balance.c:370 app/curves.c:405 +#: app/histogram_tool.c:279 app/levels.c:231 msgid "Red" msgstr "Czerwony" -#: app/channels_dialog.c:1170 app/color_balance.c:440 app/curves.c:425 -#: app/levels.c:283 +#: app/channels_dialog.c:1141 app/color_balance.c:397 app/curves.c:406 +#: app/histogram_tool.c:280 app/levels.c:232 msgid "Green" msgstr "Zielony" -#: app/channels_dialog.c:1174 app/color_balance.c:467 app/curves.c:426 -#: app/levels.c:284 +#: app/channels_dialog.c:1145 app/color_balance.c:424 app/curves.c:407 +#: app/histogram_tool.c:281 app/levels.c:233 msgid "Blue" msgstr "Niebieski" -#: app/channels_dialog.c:1178 +#: app/channels_dialog.c:1149 msgid "Gray" msgstr "Szary" -#: app/channels_dialog.c:1182 +#: app/channels_dialog.c:1153 msgid "Indexed" msgstr "Indeksowany" -#: app/channels_dialog.c:1908 +#: app/channels_dialog.c:1883 msgid "New Channel Options" msgstr "Opcje nowego kanaЁu" #. the name entry hbox, label and entry -#: app/channels_dialog.c:1926 +#: app/channels_dialog.c:1901 msgid "Channel name: " msgstr "Nazwa kanaЁu: " #. the opacity scale -#: app/channels_dialog.c:1940 +#: app/channels_dialog.c:1915 msgid "Fill Opacity: " msgstr "" -#: app/channels_dialog.c:2087 +#: app/channels_dialog.c:2066 msgid "Edit Channel Attributes" msgstr "Edytuj atrubuty kanaЁu" -#: app/channels_dialog.c:2107 +#: app/channels_dialog.c:2086 msgid "Channel name:" msgstr "Nazwa kanaЁu:" -#: app/channels_dialog.c:2122 +#: app/channels_dialog.c:2101 msgid "Fill Opacity" msgstr "" -#: app/clone.c:134 +#: app/clone.c:137 msgid "Image Source" msgstr "╛rСdЁo obrazka" -#: app/clone.c:135 +#: app/clone.c:138 msgid "Pattern Source" msgstr "╛rСdЁo szablonu" -#: app/clone.c:139 +#: app/clone.c:144 #, fuzzy msgid "Non Aligned" msgstr "WyrСwnany" -#: app/clone.c:140 +#: app/clone.c:145 msgid "Aligned" msgstr "WyrСwnany" -#: app/clone.c:141 +#: app/clone.c:146 msgid "Registered" msgstr "" #. the radio frame and box -#: app/clone.c:156 +#: app/clone.c:162 msgid "Source" msgstr "╛rСdЁo" #. the radio frame and box -#: app/clone.c:181 +#: app/clone.c:187 #, fuzzy msgid "Alignment" msgstr "WyrСwnany" -#: app/clone.c:308 +#: app/clone.c:314 msgid "No patterns available for this operation." msgstr "Brak szablonСw dla tej operacji." -#: app/color_balance.c:222 +#: app/color_balance.c:184 msgid "Color Balance Options" msgstr "Opcje balansu kolorСw" -#: app/color_balance.c:269 +#: app/color_balance.c:222 msgid "Color balance operates only on RGB color drawables." msgstr "Balans kolorСw mo©e zostaФ u©yty tylko w trybie RGB." -#: app/color_balance.c:323 +#: app/color_balance.c:279 msgid "Shadows" msgstr "Cienie" -#: app/color_balance.c:324 +#: app/color_balance.c:280 msgid "Midtones" msgstr "Tony po╤rednie" -#: app/color_balance.c:325 +#: app/color_balance.c:281 msgid "Highlights" msgstr "╕wiatЁa" -#: app/color_balance.c:342 app/tools.c:476 +#: app/color_balance.c:299 app/tools.c:502 msgid "Color Balance" msgstr "Balans kolorСw" -#: app/color_balance.c:357 +#: app/color_balance.c:314 msgid "Color Levels: " msgstr "SkЁadowe barwy: " #. Create the cyan-red scale widget -#: app/color_balance.c:396 +#: app/color_balance.c:353 msgid "Cyan" msgstr "Niebiesko-zielony (Cyan)" #. Create the magenta-green scale widget -#: app/color_balance.c:423 +#: app/color_balance.c:380 msgid "Magenta" msgstr "Purpurowy (Magenta)" #. Create the yellow-blue scale widget -#: app/color_balance.c:450 +#: app/color_balance.c:407 msgid "Yellow" msgstr "╞СЁty" #. The preserve luminosity toggle -#: app/color_balance.c:490 +#: app/color_balance.c:447 msgid "Preserve Luminosity" msgstr "Zachowaj luminancjЙ" -#: app/color_notebook.c:111 app/color_select.c:186 +#: app/color_notebook.c:117 app/color_select.c:187 msgid "Color Selection" msgstr "Zaznaczenie kolorem" -#: app/color_notebook.c:182 app/color_select.c:205 +#: app/color_notebook.c:188 app/color_select.c:206 msgid "Revert to Old Color" msgstr "Ustaw poprzedni kolor" -#: app/color_picker.c:127 +#: app/color_picker.c:128 msgid "Color Picker Options" msgstr "Opcje kroplomierza" -#: app/color_picker.c:153 +#: app/color_picker.c:154 #, fuzzy msgid "Sample Average" msgstr "PrСbkuj spЁaszczone" -#: app/color_picker.c:224 app/tools.c:310 +#: app/color_picker.c:225 app/tools.c:306 msgid "Color Picker" msgstr "Kroplomierz" -#: app/color_picker.c:231 app/color_picker.c:241 +#: app/color_picker.c:232 app/color_picker.c:242 #, fuzzy msgid "Red:" msgstr "Czerwony" -#: app/color_picker.c:232 app/color_picker.c:242 +#: app/color_picker.c:233 app/color_picker.c:243 #, fuzzy msgid "Green:" msgstr "Zielony" -#: app/color_picker.c:233 app/color_picker.c:243 +#: app/color_picker.c:234 app/color_picker.c:244 #, fuzzy msgid "Blue:" msgstr "Niebieski" -#: app/color_picker.c:234 app/color_picker.c:240 app/color_picker.c:249 +#: app/color_picker.c:235 app/color_picker.c:241 app/color_picker.c:250 #, fuzzy msgid "Alpha:" msgstr "Alfa" -#: app/color_picker.c:235 app/color_picker.c:250 app/color_select.c:386 -#: app/colormap_dialog.i.c:199 +#: app/color_picker.c:236 app/color_picker.c:251 app/color_select.c:387 +#: app/colormap_dialog.i.c:201 msgid "Hex Triplet:" msgstr "" -#: app/color_picker.c:239 app/colormap_dialog.i.c:192 +#: app/color_picker.c:240 app/colormap_dialog.i.c:194 #, fuzzy msgid "Index:" msgstr "Indeks" -#: app/color_picker.c:244 +#: app/color_picker.c:245 msgid "Hex Triplet" msgstr "" -#: app/color_picker.c:248 app/histogram_tool.c:311 +#: app/color_picker.c:249 app/histogram_tool.c:271 #, fuzzy msgid "Intensity:" msgstr "Intensywno╤Ф" -#: app/color_picker.c:541 app/color_picker.c:542 app/color_picker.c:543 -#: app/color_picker.c:544 app/color_picker.c:545 app/color_picker.c:546 -#: app/color_picker.c:547 app/color_picker.c:560 app/color_picker.c:572 -#: app/color_picker.c:587 +#: app/color_picker.c:547 app/color_picker.c:548 app/color_picker.c:549 +#: app/color_picker.c:550 app/color_picker.c:551 app/color_picker.c:552 +#: app/color_picker.c:553 app/color_picker.c:566 app/color_picker.c:578 +#: app/color_picker.c:593 msgid "N/A" msgstr "NiedostЙpny" @@ -860,7 +890,7 @@ msgid "Indexed Color Palette" msgstr "Konwersja koloru indeksowanego" #. The GIMP image option menu -#: app/colormap_dialog.i.c:136 app/layers_dialog.c:359 +#: app/colormap_dialog.i.c:136 app/lc_dialog.c:131 msgid "Image:" msgstr "Obrazek:" @@ -869,47 +899,47 @@ msgstr "Obrazek:" msgid "Operations" msgstr "Opcje wczytywania" -#: app/colormap_dialog.i.c:831 app/layers_dialog.c:879 +#: app/colormap_dialog.i.c:833 app/lc_dialog.c:614 msgid "none" msgstr "" -#: app/commands.c:366 +#: app/commands.c:342 msgid "Border Selection" msgstr "Obramuj zaznaczenie" -#: app/commands.c:366 +#: app/commands.c:343 msgid "Border selection by:" msgstr "Obramuj zaznaczenie o szeroko╤Ф:" -#: app/commands.c:384 +#: app/commands.c:360 msgid "Feather Selection" msgstr "Zaokr╠glij zaznaczenie" -#: app/commands.c:384 +#: app/commands.c:361 msgid "Feather selection by:" msgstr "Zaokr╠glij zaznaczenie o szeroko╤Ф:" -#: app/commands.c:402 +#: app/commands.c:378 msgid "Grow Selection" msgstr "PowiЙksz zaznaczenie" -#: app/commands.c:402 +#: app/commands.c:379 msgid "Grow selection by:" msgstr "PowiЙksz zaznaczenie o szeroko╤Ф:" -#: app/commands.c:420 +#: app/commands.c:396 msgid "Shrink Selection" msgstr "Zmniejsz zaznaczenie" -#: app/commands.c:420 +#: app/commands.c:397 msgid "Shrink selection by:" msgstr "Zmniejsz zaznaczenie o szeroko╤Ф:" -#: app/commands.c:1199 +#: app/commands.c:1179 msgid "Resize Error: Both width and height must be greater than zero." msgstr "Wielko╤Ф obrazka: szeroko╤Ф i wysoko╤Ф musz╠ byФ dodatnie." -#: app/commands.c:1248 +#: app/commands.c:1228 msgid "Scale Error: Both width and height must be greater than zero." msgstr "Skaluj obrazek: szeroko╤Ф i wysoko╤Ф musz╠ byФ dodatnie." @@ -966,118 +996,118 @@ msgstr "Wyostrzanie" msgid "Convolve Type" msgstr "Typ krzywej: " -#: app/crop.c:169 app/crop.c:1009 +#: app/crop.c:170 app/crop.c:1025 msgid "Crop" msgstr "Przytnij" -#: app/crop.c:169 app/crop.c:1010 +#: app/crop.c:170 app/crop.c:1026 msgid "Resize" msgstr "" -#: app/crop.c:175 +#: app/crop.c:176 #, fuzzy msgid "Crop & Resize Options" msgstr "Opcje krzywych" -#: app/crop.c:186 +#: app/crop.c:187 msgid "Current layer only" msgstr "" #. enlarge toggle -#: app/crop.c:197 +#: app/crop.c:198 msgid "Allow Enlarging" msgstr "" #. tool toggle -#: app/crop.c:208 app/flip_tool.c:84 +#: app/crop.c:209 app/flip_tool.c:85 msgid "Tool Toggle" msgstr "" -#: app/crop.c:500 app/crop.c:508 +#: app/crop.c:501 app/crop.c:509 #, fuzzy msgid "Crop: " msgstr "Przytnij" -#: app/crop.c:997 +#: app/crop.c:1005 msgid "Crop: 0 x 0" msgstr "Przytnij: 0 x 0" #. create the info dialog -#: app/crop.c:1025 +#: app/crop.c:1033 #, fuzzy msgid "Crop & Resize Information" msgstr "Przycinanie" #. add the information fields -#: app/crop.c:1028 +#: app/crop.c:1036 #, fuzzy msgid "Origin X:" msgstr "pocz╠tkowy X: " -#: app/crop.c:1031 app/file_new_dialog.c:749 app/resize.c:334 app/resize.c:419 -#: app/resize.c:577 app/rotate_tool.c:108 app/scale_tool.c:99 +#: app/crop.c:1039 app/file_new_dialog.c:753 app/resize.c:334 app/resize.c:419 +#: app/resize.c:577 app/rotate_tool.c:109 app/scale_tool.c:99 #: app/shear_tool.c:83 msgid "Y:" msgstr "" #. the pixel size labels -#: app/crop.c:1059 app/file_new_dialog.c:610 app/file_new_dialog.c:628 +#: app/crop.c:1052 app/file_new_dialog.c:614 app/file_new_dialog.c:632 +#: app/tool_options.c:405 #, fuzzy msgid "Width:" msgstr "Szeroko╤Ф: " -#: app/crop.c:1062 app/file_new_dialog.c:616 app/file_new_dialog.c:634 -#: app/layers_dialog.c:3271 app/resize.c:245 app/resize.c:270 app/resize.c:514 -#: app/scale_tool.c:78 app/scale_tool.c:85 +#: app/crop.c:1055 app/file_new_dialog.c:620 app/file_new_dialog.c:638 +#: app/layers_dialog.c:2954 app/resize.c:245 app/resize.c:270 app/resize.c:514 +#: app/scale_tool.c:78 app/scale_tool.c:85 app/tool_options.c:427 #, fuzzy msgid "Height:" msgstr "Wysoko╤Ф: " -#: app/crop.c:1097 +#: app/crop.c:1077 #, fuzzy msgid "From Selection" msgstr "PowiЙksz zaznaczenie" -#: app/crop.c:1103 -#, fuzzy -msgid "Automatic" -msgstr "/Automatycznie" +#: app/crop.c:1083 +msgid "Auto Shrink" +msgstr "" -#: app/curves.c:373 +#: app/curves.c:368 msgid "Curves Options" msgstr "Opcje krzywych" -#: app/curves.c:423 app/layers_dialog.c:288 app/levels.c:281 -#: app/paint_funcs.c:97 +#: app/curves.c:404 app/histogram_tool.c:278 app/layers_dialog.c:227 +#: app/levels.c:230 app/paint_funcs.c:97 app/tool_options.c:790 msgid "Value" msgstr "Warto╤Ф" -#: app/curves.c:427 app/levels.c:285 +#: app/curves.c:408 app/levels.c:234 msgid "Alpha" msgstr "Alfa" -#: app/curves.c:433 -msgid "Smooth" -msgstr "WygЁad╪" - -#: app/curves.c:434 -msgid "Free" -msgstr "Swobodnie" - -#: app/curves.c:445 +#: app/curves.c:419 msgid "Curves for indexed drawables cannot be adjusted." msgstr "Krzywe w trybie indeksowanym nie mog╠ byФ zmieniane." -#: app/curves.c:560 app/tools.c:551 +#: app/curves.c:523 +msgid "Smooth" +msgstr "WygЁad╪" + +#: app/curves.c:524 +msgid "Free" +msgstr "Swobodnie" + +#: app/curves.c:550 app/tools.c:577 msgid "Curves" msgstr "Krzywe" -#: app/curves.c:574 +#: app/curves.c:564 msgid "Modify Curves for Channel: " msgstr "Modyfikuj Krzywe kanaЁu: " #. The option menu for selecting the drawing method -#: app/curves.c:648 +#: app/curves.c:638 msgid "Curve Type: " msgstr "Typ krzywej: " @@ -1085,7 +1115,7 @@ msgstr "Typ krzywej: " msgid "Desaturate operates only on RGB color drawables." msgstr "" -#: app/devices.c:123 app/palette.c:2187 app/preferences_dialog.c:1437 +#: app/devices.c:123 app/palette.c:2187 app/preferences_dialog.c:1471 msgid "Save" msgstr "Zachowaj" @@ -1121,49 +1151,49 @@ msgstr "Brak zaznaczenia." msgid "There's no selection to remove." msgstr "Brak zaznaczenia do usuniЙcia." -#: app/docindexif.c:75 +#: app/docindexif.c:80 msgid "Open" msgstr "OtwСrz" -#: app/docindexif.c:75 +#: app/docindexif.c:80 msgid "Open a file" msgstr "OtwС© plik" -#: app/docindexif.c:80 +#: app/docindexif.c:85 msgid "Up" msgstr "W gСrЙ" -#: app/docindexif.c:80 +#: app/docindexif.c:85 msgid "Move the selected entry up in the index" msgstr "PrzesuЯ wybran╠ pozycjЙ w indeksie w gСrЙ" -#: app/docindexif.c:85 +#: app/docindexif.c:90 msgid "Down" msgstr "W dСЁ" -#: app/docindexif.c:85 +#: app/docindexif.c:90 msgid "Move the selected entry down in the index" msgstr "Przesu╠ wybran╠ pozycjЙ w indeksie w dСЁ" -#: app/docindexif.c:90 +#: app/docindexif.c:95 msgid "Remove" msgstr "UsuЯ" -#: app/docindexif.c:90 +#: app/docindexif.c:95 msgid "Remove the selected entry from the index" msgstr "UsuЯ wybran╠ pozycjЙ z indeksu" -#: app/docindexif.c:95 +#: app/docindexif.c:100 msgid "Close the Document Index" msgstr "Zamknij indeks dokumentu" #. Set the GOWindow title -#: app/docindexif.c:213 +#: app/docindexif.c:218 msgid "Document Index" msgstr "Indeks dokumentu" #. Set the initial status message -#: app/docindexif.c:219 +#: app/docindexif.c:224 msgid "GTK successfully started" msgstr "GTK pomy╤lnie wystartowaЁ" @@ -1171,11 +1201,11 @@ msgstr "GTK pomy msgid "drawable_fill called with unknown fill type" msgstr "" -#: app/edit_selection.c:164 +#: app/edit_selection.c:163 msgid "Move: 0, 0" msgstr "PrzesuЯ: 0, 0" -#: app/edit_selection.c:443 app/edit_selection.c:453 +#: app/edit_selection.c:442 app/edit_selection.c:452 #, fuzzy msgid "Move: " msgstr "Tryb: " @@ -1190,41 +1220,41 @@ msgid "Hard edge" msgstr "" #. the incremental toggle -#: app/eraser.c:108 app/paintbrush.c:258 +#: app/eraser.c:108 app/paintbrush.c:257 msgid "Incremental" msgstr "" -#: app/errorconsole.c:168 +#: app/errorconsole.c:170 #, c-format msgid "Error opening file %s: %s" msgstr "BЁ╠d otwarcia pliku %s: %s" -#: app/errorconsole.c:183 +#: app/errorconsole.c:185 msgid "Can't save, nothing selected!" msgstr "BЁ╠d zachowania - nic nie zostaЁo wybrane!" -#: app/errorconsole.c:187 +#: app/errorconsole.c:189 msgid "Save error log to file..." msgstr "Zachowaj komunikaty bЁЙdСw do pliku..." -#: app/errorconsole.c:244 +#: app/errorconsole.c:246 msgid "GIMP Error console" msgstr "" -#: app/errorconsole.c:259 +#: app/errorconsole.c:261 msgid "Write all errors to file..." msgstr "Zapisz komunikaty bЁЙdСw do pliku..." -#: app/errorconsole.c:266 +#: app/errorconsole.c:268 msgid "Write selection to file..." msgstr "Zapisz wybСr do pliku..." -#: app/file_new_dialog.c:299 +#: app/file_new_dialog.c:303 #, fuzzy msgid "Confirm Image Size" msgstr "Wielko╤Ф obrazka" -#: app/file_new_dialog.c:313 +#: app/file_new_dialog.c:317 #, c-format msgid "" "You are trying to create an image which\n" @@ -1240,85 +1270,85 @@ msgid "" "preferences dialog." msgstr "" -#: app/file_new_dialog.c:407 +#: app/file_new_dialog.c:411 #, c-format msgid "%d Bytes" msgstr "" -#: app/file_new_dialog.c:409 +#: app/file_new_dialog.c:413 #, c-format msgid "%.2f KB" msgstr "" -#: app/file_new_dialog.c:411 +#: app/file_new_dialog.c:415 #, c-format msgid "%.1f KB" msgstr "" -#: app/file_new_dialog.c:413 +#: app/file_new_dialog.c:417 #, c-format msgid "%d KB" msgstr "" -#: app/file_new_dialog.c:415 +#: app/file_new_dialog.c:419 #, c-format msgid "%.2f MB" msgstr "" -#: app/file_new_dialog.c:417 +#: app/file_new_dialog.c:421 #, c-format msgid "%.1f MB" msgstr "" #. bytes per pixel #. alpha channel -#: app/file_new_dialog.c:442 +#: app/file_new_dialog.c:446 #, fuzzy, c-format msgid "Image Size: %s" msgstr "Wielko╤Ф obrazka" -#: app/file_new_dialog.c:485 app/gdisplay.c:197 app/preferences_dialog.c:1598 +#: app/file_new_dialog.c:489 app/gdisplay.c:202 app/preferences_dialog.c:1633 msgid "RGB" msgstr "RGB" -#: app/file_new_dialog.c:486 app/info_window.c:50 app/info_window.c:241 -#: app/preferences_dialog.c:1599 +#: app/file_new_dialog.c:490 app/info_window.c:50 app/info_window.c:241 +#: app/preferences_dialog.c:1634 msgid "Grayscale" msgstr "Odcienie szaro╤ci" -#: app/file_new_dialog.c:492 app/layers_dialog.c:3209 +#: app/file_new_dialog.c:496 app/layers_dialog.c:2892 msgid "Foreground" msgstr "" -#: app/file_new_dialog.c:494 app/layers_dialog.c:3211 +#: app/file_new_dialog.c:498 app/layers_dialog.c:2894 msgid "White" msgstr "BiaЁy" -#: app/file_new_dialog.c:568 +#: app/file_new_dialog.c:572 msgid "New Image" msgstr "Nowy obrazek" -#: app/file_new_dialog.c:674 app/preferences_dialog.c:1507 +#: app/file_new_dialog.c:678 app/preferences_dialog.c:1542 msgid "Pixels" msgstr "Piksele" #. the resolution labels -#: app/file_new_dialog.c:743 app/resize.c:571 +#: app/file_new_dialog.c:747 app/resize.c:571 #, fuzzy msgid "Resolution X:" msgstr "Rozdzielczo╤Ф" -#: app/file_new_dialog.c:764 app/resize.c:592 +#: app/file_new_dialog.c:768 app/resize.c:592 #, fuzzy msgid "pixels/%a" msgstr "Piksele" #. frame for Image Type -#: app/file_new_dialog.c:808 +#: app/file_new_dialog.c:812 msgid "Image Type" msgstr "Typ obrazka" -#: app/fileops.c:222 app/fileops.c:251 +#: app/fileops.c:224 app/fileops.c:253 msgid "Load Image" msgstr "Wczytaj obrazek" @@ -1327,321 +1357,127 @@ msgstr "Wczytaj obrazek" msgid "Open Options" msgstr "Opcje wczytywania" -#: app/fileops.c:278 app/fileops.c:479 +#: app/fileops.c:278 app/fileops.c:482 msgid "Determine file type:" msgstr "Ustal typ pliku:" -#: app/fileops.c:441 app/fileops.c:463 +#: app/fileops.c:443 app/fileops.c:465 msgid "Save Image" msgstr "Zachowaj obrazek" -#: app/fileops.c:471 +#: app/fileops.c:474 msgid "Save Options" msgstr "Opcje zachowywania" -#: app/fileops.c:522 +#: app/fileops.c:526 msgid "Can't revert. No filename associated with this image" msgstr "" -#: app/fileops.c:536 +#: app/fileops.c:540 #, fuzzy msgid "Revert failed." msgstr "Zachowanie nie powiodЁo siЙ: " -#: app/fileops.c:1212 app/fileops.c:1302 +#: app/fileops.c:1364 app/fileops.c:1454 msgid "Open failed: " msgstr "Wczytywanie nie powiodЁo siЙ: " -#: app/fileops.c:1368 +#: app/fileops.c:1520 #, c-format msgid "%s is an irregular file (%s)" msgstr "%s jest nietypowym plikiem (%s)" -#: app/fileops.c:1382 app/fileops.c:1485 +#: app/fileops.c:1534 app/fileops.c:1641 msgid "Save failed: " msgstr "Zachowanie nie powiodЁo siЙ: " -#: app/fileops.c:1394 app/fileops.c:1407 -msgid "/File/Open" -msgstr "/Plik/OtwСrz" +#: app/fileops.c:1546 app/fileops.c:1547 app/fileops.c:1559 app/fileops.c:1560 +#: app/menus.c:58 app/menus.c:90 +#, fuzzy +msgid "/File/Open" +msgstr "/Plik/OtwСrz" -#: app/fileops.c:1395 app/fileops.c:1408 -msgid "/File/Open" -msgstr "/Plik/OtwСrz" +#: app/fileops.c:1548 app/fileops.c:1564 app/menus.c:91 +#, fuzzy +msgid "/File/Save" +msgstr "/Plik/Zapisz" -#: app/fileops.c:1396 app/fileops.c:1409 -msgid "/File/Save" -msgstr "/Plik/Zachowaj" +#: app/fileops.c:1549 app/fileops.c:1565 app/menus.c:92 +#, fuzzy +msgid "/File/Save as" +msgstr "/Plik/Zapisz jako" -#: app/fileops.c:1397 app/fileops.c:1410 -msgid "/File/Save as" -msgstr "/Plik/Zachowaj jako" - -#: app/fileops.c:1430 +#: app/fileops.c:1586 #, c-format msgid "%s exists, overwrite?" msgstr "%s istnieje, nadpisa╣?" -#: app/fileops.c:1436 +#: app/fileops.c:1592 msgid "File Exists!" msgstr "Plik istnieje!" -#: app/flip_tool.c:70 app/preferences_dialog.c:1553 -#: app/preferences_dialog.c:2215 +#: app/flip_tool.c:71 app/preferences_dialog.c:1588 +#: app/preferences_dialog.c:2290 msgid "Horizontal" msgstr "Poziomo" -#: app/flip_tool.c:70 app/preferences_dialog.c:1555 -#: app/preferences_dialog.c:2217 +#: app/flip_tool.c:71 app/preferences_dialog.c:1590 +#: app/preferences_dialog.c:2292 msgid "Vertical" msgstr "Pionowo" -#: app/flip_tool.c:76 +#: app/flip_tool.c:77 msgid "Flip Tool Options" msgstr "Opcje odbijania" -#: app/floating_sel.c:108 +#: app/floating_sel.c:107 msgid "" "Cannot anchor this layer because\n" "it is not a floating selection." msgstr "" -#: app/floating_sel.c:174 +#: app/floating_sel.c:173 msgid "" "Cannot create a new layer from the floating\n" "selection because it belongs to a\n" "layer mask or channel." msgstr "" -#: app/free_select.c:220 +#: app/free_select.c:219 msgid "Cannot properly scanline convert polygon!\n" msgstr "" -#: app/gdisplay.c:197 +#: app/gdisplay.c:202 msgid "RGB-empty" msgstr "" -#: app/gdisplay.c:200 +#: app/gdisplay.c:205 msgid "grayscale-empty" msgstr "" -#: app/gdisplay.c:200 +#: app/gdisplay.c:205 msgid "grayscale" msgstr "" -#: app/gdisplay.c:203 +#: app/gdisplay.c:208 msgid "indexed-empty" msgstr "" -#: app/gdisplay.c:203 +#: app/gdisplay.c:208 msgid "indexed" msgstr "" -#: app/gdisplay.c:1573 -#, fuzzy -msgid "/Layers/Stack/Previous Layer" -msgstr "/Warstwy/Podnie╤ warstwЙ" - -#: app/gdisplay.c:1574 -#, fuzzy -msgid "/Layers/Stack/Next Layer" -msgstr "/Warstwy/Podnie╤ warstwЙ" - -#: app/gdisplay.c:1575 -#, fuzzy -msgid "/Layers/Stack/Raise Layer" -msgstr "/Warstwy/Podnie╤ warstwЙ" - -#: app/gdisplay.c:1576 -#, fuzzy -msgid "/Layers/Stack/Lower Layer" -msgstr "/Warstwy/Obni© warstwЙ" - -#: app/gdisplay.c:1577 -#, fuzzy -msgid "/Layers/Stack/Layer to Top" -msgstr "/Warstwy/Podnie╤ warstwЙ" - -#: app/gdisplay.c:1578 -#, fuzzy -msgid "/Layers/Stack/Layer to Bottom" -msgstr "/Warstwy/Podnie╤ warstwЙ" - -#: app/gdisplay.c:1579 -msgid "/Layers/Anchor Layer" -msgstr "/Warstwy/Anchor Layer" - -#: app/gdisplay.c:1580 -msgid "/Layers/Merge Visible Layers" -msgstr "/Warstwy/PoЁ╠cz widzialne warstwy" - -#: app/gdisplay.c:1581 -msgid "/Layers/Flatten Image" -msgstr "/Warstwy/SpЁaszcz obrazek" - -#: app/gdisplay.c:1582 -msgid "/Layers/Alpha To Selection" -msgstr "/Warstwy/KanaЁ alfa na zaznaczenie" - -#: app/gdisplay.c:1583 -msgid "/Layers/Mask To Selection" -msgstr "/Warstwy/Maska na zaznaczenie" - -#: app/gdisplay.c:1584 -msgid "/Layers/Add Alpha Channel" -msgstr "/Warstwy/Dodaj kanaЁ alfa" - -#: app/gdisplay.c:1586 -msgid "/Image/RGB" -msgstr "/Obrazek/RGB" - -#: app/gdisplay.c:1587 -msgid "/Image/Grayscale" -msgstr "/Obrazek/Odcienie szaro╤ci" - -#: app/gdisplay.c:1588 -msgid "/Image/Indexed" -msgstr "/Obrazek/Indeksowany" - -#: app/gdisplay.c:1590 -msgid "/Image/Colors/Threshold" -msgstr "/Obrazek/Kolory/PrСg" - -#: app/gdisplay.c:1591 -msgid "/Image/Colors/Posterize" -msgstr "/Obrazek/Kolory/Posterize" - -#: app/gdisplay.c:1592 -msgid "/Image/Colors/Equalize" -msgstr "/Obrazek/Kolory/Equalize" - -#: app/gdisplay.c:1593 -msgid "/Image/Colors/Invert" -msgstr "/Obrazek/Kolory/Negatyw" - -#: app/gdisplay.c:1595 -msgid "/Image/Colors/Color Balance" -msgstr "/Obrazek/Kolory/Balans kolorСw" - -#: app/gdisplay.c:1596 -msgid "/Image/Colors/Brightness-Contrast" -msgstr "/Obrazek/Kolory/Jasno╤Ф-kontrast" - -#: app/gdisplay.c:1597 -msgid "/Image/Colors/Hue-Saturation" -msgstr "/Obrazek/Kolory/OdcieЯ-nasycenie" - -#: app/gdisplay.c:1598 -msgid "/Image/Colors/Curves" -msgstr "/Obrazek/Kolory/Krzywe" - -#: app/gdisplay.c:1599 -msgid "/Image/Colors/Levels" -msgstr "/Obrazek/Kolory/Levels" - -#: app/gdisplay.c:1601 -msgid "/Image/Colors/Desaturate" -msgstr "/Obrazek/Kolory/Desaturate" - -#: app/gdisplay.c:1603 -msgid "/Image/Alpha/Add Alpha Channel" -msgstr "/Obrazek/Alfa/Dodaj kanaЁ alfa" - -#: app/gdisplay.c:1605 -msgid "/Select" -msgstr "Obrazek>/Zaznacz" - -#: app/gdisplay.c:1606 -msgid "/Edit/Cut" -msgstr "/Edycja/Wytnij" - -#: app/gdisplay.c:1607 -msgid "/Edit/Copy" -msgstr "/Edycja/Kopiuj" - -#: app/gdisplay.c:1608 -msgid "/Edit/Paste" -msgstr "/Edycja/Wklej" - -#: app/gdisplay.c:1609 -msgid "/Edit/Paste Into" -msgstr "/Edycja/Wklej w" - -#: app/gdisplay.c:1610 -msgid "/Edit/Clear" -msgstr "/Edycja/Wyczy╤Ф" - -#: app/gdisplay.c:1611 -msgid "/Edit/Fill" -msgstr "/Edycja/WypeЁnij" - -#: app/gdisplay.c:1612 -msgid "/Edit/Stroke" -msgstr "/Edycja/Stroke" - -#: app/gdisplay.c:1613 -msgid "/Edit/Cut Named" -msgstr "/Edycja/Wytnij nazwany" - -#: app/gdisplay.c:1614 -msgid "/Edit/Copy Named" -msgstr "/Edycja/Kopiuj nazwany" - -#: app/gdisplay.c:1615 -msgid "/Edit/Paste Named" -msgstr "/Edycja/Wklej nazwany" - -#: app/gdisplay.c:1616 -msgid "/Image/Colors" -msgstr "/Obrazek/Kolory" - -#: app/gdisplay.c:1617 -msgid "/Image/Channel Ops/Offset" -msgstr "/Obrazek/KanaЁy/PrzesuniЙcie" - -#: app/gdisplay.c:1618 -msgid "/Image/Histogram" -msgstr "/Obrazek/Histogram" - -#: app/gdisplay.c:1619 -msgid "/Filters" -msgstr "/Filtry" - -#. save selection to channel -#: app/gdisplay.c:1622 -msgid "/Select/Save To Channel" -msgstr "/Zaznacz/Zachowaj do kanaЁu" - -#: app/gdisplay.c:1624 -msgid "/View/Toggle Rulers" -msgstr "/Widok/Linijki" - -#: app/gdisplay.c:1625 -msgid "/View/Toggle Guides" -msgstr "/Widok/Prowadnice" - -#: app/gdisplay.c:1626 -msgid "/View/Snap To Guides" -msgstr "/Widok/Przyci╠gaj do prowadnic" - -#: app/gdisplay.c:1627 -msgid "/View/Toggle Statusbar" -msgstr "/Widok/Pasek stanu" - -#: app/gdisplay.c:1628 -msgid "/View/Dot for dot" -msgstr "" - -#: app/gdisplay.c:2063 +#: app/gdisplay.c:2102 msgid "gdisplays_flush() called recursively." msgstr "" -#: app/gdisplay_ops.c:305 app/gdisplay_ops.c:324 app/gdisplay_ops.c:334 -#: app/gdisplay_ops.c:370 -msgid "/File/Close" -msgstr "/Plik/Zamknij" +#: app/gdisplay_ops.c:305 app/gdisplay_ops.c:320 app/gdisplay_ops.c:330 +#: app/gdisplay_ops.c:366 app/menus.c:97 +#, fuzzy +msgid "/File/Close" +msgstr "/Plik/Zamknij" -#: app/gdisplay_ops.c:392 +#: app/gdisplay_ops.c:388 #, fuzzy, c-format msgid "Changes were made to %s. Close anyway?" msgstr "%s zostaЁ zmieniony. Jednak zamkn╠Ф?" @@ -1712,105 +1548,105 @@ msgstr "" msgid "Layer type %d not supported." msgstr "" -#: app/gimpimage.c:596 app/gimpimage.c:690 +#: app/gimpimage.c:642 app/gimpimage.c:740 msgid "gimp_image_apply_image sent illegal parameters" msgstr "" -#: app/gimpimage.c:1096 +#: app/gimpimage.c:1172 msgid "Unable to project indexed image." msgstr "" -#: app/gimpimage.c:1966 +#: app/gimpimage.c:2109 msgid "Layer cannot be raised any further" msgstr "" -#: app/gimpimage.c:2040 +#: app/gimpimage.c:2184 msgid "Layer cannot be lowered any further" msgstr "" #. layer_arg is already the top_layer -#: app/gimpimage.c:2069 +#: app/gimpimage.c:2214 msgid "Layer is already on top" msgstr "" -#: app/gimpimage.c:2074 +#: app/gimpimage.c:2219 msgid "Can't raise Layer without alpha" msgstr "" #. there is no next layer below layer_arg -#: app/gimpimage.c:2168 +#: app/gimpimage.c:2314 msgid "Layer is already on bottom" msgstr "" -#: app/gimpimage.c:2181 +#: app/gimpimage.c:2327 msgid "BG has no alpha, layer was placed above" msgstr "" -#: app/gimpimage.c:2243 +#: app/gimpimage.c:2390 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." msgstr "" -#: app/gimpimage.c:2321 +#: app/gimpimage.c:2468 msgid "There are not enough visible layers for a merge down." msgstr "" -#: app/gimpimage.c:2432 app/gimpimage.c:2465 +#: app/gimpimage.c:2581 app/gimpimage.c:2614 msgid "gimp_image_merge_layers: could not allocate merge layer" msgstr "" -#: app/gimpimage.c:2504 +#: app/gimpimage.c:2653 msgid "gimp_image_merge_layers attempting to merge incompatible layers\n" msgstr "" -#: app/gimpimage.c:2584 +#: app/gimpimage.c:2735 msgid "gimp_image_add_layer: attempt to add layer to wrong image" msgstr "" -#: app/gimpimage.c:2594 +#: app/gimpimage.c:2745 msgid "gimp_image_add_layer: trying to add layer to image twice" msgstr "" -#: app/gimpimage.c:2710 +#: app/gimpimage.c:2864 msgid "" "Unable to add a layer mask since\n" "the layer already has one." msgstr "" -#: app/gimpimage.c:2714 +#: app/gimpimage.c:2868 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." msgstr "" -#: app/gimpimage.c:2718 +#: app/gimpimage.c:2872 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." msgstr "" -#: app/gimpimage.c:2722 +#: app/gimpimage.c:2876 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -#: app/gimpimage.c:2826 +#: app/gimpimage.c:2983 msgid "Channel cannot be raised any further" msgstr "" -#: app/gimpimage.c:2873 +#: app/gimpimage.c:3031 msgid "Channel cannot be lowered any further" msgstr "" -#: app/gimpimage.c:2893 +#: app/gimpimage.c:3053 msgid "gimp_image_add_channel: attempt to add channel to wrong image" msgstr "" -#: app/gimpimage.c:2903 +#: app/gimpimage.c:3063 msgid "gimp_image_add_channel: trying to add channel to image twice" msgstr "" -#: app/gimpimage.c:3029 app/palette.c:525 app/palette.c:550 app/palette.c:909 +#: app/gimpimage.c:3190 app/palette.c:525 app/palette.c:550 app/palette.c:909 #: app/palette.c:913 app/palette.c:2313 app/palette.c:2995 msgid "Untitled" msgstr "" @@ -1819,94 +1655,98 @@ msgstr "" msgid "Progress" msgstr "" -#: app/gimprc.c:353 app/plug_in.c:302 +#: app/gimprc.c:358 app/plug_in.c:305 msgid "Resource configuration" msgstr "" -#: app/gimprc.c:408 +#: app/gimprc.c:413 #, c-format msgid "error parsing: \"%s\"\n" msgstr "" -#: app/gimprc.c:409 +#: app/gimprc.c:414 #, c-format msgid " at line %d column %d\n" msgstr "" -#: app/gimprc.c:410 +#: app/gimprc.c:415 #, c-format msgid " unexpected token: %s\n" msgstr "" -#: app/gimprc.c:1300 +#: app/gimprc.c:1305 msgid "error parsing pluginrc" msgstr "" -#: app/gimprc.c:1635 +#: app/gimprc.c:1640 #, c-format msgid "gimprc token referenced but not defined: %s" msgstr "" -#: app/gimprc.c:2518 +#: app/gimprc.c:2522 #, c-format msgid "Can't open %s; %s" msgstr "" -#: app/gimprc.c:2537 +#: app/gimprc.c:2541 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "" -#: app/gimprc.c:2543 +#: app/gimprc.c:2547 #, c-format msgid "Couldn't reopen %s\n" msgstr "" -#: app/gimprc.c:2555 +#: app/gimprc.c:2559 #, c-format msgid "Can't write to %s; %s" msgstr "" #. Make a new floating layer -#: app/global_edit.c:284 +#: app/global_edit.c:289 app/global_edit.c:344 app/global_edit.c:354 msgid "Pasted Layer" msgstr "" -#: app/global_edit.c:591 +#: app/global_edit.c:698 msgid "Paste" msgstr "Wklej" +#: app/global_edit.c:699 +#, fuzzy +msgid "Paste Into" +msgstr "/Edycja/Wklej w" + +#: app/global_edit.c:700 +msgid "Paste As New" +msgstr "" + #. Buttons -#: app/global_edit.c:592 app/gradient.c:1477 app/palette.c:1429 +#: app/global_edit.c:704 app/gradient.c:1477 app/palette.c:1429 #: app/palette.c:2179 msgid "Delete" msgstr "UsuЯ" -#: app/global_edit.c:606 +#: app/global_edit.c:720 #, fuzzy msgid "Paste Named Buffer" msgstr "Wklej nazwany bufor Bezier" -#: app/global_edit.c:618 +#: app/global_edit.c:732 #, fuzzy msgid "Select a buffer to paste:" msgstr "Wybierz bufor do pracy:" -#: app/global_edit.c:637 -#, fuzzy -msgid "Replace Current Selection" -msgstr "Zaokr╠glij zaznaczenie" - -#: app/global_edit.c:699 +#: app/global_edit.c:820 #, fuzzy msgid "Cut Named" msgstr "/Edycja/Wytnij nazwany" -#: app/global_edit.c:700 app/global_edit.c:732 +#: app/global_edit.c:821 app/global_edit.c:853 msgid "Enter a name for this buffer" msgstr "Podaj nazwЙ tego bufora" -#: app/global_edit.c:731 +#: app/global_edit.c:852 #, fuzzy msgid "Copy Named" msgstr "/Edycja/Kopiuj nazwany" @@ -1962,7 +1802,7 @@ msgstr "Edytor gradient msgid "Gradients: " msgstr "Gradienty: " -#: app/gradient.c:680 app/gradient_select.c:476 app/paintbrush.c:199 +#: app/gradient.c:680 app/gradient_select.c:476 app/paintbrush.c:204 #: app/palette.c:2833 msgid "Gradient" msgstr "Gradient" @@ -2315,99 +2155,114 @@ msgstr "" msgid "Gradient Selection" msgstr "Obramuj zaznaczenie" -#: app/histogram_tool.c:207 +#: app/histogram_tool.c:173 #, fuzzy msgid "Histogram Options" msgstr "Histogram" -#: app/histogram_tool.c:307 +#: app/histogram_tool.c:210 +#, fuzzy +msgid "Histogram does not operate on indexed drawables." +msgstr "Jasno╤Ф-Kontrast nie mo©e zostaФ u©yta w trybie koloru indeksowanego." + +#: app/histogram_tool.c:267 #, fuzzy msgid "Mean:" msgstr "Tryb: " -#: app/histogram_tool.c:308 +#: app/histogram_tool.c:268 msgid "Std Dev:" msgstr "" -#: app/histogram_tool.c:309 +#: app/histogram_tool.c:269 #, fuzzy msgid "Median:" msgstr "Tryb: " -#: app/histogram_tool.c:310 +#: app/histogram_tool.c:270 #, fuzzy msgid "Pixels:" msgstr "Piksele" -#: app/histogram_tool.c:312 +#: app/histogram_tool.c:272 msgid "Count:" msgstr "" -#: app/histogram_tool.c:313 +#: app/histogram_tool.c:273 #, fuzzy msgid "Percentile:" msgstr "Korekcja perspektywy" -#: app/hue_saturation.c:301 +#: app/histogram_tool.c:296 app/tools.c:607 +msgid "Histogram" +msgstr "Histogram" + +#: app/histogram_tool.c:315 +msgid "Information on Channel:" +msgstr "" + +#: app/hue_saturation.c:260 #, fuzzy msgid "Hue-Saturation Options" msgstr "OdcieЯ-nasycenie" -#: app/hue_saturation.c:348 +#: app/hue_saturation.c:298 #, fuzzy msgid "Hue-Saturation operates only on RGB color drawables." msgstr "Balans kolorСw mo©e zostaФ u©yty tylko w trybie RGB." -#: app/hue_saturation.c:416 +#: app/hue_saturation.c:367 #, fuzzy msgid "Master" msgstr "Wklej" -#: app/hue_saturation.c:417 +#: app/hue_saturation.c:368 msgid "R" msgstr "" -#: app/hue_saturation.c:418 +#: app/hue_saturation.c:369 msgid "Y" msgstr "" -#: app/hue_saturation.c:419 +#: app/hue_saturation.c:370 msgid "G" msgstr "" -#: app/hue_saturation.c:420 +#: app/hue_saturation.c:371 msgid "C" msgstr "" -#: app/hue_saturation.c:421 +#: app/hue_saturation.c:372 msgid "B" msgstr "" -#: app/hue_saturation.c:422 +#: app/hue_saturation.c:373 msgid "M" msgstr "" -#: app/hue_saturation.c:442 app/tools.c:506 +#: app/hue_saturation.c:394 app/tools.c:532 msgid "Hue-Saturation" msgstr "OdcieЯ-nasycenie" -#: app/hue_saturation.c:504 +#: app/hue_saturation.c:456 msgid "Hue / Lightness / Saturation Adjustments" msgstr "" #. Create the hue scale widget -#: app/hue_saturation.c:514 app/layers_dialog.c:285 app/paint_funcs.c:94 +#: app/hue_saturation.c:466 app/layers_dialog.c:221 app/paint_funcs.c:94 +#: app/tool_options.c:787 msgid "Hue" msgstr "OdcieЯ" #. Create the lightness scale widget -#: app/hue_saturation.c:548 +#: app/hue_saturation.c:500 #, fuzzy msgid "Lightness" msgstr "Kontrast" #. Create the saturation scale widget -#: app/hue_saturation.c:582 app/layers_dialog.c:286 app/paint_funcs.c:95 +#: app/hue_saturation.c:534 app/layers_dialog.c:223 app/paint_funcs.c:95 +#: app/tool_options.c:788 msgid "Saturation" msgstr "Nasycenie" @@ -2452,7 +2307,7 @@ msgstr "" msgid "Resolution:" msgstr "Rozdzielczo╤Ф" -#: app/info_window.c:159 +#: app/info_window.c:159 app/tool_options.c:449 msgid "Unit:" msgstr "" @@ -2501,44 +2356,44 @@ msgid "Indexed Color" msgstr "Konwersja koloru indeksowanego" #. size slider -#: app/ink.c:292 +#: app/ink.c:294 msgid "Size:" msgstr "" #. sens slider -#: app/ink.c:310 app/ink.c:334 app/ink.c:364 +#: app/ink.c:312 app/ink.c:336 app/ink.c:366 msgid "Sensitivity:" msgstr "" #. tilt sens slider -#: app/ink.c:328 +#: app/ink.c:330 msgid "Tilt" msgstr "" #. velocity sens slider -#: app/ink.c:358 +#: app/ink.c:360 msgid "Speed" msgstr "" #. angle adjust slider -#: app/ink.c:388 +#: app/ink.c:390 #, fuzzy msgid "Angle" msgstr "K╠t:" -#: app/ink.c:394 +#: app/ink.c:396 #, fuzzy msgid "Adjust:" msgstr "K╠t:" #. Brush type radiobuttons -#: app/ink.c:417 +#: app/ink.c:419 #, fuzzy msgid "Type" msgstr "Typ wypeЁnienia: " #. Brush shape widget -#: app/ink.c:481 +#: app/ink.c:483 #, fuzzy msgid "Shape" msgstr "Wyostrzanie" @@ -2856,18 +2711,18 @@ msgid "" "Installation failed. Contact system administrator.\n" msgstr "" -#: app/interface.c:268 +#: app/interface.c:325 msgid "" "Foreground & background colors. The black and white squares reset colors. " "The arrows swap colors. Double click to select a color from a colorrequester." msgstr "" -#: app/interface.c:485 +#: app/interface.c:541 #, fuzzy msgid "The GIMP" msgstr "O programie GIMP" -#: app/interface.c:1256 +#: app/interface.c:1388 msgid "GIMP Message" msgstr "" @@ -2890,7 +2745,8 @@ msgstr "Nowy kana msgid "Channel Ops" msgstr "Opcje nowego kanaЁu" -#: app/internal_procs.c:79 app/layers_dialog.c:287 app/paint_funcs.c:96 +#: app/internal_procs.c:79 app/layers_dialog.c:225 app/paint_funcs.c:96 +#: app/tool_options.c:789 msgid "Color" msgstr "Kolor" @@ -2947,7 +2803,7 @@ msgstr "Gradient" msgid "Guide procedures" msgstr "╛rСdЁo obrazka" -#: app/internal_procs.c:118 app/preferences_dialog.c:1686 +#: app/internal_procs.c:118 app/preferences_dialog.c:1721 msgid "Interface" msgstr "" @@ -2970,7 +2826,7 @@ msgstr "" msgid "Parasite procedures" msgstr "Edytuj krzyw╠" -#: app/internal_procs.c:133 app/layers_dialog.c:407 +#: app/internal_procs.c:133 app/lc_dialog.c:180 #, fuzzy msgid "Paths" msgstr "Szablony" @@ -3035,23 +2891,23 @@ msgstr "" msgid "Convert to Bezier Curve" msgstr "" -#: app/iscissors.c:1779 +#: app/iscissors.c:1780 msgid "Boundary contains < 4 points! Cannot bezierify." msgstr "" -#: app/layer.c:246 +#: app/layer.c:248 msgid "Zero width or height layers not allowed." msgstr "" -#: app/layer.c:352 +#: app/layer.c:354 msgid "layer_copy: could not allocate new layer" msgstr "" -#: app/layer.c:429 +#: app/layer.c:431 msgid "layer_from_tiles: could not allocate new layer" msgstr "" -#: app/layer.c:484 +#: app/layer.c:486 #, c-format msgid "%s mask" msgstr "" @@ -3061,289 +2917,328 @@ msgstr "" msgid "Layer Select" msgstr "Zaznaczenie krzyw╠ bezier" -#: app/layers_dialog.c:232 app/layers_dialog.c:303 app/layers_dialog.c:3261 -msgid "New Layer" -msgstr "" - -#: app/layers_dialog.c:234 -msgid "Raise Layer" -msgstr "" - -#: app/layers_dialog.c:236 -msgid "Lower Layer" -msgstr "" - -#: app/layers_dialog.c:238 app/layers_dialog.c:306 -msgid "Duplicate Layer" -msgstr "" - -#: app/layers_dialog.c:240 app/layers_dialog.c:307 -msgid "Delete Layer" -msgstr "" - -#: app/layers_dialog.c:242 app/resize.c:159 -msgid "Scale Layer" -msgstr "" - -#: app/layers_dialog.c:244 app/resize.c:174 -msgid "Resize Layer" -msgstr "" - -#: app/layers_dialog.c:246 -msgid "Add Layer Mask" -msgstr "" - -#: app/layers_dialog.c:248 -msgid "Apply Layer Mask" -msgstr "" - -#: app/layers_dialog.c:250 app/layers_dialog.c:308 -msgid "Anchor Layer" -msgstr "" - -#: app/layers_dialog.c:252 -msgid "Merge Visible Layers" -msgstr "" - -#: app/layers_dialog.c:254 -msgid "Merge Down" -msgstr "" - -#: app/layers_dialog.c:256 -msgid "Flatten Image" -msgstr "" - -#: app/layers_dialog.c:258 -msgid "Alpha To Selection" -msgstr "" - -#: app/layers_dialog.c:260 -msgid "Mask To Selection" -msgstr "" - -#: app/layers_dialog.c:262 -msgid "Add Alpha Channel" -msgstr "" - -#: app/layers_dialog.c:264 -msgid "Layer to Top" -msgstr "" - -#: app/layers_dialog.c:266 -msgid "Layer to Bottom" -msgstr "" - -#: app/layers_dialog.c:274 app/paint_funcs.c:83 +#: app/layers_dialog.c:199 app/paint_funcs.c:83 app/tool_options.c:775 msgid "Normal" msgstr "Normalny" -#: app/layers_dialog.c:275 app/paint_funcs.c:84 +#: app/layers_dialog.c:201 app/paint_funcs.c:84 app/tool_options.c:776 msgid "Dissolve" msgstr "" -#: app/layers_dialog.c:276 app/paint_funcs.c:86 +#: app/layers_dialog.c:203 app/paint_funcs.c:86 app/tool_options.c:778 msgid "Multiply (Burn)" msgstr "" -#: app/layers_dialog.c:277 app/paint_funcs.c:98 +#: app/layers_dialog.c:205 app/paint_funcs.c:98 app/tool_options.c:779 msgid "Divide (Dodge)" msgstr "" -#: app/layers_dialog.c:278 app/paint_funcs.c:87 +#: app/layers_dialog.c:207 app/paint_funcs.c:87 app/tool_options.c:780 msgid "Screen" msgstr "Ekran" -#: app/layers_dialog.c:279 app/paint_funcs.c:88 +#: app/layers_dialog.c:209 app/paint_funcs.c:88 app/tool_options.c:781 msgid "Overlay" msgstr "" -#: app/layers_dialog.c:280 app/paint_funcs.c:89 +#: app/layers_dialog.c:211 app/paint_funcs.c:89 app/tool_options.c:782 msgid "Difference" msgstr "RС©nica" -#: app/layers_dialog.c:281 app/paint_funcs.c:90 +#: app/layers_dialog.c:213 app/paint_funcs.c:90 app/tool_options.c:783 msgid "Addition" msgstr "Dodanie" -#: app/layers_dialog.c:283 app/paint_funcs.c:92 +#: app/layers_dialog.c:217 app/paint_funcs.c:92 app/tool_options.c:785 msgid "Darken Only" msgstr "Tylko przyciemniФ" -#: app/layers_dialog.c:284 app/paint_funcs.c:93 +#: app/layers_dialog.c:219 app/paint_funcs.c:93 app/tool_options.c:786 msgid "Lighten Only" msgstr "Tylko rozja╤niФ" -#: app/layers_dialog.c:304 +#: app/layers_dialog.c:246 app/layers_dialog.c:2944 +msgid "New Layer" +msgstr "" + +#: app/layers_dialog.c:248 msgid "" "Raise Layer \n" " To Top" msgstr "" -#: app/layers_dialog.c:305 +#: app/layers_dialog.c:251 msgid "" "Lower Layer \n" " To Bottom" msgstr "" -#: app/layers_dialog.c:335 -msgid "Layers & Channels" +#: app/layers_dialog.c:254 +msgid "Duplicate Layer" msgstr "" -#. The Auto-button -#: app/layers_dialog.c:373 -#, fuzzy -msgid "Auto" -msgstr "/Automatycznie" - -#: app/layers_dialog.c:391 -msgid "Layers" +#: app/layers_dialog.c:256 +msgid "Anchor Layer" msgstr "" -#: app/layers_dialog.c:401 -msgid "Channels" +#: app/layers_dialog.c:258 +msgid "Delete Layer" msgstr "" -#: app/layers_dialog.c:744 +#: app/layers_dialog.c:321 msgid "Keep Trans." msgstr "" -#: app/layers_dialog.c:1489 +#: app/layers_dialog.c:947 app/menus.c:245 +#, fuzzy +msgid "/Stack/Previous Layer" +msgstr "/Warstwy/Podnie╤ warstwЙ" + +#: app/layers_dialog.c:949 app/menus.c:246 +#, fuzzy +msgid "/Stack/Next Layer" +msgstr "/Warstwy/Podnie╤ warstwЙ" + +#: app/layers_dialog.c:952 app/menus.c:247 +#, fuzzy +msgid "/Stack/Raise Layer" +msgstr "/Warstwy/Podnie╤ warstwЙ" + +#: app/layers_dialog.c:957 app/menus.c:248 +#, fuzzy +msgid "/Stack/Lower Layer" +msgstr "/Warstwy/Obni© warstwЙ" + +#: app/layers_dialog.c:962 app/menus.c:249 +#, fuzzy +msgid "/Stack/Layer to Top" +msgstr "/Warstwy/Podnie╤ warstwЙ" + +#: app/layers_dialog.c:964 app/menus.c:250 +#, fuzzy +msgid "/Stack/Layer to Bottom" +msgstr "/Warstwy/Podnie╤ warstwЙ" + +#: app/layers_dialog.c:967 app/menus.c:244 +#, fuzzy +msgid "/New Layer" +msgstr "Du©y" + +#: app/layers_dialog.c:970 app/menus.c:251 +#, fuzzy +msgid "/Duplicate Layer" +msgstr "Duplikat kanaЁu" + +#: app/layers_dialog.c:974 app/menus.c:252 +#, fuzzy +msgid "/Anchor Layer" +msgstr "/Warstwy/Zakotwicz warstwЙ" + +#: app/layers_dialog.c:978 app/menus.c:253 +#, fuzzy +msgid "/Delete Layer" +msgstr "UsuЯ kanaЁ" + +#: app/layers_dialog.c:981 app/menus.c:255 +msgid "/Scale Layer" +msgstr "" + +#: app/layers_dialog.c:982 app/menus.c:256 +msgid "/Resize Layer" +msgstr "" + +#: app/layers_dialog.c:984 app/menus.c:258 +#, fuzzy +msgid "/Merge Visible Layers" +msgstr "/Warstwy/PoЁ╠cz widoczne warstwy" + +#: app/layers_dialog.c:986 app/menus.c:259 +msgid "/Merge Down" +msgstr "" + +#: app/layers_dialog.c:987 app/menus.c:260 +#, fuzzy +msgid "/Flatten Image" +msgstr "/Warstwy/SpЁaszcz obrazek" + +#: app/layers_dialog.c:989 app/menus.c:262 +msgid "/Add Layer Mask" +msgstr "" + +#: app/layers_dialog.c:991 app/menus.c:263 +msgid "/Apply Layer Mask" +msgstr "" + +#: app/layers_dialog.c:993 app/menus.c:264 +#, fuzzy +msgid "/Alpha to Selection" +msgstr "/Warstwy/Zaznaczenie z kanaЁu Alpha" + +#: app/layers_dialog.c:995 app/menus.c:265 +#, fuzzy +msgid "/Mask to Selection" +msgstr "/Warstwy/Zaznaczenie z maski" + +#: app/layers_dialog.c:997 app/menus.c:266 +#, fuzzy +msgid "/Add Alpha Channel" +msgstr "/Warstwy/Dodaj kanaЁ Alpha" + +#: app/layers_dialog.c:1185 msgid "Unknown layer mode" msgstr "" -#: app/layers_dialog.c:2206 app/layers_dialog.c:3028 app/layers_dialog.c:3471 +#: app/layers_dialog.c:1890 app/layers_dialog.c:2712 app/layers_dialog.c:3157 msgid "Floating Selection" msgstr "" -#: app/layers_dialog.c:3149 +#: app/layers_dialog.c:2832 msgid "new_layer_query_ok_callback: could not allocate new layer" msgstr "" -#: app/layers_dialog.c:3231 +#: app/layers_dialog.c:2914 msgid "New Layer Options" msgstr "" #. the name label and entry -#: app/layers_dialog.c:3251 +#: app/layers_dialog.c:2934 #, fuzzy msgid "Layer Name:" msgstr "Du©y" #. the size labels -#: app/layers_dialog.c:3265 +#: app/layers_dialog.c:2948 #, fuzzy msgid "Layer Width:" msgstr "Szeroko╤Ф: " #. the radio frame and box -#: app/layers_dialog.c:3324 +#: app/layers_dialog.c:3007 msgid "Layer Fill Type" msgstr "" -#: app/layers_dialog.c:3447 +#: app/layers_dialog.c:3131 msgid "Edit Layer Attributes" msgstr "" -#: app/layers_dialog.c:3464 +#: app/layers_dialog.c:3149 msgid "Layer name: " msgstr "" -#: app/layers_dialog.c:3587 +#: app/layers_dialog.c:3275 msgid "White (Full Opacity)" msgstr "" -#: app/layers_dialog.c:3588 +#: app/layers_dialog.c:3276 msgid "Black (Full Transparency)" msgstr "" -#: app/layers_dialog.c:3589 +#: app/layers_dialog.c:3277 msgid "Layer's Alpha Channel" msgstr "" -#: app/layers_dialog.c:3606 +#: app/layers_dialog.c:3294 msgid "Add Mask Options" msgstr "" #. the name entry hbox, label and entry -#: app/layers_dialog.c:3621 +#: app/layers_dialog.c:3309 msgid "Initialize Layer Mask To:" msgstr "" -#: app/layers_dialog.c:3720 +#: app/layers_dialog.c:3408 msgid "Apply" msgstr "" -#: app/layers_dialog.c:3721 +#: app/layers_dialog.c:3409 msgid "Discard" msgstr "" -#: app/layers_dialog.c:3735 +#: app/layers_dialog.c:3423 msgid "Layer Mask Options" msgstr "" #. the name entry hbox, label and entry -#: app/layers_dialog.c:3751 +#: app/layers_dialog.c:3439 msgid "Apply layer mask?" msgstr "" -#: app/layers_dialog.c:3811 app/layers_dialog.c:3909 +#: app/layers_dialog.c:3499 app/layers_dialog.c:3597 msgid "Invalid width or height. Both must be positive." msgstr "" -#: app/layers_dialog.c:4062 +#: app/layers_dialog.c:3751 msgid "Expanded as necessary" msgstr "" -#: app/layers_dialog.c:4063 +#: app/layers_dialog.c:3752 msgid "Clipped to image" msgstr "" -#: app/layers_dialog.c:4064 +#: app/layers_dialog.c:3753 msgid "Clipped to bottom layer" msgstr "" -#: app/layers_dialog.c:4082 +#: app/layers_dialog.c:3771 msgid "Layer Merge Options" msgstr "" -#: app/layers_dialog.c:4098 +#: app/layers_dialog.c:3787 msgid "Final, merged layer should be:" msgstr "" -#: app/layers_dialog.c:4100 +#: app/layers_dialog.c:3789 msgid "Final, anchored layer should be:" msgstr "" -#: app/levels.c:239 +#: app/lc_dialog.c:111 +msgid "Layers & Channels" +msgstr "" + +#. The Auto-button +#: app/lc_dialog.c:150 +#, fuzzy +msgid "Auto" +msgstr "/Automatycznie" + +#: app/lc_dialog.c:170 +msgid "Layers" +msgstr "" + +#: app/lc_dialog.c:175 +msgid "Channels" +msgstr "" + +#: app/levels.c:197 #, fuzzy msgid "Levels Options" msgstr "Opcje krzywych" -#: app/levels.c:296 +#: app/levels.c:245 #, fuzzy msgid "Levels for indexed drawables cannot be adjusted." msgstr "Krzywe w trybie indeksowanym nie mog╠ byФ zmieniane." -#: app/levels.c:372 +#: app/levels.c:334 #, fuzzy msgid "Auto Levels" msgstr "Poziomy" -#: app/levels.c:403 app/tools.c:566 +#: app/levels.c:351 app/tools.c:592 msgid "Levels" msgstr "Poziomy" -#: app/levels.c:418 +#: app/levels.c:366 #, fuzzy msgid "Modify Levels for Channel: " msgstr "Modyfikuj Krzywe kanaЁu: " -#: app/levels.c:434 +#: app/levels.c:382 #, fuzzy msgid "Input Levels: " msgstr "SkЁadowe barwy: " -#: app/levels.c:522 +#: app/levels.c:470 #, fuzzy msgid "Output Levels: " msgstr "SkЁadowe barwy: " @@ -3357,64 +3252,64 @@ msgstr "Opcje wczytywania" msgid "Allow Window Resizing" msgstr "" -#: app/main.c:279 +#: app/main.c:287 msgid "GIMP version" msgstr "GIMP, wersja" -#: app/main.c:283 +#: app/main.c:291 #, c-format msgid "Usage: %s [option ...] [files ...]\n" msgstr "" -#: app/main.c:284 +#: app/main.c:292 msgid "Valid options are:\n" msgstr "PrawidЁowe opcje to:\n" -#: app/main.c:285 +#: app/main.c:293 msgid " -h --help Output this help.\n" msgstr " -h --help Wypisuje t╠ pomoc.\n" -#: app/main.c:286 +#: app/main.c:294 msgid " -v --version Output version info.\n" msgstr " -v --version Wypisuje informacje o wersji.\n" -#: app/main.c:287 +#: app/main.c:295 msgid " -b --batch Run in batch mode.\n" msgstr " -b --batch Uruchamia w trybie wsadowym.\n" -#: app/main.c:288 +#: app/main.c:296 msgid " -g --gimprc Use an alternate gimprc file.\n" msgstr "" " -g --gimprc Korzysta z innego pliku konfiguracji gimprc.\n" -#: app/main.c:289 +#: app/main.c:297 msgid " -n --no-interface Run without a user interface.\n" msgstr " -n --no-interface Uruchamia siЙ bez interfejsu u©ytkownika.\n" -#: app/main.c:290 +#: app/main.c:298 msgid " -r --restore-session Try to restore saved session.\n" msgstr " -r --restore-session PrСbuje odtworzyФ zapisan╠ sesjЙ.\n" -#: app/main.c:291 +#: app/main.c:299 msgid "" " --no-data Do not load patterns, gradients, palettes, " "brushes.\n" msgstr "" " --no-data Nie Ёaduje wypeЁnieЯ, gradientСw, palet, pЙdzli.\n" -#: app/main.c:292 +#: app/main.c:300 msgid " --verbose Show startup messages.\n" msgstr " --verbose Wy╤wietla komunikaty przy uruchamianiu.\n" -#: app/main.c:293 +#: app/main.c:301 msgid " --no-splash Do not show the startup window.\n" msgstr " --no-splash Nie wy╤wietla okienka startowego.\n" -#: app/main.c:294 +#: app/main.c:302 msgid " --no-splash-image Do not add an image to the startup window.\n" msgstr " --no-splash-image Nie dodaje obrazka do okienka startowego.\n" -#: app/main.c:295 +#: app/main.c:303 msgid "" " --no-shm Do not use shared memory between GIMP and its " "plugins.\n" @@ -3422,21 +3317,21 @@ msgstr "" " --no-shm Nie u©ywa pamiЙci dzielonej pomiЙdzy GIMP-em a " "wtyczkami.\n" -#: app/main.c:296 +#: app/main.c:304 msgid " --no-xshm Do not use the X Shared Memory extension.\n" msgstr " --no-xshm Nie u©ywa rozszerzeЯ X Shared Memory.\n" -#: app/main.c:297 +#: app/main.c:305 msgid "" " --console-messages Display warnings to console instead of a dialog " "box.\n" msgstr "" -#: app/main.c:298 +#: app/main.c:306 msgid " --debug-handlers Enable debugging signal handlers.\n" msgstr " --debug-handlers WЁ╠cza debugowanie obsЁugi sygnaЁСw.\n" -#: app/main.c:299 +#: app/main.c:307 msgid "" " --display Use the designated X display.\n" "\n" @@ -3444,664 +3339,823 @@ msgstr "" " --display U©ywa podanego display-a.\n" "\n" -#: app/main.c:300 +#: app/main.c:308 msgid " --system-gimprc Use an alternate system gimprc file.\n" msgstr "" " --system-gimprc U©ywa alternatywnego systemowego pliku gimpr.\n" -#: app/main.c:412 +#: app/main.c:420 msgid "sighup caught" msgstr "odebrano sygnaЁ sighup" -#: app/main.c:417 +#: app/main.c:425 msgid "sigint caught" msgstr "odebrano sygnaЁ sigint" -#: app/main.c:422 +#: app/main.c:430 msgid "sigquit caught" msgstr "odebrano sygnaЁ sigquit" -#: app/main.c:427 +#: app/main.c:435 msgid "sigabrt caught" msgstr "odebrano sygnaЁ sigabrt" -#: app/main.c:432 +#: app/main.c:440 msgid "sigbus caught" msgstr "odebrano sygnaЁ sigbus" -#: app/main.c:437 +#: app/main.c:445 msgid "sigsegv caught" msgstr "odebrano sygnaЁ sigsegv" -#: app/main.c:442 +#: app/main.c:450 msgid "sigpipe caught" msgstr "odebrano sygnaЁ sigpipe" -#: app/main.c:447 +#: app/main.c:455 msgid "sigterm caught" msgstr "odebrano sygnaЁ sigterm" -#: app/main.c:452 +#: app/main.c:460 msgid "sigfpe caught" msgstr "odebrano sygnaЁ sigfpe" -#: app/main.c:456 +#: app/main.c:464 msgid "unknown signal" msgstr "odebrano nieznany sygnaЁ" -#: app/menus.c:43 +#: app/menus.c:46 #, fuzzy msgid "/File/MRU00 " msgstr "/Plik/MRU%02d" -#: app/menus.c:53 app/menus.c:80 +#: app/menus.c:56 app/menus.c:88 +#, fuzzy +msgid "/File/tearoff1" +msgstr "/Plik/Zapisz" + +#: app/menus.c:57 app/menus.c:89 #, fuzzy msgid "/File/New" msgstr "/Plik/Nowy" -#: app/menus.c:54 app/menus.c:81 -#, fuzzy -msgid "/File/Open" -msgstr "/Plik/OtwСrz" - -#: app/menus.c:55 +#: app/menus.c:59 #, fuzzy msgid "/File/About..." msgstr "/Plik/O programie..." -#: app/menus.c:56 app/menus.c:85 +#: app/menus.c:60 app/menus.c:94 #, fuzzy msgid "/File/Preferences..." msgstr "/Plik/Preferencje..." -#: app/menus.c:57 +#: app/menus.c:61 #, fuzzy msgid "/File/Tip of the day" msgstr "/Plik/Podpowied╪ dnia" -#: app/menus.c:58 +#: app/menus.c:63 #, fuzzy msgid "/File/Dialogs/Brushes..." msgstr "/Plik/Dialogi/PЙdzle..." -#: app/menus.c:59 +#: app/menus.c:64 #, fuzzy msgid "/File/Dialogs/Patterns..." msgstr "/Plik/Dialogi/WypeЁnienia..." -#: app/menus.c:60 +#: app/menus.c:65 #, fuzzy msgid "/File/Dialogs/Palette..." msgstr "/Plik/Dialogi/Palety..." -#: app/menus.c:61 +#: app/menus.c:66 #, fuzzy msgid "/File/Dialogs/Gradient..." msgstr "/Plik/Dialogi/Gradienty..." -#: app/menus.c:62 +#: app/menus.c:67 #, fuzzy msgid "/File/Dialogs/Layers & Channels..." msgstr "/Plik/Dialogi/Warstwy i KanaЁy..." -#: app/menus.c:63 +#: app/menus.c:68 #, fuzzy msgid "/File/Dialogs/Tool Options..." msgstr "/Plik/Dialogi/Opcje narzЙdzi..." -#: app/menus.c:64 +#: app/menus.c:69 #, fuzzy msgid "/File/Dialogs/Input Devices..." msgstr "/Plik/Dialogi/Urz╠dzenia wej╤ciowe..." -#: app/menus.c:65 +#: app/menus.c:70 #, fuzzy msgid "/File/Dialogs/Device Status..." msgstr "/Plik/Dialogi/Stan urz╠dzenia..." -#: app/menus.c:66 +#: app/menus.c:71 #, fuzzy msgid "/File/Dialogs/Document Index..." msgstr "/Plik/Dialogi/Indeks dokumentu..." -#: app/menus.c:67 +#: app/menus.c:72 #, fuzzy msgid "/File/Dialogs/Error Console..." msgstr "/Plik/Dialogi/Konsola bЁЙdСw..." -#: app/menus.c:68 +#: app/menus.c:74 +msgid "/Xtns/tearoff1" +msgstr "" + +#: app/menus.c:75 #, fuzzy msgid "/Xtns/Module Browser" msgstr "/Plik/Dialogi/PЙdzle..." -#: app/menus.c:69 app/menus.c:70 app/menus.c:75 app/menus.c:86 +#: app/menus.c:76 app/menus.c:77 app/menus.c:82 app/menus.c:95 msgid "/File/---" msgstr "/Plik/---" -#: app/menus.c:76 app/menus.c:89 -#, fuzzy -msgid "/File/Quit" -msgstr "/Plik/Wyj╤cie" +#: app/menus.c:87 +msgid "/tearoff1" +msgstr "" -#: app/menus.c:82 -#, fuzzy -msgid "/File/Save" -msgstr "/Plik/Zapisz" - -#: app/menus.c:83 -#, fuzzy -msgid "/File/Save as" -msgstr "/Plik/Zapisz jako" - -#: app/menus.c:84 +#: app/menus.c:93 #, fuzzy msgid "/File/Revert" msgstr "/Plik/Zapisz" -#: app/menus.c:88 -#, fuzzy -msgid "/File/Close" -msgstr "/Plik/Zamknij" - -#: app/menus.c:90 +#: app/menus.c:99 #, fuzzy msgid "/File/---moved" msgstr "/Plik/---" -#: app/menus.c:92 +#: app/menus.c:101 +#, fuzzy +msgid "/Edit/tearoff1" +msgstr "/Edycja/Wyczy╤Ф" + +#: app/menus.c:102 #, fuzzy msgid "/Edit/Cut" msgstr "/Edycja/Wytnij" -#: app/menus.c:93 +#: app/menus.c:103 #, fuzzy msgid "/Edit/Copy" msgstr "/Edycja/Kopiuj" -#: app/menus.c:94 +#: app/menus.c:104 #, fuzzy msgid "/Edit/Paste" msgstr "/Edycja/Wklej" -#: app/menus.c:95 +#: app/menus.c:105 #, fuzzy msgid "/Edit/Paste Into" msgstr "/Edycja/Wklej w" -#: app/menus.c:96 +#: app/menus.c:106 +#, fuzzy +msgid "/Edit/Paste As New" +msgstr "/Edycja/Wklej nazwany" + +#: app/menus.c:107 app/menus.c:113 app/menus.c:117 +msgid "/Edit/---" +msgstr "/Edycja/---" + +#: app/menus.c:108 #, fuzzy msgid "/Edit/Clear" msgstr "/Edycja/Wyczy╤Ф" -#: app/menus.c:97 +#: app/menus.c:109 #, fuzzy msgid "/Edit/Fill" msgstr "/Edycja/WypeЁnij" -#: app/menus.c:98 +#: app/menus.c:110 #, fuzzy msgid "/Edit/Stroke" msgstr "/Edycja/Poci╠gnij" -#: app/menus.c:99 +#: app/menus.c:111 #, fuzzy msgid "/Edit/Undo" msgstr "/Edycja/Cofnij" -#: app/menus.c:100 +#: app/menus.c:112 #, fuzzy msgid "/Edit/Redo" msgstr "/Edycja/PonСw" -#: app/menus.c:101 app/menus.c:105 -msgid "/Edit/---" -msgstr "/Edycja/---" - -#: app/menus.c:102 +#: app/menus.c:114 #, fuzzy msgid "/Edit/Cut Named" msgstr "/Edycja/Wytnij nazwany" -#: app/menus.c:103 +#: app/menus.c:115 #, fuzzy msgid "/Edit/Copy Named" msgstr "/Edycja/Kopiuj nazwany" -#: app/menus.c:104 +#: app/menus.c:116 #, fuzzy msgid "/Edit/Paste Named" msgstr "/Edycja/Wklej nazwany" -#: app/menus.c:107 +#: app/menus.c:119 #, fuzzy -msgid "/Select/Toggle" -msgstr "/Zaznacz/PrzeЁ╠cz" +msgid "/Select/tearoff1" +msgstr "/Zaznacz/PowiЙksz" -#: app/menus.c:108 +#: app/menus.c:120 #, fuzzy msgid "/Select/Invert" msgstr "/Zaznacz/OdwrСФ" -#: app/menus.c:109 +#: app/menus.c:121 #, fuzzy msgid "/Select/All" msgstr "/Zaznacz/Wszystko" -#: app/menus.c:110 +#: app/menus.c:122 #, fuzzy msgid "/Select/None" msgstr "/Zaznacz/Nic" -#: app/menus.c:111 +#: app/menus.c:123 #, fuzzy msgid "/Select/Float" msgstr "/Zaznacz/PЁynne" -#: app/menus.c:112 +#: app/menus.c:124 #, fuzzy msgid "/Select/Sharpen" msgstr "/Zaznacz/Wyostrz" -#: app/menus.c:113 +#: app/menus.c:125 #, fuzzy msgid "/Select/Border" msgstr "/Zaznacz/Brzeg" -#: app/menus.c:114 +#: app/menus.c:126 #, fuzzy msgid "/Select/Feather" msgstr "Zaznacz/Rozmyj" -#: app/menus.c:115 +#: app/menus.c:127 #, fuzzy msgid "/Select/Grow" msgstr "/Zaznacz/PowiЙksz" -#: app/menus.c:116 +#: app/menus.c:128 #, fuzzy msgid "/Select/Shrink" msgstr "/Zaznacz/Zmniejsz" -#: app/menus.c:117 +#: app/menus.c:129 #, fuzzy msgid "/Select/Save To Channel" msgstr "/Zaznacz/Zapisz do kanaЁu" -#: app/menus.c:119 +#: app/menus.c:131 +msgid "/View/tearoff1" +msgstr "" + +#: app/menus.c:132 #, fuzzy msgid "/View/Zoom In" msgstr "/Widok/PowiЙksz" -#: app/menus.c:120 +#: app/menus.c:133 #, fuzzy msgid "/View/Zoom Out" msgstr "/Widok/Pomniejsz" -#: app/menus.c:121 +#: app/menus.c:134 #, fuzzy msgid "/View/Zoom/16:1" msgstr "/Widok/PowiЙkszenie/16:1" -#: app/menus.c:122 +#: app/menus.c:135 #, fuzzy msgid "/View/Zoom/8:1" msgstr "/Widok/PowiЙkszenie/8:1" -#: app/menus.c:123 +#: app/menus.c:136 #, fuzzy msgid "/View/Zoom/4:1" msgstr "/Widok/PowiЙkszenie/8:1" -#: app/menus.c:124 +#: app/menus.c:137 #, fuzzy msgid "/View/Zoom/2:1" msgstr "/Widok/PowiЙkszenie/2:1" -#: app/menus.c:125 +#: app/menus.c:138 #, fuzzy msgid "/View/Zoom/1:1" msgstr "/Widok/PowiЙkszenie/1:1" -#: app/menus.c:126 +#: app/menus.c:139 msgid "/View/Zoom/1:2" msgstr "/Widok/PowiЙkszenie/1:2" -#: app/menus.c:127 +#: app/menus.c:140 msgid "/View/Zoom/1:4" msgstr "/Widok/PowiЙkszenie/1:4" -#: app/menus.c:128 +#: app/menus.c:141 msgid "/View/Zoom/1:8" msgstr "/Widok/PowiЙkszenie/1:8" -#: app/menus.c:129 +#: app/menus.c:142 msgid "/View/Zoom/1:16" msgstr "/Widok/PowiЙkszenie/1:16" -#: app/menus.c:130 +#: app/menus.c:143 #, fuzzy msgid "/View/Dot for dot" msgstr "/Widok/Pomniejsz" -#: app/menus.c:131 +#: app/menus.c:144 #, fuzzy msgid "/View/Window Info..." msgstr "/Widok/Informacje o okienku..." -#: app/menus.c:132 +#: app/menus.c:146 app/menus.c:152 +msgid "/View/---" +msgstr "/Widok/---" + +#: app/menus.c:147 +#, fuzzy +msgid "/View/Toggle Selection" +msgstr "/Widok/PrzeЁ╠cz linijki" + +#: app/menus.c:148 #, fuzzy msgid "/View/Toggle Rulers" msgstr "/Widok/PrzeЁ╠cz linijki" -#: app/menus.c:133 +#: app/menus.c:149 #, fuzzy msgid "/View/Toggle Statusbar" msgstr "/Widok/PrzeЁ╠cz liniЙ statusu" -#: app/menus.c:134 +#: app/menus.c:150 #, fuzzy msgid "/View/Toggle Guides" msgstr "/Widok/Prowadnice" -#: app/menus.c:135 +#: app/menus.c:151 #, fuzzy msgid "/View/Snap To Guides" msgstr "/Widok/Przyci╠gaj do prowadnic" -#: app/menus.c:136 -msgid "/View/---" -msgstr "/Widok/---" - -#: app/menus.c:137 +#: app/menus.c:154 #, fuzzy msgid "/View/New View" msgstr "/Widok/Nowy widok" -#: app/menus.c:138 +#: app/menus.c:155 #, fuzzy msgid "/View/Shrink Wrap" msgstr "/Widok/Dopasuj Okno" -#: app/menus.c:140 +#: app/menus.c:157 +#, fuzzy +msgid "/Image/tearoff1" +msgstr "/Edycja/Wyczy╤Ф" + +#: app/menus.c:158 +#, fuzzy +msgid "/Image/Colors/tearoff1" +msgstr "/Obrazek/Kolory/OdwrСФ" + +#: app/menus.c:159 #, fuzzy msgid "/Image/Colors/Equalize" msgstr "/Obrazek/Kolory/Equalize" -#: app/menus.c:141 +#: app/menus.c:160 #, fuzzy msgid "/Image/Colors/Invert" msgstr "/Obrazek/Kolory/OdwrСФ" -#: app/menus.c:142 +#: app/menus.c:161 msgid "/Image/Colors/---" msgstr "/Obrazek/Kolory/---" -#: app/menus.c:143 +#: app/menus.c:162 #, fuzzy msgid "/Image/Colors/Desaturate" msgstr "/Obrazek/Kolory/Desaturacja" -#: app/menus.c:144 +#: app/menus.c:163 +#, fuzzy +msgid "/Image/Channel Ops/tearoff1" +msgstr "/Obrazek/Opcje kanaЁСw/Offset" + +#: app/menus.c:164 #, fuzzy msgid "/Image/Channel Ops/Duplicate" msgstr "/Obrazek/Opcje kanaЁСw/Duplikuj" -#: app/menus.c:145 +#: app/menus.c:165 #, fuzzy msgid "/Image/Channel Ops/Offset" msgstr "/Obrazek/Opcje kanaЁСw/Offset" -#: app/menus.c:146 +#: app/menus.c:166 +#, fuzzy +msgid "/Image/Alpha/tearoff1" +msgstr "/Obrazek/Skaluj" + +#: app/menus.c:167 #, fuzzy msgid "/Image/Alpha/Add Alpha Channel" msgstr "/Obrazek/Alfa/Dodaj kanaЁ alfa" -#: app/menus.c:148 app/menus.c:152 app/menus.c:155 +#: app/menus.c:169 app/menus.c:173 app/menus.c:176 msgid "/Image/---" msgstr "/Obrazek/---" -#: app/menus.c:149 +#: app/menus.c:170 #, fuzzy msgid "/Image/RGB" msgstr "/Obrazek/RGB" -#: app/menus.c:150 +#: app/menus.c:171 #, fuzzy msgid "/Image/Grayscale" msgstr "/Obrazek/Odcienie szaro╤ci" -#: app/menus.c:151 +#: app/menus.c:172 #, fuzzy msgid "/Image/Indexed" msgstr "/Obrazek/Indeksowany" -#: app/menus.c:153 +#: app/menus.c:174 #, fuzzy msgid "/Image/Resize" msgstr "/Obrazek/ZmieЯ rozmiar" -#: app/menus.c:154 +#: app/menus.c:175 #, fuzzy msgid "/Image/Scale" msgstr "/Obrazek/Skaluj" -#: app/menus.c:157 +#: app/menus.c:178 +#, fuzzy +msgid "/Layers/tearoff1" +msgstr "/Warstwy/Podnie╤ warstwЙ" + +#: app/menus.c:179 #, fuzzy msgid "/Layers/Layers & Channels..." msgstr "/Warstwy/Warstwy i kanaЁy.." -#: app/menus.c:158 +#: app/menus.c:180 +#, fuzzy +msgid "/Layers/Stack/tearoff1" +msgstr "/Warstwy/Podnie╤ warstwЙ" + +#: app/menus.c:181 #, fuzzy msgid "/Layers/Stack/Previous Layer" msgstr "/Warstwy/Podnie╤ warstwЙ" -#: app/menus.c:159 +#: app/menus.c:182 #, fuzzy msgid "/Layers/Stack/Next Layer" msgstr "/Warstwy/Podnie╤ warstwЙ" -#: app/menus.c:160 +#: app/menus.c:183 #, fuzzy msgid "/Layers/Stack/Raise Layer" msgstr "/Warstwy/Podnie╤ warstwЙ" -#: app/menus.c:161 +#: app/menus.c:184 #, fuzzy msgid "/Layers/Stack/Lower Layer" msgstr "/Warstwy/Obni© warstwЙ" -#: app/menus.c:162 +#: app/menus.c:185 #, fuzzy msgid "/Layers/Stack/Layer to Top" msgstr "/Warstwy/Podnie╤ warstwЙ" -#: app/menus.c:163 +#: app/menus.c:186 msgid "/Layers/Stack/Layer to Bottom" msgstr "" -#: app/menus.c:164 +#: app/menus.c:187 app/menus.c:194 #, fuzzy msgid "/Layers/---" msgstr "Du©y" -#: app/menus.c:165 +#: app/menus.c:188 #, fuzzy msgid "/Layers/Anchor Layer" msgstr "/Warstwy/Zakotwicz warstwЙ" -#: app/menus.c:166 +#: app/menus.c:189 #, fuzzy msgid "/Layers/Merge Visible Layers" msgstr "/Warstwy/PoЁ╠cz widoczne warstwy" -#: app/menus.c:167 +#: app/menus.c:190 #, fuzzy msgid "/Layers/Flatten Image" msgstr "/Warstwy/SpЁaszcz obrazek" -#: app/menus.c:168 +#: app/menus.c:191 #, fuzzy msgid "/Layers/Alpha To Selection" msgstr "/Warstwy/Zaznaczenie z kanaЁu Alpha" -#: app/menus.c:169 +#: app/menus.c:192 #, fuzzy msgid "/Layers/Mask To Selection" msgstr "/Warstwy/Zaznaczenie z maski" -#: app/menus.c:170 +#: app/menus.c:193 #, fuzzy msgid "/Layers/Add Alpha Channel" msgstr "/Warstwy/Dodaj kanaЁ Alpha" -#. these are built on the fly -#. -#. { N_("/Tools/Ellipse Select"), "E", tools_select_cmd_callback, ELLIPSE_SELECT }, -#. { N_("/Tools/Free Select"), "F", tools_select_cmd_callback, FREE_SELECT }, -#. { N_("/Tools/Fuzzy Select"), "Z", tools_select_cmd_callback, FUZZY_SELECT }, -#. { N_("/Tools/Bezier Select"), "B", tools_select_cmd_callback, BEZIER_SELECT }, -#. { N_("/Tools/Intelligent Scissors"), "I", tools_select_cmd_callback, ISCISSORS }, -#. { N_("/Tools/Move"), "M", tools_select_cmd_callback, MOVE }, -#. { N_("/Tools/Magnify"), "M", tools_select_cmd_callback, MAGNIFY }, -#. { N_("/Tools/Crop"), "C", tools_select_cmd_callback, CROP }, -#. { N_("/Tools/Transform"), "T", tools_select_cmd_callback, ROTATE }, -#. { N_("/Tools/Flip"), "F", tools_select_cmd_callback, FLIP }, -#. { N_("/Tools/Text"), "T", tools_select_cmd_callback, TEXT }, -#. { N_("/Tools/Color Picker"), "O", tools_select_cmd_callback, COLOR_PICKER }, -#. { N_("/Tools/Bucket Fill"), "B", tools_select_cmd_callback, BUCKET_FILL }, -#. { N_("/Tools/Blend"), "L", tools_select_cmd_callback, BLEND }, -#. { N_("/Tools/Paintbrush"), "P", tools_select_cmd_callback, PAINTBRUSH }, -#. { N_("/Tools/Pencil"), "P", tools_select_cmd_callback, PENCIL }, -#. { N_("/Tools/Eraser"), "E", tools_select_cmd_callback, ERASER }, -#. { N_("/Tools/Airbrush"), "A", tools_select_cmd_callback, AIRBRUSH }, -#. { N_("/Tools/Clone"), "C", tools_select_cmd_callback, CLONE }, -#. { N_("/Tools/Convolve"), "V", tools_select_cmd_callback, CONVOLVE }, -#. { N_("/Tools/Ink"), "K", tools_select_cmd_callback, INK }, -#. { N_("/Tools/Default Colors"), "D", tools_default_colors_cmd_callback, 0 }, -#. { N_("/Tools/Toolbox"), NULL, toolbox_raise_callback, 0 }, -#. { N_("/Tools/---"), NULL, NULL, 0, "" }, -#. { N_("/Tools/Default Colors"), "D", tools_default_colors_cmd_callback, 0 }, -#. { N_("/Tools/Swap Colors"), "X", tools_swap_colors_cmd_callback, 0 }, -#. -#: app/menus.c:203 +#: app/menus.c:196 +#, fuzzy +msgid "/Tools/tearoff1" +msgstr "/NarzЙdzia/Gumka" + +#: app/menus.c:197 #, fuzzy msgid "/Tools/Toolbox" msgstr "/NarzЙdzia/NarzЙdzia" -#: app/menus.c:204 +#: app/menus.c:198 #, fuzzy msgid "/Tools/Default Colors" msgstr "/NarzЙdzia/Standardowe barwy" -#: app/menus.c:205 +#: app/menus.c:199 #, fuzzy msgid "/Tools/Swap Colors" msgstr "/NarzЙdzia/ZamieЯ barwy" -#: app/menus.c:206 +#: app/menus.c:200 msgid "/Tools/---" msgstr "/NarzЙdzia/---" -#: app/menus.c:208 +#. the tool entries themselves are built on the fly +#: app/menus.c:204 +#, fuzzy +msgid "/Filters/tearoff1" +msgstr "/Filtry/---" + +#: app/menus.c:205 app/plug_in.c:1285 #, fuzzy msgid "/Filters/Repeat last" msgstr "/Filtry/PowtСrz ostatni" -#: app/menus.c:209 +#: app/menus.c:206 app/plug_in.c:1286 #, fuzzy msgid "/Filters/Re-show last" msgstr "/Filtry/Poka© ostatni" -#: app/menus.c:210 +#: app/menus.c:207 msgid "/Filters/---" msgstr "/Filtry/---" -#: app/menus.c:212 +#: app/menus.c:209 +#, fuzzy +msgid "/Script-Fu/tearoff1" +msgstr "/Script-Fu/" + +#: app/menus.c:210 msgid "/Script-Fu/" msgstr "/Script-Fu/" -#: app/menus.c:214 +#: app/menus.c:212 +#, fuzzy +msgid "/Dialogs/tearoff1" +msgstr "/Dialogi/WypeЁnienia..." + +#: app/menus.c:213 #, fuzzy msgid "/Dialogs/Brushes..." msgstr "/Dialogi/PЙdzle..." -#: app/menus.c:215 +#: app/menus.c:214 #, fuzzy msgid "/Dialogs/Patterns..." msgstr "/Dialogi/WypeЁnienia..." -#: app/menus.c:216 +#: app/menus.c:215 #, fuzzy msgid "/Dialogs/Palette..." msgstr "/Dialogi/Palety..." -#: app/menus.c:217 +#: app/menus.c:216 #, fuzzy msgid "/Dialogs/Gradient..." msgstr "/Plik/Dialogi/Gradienty..." -#: app/menus.c:218 +#: app/menus.c:217 #, fuzzy msgid "/Dialogs/Layers & Channels..." msgstr "/Dialogi/Warstwy i kanaЁy..." -#: app/menus.c:219 +#: app/menus.c:218 #, fuzzy msgid "/Dialogs/Indexed Palette..." msgstr "/Dialogi/Paleta indeksowana..." -#: app/menus.c:220 +#: app/menus.c:219 #, fuzzy msgid "/Dialogs/Tool Options..." msgstr "/Dialogi/Opcje narzЙdzi..." -#: app/menus.c:221 +#: app/menus.c:220 #, fuzzy msgid "/Dialogs/Input Devices..." msgstr "/Dialogi/Urz╠dzenia wej╤ciowe..." -#: app/menus.c:222 +#: app/menus.c:221 #, fuzzy msgid "/Dialogs/Device Status..." msgstr "/Dialogi/Stan urz╠dzenia..." -#: app/menus.c:229 +#: app/menus.c:228 msgid "/Automatic" msgstr "/Automatycznie" -#: app/menus.c:237 +#: app/menus.c:236 msgid "/By extension" msgstr "/Po rozszerzeniu" -#: app/menus.c:436 +#: app/menus.c:290 +#, fuzzy +msgid "/New Path" +msgstr "Szeroko╤Ф: " + +#: app/menus.c:291 +#, fuzzy +msgid "/Duplicate Path" +msgstr "Duplikat kanaЁu" + +#: app/menus.c:292 +#, fuzzy +msgid "/Path to Selection" +msgstr "Zaokr╠glij zaznaczenie" + +#: app/menus.c:293 +msgid "/Stroke Path" +msgstr "" + +#: app/menus.c:294 +#, fuzzy +msgid "/Delete Path" +msgstr "UsuЯ" + +#: app/menus.c:296 +#, fuzzy +msgid "/Copy Path" +msgstr "Kopiuj gradient" + +#: app/menus.c:297 +#, fuzzy +msgid "/Paste Path" +msgstr "Wklej" + +#: app/menus.c:298 +msgid "/Import Path" +msgstr "" + +#: app/menus.c:299 +msgid "/Export Path" +msgstr "" + +#: app/menus.c:596 #, c-format msgid "Error opening file: %s\n" msgstr "BЁ╠d otwarcia pliku: %s\n" -#: app/menus.c:458 app/menus.c:539 +#: app/menus.c:618 app/menus.c:699 #, c-format msgid "/File/MRU%02d" msgstr "/Plik/MRU%02d" -#: app/move.c:438 +#: app/module_db.c:269 +#, fuzzy +msgid "Module DB" +msgstr "Tryb:" + +#: app/module_db.c:567 +#, c-format +msgid "load module: \"%s\"\n" +msgstr "" + +#: app/module_db.c:574 +#, c-format +msgid "skipping module: \"%s\"\n" +msgstr "" + +#: app/module_db.c:598 +#, c-format +msgid "module load error: %s: %s" +msgstr "" + +#: app/module_db.c:616 +msgid "missing module_init() symbol" +msgstr "" + +#: app/module_db.c:619 +#, c-format +msgid "%s: module_init() symbol not found" +msgstr "" + +#: app/module_db.c:772 +#, fuzzy +msgid "" +msgstr "Tryb:" + +#: app/module_db.c:785 app/module_db.c:794 +msgid "on disk" +msgstr "" + +#: app/module_db.c:785 +msgid "only in memory" +msgstr "" + +#: app/module_db.c:794 +msgid "nowhere (click 'refresh')" +msgstr "" + +#: app/module_db.c:830 +msgid "Load" +msgstr "Wczytaj" + +#: app/module_db.c:839 +#, fuzzy +msgid "Unload" +msgstr "Wczytaj" + +#: app/module_db.c:852 +msgid "Purpose: " +msgstr "" + +#: app/module_db.c:853 +#, fuzzy +msgid "Author: " +msgstr "/Automatycznie" + +#: app/module_db.c:854 +#, fuzzy +msgid "Version: " +msgstr "Wersja" + +#: app/module_db.c:855 +msgid "Copyright: " +msgstr "" + +#: app/module_db.c:856 +#, fuzzy +msgid "Date: " +msgstr "StopieЯ: " + +#: app/module_db.c:857 +#, fuzzy +msgid "Location: " +msgstr "Zaznaczenie" + +#: app/module_db.c:858 +#, fuzzy +msgid "State: " +msgstr "StopieЯ: " + +#: app/module_db.c:877 +msgid "Autoload during startup" +msgstr "" + +#: app/move.c:444 #, fuzzy msgid "Move Tool Options" msgstr "Opcje narzЙdzia klonowania" -#: app/paint_core.c:547 +#: app/paint_core.c:586 #, fuzzy msgid "No brushes available for use with this tool." msgstr "Brak szablonСw dla tej operacji." -#: app/paint_core.c:1290 -msgid "paint_core_replace only works in INCREMENTAL mode" -msgstr "" - -#: app/paint_core.c:1427 +#: app/paint_core.c:1574 msgid "set_undo_tiles: undo_tiles is null" msgstr "" -#: app/paint_funcs.c:85 +#: app/paint_funcs.c:85 app/tool_options.c:777 msgid "Behind" msgstr "" @@ -4119,31 +4173,31 @@ msgstr "Gumka" msgid "Once Forward" msgstr "" -#: app/paintbrush.c:154 +#: app/paintbrush.c:155 msgid "Once Backward" msgstr "" -#: app/paintbrush.c:155 +#: app/paintbrush.c:157 msgid "Loop Sawtooth" msgstr "" -#: app/paintbrush.c:156 +#: app/paintbrush.c:159 msgid "Loop Triangle" msgstr "" -#: app/paintbrush.c:180 +#: app/paintbrush.c:185 msgid "Fade Out:" msgstr "" -#: app/paintbrush.c:207 +#: app/paintbrush.c:212 msgid "Length:" msgstr "" -#. the radio frame and box -#: app/paintbrush.c:232 +#. the gradient type +#: app/paintbrush.c:237 #, fuzzy -msgid "Gradient Type" -msgstr "Gradient" +msgid "Type:" +msgstr "Typ wypeЁnienia: " #: app/palette.c:484 #, c-format @@ -4326,593 +4380,593 @@ msgstr "" msgid "Perspective..." msgstr "Korekcja perspektywy" -#: app/plug_in.c:204 +#: app/plug_in.c:207 msgid "shmget failed...disabling shared memory tile transport" msgstr "" -#: app/plug_in.c:210 +#: app/plug_in.c:213 msgid "shmat failed...disabling shared memory tile transport" msgstr "" -#: app/plug_in.c:309 +#: app/plug_in.c:312 msgid "Plug-ins" msgstr "" -#: app/plug_in.c:321 +#: app/plug_in.c:324 #, c-format msgid "query plug-in: \"%s\"\n" msgstr "" -#: app/plug_in.c:359 +#: app/plug_in.c:362 #, c-format msgid "writing \"%s\"\n" msgstr "" -#: app/plug_in.c:374 +#: app/plug_in.c:377 msgid "Starting extensions: " msgstr "" -#: app/plug_in.c:375 +#: app/plug_in.c:378 msgid "Extensions" msgstr "Rozszerzenia" -#: app/plug_in.c:690 +#: app/plug_in.c:693 #, c-format msgid "\"%s\" executable not found\n" msgstr "" -#: app/plug_in.c:743 +#: app/plug_in.c:746 #, c-format msgid "unable to locate plug-in: \"%s\"" msgstr "" -#: app/plug_in.c:825 +#: app/plug_in.c:828 msgid "unable to open pipe" msgstr "" -#: app/plug_in.c:914 +#: app/plug_in.c:917 #, c-format msgid "unable to run plug-in: %s" msgstr "" -#: app/plug_in.c:1281 -msgid "/Filters/Repeat last" -msgstr "" - -#: app/plug_in.c:1282 -msgid "/Filters/Re-show last" -msgstr "" - -#: app/plug_in.c:1640 app/plug_in.c:1653 app/plug_in.c:1666 app/plug_in.c:1681 +#: app/plug_in.c:1648 app/plug_in.c:1661 app/plug_in.c:1674 app/plug_in.c:1689 #, c-format msgid "" "plug-in \"%s\" attempted to install procedure \"%s\" which does not take the " "standard plug-in args" msgstr "" -#: app/plug_in.c:1689 +#: app/plug_in.c:1697 #, c-format msgid "" "plug-in \"%s\" attempted to install procedure \"%s\" in an invalid menu " "location. Use either \"\", \"\", \"\", or \"\"." msgstr "" -#: app/plug_in.c:1709 +#: app/plug_in.c:1717 #, c-format msgid "" "plug_in \"%s\" attempted to install procedure \"%s\" which fails to comply " "with the array parameter passing standard. Argument %d is noncompliant." msgstr "" -#: app/plug_in.c:2141 +#: app/plug_in.c:2149 #, c-format msgid "duplicate plug-in: \"%s\" (skipping)\n" msgstr "" -#: app/plug_in.c:2349 +#: app/plug_in.c:2357 msgid "Unknown procedure type." msgstr "" -#: app/plug_in.c:2430 +#: app/plug_in.c:2438 #, c-format msgid "removing duplicate PDB procedure \"%s\"" msgstr "" -#: app/plug_in.c:2686 app/plug_in.c:2851 app/plug_in.c:2968 app/plug_in.c:3053 +#: app/plug_in.c:2694 app/plug_in.c:2859 app/plug_in.c:2976 app/plug_in.c:3061 msgid "the \"region\" arg type is not currently supported" msgstr "" -#: app/posterize.c:217 +#: app/posterize.c:164 #, fuzzy msgid "Posterize does not operate on indexed drawables." msgstr "Jasno╤Ф-Kontrast nie mo©e zostaФ u©yta w trybie koloru indeksowanego." -#: app/posterize.c:262 app/tools.c:521 +#: app/posterize.c:211 app/tools.c:547 msgid "Posterize" msgstr "Izochelia" -#: app/posterize.c:276 +#: app/posterize.c:225 #, fuzzy msgid "Posterize Levels: " msgstr "SkЁadowe barwy: " -#: app/preferences_dialog.c:203 +#: app/preferences_dialog.c:205 msgid "Error: Levels of undo must be zero or greater." msgstr "" -#: app/preferences_dialog.c:209 +#: app/preferences_dialog.c:211 msgid "Error: Number of processors must be between 1 and 30." msgstr "" -#: app/preferences_dialog.c:215 +#: app/preferences_dialog.c:217 msgid "Error: Marching speed must be 50 or greater." msgstr "" -#: app/preferences_dialog.c:221 +#: app/preferences_dialog.c:223 msgid "Error: Default width must be one or greater." msgstr "" -#: app/preferences_dialog.c:227 +#: app/preferences_dialog.c:229 msgid "Error: Default height must be one or greater." msgstr "" -#: app/preferences_dialog.c:234 +#: app/preferences_dialog.c:236 msgid "Error: Default unit must be within unit range." msgstr "" -#: app/preferences_dialog.c:241 +#: app/preferences_dialog.c:243 msgid "Error: default resolution must not be zero." msgstr "" -#: app/preferences_dialog.c:249 +#: app/preferences_dialog.c:251 msgid "Error: Default resolution unit must be within unit range." msgstr "" -#: app/preferences_dialog.c:256 +#: app/preferences_dialog.c:258 msgid "Error: Monitor resolution must not be zero." msgstr "" -#: app/preferences_dialog.c:263 +#: app/preferences_dialog.c:265 msgid "Error: Image title format must not be NULL." msgstr "" -#: app/preferences_dialog.c:520 +#: app/preferences_dialog.c:536 msgid "You will need to restart GIMP for these changes to take effect." msgstr "" -#: app/preferences_dialog.c:1433 +#: app/preferences_dialog.c:1467 msgid "Preferences" msgstr "Preferencje" #. The categories tree -#: app/preferences_dialog.c:1451 +#: app/preferences_dialog.c:1485 msgid "Categories" msgstr "" -#: app/preferences_dialog.c:1477 +#: app/preferences_dialog.c:1512 msgid "New File Settings" msgstr "" -#: app/preferences_dialog.c:1479 +#: app/preferences_dialog.c:1514 #, fuzzy msgid "New File" msgstr "Typ wypeЁnienia" -#: app/preferences_dialog.c:1489 +#: app/preferences_dialog.c:1524 msgid "Default Image Size and Unit" msgstr "" -#: app/preferences_dialog.c:1503 +#: app/preferences_dialog.c:1538 msgid "Width" msgstr "Szeroko╤Ф" -#: app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1540 msgid "Height" msgstr "Wysoko╤Ф" -#: app/preferences_dialog.c:1532 +#: app/preferences_dialog.c:1567 msgid "Default Image Resolution and Resolution Unit" msgstr "" -#: app/preferences_dialog.c:1557 app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:1592 app/preferences_dialog.c:2294 msgid "dpi" msgstr "" -#: app/preferences_dialog.c:1602 +#: app/preferences_dialog.c:1637 #, fuzzy msgid "Default Image Type:" msgstr "Typ obrazka" -#: app/preferences_dialog.c:1607 +#: app/preferences_dialog.c:1642 #, fuzzy msgid "Display Settings" msgstr "Wy╤wietl" -#: app/preferences_dialog.c:1609 +#: app/preferences_dialog.c:1644 msgid "Display" msgstr "Wy╤wietl" -#: app/preferences_dialog.c:1616 +#: app/preferences_dialog.c:1651 #, fuzzy msgid "Transparency" msgstr "Przeroczysty" -#: app/preferences_dialog.c:1634 +#: app/preferences_dialog.c:1669 msgid "Light Checks" msgstr "" -#: app/preferences_dialog.c:1636 +#: app/preferences_dialog.c:1671 msgid "Mid-Tone Checks" msgstr "" -#: app/preferences_dialog.c:1638 +#: app/preferences_dialog.c:1673 msgid "Dark Checks" msgstr "" -#: app/preferences_dialog.c:1640 +#: app/preferences_dialog.c:1675 msgid "White Only" msgstr "" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1677 msgid "Gray Only" msgstr "" -#: app/preferences_dialog.c:1644 +#: app/preferences_dialog.c:1679 msgid "Black Only" msgstr "" -#: app/preferences_dialog.c:1648 +#: app/preferences_dialog.c:1683 #, fuzzy msgid "Transparency Type:" msgstr "Przeroczysty" -#: app/preferences_dialog.c:1654 app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1689 app/preferences_dialog.c:1760 msgid "Small" msgstr "MaЁy" -#: app/preferences_dialog.c:1656 app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1691 app/preferences_dialog.c:1761 msgid "Medium" msgstr "╕redni" -#: app/preferences_dialog.c:1658 app/preferences_dialog.c:1727 +#: app/preferences_dialog.c:1693 app/preferences_dialog.c:1762 msgid "Large" msgstr "Du©y" -#: app/preferences_dialog.c:1662 +#: app/preferences_dialog.c:1697 msgid "Check Size:" msgstr "" -#: app/preferences_dialog.c:1664 app/transform_tool.c:191 +#: app/preferences_dialog.c:1699 app/transform_tool.c:190 msgid "Scaling" msgstr "Skalowanie" -#: app/preferences_dialog.c:1673 +#: app/preferences_dialog.c:1708 #, fuzzy msgid "Cubic Interpolation" msgstr "OdjЙcie" -#: app/preferences_dialog.c:1684 +#: app/preferences_dialog.c:1719 msgid "Interface Settings" msgstr "" -#: app/preferences_dialog.c:1693 +#: app/preferences_dialog.c:1728 msgid "General" msgstr "" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1765 #, fuzzy msgid "Preview Size:" msgstr "Podgl╠d" -#: app/preferences_dialog.c:1739 +#: app/preferences_dialog.c:1774 #, fuzzy msgid "Levels of Undo:" msgstr "Opcje krzywych" -#: app/preferences_dialog.c:1748 +#: app/preferences_dialog.c:1783 msgid "Recent Documents List Size:" msgstr "" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1786 msgid "Help System" msgstr "" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1795 msgid "Show Tool Tips" msgstr "" -#: app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1806 msgid "Image Windows Settings" msgstr "" -#: app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1808 msgid "Image Windows" msgstr "" -#: app/preferences_dialog.c:1780 +#: app/preferences_dialog.c:1815 msgid "Appearance" msgstr "" -#: app/preferences_dialog.c:1789 +#: app/preferences_dialog.c:1824 #, fuzzy msgid "Resize Window on Zoom" msgstr "/Widok/Informacje o okienku..." -#: app/preferences_dialog.c:1798 +#: app/preferences_dialog.c:1833 msgid "Show Rulers" msgstr "" -#: app/preferences_dialog.c:1807 +#: app/preferences_dialog.c:1842 #, fuzzy msgid "Show Statusbar" msgstr "/Widok/PrzeЁ╠cz liniЙ statusu" -#: app/preferences_dialog.c:1831 +#: app/preferences_dialog.c:1866 msgid "Marching Ants Speed:" msgstr "" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:1839 +#: app/preferences_dialog.c:1874 msgid "Custom" msgstr "WЁasny" #. set some commonly used format strings -#: app/preferences_dialog.c:1845 +#: app/preferences_dialog.c:1880 msgid "Standard" msgstr "" -#: app/preferences_dialog.c:1850 +#: app/preferences_dialog.c:1885 msgid "Show zoom percentage" msgstr "" -#: app/preferences_dialog.c:1855 +#: app/preferences_dialog.c:1890 msgid "Show zoom ratio" msgstr "" -#: app/preferences_dialog.c:1860 +#: app/preferences_dialog.c:1895 msgid "Show reversed zoom ratio" msgstr "" -#: app/preferences_dialog.c:1871 +#: app/preferences_dialog.c:1906 msgid "Image Title Format:" msgstr "" #. End of the title format string -#: app/preferences_dialog.c:1874 +#: app/preferences_dialog.c:1909 msgid "Pointer Movement Feedback" msgstr "" -#: app/preferences_dialog.c:1884 +#: app/preferences_dialog.c:1919 msgid "Perfect-but-slow Pointer Tracking" msgstr "" -#: app/preferences_dialog.c:1893 +#: app/preferences_dialog.c:1928 msgid "Disable Cursor Updating" msgstr "" -#: app/preferences_dialog.c:1904 +#: app/preferences_dialog.c:1939 #, fuzzy msgid "Tool Options Settings" msgstr "Opcje narzЙdzi" -#: app/preferences_dialog.c:1906 app/tools.c:726 +#: app/preferences_dialog.c:1941 app/tools.c:884 msgid "Tool Options" msgstr "Opcje narzЙdzi" -#: app/preferences_dialog.c:1913 +#: app/preferences_dialog.c:1948 #, fuzzy msgid "Paint Options" msgstr "Opcje aerografu" -#: app/preferences_dialog.c:1923 +#: app/preferences_dialog.c:1958 #, fuzzy msgid "Use Global Paint Options" msgstr "Opcje balansu kolorСw" -#: app/preferences_dialog.c:1933 -msgid "(Switching this off does not yet work consistently.)" +#: app/preferences_dialog.c:1974 +msgid "Display brush and pattern indicators on Toolbar" msgstr "" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1988 msgid "Environment Settings" msgstr "" -#: app/preferences_dialog.c:1945 +#: app/preferences_dialog.c:1990 msgid "Environment" msgstr "" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1997 #, fuzzy msgid "Resource Consumption" msgstr "Rozdzielczo╤Ф" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:2006 msgid "Conservative Memory Usage" msgstr "" -#: app/preferences_dialog.c:2012 app/preferences_dialog.c:2053 +#: app/preferences_dialog.c:2057 app/preferences_dialog.c:2098 msgid "Bytes" msgstr "" -#: app/preferences_dialog.c:2013 app/preferences_dialog.c:2054 +#: app/preferences_dialog.c:2058 app/preferences_dialog.c:2099 msgid "KiloBytes" msgstr "" -#: app/preferences_dialog.c:2014 app/preferences_dialog.c:2055 +#: app/preferences_dialog.c:2059 app/preferences_dialog.c:2100 msgid "MegaBytes" msgstr "" -#: app/preferences_dialog.c:2019 +#: app/preferences_dialog.c:2064 msgid "Tile Cache Size:" msgstr "" -#: app/preferences_dialog.c:2060 +#: app/preferences_dialog.c:2105 msgid "Maximum Image Size:" msgstr "" -#: app/preferences_dialog.c:2070 +#: app/preferences_dialog.c:2115 msgid "Number of Processors to Use:" msgstr "" -#: app/preferences_dialog.c:2074 +#: app/preferences_dialog.c:2119 #, fuzzy msgid "8-Bit Displays" msgstr "Wy╤wietl" -#: app/preferences_dialog.c:2085 +#: app/preferences_dialog.c:2130 #, fuzzy msgid "Install Colormap" msgstr "Instalacja" -#: app/preferences_dialog.c:2094 +#: app/preferences_dialog.c:2139 msgid "Colormap Cycling" msgstr "" -#: app/preferences_dialog.c:2105 +#: app/preferences_dialog.c:2148 +msgid "File Previews / Thumbnails" +msgstr "" + +#: app/preferences_dialog.c:2175 +msgid "Try to Write a Thumbnail File:" +msgstr "" + +#: app/preferences_dialog.c:2180 msgid "Session Management" msgstr "" -#: app/preferences_dialog.c:2107 +#: app/preferences_dialog.c:2182 msgid "Session" msgstr "" -#: app/preferences_dialog.c:2114 +#: app/preferences_dialog.c:2189 msgid "Window Positions" msgstr "" -#: app/preferences_dialog.c:2123 +#: app/preferences_dialog.c:2198 msgid "Save Window Positions on Exit" msgstr "" -#: app/preferences_dialog.c:2137 +#: app/preferences_dialog.c:2212 msgid "Clear Saved Window Positions" msgstr "" -#: app/preferences_dialog.c:2144 +#: app/preferences_dialog.c:2219 msgid "Always Try to Restore Session" msgstr "" -#: app/preferences_dialog.c:2153 +#: app/preferences_dialog.c:2228 #, fuzzy msgid "Devices" msgstr "Poziomy" -#: app/preferences_dialog.c:2162 +#: app/preferences_dialog.c:2237 msgid "Save Device Status on Exit" msgstr "" -#: app/preferences_dialog.c:2173 +#: app/preferences_dialog.c:2248 #, fuzzy msgid "Monitor Information" msgstr "Przycinanie" -#: app/preferences_dialog.c:2175 +#: app/preferences_dialog.c:2250 msgid "Monitor" msgstr "" -#: app/preferences_dialog.c:2182 +#: app/preferences_dialog.c:2257 #, fuzzy msgid "Get Monitor Resolution" msgstr "Rozdzielczo╤Ф" -#: app/preferences_dialog.c:2197 +#: app/preferences_dialog.c:2272 #, c-format msgid "(Currently %d x %d dpi)" msgstr "" -#: app/preferences_dialog.c:2244 +#: app/preferences_dialog.c:2319 msgid "From X Server" msgstr "" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2334 msgid "Manually:" msgstr "" -#: app/preferences_dialog.c:2272 +#: app/preferences_dialog.c:2347 msgid "Directories Settings" msgstr "" -#: app/preferences_dialog.c:2274 +#: app/preferences_dialog.c:2349 msgid "Directories" msgstr "" -#: app/preferences_dialog.c:2287 +#: app/preferences_dialog.c:2362 msgid "Temp Dir:" msgstr "" -#: app/preferences_dialog.c:2287 +#: app/preferences_dialog.c:2362 msgid "Select Temp Dir" msgstr "" -#: app/preferences_dialog.c:2288 +#: app/preferences_dialog.c:2363 msgid "Swap Dir:" msgstr "" -#: app/preferences_dialog.c:2288 +#: app/preferences_dialog.c:2363 #, fuzzy msgid "Select Swap Dir" msgstr "/Zaznacz/Wyostrz" -#: app/preferences_dialog.c:2320 +#: app/preferences_dialog.c:2395 #, fuzzy msgid "Brushes Directories" msgstr "Edytor PЙdzli" -#: app/preferences_dialog.c:2320 +#: app/preferences_dialog.c:2395 #, fuzzy msgid "Select Brushes Dir" msgstr "/Zaznacz/Brzeg" -#: app/preferences_dialog.c:2322 +#: app/preferences_dialog.c:2397 #, fuzzy msgid "Patterns Directories" msgstr "Zaokr╠glij zaznaczenie" -#: app/preferences_dialog.c:2322 +#: app/preferences_dialog.c:2397 msgid "Select Patterns Dir" msgstr "" -#: app/preferences_dialog.c:2324 +#: app/preferences_dialog.c:2399 #, fuzzy msgid "Palettes Directories" msgstr "Zaokr╠glij zaznaczenie" -#: app/preferences_dialog.c:2324 +#: app/preferences_dialog.c:2399 msgid "Select Palettes Dir" msgstr "" -#: app/preferences_dialog.c:2326 +#: app/preferences_dialog.c:2401 #, fuzzy msgid "Gradients Directories" msgstr "Edytor gradientСw" -#: app/preferences_dialog.c:2326 +#: app/preferences_dialog.c:2401 #, fuzzy msgid "Select Gradients Dir" msgstr "Zachowaj gradient" -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 msgid "Plug-Ins" msgstr "" -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 msgid "Plug-Ins Directories" msgstr "" -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 msgid "Select Plug-Ins Dir" msgstr "" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 #, fuzzy msgid "Modules" msgstr "Tryb:" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 msgid "Modules Directories" msgstr "" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 #, fuzzy msgid "Select Modules Dir" msgstr "Tryb zaznaczania" @@ -4933,27 +4987,31 @@ msgid "" "Argument %d to '%s' should be a %s, but got passed a %s" msgstr "" -#: app/rect_select.c:179 +#: app/rect_select.c:180 msgid "Selection: ADD" msgstr "" -#: app/rect_select.c:182 +#: app/rect_select.c:183 msgid "Selection: SUBTRACT" msgstr "" -#: app/rect_select.c:185 +#: app/rect_select.c:186 msgid "Selection: INTERSECT" msgstr "" -#: app/rect_select.c:188 +#: app/rect_select.c:189 msgid "Selection: REPLACE" msgstr "" -#: app/rect_select.c:404 app/rect_select.c:411 +#: app/rect_select.c:405 app/rect_select.c:412 #, fuzzy msgid "Selection: " msgstr "Zaznaczenie" +#: app/resize.c:159 +msgid "Scale Layer" +msgstr "" + #: app/resize.c:160 app/resize.c:181 msgid "Size" msgstr "" @@ -4967,6 +5025,10 @@ msgstr "Skaluj obrazek" msgid "Pixel Dimensions" msgstr "Rozszerzenia" +#: app/resize.c:174 +msgid "Resize Layer" +msgstr "" + #: app/resize.c:178 msgid "Image Resize" msgstr "Wielko╤Ф obrazka" @@ -5001,11 +5063,11 @@ msgstr "" msgid "Rotation Information" msgstr "" -#: app/rotate_tool.c:105 +#: app/rotate_tool.c:106 msgid "Center X:" msgstr "" -#: app/rotate_tool.c:400 +#: app/rotate_tool.c:401 #, fuzzy msgid "Rotating..." msgstr "ObrСt" @@ -5053,66 +5115,66 @@ msgstr "" msgid "Shearing..." msgstr "Przycinanie" -#: app/text_tool.c:158 +#: app/text_tool.c:157 #, fuzzy msgid "Text Tool Options" msgstr "Opcje narzЙdzi" -#: app/text_tool.c:169 +#: app/text_tool.c:168 app/tool_options.c:317 msgid "Antialiasing" msgstr "" -#: app/text_tool.c:183 +#: app/text_tool.c:182 #, fuzzy msgid "Border:" msgstr "Tryb:" -#: app/text_tool.c:209 +#: app/text_tool.c:208 msgid "Use Dynamic Text" msgstr "" -#: app/text_tool.c:285 +#: app/text_tool.c:278 msgid "text_call_gdyntext: gDynText procedure lookup failed" msgstr "" #. Create the shell -#: app/text_tool.c:408 app/text_tool.c:410 +#: app/text_tool.c:399 app/text_tool.c:401 msgid "Text Tool" msgstr "" -#: app/text_tool.c:617 +#: app/text_tool.c:609 #, c-format msgid "Font '%s' not found.%s" msgstr "" -#: app/text_tool.c:619 +#: app/text_tool.c:611 msgid "" "\n" "If you don't have scalable fonts, try turning off antialiasing in the tool " "options." msgstr "" -#: app/text_tool.c:730 +#: app/text_tool.c:722 msgid "Text Layer" msgstr "" -#: app/text_tool.c:773 +#: app/text_tool.c:765 msgid "text_render: could not allocate image" msgstr "" -#: app/threshold.c:234 +#: app/threshold.c:189 msgid "Threshold Options" msgstr "" -#: app/threshold.c:283 +#: app/threshold.c:232 msgid "Threshold does not operate on indexed drawables." msgstr "" -#: app/threshold.c:341 app/tools.c:536 +#: app/threshold.c:291 app/tools.c:562 msgid "Threshold" msgstr "PrСg" -#: app/threshold.c:356 +#: app/threshold.c:306 msgid "Threshold Range: " msgstr "" @@ -5120,21 +5182,21 @@ msgstr "" msgid "starting tile preswapper\n" msgstr "" -#: app/tile_swap.c:379 +#: app/tile_swap.c:381 msgid "unable to open swap file...BAD THINGS WILL HAPPEN SOON" msgstr "" -#: app/tile_swap.c:499 app/tile_swap.c:560 +#: app/tile_swap.c:501 app/tile_swap.c:562 #, c-format msgid "unable to seek to tile location on disk: %d" msgstr "" -#: app/tile_swap.c:518 +#: app/tile_swap.c:520 #, c-format msgid "unable to read tile data from disk: %d/%d ( %d ) bytes read" msgstr "" -#: app/tile_swap.c:573 +#: app/tile_swap.c:575 #, c-format msgid "unable to write tile data to disk: %d ( %d ) bytes written" msgstr "" @@ -5166,314 +5228,435 @@ msgid "" "GIMP data directory. Please check your installation." msgstr "" -#: app/tools.c:85 +#: app/tools.c:81 msgid "Rect Select" msgstr "Zaznaczenie prostok╠tne" -#: app/tools.c:87 +#: app/tools.c:83 msgid "/Tools/Rect Select" msgstr "/NarzЙdzia/Zaznacz prostok╠tnie" -#: app/tools.c:90 +#: app/tools.c:86 msgid "Select rectangular regions" msgstr "Zaznacz prostok╠tny obszar" -#: app/tools.c:100 +#: app/tools.c:96 msgid "Ellipse Select" msgstr "Zaznaczenie elips╠" -#: app/tools.c:102 +#: app/tools.c:98 msgid "/Tools/Ellipse Select" msgstr "/NarzЙdzia/Zaznacz elips╠" -#: app/tools.c:105 +#: app/tools.c:101 msgid "Select elliptical regions" msgstr "Zaznacz eliptyczny obszar" -#: app/tools.c:115 +#: app/tools.c:111 msgid "Free Select" msgstr "Zaznaczenie z rЙki" -#: app/tools.c:117 +#: app/tools.c:113 msgid "/Tools/Free Select" msgstr "/NarzЙdzia/Zaznacz z rЙki" -#: app/tools.c:120 +#: app/tools.c:116 msgid "Select hand-drawn regions" msgstr "Zaznaczenie wybrane z rЙki" -#: app/tools.c:130 +#: app/tools.c:126 msgid "Fuzzy Select" msgstr "" -#: app/tools.c:132 +#: app/tools.c:128 msgid "/Tools/Fuzzy Select" msgstr "/NarzЙdzia/Fuzzy Select" -#: app/tools.c:135 +#: app/tools.c:131 msgid "Select contiguous regions" msgstr "" -#: app/tools.c:145 +#: app/tools.c:141 msgid "Bezier Select" msgstr "Zaznaczenie krzyw╠ bezier" -#: app/tools.c:147 +#: app/tools.c:143 msgid "/Tools/Bezier Select" msgstr "/NarzЙdzia/Zaznacz bezier" -#: app/tools.c:150 +#: app/tools.c:146 msgid "Select regions using Bezier curves" msgstr "Zaznaczenie krzywymi bezier" -#: app/tools.c:160 +#: app/tools.c:156 msgid "Intelligent Scissors" msgstr "Inteligentne no©yce" -#: app/tools.c:162 +#: app/tools.c:158 msgid "/Tools/Intelligent Scissors" msgstr "/NarzЙdzia/Inteligentne no©yce" -#: app/tools.c:165 +#: app/tools.c:161 msgid "Select shapes from image" msgstr "Wyszukaj ksztaЁty na obrazku" -#: app/tools.c:175 +#: app/tools.c:171 msgid "Move" msgstr "PrzesuЯ" -#: app/tools.c:177 +#: app/tools.c:173 msgid "/Tools/Move" msgstr "/NarzЙdzia/PrzesuЯ" -#: app/tools.c:180 +#: app/tools.c:176 msgid "Move layers & selections" msgstr "PrzesuЯ warstwy i zaznaczenia" -#: app/tools.c:190 +#: app/tools.c:186 msgid "Magnify" msgstr "PowiЙksz" -#: app/tools.c:192 +#: app/tools.c:188 msgid "/Tools/Magnify" msgstr "/NarzЙdzia/PowiЙksz" -#: app/tools.c:195 +#: app/tools.c:191 msgid "Zoom in & out" msgstr "ZwiЙksz lub zmniejsz" -#: app/tools.c:205 +#: app/tools.c:201 msgid "Crop & Resize" msgstr "" -#: app/tools.c:207 +#: app/tools.c:203 #, fuzzy msgid "/Tools/Crop & Resize" msgstr "/NarzЙdzia/Przytnij" -#: app/tools.c:210 +#: app/tools.c:206 #, fuzzy msgid "Crop or resize the image" msgstr "Przytnij obrazek" #. the first radio frame and box, for transform type -#: app/tools.c:220 app/tools.c:235 app/tools.c:250 app/tools.c:265 +#: app/tools.c:216 app/tools.c:231 app/tools.c:246 app/tools.c:261 #: app/transform_core.c:125 app/transform_tool.c:224 msgid "Transform" msgstr "PrzeksztaЁФ" -#: app/tools.c:222 +#: app/tools.c:218 msgid "/Tools/Transform" msgstr "/NarzЙdzia/PrzeksztaЁФ" -#: app/tools.c:225 +#: app/tools.c:221 msgid "Transform the layer or selection" msgstr "PrzeksztaЁФ warstwЙ lub zaznaczenie" -#: app/tools.c:280 +#: app/tools.c:276 msgid "Flip" msgstr "Odbij" -#: app/tools.c:282 +#: app/tools.c:278 msgid "/Tools/Flip" msgstr "/NarzЙdzia/Odbij" -#: app/tools.c:285 +#: app/tools.c:281 msgid "Flip the layer or selection" msgstr "Odbij warstwЙ lub zaznaczenie" -#: app/tools.c:295 +#: app/tools.c:291 msgid "Text" msgstr "Tekst" -#: app/tools.c:297 +#: app/tools.c:293 msgid "/Tools/Text" msgstr "/NarzЙdzia/Tekst" -#: app/tools.c:300 +#: app/tools.c:296 msgid "Add text to the image" msgstr "Dodaj teksts do obrazka" -#: app/tools.c:312 +#: app/tools.c:308 msgid "/Tools/Color Picker" msgstr "/NarzЙdzia/Kroplomierz" -#: app/tools.c:315 +#: app/tools.c:311 msgid "Pick colors from the image" msgstr "Pobierz kolor z obrazka" -#: app/tools.c:325 +#: app/tools.c:321 msgid "Bucket Fill" msgstr "WypeЁnij kubeЁkiem" -#: app/tools.c:327 +#: app/tools.c:323 msgid "/Tools/Bucket Fill" msgstr "/NarzЙdzia/WypeЁnij kubeЁkiem" -#: app/tools.c:330 +#: app/tools.c:326 msgid "Fill with a color or pattern" msgstr "WypeЁnij kolorem lub szablonem" -#: app/tools.c:340 +#: app/tools.c:336 msgid "Blend" msgstr "Gradient" -#: app/tools.c:342 +#: app/tools.c:338 msgid "/Tools/Blend" msgstr "/NarzЙdzia/Gradient" -#: app/tools.c:345 +#: app/tools.c:341 msgid "Fill with a color gradient" msgstr "WypeЁnij gradientem koloru" -#: app/tools.c:355 +#: app/tools.c:351 msgid "Pencil" msgstr "OЁСwek" -#: app/tools.c:357 +#: app/tools.c:353 msgid "/Tools/Pencil" msgstr "/NarzЙdzia/OЁСwek" -#: app/tools.c:360 +#: app/tools.c:356 msgid "Draw sharp pencil strokes" msgstr "Rysuje ostre poci╠gniЙcia oЁСwka" -#: app/tools.c:370 +#: app/tools.c:366 msgid "Paintbrush" msgstr "Malowanie" -#: app/tools.c:372 +#: app/tools.c:368 msgid "/Tools/Paintbrush" msgstr "/NarzЙdzia/Malowanie" -#: app/tools.c:375 +#: app/tools.c:371 msgid "Paint fuzzy brush strokes" msgstr "Maluj rozmytymi poci╠gniЙciami" -#: app/tools.c:385 +#: app/tools.c:381 msgid "Eraser" msgstr "Gumka" -#: app/tools.c:387 +#: app/tools.c:383 msgid "/Tools/Eraser" msgstr "/NarzЙdzia/Gumka" -#: app/tools.c:390 +#: app/tools.c:386 msgid "Erase to background or transparency" msgstr "Wycieraj do tЁa lub przezroczysto╤ci" -#: app/tools.c:400 +#: app/tools.c:396 msgid "Airbrush" msgstr "Aerograf" -#: app/tools.c:402 +#: app/tools.c:398 msgid "/Tools/Airbrush" msgstr "/NarzЙdzia/Aerograf" -#: app/tools.c:405 +#: app/tools.c:401 msgid "Airbrush with variable pressure" msgstr "Aerograf ze zmiennym ci╤nieniem" -#: app/tools.c:415 +#: app/tools.c:411 msgid "Clone" msgstr "Klonuj" -#: app/tools.c:417 +#: app/tools.c:413 msgid "/Tools/Clone" msgstr "/NarzЙdzia/Klonuj" -#: app/tools.c:420 +#: app/tools.c:416 msgid "Paint using patterns or image regions" msgstr "Maluj u©ywaj╠c szablonСw lub fragmentСw obrazka" -#: app/tools.c:430 +#: app/tools.c:426 msgid "Convolve" msgstr "" -#: app/tools.c:432 +#: app/tools.c:428 msgid "/Tools/Convolve" msgstr "/NarzЙdzia/Convolve" -#: app/tools.c:435 +#: app/tools.c:431 msgid "Blur or sharpen" msgstr "Rozmuj lub wyostrz" -#: app/tools.c:445 +#: app/tools.c:441 msgid "Ink" msgstr "Tusz" -#: app/tools.c:447 +#: app/tools.c:443 msgid "/Tools/Ink" msgstr "/NarzЙdzia/Tusz" -#: app/tools.c:450 +#: app/tools.c:446 msgid "Draw in ink" msgstr "Rysuj tuszem" -#: app/tools.c:461 +#: app/tools.c:456 app/tools.c:461 +msgid "Dodge or Burn" +msgstr "" + +#: app/tools.c:458 +#, fuzzy +msgid "/Tools/DodgeBurn" +msgstr "/NarzЙdzia/PrzesuЯ" + +#: app/tools.c:471 app/tools.c:476 +msgid "Smudge" +msgstr "" + +#: app/tools.c:473 +#, fuzzy +msgid "/Tools/Smudge" +msgstr "/NarzЙdzia/PrzesuЯ" + +#: app/tools.c:487 msgid "By Color Select" msgstr "Zaznacz po kolorze" -#: app/tools.c:463 +#: app/tools.c:489 msgid "/Select/By Color..." msgstr "/Zaznacz/Po kolorze..." -#: app/tools.c:478 +#: app/tools.c:504 msgid "/Image/Colors/Color Balance" msgstr "/Obrazek/Kolory/Balans kolorСw" -#: app/tools.c:493 +#: app/tools.c:519 msgid "/Image/Colors/Brightness-Contrast" msgstr "/Obrazek/Kolory/Jasno╤Ф-kontrast" -#: app/tools.c:508 +#: app/tools.c:534 msgid "/Image/Colors/Hue-Saturation" msgstr "/Obrazek/Kolory/OdcieЯ-nasycenie" -#: app/tools.c:523 +#: app/tools.c:549 msgid "/Image/Colors/Posterize" msgstr "/Obrazek/Kolory/Izochelia" -#: app/tools.c:538 +#: app/tools.c:564 msgid "/Image/Colors/Threshold" msgstr "/Obrazek/Kolory/PrСg" -#: app/tools.c:553 +#: app/tools.c:579 msgid "/Image/Colors/Curves" msgstr "/Obrazek/Kolory/Krzywe" -#: app/tools.c:568 +#: app/tools.c:594 msgid "/Image/Colors/Levels" msgstr "/Obrazek/Kolory/Poziomy" -#: app/tools.c:581 -msgid "Histogram" -msgstr "Histogram" - -#: app/tools.c:583 +#: app/tools.c:609 msgid "/Image/Histogram" msgstr "/Obrazek/Kolory/Histogram" +#: app/tool_options.c:206 app/tool_options.c:688 +msgid "This tool has no options." +msgstr "To narzЙdzie nie ma opcji." + +#: app/tool_options.c:230 +#, fuzzy +msgid "Rectangular Select Options" +msgstr "Zaznacz prostok╠tny obszar" + +#: app/tool_options.c:232 +msgid "Elliptical Selection Options" +msgstr "" + +#: app/tool_options.c:234 +#, fuzzy +msgid "Free-hand Selection Options" +msgstr "OdcieЯ-nasycenie" + +#: app/tool_options.c:236 +#, fuzzy +msgid "Fuzzy Selection Options" +msgstr "OdcieЯ-nasycenie" + +#: app/tool_options.c:238 +#, fuzzy +msgid "Bezier Selection Options" +msgstr "Zaznaczenie krzyw╠ bezier" + +#: app/tool_options.c:240 +#, fuzzy +msgid "Intelligent Scissors Options" +msgstr "Inteligentne no©yce" + +#: app/tool_options.c:242 +#, fuzzy +msgid "By-Color Select Options" +msgstr "Przez wybСr barwy" + +#: app/tool_options.c:243 +msgid "ERROR: Unknown Selection Type" +msgstr "" + +#: app/tool_options.c:273 +#, fuzzy +msgid "Feather" +msgstr "Zaznacz/Rozmyj" + +#: app/tool_options.c:381 +msgid "Fixed size / aspect ratio" +msgstr "" + +#: app/tool_options.c:552 +msgid "Bucket Fill Options" +msgstr "Opcje wypeЁnienia KubeЁkiem" + +#: app/tool_options.c:554 +#, fuzzy +msgid "Blend Options" +msgstr "Opcje wczytywania" + +#: app/tool_options.c:556 +#, fuzzy +msgid "Pencil Options" +msgstr "Opcje wczytywania" + +#: app/tool_options.c:558 +#, fuzzy +msgid "Paintbrush Options" +msgstr "Opcje aerografu" + +#: app/tool_options.c:560 +#, fuzzy +msgid "Erazer Options" +msgstr "Opcje gumki" + +#: app/tool_options.c:562 +msgid "Airbrush Options" +msgstr "Opcje aerografu" + +#: app/tool_options.c:564 +msgid "Clone Tool Options" +msgstr "Opcje narzЙdzia klonowania" + +#: app/tool_options.c:566 +#, fuzzy +msgid "Convolver Options" +msgstr "Opcje narzЙdzi" + +#: app/tool_options.c:568 +#, fuzzy +msgid "Ink Options" +msgstr "Opcje wczytywania" + +#: app/tool_options.c:570 +#, fuzzy +msgid "Dodge or Burn Options" +msgstr "Opcje balansu kolorСw" + +#: app/tool_options.c:572 +#, fuzzy +msgid "Smudge Options" +msgstr "Opcje zachowywania" + +#: app/tool_options.c:573 +msgid "ERROR: Unknown Paint Type" +msgstr "" + #: app/transform_core.c:122 msgid "Rotate" msgstr "" @@ -5492,24 +5675,24 @@ msgid "" "layers that contain layer masks." msgstr "" -#: app/transform_core.c:1132 +#: app/transform_core.c:1140 msgid "homogeneous coordinate = 0...\n" msgstr "" -#: app/transform_core.c:1387 +#: app/transform_core.c:1395 #, fuzzy msgid "Transformation" msgstr "PrzeksztaЁФ" -#: app/transform_tool.c:190 +#: app/transform_tool.c:189 msgid "Rotation" msgstr "ObrСt" -#: app/transform_tool.c:192 +#: app/transform_tool.c:191 msgid "Shearing" msgstr "Przycinanie" -#: app/transform_tool.c:193 +#: app/transform_tool.c:192 msgid "Perspective" msgstr "Korekcja perspektywy" @@ -5633,6 +5816,96 @@ msgstr "XCF: uh oh! b msgid "unable to read tile data from xcf file: %d ( %d ) bytes read" msgstr "bЁ╠d czytania danych kafelka z fliku xcf: %d ( %d ) bajtСw przeczytano" +#. pseudo unit +#: libgimp/gimpunit.c:44 +#, fuzzy +msgid "pixel" +msgstr "Piksele" + +#: libgimp/gimpunit.c:44 +#, fuzzy +msgid "pixels" +msgstr "Piksele" + +#. standard units +#: libgimp/gimpunit.c:47 +msgid "inch" +msgstr "cal" + +#: libgimp/gimpunit.c:47 +msgid "inches" +msgstr "cali" + +#: libgimp/gimpunit.c:48 +msgid "millimeter" +msgstr "" + +#: libgimp/gimpunit.c:48 +#, fuzzy +msgid "millimeters" +msgstr "/Filtry/" + +#. professional units +#: libgimp/gimpunit.c:51 +msgid "point" +msgstr "" + +#: libgimp/gimpunit.c:51 +msgid "points" +msgstr "" + +#: libgimp/gimpunit.c:52 +msgid "pica" +msgstr "" + +#: libgimp/gimpunit.c:52 +msgid "picas" +msgstr "" + +#: libgimp/gimpunit.c:59 +#, fuzzy +msgid "percent" +msgstr "Korekcja perspektywy" + +#: libgimp/gimpfileselection.c:352 +#, fuzzy +msgid "Select File" +msgstr "Zaznaczenie" + +#: libgimp/gimpfileselection.c:355 libgimp/gimpunitmenu.c:510 +#, fuzzy +msgid "Select" +msgstr "/Zaznacz/Wszystko" + +#: libgimp/gimpenv.c:82 +msgid "warning: no home directory." +msgstr "" + +#: libgimp/gimpunitmenu.c:207 +msgid "More..." +msgstr "" + +#: libgimp/gimpunitmenu.c:333 +msgid "unit-menu-format string ended within %%-sequence" +msgstr "" + +#: libgimp/gimpunitmenu.c:366 +msgid "unit-menu-format contains unknownformat sequence '%%%c'" +msgstr "" + +#: libgimp/gimpunitmenu.c:453 +#, fuzzy +msgid "Unit Selection" +msgstr "Zaznaczenie" + +#: libgimp/gimpunitmenu.c:479 +msgid "Unit " +msgstr "" + +#: libgimp/gimpunitmenu.c:481 +msgid "Factor" +msgstr "" + #: app/regex.c:976 msgid "Success" msgstr "Sukces" @@ -5721,6 +5994,180 @@ msgstr "Niesparowane ) lub \\)" msgid "No previous regular expression" msgstr "Brak wcze╤niejszych wyra©eЯ regularnych" +#~ msgid "/File/Quit" +#~ msgstr "/Plik/Wyj╤cie" + +#~ msgid "/File/Quit" +#~ msgstr "/Plik/Wyj╤cie" + +#, fuzzy +#~ msgid "Automatic" +#~ msgstr "/Automatycznie" + +#~ msgid "/File/Open" +#~ msgstr "/Plik/OtwСrz" + +#~ msgid "/File/Open" +#~ msgstr "/Plik/OtwСrz" + +#~ msgid "/File/Save" +#~ msgstr "/Plik/Zachowaj" + +#~ msgid "/File/Save as" +#~ msgstr "/Plik/Zachowaj jako" + +#, fuzzy +#~ msgid "/Layers/Stack/Previous Layer" +#~ msgstr "/Warstwy/Podnie╤ warstwЙ" + +#, fuzzy +#~ msgid "/Layers/Stack/Next Layer" +#~ msgstr "/Warstwy/Podnie╤ warstwЙ" + +#, fuzzy +#~ msgid "/Layers/Stack/Raise Layer" +#~ msgstr "/Warstwy/Podnie╤ warstwЙ" + +#, fuzzy +#~ msgid "/Layers/Stack/Lower Layer" +#~ msgstr "/Warstwy/Obni© warstwЙ" + +#, fuzzy +#~ msgid "/Layers/Stack/Layer to Top" +#~ msgstr "/Warstwy/Podnie╤ warstwЙ" + +#~ msgid "/Layers/Anchor Layer" +#~ msgstr "/Warstwy/Anchor Layer" + +#~ msgid "/Layers/Merge Visible Layers" +#~ msgstr "/Warstwy/PoЁ╠cz widzialne warstwy" + +#~ msgid "/Layers/Flatten Image" +#~ msgstr "/Warstwy/SpЁaszcz obrazek" + +#~ msgid "/Layers/Alpha To Selection" +#~ msgstr "/Warstwy/KanaЁ alfa na zaznaczenie" + +#~ msgid "/Layers/Mask To Selection" +#~ msgstr "/Warstwy/Maska na zaznaczenie" + +#~ msgid "/Layers/Add Alpha Channel" +#~ msgstr "/Warstwy/Dodaj kanaЁ alfa" + +#~ msgid "/Image/RGB" +#~ msgstr "/Obrazek/RGB" + +#~ msgid "/Image/Grayscale" +#~ msgstr "/Obrazek/Odcienie szaro╤ci" + +#~ msgid "/Image/Indexed" +#~ msgstr "/Obrazek/Indeksowany" + +#~ msgid "/Image/Colors/Threshold" +#~ msgstr "/Obrazek/Kolory/PrСg" + +#~ msgid "/Image/Colors/Posterize" +#~ msgstr "/Obrazek/Kolory/Posterize" + +#~ msgid "/Image/Colors/Equalize" +#~ msgstr "/Obrazek/Kolory/Equalize" + +#~ msgid "/Image/Colors/Invert" +#~ msgstr "/Obrazek/Kolory/Negatyw" + +#~ msgid "/Image/Colors/Color Balance" +#~ msgstr "/Obrazek/Kolory/Balans kolorСw" + +#~ msgid "/Image/Colors/Brightness-Contrast" +#~ msgstr "/Obrazek/Kolory/Jasno╤Ф-kontrast" + +#~ msgid "/Image/Colors/Hue-Saturation" +#~ msgstr "/Obrazek/Kolory/OdcieЯ-nasycenie" + +#~ msgid "/Image/Colors/Curves" +#~ msgstr "/Obrazek/Kolory/Krzywe" + +#~ msgid "/Image/Colors/Levels" +#~ msgstr "/Obrazek/Kolory/Levels" + +#~ msgid "/Image/Colors/Desaturate" +#~ msgstr "/Obrazek/Kolory/Desaturate" + +#~ msgid "/Image/Alpha/Add Alpha Channel" +#~ msgstr "/Obrazek/Alfa/Dodaj kanaЁ alfa" + +#~ msgid "/Select" +#~ msgstr "Obrazek>/Zaznacz" + +#~ msgid "/Edit/Cut" +#~ msgstr "/Edycja/Wytnij" + +#~ msgid "/Edit/Copy" +#~ msgstr "/Edycja/Kopiuj" + +#~ msgid "/Edit/Paste" +#~ msgstr "/Edycja/Wklej" + +#~ msgid "/Edit/Paste Into" +#~ msgstr "/Edycja/Wklej w" + +#~ msgid "/Edit/Fill" +#~ msgstr "/Edycja/WypeЁnij" + +#~ msgid "/Edit/Stroke" +#~ msgstr "/Edycja/Stroke" + +#~ msgid "/Edit/Cut Named" +#~ msgstr "/Edycja/Wytnij nazwany" + +#~ msgid "/Edit/Copy Named" +#~ msgstr "/Edycja/Kopiuj nazwany" + +#~ msgid "/Edit/Paste Named" +#~ msgstr "/Edycja/Wklej nazwany" + +#~ msgid "/Image/Colors" +#~ msgstr "/Obrazek/Kolory" + +#~ msgid "/Image/Channel Ops/Offset" +#~ msgstr "/Obrazek/KanaЁy/PrzesuniЙcie" + +#~ msgid "/Image/Histogram" +#~ msgstr "/Obrazek/Histogram" + +#~ msgid "/Filters" +#~ msgstr "/Filtry" + +#~ msgid "/Select/Save To Channel" +#~ msgstr "/Zaznacz/Zachowaj do kanaЁu" + +#~ msgid "/View/Toggle Rulers" +#~ msgstr "/Widok/Linijki" + +#~ msgid "/View/Toggle Guides" +#~ msgstr "/Widok/Prowadnice" + +#~ msgid "/View/Snap To Guides" +#~ msgstr "/Widok/Przyci╠gaj do prowadnic" + +#~ msgid "/View/Toggle Statusbar" +#~ msgstr "/Widok/Pasek stanu" + +#~ msgid "/File/Close" +#~ msgstr "/Plik/Zamknij" + +#, fuzzy +#~ msgid "Replace Current Selection" +#~ msgstr "Zaokr╠glij zaznaczenie" + +#, fuzzy +#~ msgid "/Select/Toggle" +#~ msgstr "/Zaznacz/PrzeЁ╠cz" + +#, fuzzy +#~ msgid "Gradient Type" +#~ msgstr "Gradient" + #~ msgid "brightness_contrast_preview(): No image map" #~ msgstr "brightness_contrast_preview(): Brak mapy obrazka" @@ -5787,44 +6234,25 @@ msgstr "Brak wcze #~ msgid "Print Size" #~ msgstr "Podgl╠d" -#~ msgid "Airbrush Options" -#~ msgstr "Opcje aerografu" - -#~ msgid "Bucket Fill Options" -#~ msgstr "Opcje wypeЁnienia KubeЁkiem" - #~ msgid "Mode: " #~ msgstr "Tryb: " #~ msgid "Fill Type: " #~ msgstr "Typ wypeЁnienia: " -#~ msgid "Clone Tool Options" -#~ msgstr "Opcje narzЙdzia klonowania" - #~ msgid "Index" #~ msgstr "Indeks" #~ msgid "Intensity" #~ msgstr "Intensywno╤Ф" -#~ msgid "Selection" -#~ msgstr "Zaznaczenie" - #~ msgid "Y Origin: " #~ msgstr "pocz╠tkowy Y: " -#~ msgid "Eraser Options" -#~ msgstr "Opcje gumki" - #, fuzzy #~ msgid "pixels per " #~ msgstr " pikseli na " -#, fuzzy -#~ msgid "Ink Options" -#~ msgstr "Opcje wczytywania" - #, fuzzy #~ msgid "Image procedures" #~ msgstr "╛rСdЁo obrazka" @@ -5845,10 +6273,6 @@ msgstr "Brak wcze #~ msgid "/_Edit" #~ msgstr "Edycja" -#, fuzzy -#~ msgid "/_Select" -#~ msgstr "/Zaznacz/Wszystko" - #, fuzzy #~ msgid "/_View" #~ msgstr "/Widok/---" @@ -5865,26 +6289,14 @@ msgstr "Brak wcze #~ msgid "/Image/C_hannel Ops" #~ msgstr "/Obrazek/Opcje kanaЁСw/Offset" -#, fuzzy -#~ msgid "/Image/_Alpha" -#~ msgstr "/Obrazek/Skaluj" - #, fuzzy #~ msgid "/_Tools" #~ msgstr "/NarzЙdzia/---" -#, fuzzy -#~ msgid "/Filte_rs" -#~ msgstr "/Filtry/" - #, fuzzy #~ msgid "Gradient Length" #~ msgstr "Gradient" -#, fuzzy -#~ msgid "Pencil Options" -#~ msgstr "Opcje wczytywania" - #, fuzzy #~ msgid "Posterize Options" #~ msgstr "Opcje gumki" @@ -5892,9 +6304,6 @@ msgstr "Brak wcze #~ msgid "Angle: " #~ msgstr "K╠t: " -#~ msgid "This tool has no options." -#~ msgstr "To narzЙdzie nie ma opcji." - #~ msgid "reading %s\n" #~ msgstr "czytanie %s\n" @@ -5916,9 +6325,6 @@ msgstr "Brak wcze #~ msgid "Remove Point" #~ msgstr "UsuЯ punkt" -#~ msgid "Load" -#~ msgstr "Wczytaj" - #~ msgid "Paste Bezier Named Buffer" #~ msgstr "Wklej nazwany bufor Bezier" @@ -5931,15 +6337,9 @@ msgstr "Brak wcze #~ msgid "Move: %d, %d" #~ msgstr "PrzesuЯ: %d, %d" -#~ msgid "inches" -#~ msgstr "cali" - #~ msgid "cm" #~ msgstr "cm" -#~ msgid "inch" -#~ msgstr "cal" - #~ msgid "No home directory--skipping GIMP user installation." #~ msgstr "Brak katalogu domowego--pomijam instalacjЙ u©ytkownika." diff --git a/po/ru.po b/po/ru.po index b16b5075ea..c6b4200da3 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Gimp-1.1.2\n" -"POT-Creation-Date: 1999-06-05 15:50-0700\n" +"POT-Creation-Date: 1999-07-17 11:23-0700\n" "PO-Revision-Date: 1999-04-01 21:24:18+0200\n" "Last-Translator: Valek Filippov \n" "Language-Team: Russian \n" @@ -15,27 +15,27 @@ msgstr "" "Content-Type: text/plain; charset=koi8-r\n" "Content-Transfer-Encoding: 8-bit\n" -#: app/about_dialog.c:153 +#: app/about_dialog.c:156 msgid "About the GIMP" msgstr "О программе GIMP" -#: app/about_dialog.c:196 +#: app/about_dialog.c:199 msgid "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-*-*" msgstr "" -#: app/about_dialog.c:199 +#: app/about_dialog.c:202 msgid "Version " msgstr "Версия " -#: app/about_dialog.c:200 +#: app/about_dialog.c:203 msgid " brought to you by" msgstr " создано для Вас" -#: app/about_dialog.c:206 +#: app/about_dialog.c:209 msgid "Spencer Kimball & Peter Mattis" msgstr "Spencer Kimball & Peter Mattis" -#: app/about_dialog.c:239 +#: app/about_dialog.c:242 msgid "Please visit http://www.gimp.org/ for more info" msgstr " Посетите http://www.gimp.org/ " @@ -54,353 +54,357 @@ msgstr " msgid "killing stray timer, please report to lewing@gimp.org" msgstr "killing stray timer, сообщите пожалуйста lewing@gimp.org" -#: app/app_procs.c:355 +#: app/app_procs.c:358 msgid "GIMP Startup" msgstr "Запуск GIMP" -#: app/app_procs.c:468 app/gimprc.c:389 +#: app/app_procs.c:471 app/gimprc.c:394 #, c-format msgid "parsing \"%s\"\n" msgstr "синтаксический анализ \"%s\"\n" #. initialize the xcf file format routines -#: app/app_procs.c:524 +#: app/app_procs.c:526 msgid "Looking for data files" msgstr "Поиск файлов данных" -#: app/app_procs.c:524 +#: app/app_procs.c:526 #, fuzzy msgid "Parasites" msgstr "Вставить" #. initialize the global parasite table -#: app/app_procs.c:526 app/internal_procs.c:70 app/preferences_dialog.c:2320 +#: app/app_procs.c:528 app/internal_procs.c:70 app/preferences_dialog.c:2395 msgid "Brushes" msgstr "Кисти" #. initialize the list of gimp brushes -#: app/app_procs.c:528 app/internal_procs.c:139 app/preferences_dialog.c:2322 +#: app/app_procs.c:530 app/internal_procs.c:139 app/preferences_dialog.c:2397 msgid "Patterns" msgstr "Шаблоны" #. initialize the list of gimp patterns -#: app/app_procs.c:530 app/preferences_dialog.c:2324 +#: app/app_procs.c:532 app/preferences_dialog.c:2399 msgid "Palettes" msgstr "Палитры" #. initialize the list of gimp palettes -#: app/app_procs.c:532 app/gradient_select.c:557 app/internal_procs.c:109 -#: app/preferences_dialog.c:2326 +#: app/app_procs.c:534 app/gradient_select.c:557 app/internal_procs.c:109 +#: app/preferences_dialog.c:2401 msgid "Gradients" msgstr "Градиенты" -#: app/app_procs.c:696 app/app_procs.c:717 -msgid "/File/Quit" -msgstr "/Файл/Выход" +#: app/app_procs.c:702 app/app_procs.c:703 app/app_procs.c:728 +#: app/app_procs.c:729 app/menus.c:83 app/menus.c:98 +#, fuzzy +msgid "/File/Quit" +msgstr "/Файл/Выход" -#: app/app_procs.c:697 app/app_procs.c:718 -msgid "/File/Quit" -msgstr "/Файл/Выход" - -#: app/app_procs.c:722 +#: app/app_procs.c:733 msgid "Really Quit?" msgstr "Хотите выйти?" -#: app/app_procs.c:730 app/fileops.c:1420 +#: app/app_procs.c:741 app/fileops.c:1576 msgid "Yes" msgstr "Да" -#: app/app_procs.c:739 app/fileops.c:1421 +#: app/app_procs.c:750 app/fileops.c:1577 msgid "No" msgstr "Нет" -#: app/app_procs.c:747 -msgid "Some files unsaved. Quit the GIMP?" +#: app/app_procs.c:776 +#, fuzzy +msgid "" +"Some files unsaved.\n" +"\n" +"Quit the GIMP?" msgstr "Некоторые файлы не сохранены. Выйти из GIMPа?" -#: app/batch.c:69 +#: app/batch.c:65 msgid "script-fu not available: batch mode disabled\n" msgstr "script-fu не доступен: пакетный режим отключён\n" -#: app/batch.c:78 +#: app/batch.c:74 msgid "reading batch commands from stdin\n" msgstr "чтение пакетных команд из stdin\n" -#: app/batch.c:118 +#: app/batch.c:114 msgid "batch command: experienced an execution error.\n" msgstr "пакетная команда: experienced ошибка исполнения.\n" -#: app/batch.c:121 +#: app/batch.c:117 msgid "batch command: experienced a calling error.\n" msgstr "пакетная команда: experienced ошибка вызова.\n" -#: app/batch.c:124 +#: app/batch.c:120 msgid "batch command: executed successfully.\n" msgstr "пакетная команда: выполнено успешно.\n" -#: app/batch.c:205 +#: app/batch.c:204 msgid "extension_perl_server not available: unable to start the perl server\n" msgstr "extension_perl_server не доступен: не удалось запустить perl server\n" -#: app/batch.c:221 +#: app/batch.c:220 msgid "perl server: experienced an execution error.\n" msgstr "perl server: experienced ошибка исполнения.\n" -#: app/batch.c:224 +#: app/batch.c:223 msgid "perl server: experienced a calling error.\n" msgstr "perl server: experienced ошибка вызова.\n" -#: app/batch.c:227 +#: app/batch.c:226 msgid "perl server: executed successfully.\n" msgstr "perl server: выполнено успешно.\n" -#: app/bezier_select.c:480 +#: app/bezier_select.c:477 msgid "Bezier path already closed." msgstr "" -#: app/bezier_select.c:501 +#: app/bezier_select.c:498 #, fuzzy msgid "Corrupt curve" msgstr "Корректирующая" -#: app/bezier_select.c:1011 +#: app/bezier_select.c:1012 msgid "tried to edit on open bezier curve in edit selection" msgstr "попытка редактировать открытую кривую Безье в edit selection" -#: app/bezier_select.c:1291 +#: app/bezier_select.c:1292 msgid "Encountered orphaned bezier control point" msgstr "" -#: app/bezier_select.c:1971 app/bezier_select.c:3170 +#: app/bezier_select.c:1975 app/bezier_select.c:3176 msgid "bad bezier segment" msgstr "плохой сегмент Безье-кривой" -#: app/bezier_select.c:1988 app/bezier_select.c:2630 +#: app/bezier_select.c:1992 app/bezier_select.c:2636 #, c-format msgid "unknown coordinate space: %d" msgstr "неизвестно положение координаты: %d" -#: app/bezier_select.c:2131 +#: app/bezier_select.c:2135 msgid "tried to convert an open bezier curve" msgstr "попытка преобразовать открытую кривую Безье" -#: app/bezier_select.c:3126 +#: app/bezier_select.c:3132 msgid "Paintbrush operation failed." msgstr "Действие кисти не удалось." -#: app/blend.c:261 +#: app/blend.c:264 #, fuzzy msgid "FG to BG (RGB)" msgstr "Основной в фоновой RGB" -#: app/blend.c:263 +#: app/blend.c:266 #, fuzzy msgid "FG to BG (HSV)" msgstr "Основной в фоновой HSV" -#: app/blend.c:265 +#: app/blend.c:268 msgid "FG to Transparent" msgstr "Основной в прозрачный" -#: app/blend.c:267 +#: app/blend.c:270 msgid "Custom from editor" msgstr "Выбранная из редактора" -#: app/blend.c:273 app/gradient.c:395 +#: app/blend.c:276 app/gradient.c:395 msgid "Linear" msgstr "Линейная" -#: app/blend.c:275 +#: app/blend.c:278 msgid "Bi-Linear" msgstr "Билинейная" -#: app/blend.c:277 +#: app/blend.c:280 msgid "Radial" msgstr "Радиальная" -#: app/blend.c:279 +#: app/blend.c:282 msgid "Square" msgstr "Квадратная" -#: app/blend.c:281 +#: app/blend.c:284 msgid "Conical (symmetric)" msgstr "Коническая (симметричная)" -#: app/blend.c:283 +#: app/blend.c:286 msgid "Conical (asymmetric)" msgstr "Коническая (асимметричная)" -#: app/blend.c:285 +#: app/blend.c:288 msgid "Shapeburst (angular)" msgstr "Shapeburst (угловая)" -#: app/blend.c:287 +#: app/blend.c:290 msgid "Shapeburst (spherical)" msgstr "Shapeburst (сферическая)" -#: app/blend.c:289 +#: app/blend.c:292 msgid "Shapeburst (dimpled)" msgstr "" -#: app/blend.c:291 +#: app/blend.c:294 msgid "Spiral (clockwise)" msgstr "Спиральная (по часовой)" -#: app/blend.c:293 +#: app/blend.c:296 msgid "Spiral (anticlockwise)" msgstr "Спиральная (против часовой)" -#: app/blend.c:299 app/preferences_dialog.c:1724 +#: app/blend.c:302 app/preferences_dialog.c:1759 msgid "None" msgstr "Никакая" -#: app/blend.c:301 +#: app/blend.c:304 msgid "Sawtooth wave" msgstr "Пилообразная волна" -#: app/blend.c:303 +#: app/blend.c:306 msgid "Triangular wave" msgstr "Треугольная волна" -#: app/blend.c:331 +#: app/blend.c:334 msgid "Offset:" msgstr "Смещение:" #. the blend mode menu -#: app/blend.c:349 +#: app/blend.c:352 msgid "Blend:" msgstr "Бленда:" #. the gradient type menu -#: app/blend.c:367 +#: app/blend.c:370 msgid "Gradient:" msgstr "Градиент:" #. the repeat option -#: app/blend.c:385 +#: app/blend.c:388 msgid "Repeat:" msgstr "Повтор:" -#: app/blend.c:418 +#: app/blend.c:421 msgid "Adaptive supersampling" msgstr "" #. max depth scale -#: app/blend.c:440 +#: app/blend.c:443 msgid "Max depth:" msgstr "Макс. глубина:" #. threshold scale -#: app/blend.c:458 app/bucket_fill.c:137 app/iscissors.c:356 +#: app/blend.c:461 app/bucket_fill.c:136 app/iscissors.c:356 msgid "Threshold:" msgstr "Порог:" -#: app/blend.c:496 +#: app/blend.c:499 msgid "Blend: Invalid for indexed images." msgstr "Бленда: не годится для индексированных изображений." -#: app/blend.c:521 +#: app/blend.c:524 msgid "Blend: 0, 0" msgstr "Бленда: 0, 0" -#: app/blend.c:583 +#: app/blend.c:587 msgid "Blend operation failed." msgstr "Действие бленды не удалось" -#: app/blend.c:589 +#: app/blend.c:593 msgid "Blending..." msgstr "Затемнение..." -#: app/blend.c:639 app/blend.c:649 +#: app/blend.c:643 app/blend.c:653 msgid "Blend: " msgstr "Бленда: " -#: app/blend.c:1295 +#: app/blend.c:1307 #, c-format msgid "gradient_render_pixel(): unknown gradient type %d" msgstr "gradient_render_pixel(): неизвестный тип градиента %d" -#: app/blend.c:1430 +#: app/blend.c:1445 #, c-format msgid "gradient_fill_region(): unknown blend mode %d" msgstr "gradient_fill_region(): неизвестный режим бленды %d" -#: app/blend.c:1471 +#: app/blend.c:1486 #, c-format msgid "gradient_fill_region(): unknown gradient type %d" msgstr "gradient_fill_region(): неизвестный тип градиента %d" -#: app/blend.c:1493 +#: app/blend.c:1508 #, c-format msgid "gradient_fill_region(): unknown repeat mode %d" msgstr "gradient_fill_region(): неизвестный режим повтора %d" -#: app/brightness_contrast.c:176 +#: app/brightness_contrast.c:136 msgid "Brightness-Contrast Options" msgstr "Опции Яркости-Контрастности" -#: app/brightness_contrast.c:221 +#: app/brightness_contrast.c:172 msgid "Brightness-Contrast does not operate on indexed drawables." msgstr "Яркость-Контрастность не действует на индексированные изображения." #. Action area -#: app/brightness_contrast.c:252 app/channel_ops.c:104 -#: app/channels_dialog.c:1889 app/channels_dialog.c:2062 -#: app/color_balance.c:301 app/color_notebook.c:43 app/color_notebook.c:186 -#: app/color_select.c:154 app/color_select.c:209 app/convert.c:295 -#: app/curves.c:417 app/file_new_dialog.c:288 app/file_new_dialog.c:478 -#: app/hue_saturation.c:411 app/interface.c:877 app/interface.c:1263 -#: app/layers_dialog.c:3218 app/layers_dialog.c:3432 app/layers_dialog.c:3574 -#: app/layers_dialog.c:4049 app/levels.c:373 app/posterize.c:241 -#: app/preferences_dialog.c:1435 app/resize.c:114 app/threshold.c:318 +#: app/brightness_contrast.c:214 app/channel_ops.c:104 +#: app/channels_dialog.c:1864 app/channels_dialog.c:2049 +#: app/color_balance.c:273 app/color_notebook.c:49 app/color_notebook.c:192 +#: app/color_select.c:155 app/color_select.c:210 app/convert.c:295 +#: app/curves.c:517 app/file_new_dialog.c:292 app/file_new_dialog.c:482 +#: app/hue_saturation.c:361 app/interface.c:1009 app/interface.c:1395 +#: app/layers_dialog.c:2901 app/layers_dialog.c:3119 app/layers_dialog.c:3262 +#: app/layers_dialog.c:3738 app/levels.c:335 app/module_db.c:263 +#: app/posterize.c:199 app/preferences_dialog.c:1469 app/resize.c:114 +#: app/threshold.c:278 msgid "OK" msgstr "OK" -#: app/brightness_contrast.c:253 app/channel_ops.c:113 -#: app/channels_dialog.c:1890 app/channels_dialog.c:2063 -#: app/color_balance.c:302 app/color_notebook.c:44 app/color_notebook.c:187 -#: app/color_select.c:155 app/color_select.c:210 app/convert.c:296 -#: app/curves.c:418 app/file_new_dialog.c:290 app/file_new_dialog.c:480 -#: app/gdisplay_ops.c:353 app/gimpprogress.c:135 app/global_edit.c:593 +#: app/brightness_contrast.c:215 app/channel_ops.c:113 +#: app/channels_dialog.c:1865 app/channels_dialog.c:2050 +#: app/color_balance.c:274 app/color_notebook.c:50 app/color_notebook.c:193 +#: app/color_select.c:156 app/color_select.c:211 app/convert.c:296 +#: app/curves.c:518 app/file_new_dialog.c:294 app/file_new_dialog.c:484 +#: app/gdisplay_ops.c:349 app/gimpprogress.c:135 app/global_edit.c:705 #: app/gradient.c:1486 app/gradient.c:4566 app/gradient.c:4921 -#: app/hue_saturation.c:412 app/interface.c:788 app/interface.c:878 -#: app/layers_dialog.c:3219 app/layers_dialog.c:3433 app/layers_dialog.c:3575 -#: app/layers_dialog.c:3722 app/layers_dialog.c:4050 app/levels.c:374 -#: app/posterize.c:242 app/preferences_dialog.c:1439 app/resize.c:115 -#: app/threshold.c:319 +#: app/hue_saturation.c:362 app/interface.c:913 app/interface.c:1010 +#: app/layers_dialog.c:2902 app/layers_dialog.c:3120 app/layers_dialog.c:3263 +#: app/layers_dialog.c:3410 app/layers_dialog.c:3739 app/levels.c:336 +#: app/posterize.c:200 app/preferences_dialog.c:1473 app/resize.c:115 +#: app/threshold.c:279 msgid "Cancel" msgstr "Отмена" -#: app/brightness_contrast.c:276 app/tools.c:491 +#: app/brightness_contrast.c:226 app/tools.c:517 msgid "Brightness-Contrast" msgstr "Яркость-Контрастность" #. Create the brightness scale widget -#: app/brightness_contrast.c:292 +#: app/brightness_contrast.c:242 msgid "Brightness" msgstr "Яркость" #. Create the contrast scale widget -#: app/brightness_contrast.c:325 +#: app/brightness_contrast.c:275 msgid "Contrast" msgstr "Контрастность" #. The preview toggle -#: app/brightness_contrast.c:363 app/color_balance.c:481 app/curves.c:661 -#: app/fileops.c:395 app/hue_saturation.c:620 app/levels.c:583 -#: app/palette.c:2849 app/posterize.c:297 app/threshold.c:404 +#: app/brightness_contrast.c:313 app/color_balance.c:438 app/curves.c:651 +#: app/fileops.c:395 app/hue_saturation.c:572 app/levels.c:531 +#: app/palette.c:2849 app/posterize.c:246 app/threshold.c:354 msgid "Preview" msgstr "Просмотр" #. The close push button -#: app/brush_edit.c:38 app/brush_select.c:133 app/by_color_select.c:678 -#: app/color_notebook.c:181 app/color_picker.c:208 app/color_select.c:204 -#: app/colormap_dialog.i.c:94 app/colormap_dialog.i.c:103 app/crop.c:1011 -#: app/devices.c:124 app/docindexif.c:95 app/errorconsole.c:228 -#: app/gdisplay_ops.c:352 app/gradient.c:646 app/gradient_select.c:76 -#: app/info_window.c:121 app/layers_dialog.c:419 app/palette.c:2235 -#: app/palette_select.c:59 app/pattern_select.c:90 app/tips_dialog.c:146 -#: app/tools.c:716 +#: app/brush_edit.c:38 app/brush_select.c:135 app/by_color_select.c:664 +#: app/color_notebook.c:187 app/color_picker.c:209 app/color_select.c:205 +#: app/colormap_dialog.i.c:94 app/colormap_dialog.i.c:103 app/crop.c:1027 +#: app/devices.c:124 app/docindexif.c:100 app/errorconsole.c:230 +#: app/gdisplay_ops.c:348 app/gradient.c:646 app/gradient_select.c:76 +#: app/histogram_tool.c:262 app/info_window.c:121 app/lc_dialog.c:196 +#: app/palette.c:2235 app/palette_select.c:59 app/pattern_select.c:90 +#: app/tips_dialog.c:146 app/tools.c:874 libgimp/gimpfileselection.c:356 +#: libgimp/gimpunitmenu.c:518 msgid "Close" msgstr "Закрыть" @@ -409,7 +413,7 @@ msgid "Brush Editor" msgstr "Редактор кистей" #. brush radius scale -#: app/brush_edit.c:240 app/color_picker.c:163 +#: app/brush_edit.c:240 app/color_picker.c:164 app/tool_options.c:284 msgid "Radius:" msgstr "Радиус:" @@ -428,45 +432,46 @@ msgstr " msgid "Angle:" msgstr "Угол:" -#: app/brush_select.c:132 app/palette.c:2243 app/pattern_select.c:89 +#: app/brush_select.c:134 app/module_db.c:307 app/palette.c:2243 +#: app/pattern_select.c:89 msgid "Refresh" msgstr "Обновить" -#: app/brush_select.c:153 +#: app/brush_select.c:155 msgid "Brush Selection" msgstr "Выбор кисти" -#: app/brush_select.c:241 app/pattern_select.c:147 +#: app/brush_select.c:244 app/pattern_select.c:147 msgid "Active" msgstr "Действие" #. Create the opacity scale widget -#: app/brush_select.c:271 app/layers_dialog.c:756 +#: app/brush_select.c:274 app/layers_dialog.c:334 app/tool_options.c:593 msgid "Opacity:" msgstr "Непрозрачность:" #. Create the paint mode option menu -#: app/brush_select.c:289 app/layers_dialog.c:733 +#: app/brush_select.c:292 app/layers_dialog.c:307 app/tool_options.c:623 msgid "Mode:" msgstr "Режим:" -#: app/brush_select.c:312 +#: app/brush_select.c:315 msgid "Edit Brush" msgstr "Редактировать кисть" -#: app/brush_select.c:318 +#: app/brush_select.c:321 msgid "New Brush" msgstr "Новая кисть" -#: app/brush_select.c:340 +#: app/brush_select.c:343 msgid "Spacing:" msgstr "Интервал:" -#: app/brush_select.c:531 +#: app/brush_select.c:536 msgid "failed to run brush callback function" msgstr "не удалось запустить функцию brush callback" -#: app/brush_select.c:1187 +#: app/brush_select.c:1192 msgid "" "We are all fresh out of brush editors today,\n" "please write your own or try back tomorrow\n" @@ -474,26 +479,26 @@ msgstr "" "Каждый из нас сегодня свободен в выборе редактора кистей,\n" "пожалуйста, напишите Ваш собственный или приходите завтра\n" -#: app/bucket_fill.c:114 +#: app/bucket_fill.c:113 #, fuzzy msgid "FG Color Fill" msgstr "Заполнение цветом" -#: app/bucket_fill.c:115 +#: app/bucket_fill.c:114 #, fuzzy msgid "BG Color Fill" msgstr "Заполнение цветом" -#: app/bucket_fill.c:116 +#: app/bucket_fill.c:115 msgid "Pattern Fill" msgstr "Заполнение шаблоном" -#: app/bucket_fill.c:157 app/color_picker.c:138 +#: app/bucket_fill.c:156 app/color_picker.c:139 app/tool_options.c:358 msgid "Sample Merged" msgstr "" #. fill type -#: app/bucket_fill.c:165 app/file_new_dialog.c:838 +#: app/bucket_fill.c:164 app/file_new_dialog.c:842 msgid "Fill Type" msgstr "Тип заполнения" @@ -501,61 +506,61 @@ msgstr " msgid "Bucket Fill operation failed." msgstr "Операция заливки не удалась." -#: app/bucket_fill.c:361 +#: app/bucket_fill.c:344 msgid "No available patterns for this operation." msgstr "Нет доступных шаблонов для этой операции." -#: app/by_color_select.c:557 app/paint_funcs.c:100 +#: app/by_color_select.c:542 app/paint_funcs.c:100 msgid "Replace" msgstr "Заменить" -#: app/by_color_select.c:558 app/colormap_dialog.i.c:99 +#: app/by_color_select.c:543 app/colormap_dialog.i.c:99 msgid "Add" msgstr "Добавить" -#: app/by_color_select.c:559 app/layers_dialog.c:282 +#: app/by_color_select.c:544 app/layers_dialog.c:215 app/tool_options.c:784 msgid "Subtract" msgstr "Вычитание" -#: app/by_color_select.c:560 +#: app/by_color_select.c:545 msgid "Intersect" msgstr "Пересечь" -#: app/by_color_select.c:578 +#: app/by_color_select.c:564 msgid "By Color Selection" msgstr "Выбор по цвету" -#: app/by_color_select.c:621 +#: app/by_color_select.c:607 msgid "Inactive" msgstr "Недействующий" #. Create the selection mode radio box -#: app/by_color_select.c:628 +#: app/by_color_select.c:614 msgid "Selection Mode" msgstr "Режим выделения" -#: app/by_color_select.c:652 +#: app/by_color_select.c:638 msgid "Fuzziness Threshold" msgstr "Порог распыления" #. The reset push button -#: app/by_color_select.c:668 app/curves.c:416 app/file_new_dialog.c:479 -#: app/tools.c:715 app/transform_core.c:116 +#: app/by_color_select.c:654 app/curves.c:516 app/file_new_dialog.c:483 +#: app/tools.c:873 app/transform_core.c:116 msgid "Reset" msgstr "Сбросить" -#: app/channel.c:190 app/channel.c:192 app/layer.c:314 app/layer.c:316 +#: app/channel.c:191 app/channel.c:193 app/layer.c:316 app/layer.c:318 msgid "copy" msgstr "копировать" #. formulate the new layer_mask name -#: app/channel.c:198 app/gradient.c:1359 app/layer.c:322 app/layer.c:1481 +#: app/channel.c:199 app/gradient.c:1359 app/layer.c:324 app/layer.c:1486 #, c-format msgid "%s copy" msgstr "%s копировать" #. Create the new channel -#: app/channel.c:503 +#: app/channel.c:521 msgid "Selection Mask" msgstr "Быстрая маска" @@ -581,12 +586,12 @@ msgstr " msgid "Fill Options" msgstr "Опции заливки" -#: app/channel_ops.c:164 app/file_new_dialog.c:133 app/file_new_dialog.c:493 -#: app/layers_dialog.c:3210 +#: app/channel_ops.c:164 app/file_new_dialog.c:135 app/file_new_dialog.c:497 +#: app/layers_dialog.c:2893 msgid "Background" msgstr "Фон" -#: app/channel_ops.c:175 app/file_new_dialog.c:495 app/layers_dialog.c:3212 +#: app/channel_ops.c:175 app/file_new_dialog.c:499 app/layers_dialog.c:2895 msgid "Transparent" msgstr "Прозрачное" @@ -595,251 +600,276 @@ msgstr " msgid "Offset by (x/2),(y/2)" msgstr "Смещение на (x/2),(y/2)" -#: app/channels_dialog.c:159 app/channels_dialog.c:193 -#: app/channels_dialog.c:1936 +#: app/channels_dialog.c:165 app/channels_dialog.c:1911 msgid "New Channel" msgstr "Новый канал" -#: app/channels_dialog.c:161 app/channels_dialog.c:194 +#: app/channels_dialog.c:167 msgid "Raise Channel" msgstr "Поднять канал" -#: app/channels_dialog.c:163 app/channels_dialog.c:195 +#: app/channels_dialog.c:169 msgid "Lower Channel" msgstr "Опустить канал" -#: app/channels_dialog.c:165 app/channels_dialog.c:196 +#: app/channels_dialog.c:171 msgid "Duplicate Channel" msgstr "Создать копию канала" -#: app/channels_dialog.c:167 app/channels_dialog.c:197 -msgid "Delete Channel" -msgstr "Удалить канал" - -#: app/channels_dialog.c:169 -msgid "Channel To Selection" -msgstr "Канал -> Выделенная область" - -#: app/channels_dialog.c:171 -#, fuzzy -msgid "Add To Selection" -msgstr "Альфа-канал -> Выделенная область" - #: app/channels_dialog.c:173 -#, fuzzy -msgid "Subtract From Selection" -msgstr "Подканал из выделенной области" - -#: app/channels_dialog.c:175 -#, fuzzy -msgid "Intersect With Selection" -msgstr "Выбор кисти" - -#: app/channels_dialog.c:198 msgid "" -"Channel To Selection \n" +"Channel to Selection \n" " Add Subtract Intersect" msgstr "" -#: app/channels_dialog.c:633 app/channels_dialog.c:687 +#: app/channels_dialog.c:178 +msgid "Delete Channel" +msgstr "Удалить канал" + +#: app/channels_dialog.c:537 app/menus.c:273 +#, fuzzy +msgid "/New Channel" +msgstr "Новый канал" + +#: app/channels_dialog.c:540 app/menus.c:274 +#, fuzzy +msgid "/Raise Channel" +msgstr "Поднять канал" + +#: app/channels_dialog.c:544 app/menus.c:275 +#, fuzzy +msgid "/Lower Channel" +msgstr "Опустить канал" + +#: app/channels_dialog.c:548 app/menus.c:276 +#, fuzzy +msgid "/Duplicate Channel" +msgstr "Создать копию канала" + +#: app/channels_dialog.c:552 app/menus.c:278 +#, fuzzy +msgid "/Channel to Selection" +msgstr "Канал -> Выделенная область" + +#: app/channels_dialog.c:555 app/menus.c:283 +#, fuzzy +msgid "/Delete Channel" +msgstr "Удалить канал" + +#: app/channels_dialog.c:559 app/menus.c:279 +#, fuzzy +msgid "/Add to Selection" +msgstr "Альфа-канал -> Выделенная область" + +#: app/channels_dialog.c:560 app/menus.c:280 +#, fuzzy +msgid "/Subtract From Selection" +msgstr "Подканал из выделенной области" + +#: app/channels_dialog.c:561 app/menus.c:281 +#, fuzzy +msgid "/Intersect With Selection" +msgstr "Выбор кисти" + +#: app/channels_dialog.c:608 app/channels_dialog.c:662 #, c-format msgid "error in %s at %d: this shouldn't happen." msgstr "ошибка в %s на %d: это не должно было случиться." -#: app/channels_dialog.c:1166 app/color_balance.c:413 app/curves.c:424 -#: app/levels.c:282 +#: app/channels_dialog.c:1137 app/color_balance.c:370 app/curves.c:405 +#: app/histogram_tool.c:279 app/levels.c:231 msgid "Red" msgstr "Красный" -#: app/channels_dialog.c:1170 app/color_balance.c:440 app/curves.c:425 -#: app/levels.c:283 +#: app/channels_dialog.c:1141 app/color_balance.c:397 app/curves.c:406 +#: app/histogram_tool.c:280 app/levels.c:232 msgid "Green" msgstr "Зелёный" -#: app/channels_dialog.c:1174 app/color_balance.c:467 app/curves.c:426 -#: app/levels.c:284 +#: app/channels_dialog.c:1145 app/color_balance.c:424 app/curves.c:407 +#: app/histogram_tool.c:281 app/levels.c:233 msgid "Blue" msgstr "Синий" -#: app/channels_dialog.c:1178 +#: app/channels_dialog.c:1149 msgid "Gray" msgstr "Серый" -#: app/channels_dialog.c:1182 +#: app/channels_dialog.c:1153 msgid "Indexed" msgstr "Индексированный" -#: app/channels_dialog.c:1908 +#: app/channels_dialog.c:1883 msgid "New Channel Options" msgstr "Опции нового канала" #. the name entry hbox, label and entry -#: app/channels_dialog.c:1926 +#: app/channels_dialog.c:1901 msgid "Channel name: " msgstr "Название канала: " #. the opacity scale -#: app/channels_dialog.c:1940 +#: app/channels_dialog.c:1915 msgid "Fill Opacity: " msgstr "Непрозрачность заливки: " -#: app/channels_dialog.c:2087 +#: app/channels_dialog.c:2066 msgid "Edit Channel Attributes" msgstr "Редактирование аттрибутов канала" -#: app/channels_dialog.c:2107 +#: app/channels_dialog.c:2086 msgid "Channel name:" msgstr "Название канала:" -#: app/channels_dialog.c:2122 +#: app/channels_dialog.c:2101 msgid "Fill Opacity" msgstr "Непрозрачность заполнения" -#: app/clone.c:134 +#: app/clone.c:137 msgid "Image Source" msgstr "Источник изображения" -#: app/clone.c:135 +#: app/clone.c:138 msgid "Pattern Source" msgstr "Источник шаблона" -#: app/clone.c:139 +#: app/clone.c:144 msgid "Non Aligned" msgstr "Без выравнивания" -#: app/clone.c:140 +#: app/clone.c:145 msgid "Aligned" msgstr "Выравнивание" -#: app/clone.c:141 +#: app/clone.c:146 msgid "Registered" msgstr "Регистрировать" #. the radio frame and box -#: app/clone.c:156 +#: app/clone.c:162 msgid "Source" msgstr "Источник" #. the radio frame and box -#: app/clone.c:181 +#: app/clone.c:187 msgid "Alignment" msgstr "Выравнивание" -#: app/clone.c:308 +#: app/clone.c:314 msgid "No patterns available for this operation." msgstr "Нет шаблонов доступных для этой операции." -#: app/color_balance.c:222 +#: app/color_balance.c:184 msgid "Color Balance Options" msgstr "Опции цветового баланса" -#: app/color_balance.c:269 +#: app/color_balance.c:222 msgid "Color balance operates only on RGB color drawables." msgstr "Цветовой баланс действует только на цветные изображения в формате RGB" -#: app/color_balance.c:323 +#: app/color_balance.c:279 msgid "Shadows" msgstr "Тени" -#: app/color_balance.c:324 +#: app/color_balance.c:280 msgid "Midtones" msgstr "Полутона" -#: app/color_balance.c:325 +#: app/color_balance.c:281 msgid "Highlights" msgstr "Блики" -#: app/color_balance.c:342 app/tools.c:476 +#: app/color_balance.c:299 app/tools.c:502 msgid "Color Balance" msgstr "Цветовой баланс" -#: app/color_balance.c:357 +#: app/color_balance.c:314 msgid "Color Levels: " msgstr "Цветовые уровни: " #. Create the cyan-red scale widget -#: app/color_balance.c:396 +#: app/color_balance.c:353 msgid "Cyan" msgstr "Голубой" #. Create the magenta-green scale widget -#: app/color_balance.c:423 +#: app/color_balance.c:380 msgid "Magenta" msgstr "Пурпурный" #. Create the yellow-blue scale widget -#: app/color_balance.c:450 +#: app/color_balance.c:407 msgid "Yellow" msgstr "Жёлтый" #. The preserve luminosity toggle -#: app/color_balance.c:490 +#: app/color_balance.c:447 msgid "Preserve Luminosity" msgstr "Сохранить яркость" -#: app/color_notebook.c:111 app/color_select.c:186 +#: app/color_notebook.c:117 app/color_select.c:187 msgid "Color Selection" msgstr "Выбор цвета" -#: app/color_notebook.c:182 app/color_select.c:205 +#: app/color_notebook.c:188 app/color_select.c:206 msgid "Revert to Old Color" msgstr "Вернуть бывший цвет" -#: app/color_picker.c:127 +#: app/color_picker.c:128 msgid "Color Picker Options" msgstr "Опции пипетки" -#: app/color_picker.c:153 +#: app/color_picker.c:154 #, fuzzy msgid "Sample Average" msgstr "Размер образца:" -#: app/color_picker.c:224 app/tools.c:310 +#: app/color_picker.c:225 app/tools.c:306 msgid "Color Picker" msgstr "Пипетка" -#: app/color_picker.c:231 app/color_picker.c:241 +#: app/color_picker.c:232 app/color_picker.c:242 #, fuzzy msgid "Red:" msgstr "Красный" -#: app/color_picker.c:232 app/color_picker.c:242 +#: app/color_picker.c:233 app/color_picker.c:243 #, fuzzy msgid "Green:" msgstr "Зелёный" -#: app/color_picker.c:233 app/color_picker.c:243 +#: app/color_picker.c:234 app/color_picker.c:244 #, fuzzy msgid "Blue:" msgstr "Синий" -#: app/color_picker.c:234 app/color_picker.c:240 app/color_picker.c:249 +#: app/color_picker.c:235 app/color_picker.c:241 app/color_picker.c:250 #, fuzzy msgid "Alpha:" msgstr "Альфа-канал" -#: app/color_picker.c:235 app/color_picker.c:250 app/color_select.c:386 -#: app/colormap_dialog.i.c:199 +#: app/color_picker.c:236 app/color_picker.c:251 app/color_select.c:387 +#: app/colormap_dialog.i.c:201 msgid "Hex Triplet:" msgstr "Шестнадцатиричный триплет:" -#: app/color_picker.c:239 app/colormap_dialog.i.c:192 +#: app/color_picker.c:240 app/colormap_dialog.i.c:194 msgid "Index:" msgstr "Индекс:" -#: app/color_picker.c:244 +#: app/color_picker.c:245 msgid "Hex Triplet" msgstr "Шестнадцатиричный триплет" -#: app/color_picker.c:248 app/histogram_tool.c:311 +#: app/color_picker.c:249 app/histogram_tool.c:271 #, fuzzy msgid "Intensity:" msgstr "Интенсивность: " -#: app/color_picker.c:541 app/color_picker.c:542 app/color_picker.c:543 -#: app/color_picker.c:544 app/color_picker.c:545 app/color_picker.c:546 -#: app/color_picker.c:547 app/color_picker.c:560 app/color_picker.c:572 -#: app/color_picker.c:587 +#: app/color_picker.c:547 app/color_picker.c:548 app/color_picker.c:549 +#: app/color_picker.c:550 app/color_picker.c:551 app/color_picker.c:552 +#: app/color_picker.c:553 app/color_picker.c:566 app/color_picker.c:578 +#: app/color_picker.c:593 msgid "N/A" msgstr "недоступен" @@ -853,7 +883,7 @@ msgid "Indexed Color Palette" msgstr "Индексированная цветовая палитра" #. The GIMP image option menu -#: app/colormap_dialog.i.c:136 app/layers_dialog.c:359 +#: app/colormap_dialog.i.c:136 app/lc_dialog.c:131 msgid "Image:" msgstr "Изображение:" @@ -861,47 +891,47 @@ msgstr " msgid "Operations" msgstr "Действия" -#: app/colormap_dialog.i.c:831 app/layers_dialog.c:879 +#: app/colormap_dialog.i.c:833 app/lc_dialog.c:614 msgid "none" msgstr "нет" -#: app/commands.c:366 +#: app/commands.c:342 msgid "Border Selection" msgstr "Выбор рамки" -#: app/commands.c:366 +#: app/commands.c:343 msgid "Border selection by:" msgstr "Выбрать рамку по:" -#: app/commands.c:384 +#: app/commands.c:360 msgid "Feather Selection" msgstr "Выбор пера" -#: app/commands.c:384 +#: app/commands.c:361 msgid "Feather selection by:" msgstr "Выбрать перо по:" -#: app/commands.c:402 +#: app/commands.c:378 msgid "Grow Selection" msgstr "Увеличение выделенной области" -#: app/commands.c:402 +#: app/commands.c:379 msgid "Grow selection by:" msgstr "Увеличить выделенную область:" -#: app/commands.c:420 +#: app/commands.c:396 msgid "Shrink Selection" msgstr "Сокращение выделенной области" -#: app/commands.c:420 +#: app/commands.c:397 msgid "Shrink selection by:" msgstr "Сократить выделенную область:" -#: app/commands.c:1199 +#: app/commands.c:1179 msgid "Resize Error: Both width and height must be greater than zero." msgstr "Ошибка изменения размера: и ширина и высота должны быть больше нуля." -#: app/commands.c:1248 +#: app/commands.c:1228 msgid "Scale Error: Both width and height must be greater than zero." msgstr "Ошибка масштабирования: и ширина и высота должны быть больше нуля." @@ -958,117 +988,117 @@ msgstr " msgid "Convolve Type" msgstr "Размыватель" -#: app/crop.c:169 app/crop.c:1009 +#: app/crop.c:170 app/crop.c:1025 msgid "Crop" msgstr "Кадрирование" -#: app/crop.c:169 app/crop.c:1010 +#: app/crop.c:170 app/crop.c:1026 msgid "Resize" msgstr "Изменить размер" -#: app/crop.c:175 +#: app/crop.c:176 #, fuzzy msgid "Crop & Resize Options" msgstr "Опции кадрирования" -#: app/crop.c:186 +#: app/crop.c:187 msgid "Current layer only" msgstr "Только текущий слой" #. enlarge toggle -#: app/crop.c:197 +#: app/crop.c:198 msgid "Allow Enlarging" msgstr "" #. tool toggle -#: app/crop.c:208 app/flip_tool.c:84 +#: app/crop.c:209 app/flip_tool.c:85 msgid "Tool Toggle" msgstr "" -#: app/crop.c:500 app/crop.c:508 +#: app/crop.c:501 app/crop.c:509 msgid "Crop: " msgstr "Кадрировать: " -#: app/crop.c:997 +#: app/crop.c:1005 msgid "Crop: 0 x 0" msgstr "Кадрирование: 0 x 0" #. create the info dialog -#: app/crop.c:1025 +#: app/crop.c:1033 #, fuzzy msgid "Crop & Resize Information" msgstr "Информация о кадрировании" #. add the information fields -#: app/crop.c:1028 +#: app/crop.c:1036 #, fuzzy msgid "Origin X:" msgstr "Исходное X: " -#: app/crop.c:1031 app/file_new_dialog.c:749 app/resize.c:334 app/resize.c:419 -#: app/resize.c:577 app/rotate_tool.c:108 app/scale_tool.c:99 +#: app/crop.c:1039 app/file_new_dialog.c:753 app/resize.c:334 app/resize.c:419 +#: app/resize.c:577 app/rotate_tool.c:109 app/scale_tool.c:99 #: app/shear_tool.c:83 msgid "Y:" msgstr "" #. the pixel size labels -#: app/crop.c:1059 app/file_new_dialog.c:610 app/file_new_dialog.c:628 +#: app/crop.c:1052 app/file_new_dialog.c:614 app/file_new_dialog.c:632 +#: app/tool_options.c:405 #, fuzzy msgid "Width:" msgstr "Ширина: " -#: app/crop.c:1062 app/file_new_dialog.c:616 app/file_new_dialog.c:634 -#: app/layers_dialog.c:3271 app/resize.c:245 app/resize.c:270 app/resize.c:514 -#: app/scale_tool.c:78 app/scale_tool.c:85 +#: app/crop.c:1055 app/file_new_dialog.c:620 app/file_new_dialog.c:638 +#: app/layers_dialog.c:2954 app/resize.c:245 app/resize.c:270 app/resize.c:514 +#: app/scale_tool.c:78 app/scale_tool.c:85 app/tool_options.c:427 #, fuzzy msgid "Height:" msgstr "Высота: " -#: app/crop.c:1097 +#: app/crop.c:1077 #, fuzzy msgid "From Selection" msgstr "Увеличение выделенной области" -#: app/crop.c:1103 -#, fuzzy -msgid "Automatic" -msgstr "/Автоматически" +#: app/crop.c:1083 +msgid "Auto Shrink" +msgstr "" -#: app/curves.c:373 +#: app/curves.c:368 msgid "Curves Options" msgstr "Опции кривых" -#: app/curves.c:423 app/layers_dialog.c:288 app/levels.c:281 -#: app/paint_funcs.c:97 +#: app/curves.c:404 app/histogram_tool.c:278 app/layers_dialog.c:227 +#: app/levels.c:230 app/paint_funcs.c:97 app/tool_options.c:790 msgid "Value" msgstr "Яркость" -#: app/curves.c:427 app/levels.c:285 +#: app/curves.c:408 app/levels.c:234 msgid "Alpha" msgstr "Альфа-канал" -#: app/curves.c:433 -msgid "Smooth" -msgstr "Сглаживание" - -#: app/curves.c:434 -msgid "Free" -msgstr "Свободная (бесплатная :-)" - -#: app/curves.c:445 +#: app/curves.c:419 msgid "Curves for indexed drawables cannot be adjusted." msgstr "Кривые для индексированных изображений не могут быть подобраны." -#: app/curves.c:560 app/tools.c:551 +#: app/curves.c:523 +msgid "Smooth" +msgstr "Сглаживание" + +#: app/curves.c:524 +msgid "Free" +msgstr "Свободная (бесплатная :-)" + +#: app/curves.c:550 app/tools.c:577 msgid "Curves" msgstr "Кривые" -#: app/curves.c:574 +#: app/curves.c:564 msgid "Modify Curves for Channel: " msgstr "Изменить кривые для канала: " #. The option menu for selecting the drawing method -#: app/curves.c:648 +#: app/curves.c:638 msgid "Curve Type: " msgstr "Тип кривой: " @@ -1076,7 +1106,7 @@ msgstr " msgid "Desaturate operates only on RGB color drawables." msgstr "Обесцвечивание действует только на цветные изображения в формате RGB." -#: app/devices.c:123 app/palette.c:2187 app/preferences_dialog.c:1437 +#: app/devices.c:123 app/palette.c:2187 app/preferences_dialog.c:1471 msgid "Save" msgstr "Сохранить" @@ -1113,49 +1143,49 @@ msgstr " msgid "There's no selection to remove." msgstr "Нет выделения для удаления." -#: app/docindexif.c:75 +#: app/docindexif.c:80 msgid "Open" msgstr "Открыть" -#: app/docindexif.c:75 +#: app/docindexif.c:80 msgid "Open a file" msgstr "Открыть файл" -#: app/docindexif.c:80 +#: app/docindexif.c:85 msgid "Up" msgstr "Вверх" -#: app/docindexif.c:80 +#: app/docindexif.c:85 msgid "Move the selected entry up in the index" msgstr "Переместить выбранный элемент вверх в индексе" -#: app/docindexif.c:85 +#: app/docindexif.c:90 msgid "Down" msgstr "Вниз" -#: app/docindexif.c:85 +#: app/docindexif.c:90 msgid "Move the selected entry down in the index" msgstr "Переместить выбранный элемент вниз в индексе" -#: app/docindexif.c:90 +#: app/docindexif.c:95 msgid "Remove" msgstr "Удалить" -#: app/docindexif.c:90 +#: app/docindexif.c:95 msgid "Remove the selected entry from the index" msgstr "Удалить выбранный элемент из индекса" -#: app/docindexif.c:95 +#: app/docindexif.c:100 msgid "Close the Document Index" msgstr "Закрыть индекс документов" #. Set the GOWindow title -#: app/docindexif.c:213 +#: app/docindexif.c:218 msgid "Document Index" msgstr "Индекс документов" #. Set the initial status message -#: app/docindexif.c:219 +#: app/docindexif.c:224 msgid "GTK successfully started" msgstr "GTK успешно запущен" @@ -1163,11 +1193,11 @@ msgstr "GTK msgid "drawable_fill called with unknown fill type" msgstr "drawable_fill вызвано с неизвестным типом заполнения" -#: app/edit_selection.c:164 +#: app/edit_selection.c:163 msgid "Move: 0, 0" msgstr "Переместить: 0, 0" -#: app/edit_selection.c:443 app/edit_selection.c:453 +#: app/edit_selection.c:442 app/edit_selection.c:452 msgid "Move: " msgstr "Перемещение: " @@ -1181,41 +1211,41 @@ msgid "Hard edge" msgstr "Жёсткие края" #. the incremental toggle -#: app/eraser.c:108 app/paintbrush.c:258 +#: app/eraser.c:108 app/paintbrush.c:257 msgid "Incremental" msgstr "Дополняющий" -#: app/errorconsole.c:168 +#: app/errorconsole.c:170 #, c-format msgid "Error opening file %s: %s" msgstr "Ошибка открытия файла %s: %s" -#: app/errorconsole.c:183 +#: app/errorconsole.c:185 msgid "Can't save, nothing selected!" msgstr "Сохранение не возможно - ничего не выбрано!" -#: app/errorconsole.c:187 +#: app/errorconsole.c:189 msgid "Save error log to file..." msgstr "Сохранить зарегистрированные ошибки в файле..." -#: app/errorconsole.c:244 +#: app/errorconsole.c:246 msgid "GIMP Error console" msgstr "Консоль сообщений об ошибках GIMP" -#: app/errorconsole.c:259 +#: app/errorconsole.c:261 msgid "Write all errors to file..." msgstr "Записывать все ошибки в файл..." -#: app/errorconsole.c:266 +#: app/errorconsole.c:268 msgid "Write selection to file..." msgstr "Записать выделенную область в файл..." -#: app/file_new_dialog.c:299 +#: app/file_new_dialog.c:303 #, fuzzy msgid "Confirm Image Size" msgstr "Изменить размер изображения" -#: app/file_new_dialog.c:313 +#: app/file_new_dialog.c:317 #, c-format msgid "" "You are trying to create an image which\n" @@ -1231,85 +1261,85 @@ msgid "" "preferences dialog." msgstr "" -#: app/file_new_dialog.c:407 +#: app/file_new_dialog.c:411 #, fuzzy, c-format msgid "%d Bytes" msgstr "Байты" -#: app/file_new_dialog.c:409 +#: app/file_new_dialog.c:413 #, c-format msgid "%.2f KB" msgstr "" -#: app/file_new_dialog.c:411 +#: app/file_new_dialog.c:415 #, c-format msgid "%.1f KB" msgstr "" -#: app/file_new_dialog.c:413 +#: app/file_new_dialog.c:417 #, c-format msgid "%d KB" msgstr "" -#: app/file_new_dialog.c:415 +#: app/file_new_dialog.c:419 #, c-format msgid "%.2f MB" msgstr "" -#: app/file_new_dialog.c:417 +#: app/file_new_dialog.c:421 #, c-format msgid "%.1f MB" msgstr "" #. bytes per pixel #. alpha channel -#: app/file_new_dialog.c:442 +#: app/file_new_dialog.c:446 #, fuzzy, c-format msgid "Image Size: %s" msgstr "Изменить размер изображения" -#: app/file_new_dialog.c:485 app/gdisplay.c:197 app/preferences_dialog.c:1598 +#: app/file_new_dialog.c:489 app/gdisplay.c:202 app/preferences_dialog.c:1633 msgid "RGB" msgstr "RGB" -#: app/file_new_dialog.c:486 app/info_window.c:50 app/info_window.c:241 -#: app/preferences_dialog.c:1599 +#: app/file_new_dialog.c:490 app/info_window.c:50 app/info_window.c:241 +#: app/preferences_dialog.c:1634 msgid "Grayscale" msgstr "Градации серого" -#: app/file_new_dialog.c:492 app/layers_dialog.c:3209 +#: app/file_new_dialog.c:496 app/layers_dialog.c:2892 msgid "Foreground" msgstr "Переднего плана" -#: app/file_new_dialog.c:494 app/layers_dialog.c:3211 +#: app/file_new_dialog.c:498 app/layers_dialog.c:2894 msgid "White" msgstr "Белое" -#: app/file_new_dialog.c:568 +#: app/file_new_dialog.c:572 msgid "New Image" msgstr "Новое изображение" -#: app/file_new_dialog.c:674 app/preferences_dialog.c:1507 +#: app/file_new_dialog.c:678 app/preferences_dialog.c:1542 msgid "Pixels" msgstr "пикселей" #. the resolution labels -#: app/file_new_dialog.c:743 app/resize.c:571 +#: app/file_new_dialog.c:747 app/resize.c:571 #, fuzzy msgid "Resolution X:" msgstr "Разрешение: " -#: app/file_new_dialog.c:764 app/resize.c:592 +#: app/file_new_dialog.c:768 app/resize.c:592 #, fuzzy msgid "pixels/%a" msgstr "пикселей" #. frame for Image Type -#: app/file_new_dialog.c:808 +#: app/file_new_dialog.c:812 msgid "Image Type" msgstr "Тип изображения" -#: app/fileops.c:222 app/fileops.c:251 +#: app/fileops.c:224 app/fileops.c:253 msgid "Load Image" msgstr "Загрузить изображение" @@ -1318,80 +1348,80 @@ msgstr " msgid "Open Options" msgstr "Опции загрузки" -#: app/fileops.c:278 app/fileops.c:479 +#: app/fileops.c:278 app/fileops.c:482 msgid "Determine file type:" msgstr "Определять тип файла:" -#: app/fileops.c:441 app/fileops.c:463 +#: app/fileops.c:443 app/fileops.c:465 msgid "Save Image" msgstr "Сохранить изображение" -#: app/fileops.c:471 +#: app/fileops.c:474 msgid "Save Options" msgstr "Опции сохранения" -#: app/fileops.c:522 +#: app/fileops.c:526 msgid "Can't revert. No filename associated with this image" msgstr "" "Невозможно отменить. Нет ассоциированного с этим изображением имени файла" -#: app/fileops.c:536 +#: app/fileops.c:540 msgid "Revert failed." msgstr "Не удалось сохранить." -#: app/fileops.c:1212 app/fileops.c:1302 +#: app/fileops.c:1364 app/fileops.c:1454 msgid "Open failed: " msgstr "Не удалось открыть: " -#: app/fileops.c:1368 +#: app/fileops.c:1520 #, c-format msgid "%s is an irregular file (%s)" msgstr "%s - неподходящий файл (%s)" -#: app/fileops.c:1382 app/fileops.c:1485 +#: app/fileops.c:1534 app/fileops.c:1641 msgid "Save failed: " msgstr "Не удалось сохранить: " -#: app/fileops.c:1394 app/fileops.c:1407 -msgid "/File/Open" -msgstr "/Файл/Открыть" +#: app/fileops.c:1546 app/fileops.c:1547 app/fileops.c:1559 app/fileops.c:1560 +#: app/menus.c:58 app/menus.c:90 +#, fuzzy +msgid "/File/Open" +msgstr "/Файл/Открыть" -#: app/fileops.c:1395 app/fileops.c:1408 -msgid "/File/Open" -msgstr "/Файл/Открыть" +#: app/fileops.c:1548 app/fileops.c:1564 app/menus.c:91 +#, fuzzy +msgid "/File/Save" +msgstr "/Файл/Сохранить" -#: app/fileops.c:1396 app/fileops.c:1409 -msgid "/File/Save" -msgstr "/Файл/Сохранить" +#: app/fileops.c:1549 app/fileops.c:1565 app/menus.c:92 +#, fuzzy +msgid "/File/Save as" +msgstr "/Файл/Сохранить как..." -#: app/fileops.c:1397 app/fileops.c:1410 -msgid "/File/Save as" -msgstr "/Файл/Сохранить как..." - -#: app/fileops.c:1430 +#: app/fileops.c:1586 #, c-format msgid "%s exists, overwrite?" msgstr "%s существует, переписать?" -#: app/fileops.c:1436 +#: app/fileops.c:1592 msgid "File Exists!" msgstr "Файл существует!" -#: app/flip_tool.c:70 app/preferences_dialog.c:1553 -#: app/preferences_dialog.c:2215 +#: app/flip_tool.c:71 app/preferences_dialog.c:1588 +#: app/preferences_dialog.c:2290 msgid "Horizontal" msgstr "Горизонтальное" -#: app/flip_tool.c:70 app/preferences_dialog.c:1555 -#: app/preferences_dialog.c:2217 +#: app/flip_tool.c:71 app/preferences_dialog.c:1590 +#: app/preferences_dialog.c:2292 msgid "Vertical" msgstr "Вертикальное" -#: app/flip_tool.c:76 +#: app/flip_tool.c:77 msgid "Flip Tool Options" msgstr "Опции зеркала" -#: app/floating_sel.c:108 +#: app/floating_sel.c:107 msgid "" "Cannot anchor this layer because\n" "it is not a floating selection." @@ -1399,7 +1429,7 @@ msgstr "" "Невозможно прицепить этот слой, потому что\n" "это не плавающее выделение." -#: app/floating_sel.c:174 +#: app/floating_sel.c:173 msgid "" "Cannot create a new layer from the floating\n" "selection because it belongs to a\n" @@ -1409,235 +1439,41 @@ msgstr "" "выделения, потому что оно принадлежит\n" "маске слоя или каналу." -#: app/free_select.c:220 +#: app/free_select.c:219 msgid "Cannot properly scanline convert polygon!\n" msgstr "" -#: app/gdisplay.c:197 +#: app/gdisplay.c:202 msgid "RGB-empty" msgstr "" -#: app/gdisplay.c:200 +#: app/gdisplay.c:205 msgid "grayscale-empty" msgstr "" -#: app/gdisplay.c:200 +#: app/gdisplay.c:205 msgid "grayscale" msgstr "градации серого" -#: app/gdisplay.c:203 +#: app/gdisplay.c:208 msgid "indexed-empty" msgstr "" -#: app/gdisplay.c:203 +#: app/gdisplay.c:208 msgid "indexed" msgstr "индексированное" -#: app/gdisplay.c:1573 -#, fuzzy -msgid "/Layers/Stack/Previous Layer" -msgstr "/Слои/Поднять слой" - -#: app/gdisplay.c:1574 -#, fuzzy -msgid "/Layers/Stack/Next Layer" -msgstr "/Слои/Поднять слой" - -#: app/gdisplay.c:1575 -#, fuzzy -msgid "/Layers/Stack/Raise Layer" -msgstr "/Слои/Поднять слой" - -#: app/gdisplay.c:1576 -#, fuzzy -msgid "/Layers/Stack/Lower Layer" -msgstr "/Слои/Опустить слой" - -#: app/gdisplay.c:1577 -#, fuzzy -msgid "/Layers/Stack/Layer to Top" -msgstr "/Слои/Поднять слой" - -#: app/gdisplay.c:1578 -#, fuzzy -msgid "/Layers/Stack/Layer to Bottom" -msgstr "/Слои/Поднять слой" - -#: app/gdisplay.c:1579 -msgid "/Layers/Anchor Layer" -msgstr "/Слои/Прицепить слой" - -#: app/gdisplay.c:1580 -msgid "/Layers/Merge Visible Layers" -msgstr "/Слои/Объединить видимые слои" - -#: app/gdisplay.c:1581 -msgid "/Layers/Flatten Image" -msgstr "/Слои/Свести изображение" - -#: app/gdisplay.c:1582 -msgid "/Layers/Alpha To Selection" -msgstr "/Слои/Альфа-канал -> Выделенная область" - -#: app/gdisplay.c:1583 -msgid "/Layers/Mask To Selection" -msgstr "/Слои/Маска -> Выделенная область" - -#: app/gdisplay.c:1584 -msgid "/Layers/Add Alpha Channel" -msgstr "/Слои/Новый альфа-канал" - -#: app/gdisplay.c:1586 -msgid "/Image/RGB" -msgstr "/Изображение/RGB" - -#: app/gdisplay.c:1587 -msgid "/Image/Grayscale" -msgstr "/Изображение/Градации серого" - -#: app/gdisplay.c:1588 -msgid "/Image/Indexed" -msgstr "/Изображение/Индексированное" - -#: app/gdisplay.c:1590 -msgid "/Image/Colors/Threshold" -msgstr "/Изображение/Цвета/Порог" - -#: app/gdisplay.c:1591 -msgid "/Image/Colors/Posterize" -msgstr "/Изображение/Цвета/Постеризовать" - -#: app/gdisplay.c:1592 -msgid "/Image/Colors/Equalize" -msgstr "/Изображение/Цвета/Выровнять" - -#: app/gdisplay.c:1593 -msgid "/Image/Colors/Invert" -msgstr "/Изображение/Цвета/Инвертировать" - -#: app/gdisplay.c:1595 -msgid "/Image/Colors/Color Balance" -msgstr "/Изображение/Цвета/Цветовой баланс" - -#: app/gdisplay.c:1596 -msgid "/Image/Colors/Brightness-Contrast" -msgstr "/Изображение/Цвета/Яркость-Контрастность" - -#: app/gdisplay.c:1597 -msgid "/Image/Colors/Hue-Saturation" -msgstr "/Изображение/Цвета/Тон-Насыщенность" - -#: app/gdisplay.c:1598 -msgid "/Image/Colors/Curves" -msgstr "/Изображение/Цвета/Кривые" - -#: app/gdisplay.c:1599 -msgid "/Image/Colors/Levels" -msgstr "/Изображение/Цвета/Уровни" - -#: app/gdisplay.c:1601 -msgid "/Image/Colors/Desaturate" -msgstr "/Изображение/Цвета/Обесцветить" - -#: app/gdisplay.c:1603 -msgid "/Image/Alpha/Add Alpha Channel" -msgstr "/Изображение/Альфа-канал/Добавить альфа-канал" - -#: app/gdisplay.c:1605 -msgid "/Select" -msgstr "/Выделение" - -#: app/gdisplay.c:1606 -msgid "/Edit/Cut" -msgstr "/Правка/Вырезать" - -#: app/gdisplay.c:1607 -msgid "/Edit/Copy" -msgstr "/Правка/Скопировать" - -#: app/gdisplay.c:1608 -msgid "/Edit/Paste" -msgstr "/Правка/Вставить" - -#: app/gdisplay.c:1609 -msgid "/Edit/Paste Into" -msgstr "/Правка/Вставить в..." - -#: app/gdisplay.c:1610 -msgid "/Edit/Clear" -msgstr "/Правка/Очистить" - -#: app/gdisplay.c:1611 -msgid "/Edit/Fill" -msgstr "/Правка/Заполнить" - -#: app/gdisplay.c:1612 -msgid "/Edit/Stroke" -msgstr "/Правка/Обводка" - -#: app/gdisplay.c:1613 -msgid "/Edit/Cut Named" -msgstr "/Правка/Вырезать в буфер с именем" - -#: app/gdisplay.c:1614 -msgid "/Edit/Copy Named" -msgstr "/Правка/Скопировать из буфера с именем" - -#: app/gdisplay.c:1615 -msgid "/Edit/Paste Named" -msgstr "/Правка/Вставить из буфера с именем" - -#: app/gdisplay.c:1616 -msgid "/Image/Colors" -msgstr "/Изображение/Цвета" - -#: app/gdisplay.c:1617 -msgid "/Image/Channel Ops/Offset" -msgstr "/Изображение/Канал/Смещение" - -#: app/gdisplay.c:1618 -msgid "/Image/Histogram" -msgstr "/Изображение/Гистограмма" - -#: app/gdisplay.c:1619 -msgid "/Filters" -msgstr "/Фильтры" - -#. save selection to channel -#: app/gdisplay.c:1622 -msgid "/Select/Save To Channel" -msgstr "/Выделение/Сохранить в канале" - -#: app/gdisplay.c:1624 -msgid "/View/Toggle Rulers" -msgstr "/Просмотр/Линейки вкл/выкл" - -#: app/gdisplay.c:1625 -msgid "/View/Toggle Guides" -msgstr "/Просмотр/Направляющие вкл/выкл" - -#: app/gdisplay.c:1626 -msgid "/View/Snap To Guides" -msgstr "/Просмотр/Выравнивать по направляющим" - -#: app/gdisplay.c:1627 -msgid "/View/Toggle Statusbar" -msgstr "/Просмотр/Строка состояния вкл/выкл" - -#: app/gdisplay.c:1628 -msgid "/View/Dot for dot" -msgstr "/Просмотр/Точка за точкой" - -#: app/gdisplay.c:2063 +#: app/gdisplay.c:2102 msgid "gdisplays_flush() called recursively." msgstr "gdisplays_flush() вызвана рекурсивно." -#: app/gdisplay_ops.c:305 app/gdisplay_ops.c:324 app/gdisplay_ops.c:334 -#: app/gdisplay_ops.c:370 -msgid "/File/Close" -msgstr "/Файл/Закрыть" +#: app/gdisplay_ops.c:305 app/gdisplay_ops.c:320 app/gdisplay_ops.c:330 +#: app/gdisplay_ops.c:366 app/menus.c:97 +#, fuzzy +msgid "/File/Close" +msgstr "/Файл/Закрыть" -#: app/gdisplay_ops.c:392 +#: app/gdisplay_ops.c:388 #, c-format msgid "Changes were made to %s. Close anyway?" msgstr "%s было изменено. Закрыть?" @@ -1713,41 +1549,41 @@ msgstr " msgid "Layer type %d not supported." msgstr "Слои типа %d не поддерживаются." -#: app/gimpimage.c:596 app/gimpimage.c:690 +#: app/gimpimage.c:642 app/gimpimage.c:740 msgid "gimp_image_apply_image sent illegal parameters" msgstr "gimp_image_apply_image передал неверные параметры" -#: app/gimpimage.c:1096 +#: app/gimpimage.c:1172 msgid "Unable to project indexed image." msgstr "" -#: app/gimpimage.c:1966 +#: app/gimpimage.c:2109 msgid "Layer cannot be raised any further" msgstr "Слой невозможно поднять выше" -#: app/gimpimage.c:2040 +#: app/gimpimage.c:2184 msgid "Layer cannot be lowered any further" msgstr "Слой невозможно опустить ниже" #. layer_arg is already the top_layer -#: app/gimpimage.c:2069 +#: app/gimpimage.c:2214 msgid "Layer is already on top" msgstr "Слой уже на самом верху" -#: app/gimpimage.c:2074 +#: app/gimpimage.c:2219 msgid "Can't raise Layer without alpha" msgstr "Невозможно поднять слой, у которого нет альфа-канала" #. there is no next layer below layer_arg -#: app/gimpimage.c:2168 +#: app/gimpimage.c:2314 msgid "Layer is already on bottom" msgstr "Слой уже в самом низу" -#: app/gimpimage.c:2181 +#: app/gimpimage.c:2327 msgid "BG has no alpha, layer was placed above" msgstr "Фон не имеет альфа-канала, слой будет размещен выше" -#: app/gimpimage.c:2243 +#: app/gimpimage.c:2390 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." @@ -1755,27 +1591,27 @@ msgstr "" "Нет видимых слоев для объединения.\n" "Должно быть хотя бы два." -#: app/gimpimage.c:2321 +#: app/gimpimage.c:2468 msgid "There are not enough visible layers for a merge down." msgstr "Нет видимых слоев для объединения с предыдущим." -#: app/gimpimage.c:2432 app/gimpimage.c:2465 +#: app/gimpimage.c:2581 app/gimpimage.c:2614 msgid "gimp_image_merge_layers: could not allocate merge layer" msgstr "" -#: app/gimpimage.c:2504 +#: app/gimpimage.c:2653 msgid "gimp_image_merge_layers attempting to merge incompatible layers\n" msgstr "gimp_image_merge_layers попытка объединить несовместимые слои\n" -#: app/gimpimage.c:2584 +#: app/gimpimage.c:2735 msgid "gimp_image_add_layer: attempt to add layer to wrong image" msgstr "" -#: app/gimpimage.c:2594 +#: app/gimpimage.c:2745 msgid "gimp_image_add_layer: trying to add layer to image twice" msgstr "gimp_image_add_layer: попытка дважды добавить слой к изображению" -#: app/gimpimage.c:2710 +#: app/gimpimage.c:2864 msgid "" "Unable to add a layer mask since\n" "the layer already has one." @@ -1783,7 +1619,7 @@ msgstr "" "Не удалось добавить маску слоя, так как\n" "у слоя уже есть маска." -#: app/gimpimage.c:2714 +#: app/gimpimage.c:2868 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." @@ -1791,7 +1627,7 @@ msgstr "" "Не удалось добавить маску слоя\n" "к слою в индексированном изображении." -#: app/gimpimage.c:2718 +#: app/gimpimage.c:2872 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." @@ -1799,28 +1635,28 @@ msgstr "" "Невозможно добавить маску слоя\n" "к слою не имеющему альфа-канала." -#: app/gimpimage.c:2722 +#: app/gimpimage.c:2876 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Невозможно добавить маску слоя отличающуюся размерами от указанного слоя." -#: app/gimpimage.c:2826 +#: app/gimpimage.c:2983 msgid "Channel cannot be raised any further" msgstr "Канал не может быть поднят еще выше" -#: app/gimpimage.c:2873 +#: app/gimpimage.c:3031 msgid "Channel cannot be lowered any further" msgstr "Канал не может быть опущен еще ниже" -#: app/gimpimage.c:2893 +#: app/gimpimage.c:3053 msgid "gimp_image_add_channel: attempt to add channel to wrong image" msgstr "" -#: app/gimpimage.c:2903 +#: app/gimpimage.c:3063 msgid "gimp_image_add_channel: trying to add channel to image twice" msgstr "gimp_image_add_channel: попытка дважды добавить канал к изображению" -#: app/gimpimage.c:3029 app/palette.c:525 app/palette.c:550 app/palette.c:909 +#: app/gimpimage.c:3190 app/palette.c:525 app/palette.c:550 app/palette.c:909 #: app/palette.c:913 app/palette.c:2313 app/palette.c:2995 msgid "Untitled" msgstr "Безымянное" @@ -1829,90 +1665,95 @@ msgstr " msgid "Progress" msgstr "Прогресс" -#: app/gimprc.c:353 app/plug_in.c:302 +#: app/gimprc.c:358 app/plug_in.c:305 msgid "Resource configuration" msgstr "Конфигурирование ресурсов" -#: app/gimprc.c:408 +#: app/gimprc.c:413 #, c-format msgid "error parsing: \"%s\"\n" msgstr "ошибка при синтаксическом анализе: \"%s\"\n" -#: app/gimprc.c:409 +#: app/gimprc.c:414 #, c-format msgid " at line %d column %d\n" msgstr " в строке %d столбце %d\n" -#: app/gimprc.c:410 +#: app/gimprc.c:415 #, c-format msgid " unexpected token: %s\n" msgstr "" -#: app/gimprc.c:1300 +#: app/gimprc.c:1305 msgid "error parsing pluginrc" msgstr "ошибка при синтаксическом анализе pluginrc" -#: app/gimprc.c:1635 +#: app/gimprc.c:1640 #, c-format msgid "gimprc token referenced but not defined: %s" msgstr "" -#: app/gimprc.c:2518 +#: app/gimprc.c:2522 #, c-format msgid "Can't open %s; %s" msgstr "Невозможно открыть %s; %s" -#: app/gimprc.c:2537 +#: app/gimprc.c:2541 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "Невозможно переименовать %s в %s.old; %s" -#: app/gimprc.c:2543 +#: app/gimprc.c:2547 #, c-format msgid "Couldn't reopen %s\n" msgstr "" -#: app/gimprc.c:2555 +#: app/gimprc.c:2559 #, c-format msgid "Can't write to %s; %s" msgstr "" #. Make a new floating layer -#: app/global_edit.c:284 +#: app/global_edit.c:289 app/global_edit.c:344 app/global_edit.c:354 msgid "Pasted Layer" msgstr "Вставленный слой" -#: app/global_edit.c:591 +#: app/global_edit.c:698 msgid "Paste" msgstr "Вставить" +#: app/global_edit.c:699 +#, fuzzy +msgid "Paste Into" +msgstr "/Правка/Вставить в..." + +#: app/global_edit.c:700 +msgid "Paste As New" +msgstr "" + #. Buttons -#: app/global_edit.c:592 app/gradient.c:1477 app/palette.c:1429 +#: app/global_edit.c:704 app/gradient.c:1477 app/palette.c:1429 #: app/palette.c:2179 msgid "Delete" msgstr "Удалить" -#: app/global_edit.c:606 +#: app/global_edit.c:720 msgid "Paste Named Buffer" msgstr "Вставить из именованного буфера" -#: app/global_edit.c:618 +#: app/global_edit.c:732 msgid "Select a buffer to paste:" msgstr "Выбрать буфер для вставки:" -#: app/global_edit.c:637 -msgid "Replace Current Selection" -msgstr "Заменить текущую выделенную область" - -#: app/global_edit.c:699 +#: app/global_edit.c:820 msgid "Cut Named" msgstr "Вырезать в буфер с именем" -#: app/global_edit.c:700 app/global_edit.c:732 +#: app/global_edit.c:821 app/global_edit.c:853 msgid "Enter a name for this buffer" msgstr "Введите имя для этого буфера" -#: app/global_edit.c:731 +#: app/global_edit.c:852 msgid "Copy Named" msgstr "Скопировать из буфера с именем" @@ -1967,7 +1808,7 @@ msgstr " msgid "Gradients: " msgstr "Градиенты: " -#: app/gradient.c:680 app/gradient_select.c:476 app/paintbrush.c:199 +#: app/gradient.c:680 app/gradient_select.c:476 app/paintbrush.c:204 #: app/palette.c:2833 msgid "Gradient" msgstr "Градиент" @@ -2323,97 +2164,112 @@ msgstr "" msgid "Gradient Selection" msgstr "Выбор градиента" -#: app/histogram_tool.c:207 +#: app/histogram_tool.c:173 #, fuzzy msgid "Histogram Options" msgstr "Опции смешивания" -#: app/histogram_tool.c:307 +#: app/histogram_tool.c:210 +#, fuzzy +msgid "Histogram does not operate on indexed drawables." +msgstr "Постеризация не действует на индексированные изображения." + +#: app/histogram_tool.c:267 #, fuzzy msgid "Mean:" msgstr "Значение: " -#: app/histogram_tool.c:308 +#: app/histogram_tool.c:268 #, fuzzy msgid "Std Dev:" msgstr "Станд. устр.: " -#: app/histogram_tool.c:309 +#: app/histogram_tool.c:269 #, fuzzy msgid "Median:" msgstr "Значение: " -#: app/histogram_tool.c:310 +#: app/histogram_tool.c:270 #, fuzzy msgid "Pixels:" msgstr "Пикселей: " -#: app/histogram_tool.c:312 +#: app/histogram_tool.c:272 msgid "Count:" msgstr "" -#: app/histogram_tool.c:313 +#: app/histogram_tool.c:273 #, fuzzy msgid "Percentile:" msgstr "Перспектива" -#: app/hue_saturation.c:301 +#: app/histogram_tool.c:296 app/tools.c:607 +msgid "Histogram" +msgstr "Гистограмма" + +#: app/histogram_tool.c:315 +msgid "Information on Channel:" +msgstr "" + +#: app/hue_saturation.c:260 msgid "Hue-Saturation Options" msgstr "Опции Тона-Насыщенности" -#: app/hue_saturation.c:348 +#: app/hue_saturation.c:298 msgid "Hue-Saturation operates only on RGB color drawables." msgstr "" "Тон-Насыщенность действует только на цветные изображения в формате RGB." -#: app/hue_saturation.c:416 +#: app/hue_saturation.c:367 msgid "Master" msgstr "" -#: app/hue_saturation.c:417 +#: app/hue_saturation.c:368 msgid "R" msgstr "" -#: app/hue_saturation.c:418 +#: app/hue_saturation.c:369 msgid "Y" msgstr "" -#: app/hue_saturation.c:419 +#: app/hue_saturation.c:370 msgid "G" msgstr "" -#: app/hue_saturation.c:420 +#: app/hue_saturation.c:371 msgid "C" msgstr "" -#: app/hue_saturation.c:421 +#: app/hue_saturation.c:372 msgid "B" msgstr "" -#: app/hue_saturation.c:422 +#: app/hue_saturation.c:373 msgid "M" msgstr "" -#: app/hue_saturation.c:442 app/tools.c:506 +#: app/hue_saturation.c:394 app/tools.c:532 msgid "Hue-Saturation" msgstr "Тон-Насыщенность" -#: app/hue_saturation.c:504 +#: app/hue_saturation.c:456 msgid "Hue / Lightness / Saturation Adjustments" msgstr "Восстановление Тона / Яркости / Насыщенности [FixMe]" #. Create the hue scale widget -#: app/hue_saturation.c:514 app/layers_dialog.c:285 app/paint_funcs.c:94 +#: app/hue_saturation.c:466 app/layers_dialog.c:221 app/paint_funcs.c:94 +#: app/tool_options.c:787 msgid "Hue" msgstr "Тон" #. Create the lightness scale widget -#: app/hue_saturation.c:548 +#: app/hue_saturation.c:500 msgid "Lightness" msgstr "Яркость" #. Create the saturation scale widget -#: app/hue_saturation.c:582 app/layers_dialog.c:286 app/paint_funcs.c:95 +#: app/hue_saturation.c:534 app/layers_dialog.c:223 app/paint_funcs.c:95 +#: app/tool_options.c:788 msgid "Saturation" msgstr "Насыщенность" @@ -2460,7 +2316,7 @@ msgstr " msgid "Resolution:" msgstr "Разрешение: " -#: app/info_window.c:159 +#: app/info_window.c:159 app/tool_options.c:449 #, fuzzy msgid "Unit:" msgstr "Безымянное" @@ -2509,44 +2365,44 @@ msgid "Indexed Color" msgstr "Индексированный цвет" #. size slider -#: app/ink.c:292 +#: app/ink.c:294 msgid "Size:" msgstr "Размер:" #. sens slider -#: app/ink.c:310 app/ink.c:334 app/ink.c:364 +#: app/ink.c:312 app/ink.c:336 app/ink.c:366 msgid "Sensitivity:" msgstr "Чувствительность:" #. tilt sens slider -#: app/ink.c:328 +#: app/ink.c:330 msgid "Tilt" msgstr "" #. velocity sens slider -#: app/ink.c:358 +#: app/ink.c:360 msgid "Speed" msgstr "" #. angle adjust slider -#: app/ink.c:388 +#: app/ink.c:390 #, fuzzy msgid "Angle" msgstr "Угол:" -#: app/ink.c:394 +#: app/ink.c:396 #, fuzzy msgid "Adjust:" msgstr "Выравнивание угла:[FixMe]" #. Brush type radiobuttons -#: app/ink.c:417 +#: app/ink.c:419 #, fuzzy msgid "Type" msgstr "Тип:" #. Brush shape widget -#: app/ink.c:481 +#: app/ink.c:483 #, fuzzy msgid "Shape" msgstr "Форма:" @@ -2869,7 +2725,7 @@ msgid "" "Installation failed. Contact system administrator.\n" msgstr "" -#: app/interface.c:268 +#: app/interface.c:325 msgid "" "Foreground & background colors. The black and white squares reset colors. " "The arrows swap colors. Double click to select a color from a colorrequester." @@ -2877,11 +2733,11 @@ msgstr "" "Цвета переднего плана и фона. Черный и белый квадратики сбрасывают цвета. " "Стрелки переключают цвета. Двойной щелчок позволяет выбрать цвет из меню." -#: app/interface.c:485 +#: app/interface.c:541 msgid "The GIMP" msgstr "GIMP" -#: app/interface.c:1256 +#: app/interface.c:1388 msgid "GIMP Message" msgstr "Сообщения GIMP" @@ -2904,7 +2760,8 @@ msgstr " msgid "Channel Ops" msgstr "Опции канала" -#: app/internal_procs.c:79 app/layers_dialog.c:287 app/paint_funcs.c:96 +#: app/internal_procs.c:79 app/layers_dialog.c:225 app/paint_funcs.c:96 +#: app/tool_options.c:789 msgid "Color" msgstr "Цвет" @@ -2959,7 +2816,7 @@ msgstr " msgid "Guide procedures" msgstr "Процедуры GImage" -#: app/internal_procs.c:118 app/preferences_dialog.c:1686 +#: app/internal_procs.c:118 app/preferences_dialog.c:1721 msgid "Interface" msgstr "Интерфейс" @@ -2981,7 +2838,7 @@ msgstr " msgid "Parasite procedures" msgstr "Процедуры правки" -#: app/internal_procs.c:133 app/layers_dialog.c:407 +#: app/internal_procs.c:133 app/lc_dialog.c:180 #, fuzzy msgid "Paths" msgstr "Шаблоны" @@ -3048,23 +2905,23 @@ msgstr " msgid "Convert to Bezier Curve" msgstr "Преобразовать в кривую Безье" -#: app/iscissors.c:1779 +#: app/iscissors.c:1780 msgid "Boundary contains < 4 points! Cannot bezierify." msgstr "" -#: app/layer.c:246 +#: app/layer.c:248 msgid "Zero width or height layers not allowed." msgstr "Нулевая ширина или высота слоя недопустимы." -#: app/layer.c:352 +#: app/layer.c:354 msgid "layer_copy: could not allocate new layer" msgstr "" -#: app/layer.c:429 +#: app/layer.c:431 msgid "layer_from_tiles: could not allocate new layer" msgstr "" -#: app/layer.c:484 +#: app/layer.c:486 #, c-format msgid "%s mask" msgstr "%s маска" @@ -3073,284 +2930,328 @@ msgstr "%s msgid "Layer Select" msgstr "Выделить слой" -#: app/layers_dialog.c:232 app/layers_dialog.c:303 app/layers_dialog.c:3261 -msgid "New Layer" -msgstr "Новый слой" - -#: app/layers_dialog.c:234 -msgid "Raise Layer" -msgstr "Поднять слой" - -#: app/layers_dialog.c:236 -msgid "Lower Layer" -msgstr "Опустить слой" - -#: app/layers_dialog.c:238 app/layers_dialog.c:306 -msgid "Duplicate Layer" -msgstr "Создать копию слоя" - -#: app/layers_dialog.c:240 app/layers_dialog.c:307 -msgid "Delete Layer" -msgstr "Удалить слой" - -#: app/layers_dialog.c:242 app/resize.c:159 -msgid "Scale Layer" -msgstr "Масштабировать слой" - -#: app/layers_dialog.c:244 app/resize.c:174 -msgid "Resize Layer" -msgstr "Изменить размер слоя" - -#: app/layers_dialog.c:246 -msgid "Add Layer Mask" -msgstr "Добавить маску слоя" - -#: app/layers_dialog.c:248 -msgid "Apply Layer Mask" -msgstr "Применить маску слоя" - -#: app/layers_dialog.c:250 app/layers_dialog.c:308 -msgid "Anchor Layer" -msgstr "Anchor слой" - -#: app/layers_dialog.c:252 -msgid "Merge Visible Layers" -msgstr "Объединить видимые слои" - -#: app/layers_dialog.c:254 -msgid "Merge Down" -msgstr "Объединить с предыдущим" - -#: app/layers_dialog.c:256 -msgid "Flatten Image" -msgstr "Свести изображение" - -#: app/layers_dialog.c:258 -msgid "Alpha To Selection" -msgstr "Альфа-канал -> Выделенная область" - -#: app/layers_dialog.c:260 -msgid "Mask To Selection" -msgstr "Маска -> Выделенная область" - -#: app/layers_dialog.c:262 -msgid "Add Alpha Channel" -msgstr "Добавить альфа-канал" - -#: app/layers_dialog.c:264 -msgid "Layer to Top" -msgstr "Слой наверх" - -#: app/layers_dialog.c:266 -msgid "Layer to Bottom" -msgstr "Слой вниз" - -#: app/layers_dialog.c:274 app/paint_funcs.c:83 +#: app/layers_dialog.c:199 app/paint_funcs.c:83 app/tool_options.c:775 msgid "Normal" msgstr "Нормальная" -#: app/layers_dialog.c:275 app/paint_funcs.c:84 +#: app/layers_dialog.c:201 app/paint_funcs.c:84 app/tool_options.c:776 msgid "Dissolve" msgstr "Растворение" -#: app/layers_dialog.c:276 app/paint_funcs.c:86 +#: app/layers_dialog.c:203 app/paint_funcs.c:86 app/tool_options.c:778 msgid "Multiply (Burn)" msgstr "Умножение (Затемнитель)" -#: app/layers_dialog.c:277 app/paint_funcs.c:98 +#: app/layers_dialog.c:205 app/paint_funcs.c:98 app/tool_options.c:779 msgid "Divide (Dodge)" msgstr "Деление (Осветлитель)" -#: app/layers_dialog.c:278 app/paint_funcs.c:87 +#: app/layers_dialog.c:207 app/paint_funcs.c:87 app/tool_options.c:780 msgid "Screen" msgstr "Осветление" -#: app/layers_dialog.c:279 app/paint_funcs.c:88 +#: app/layers_dialog.c:209 app/paint_funcs.c:88 app/tool_options.c:781 msgid "Overlay" msgstr "Перекрытие" -#: app/layers_dialog.c:280 app/paint_funcs.c:89 +#: app/layers_dialog.c:211 app/paint_funcs.c:89 app/tool_options.c:782 msgid "Difference" msgstr "Разница" -#: app/layers_dialog.c:281 app/paint_funcs.c:90 +#: app/layers_dialog.c:213 app/paint_funcs.c:90 app/tool_options.c:783 msgid "Addition" msgstr "Добавление" -#: app/layers_dialog.c:283 app/paint_funcs.c:92 +#: app/layers_dialog.c:217 app/paint_funcs.c:92 app/tool_options.c:785 msgid "Darken Only" msgstr "Замена темным" -#: app/layers_dialog.c:284 app/paint_funcs.c:93 +#: app/layers_dialog.c:219 app/paint_funcs.c:93 app/tool_options.c:786 msgid "Lighten Only" msgstr "Замена светлым" -#: app/layers_dialog.c:304 +#: app/layers_dialog.c:246 app/layers_dialog.c:2944 +msgid "New Layer" +msgstr "Новый слой" + +#: app/layers_dialog.c:248 msgid "" "Raise Layer \n" " To Top" msgstr "" -#: app/layers_dialog.c:305 +#: app/layers_dialog.c:251 msgid "" "Lower Layer \n" " To Bottom" msgstr "" -#: app/layers_dialog.c:335 -msgid "Layers & Channels" -msgstr "Слои и Каналы" +#: app/layers_dialog.c:254 +msgid "Duplicate Layer" +msgstr "Создать копию слоя" -#. The Auto-button -#: app/layers_dialog.c:373 -#, fuzzy -msgid "Auto" -msgstr "/Автоматически" +#: app/layers_dialog.c:256 +msgid "Anchor Layer" +msgstr "Anchor слой" -#: app/layers_dialog.c:391 -msgid "Layers" -msgstr "Слои" +#: app/layers_dialog.c:258 +msgid "Delete Layer" +msgstr "Удалить слой" -#: app/layers_dialog.c:401 -msgid "Channels" -msgstr "Каналы" - -#: app/layers_dialog.c:744 +#: app/layers_dialog.c:321 msgid "Keep Trans." msgstr "Сохр. прозр." -#: app/layers_dialog.c:1489 +#: app/layers_dialog.c:947 app/menus.c:245 +#, fuzzy +msgid "/Stack/Previous Layer" +msgstr "/Слои/Поднять слой" + +#: app/layers_dialog.c:949 app/menus.c:246 +#, fuzzy +msgid "/Stack/Next Layer" +msgstr "/Слои/Поднять слой" + +#: app/layers_dialog.c:952 app/menus.c:247 +#, fuzzy +msgid "/Stack/Raise Layer" +msgstr "/Слои/Поднять слой" + +#: app/layers_dialog.c:957 app/menus.c:248 +#, fuzzy +msgid "/Stack/Lower Layer" +msgstr "/Слои/Опустить слой" + +#: app/layers_dialog.c:962 app/menus.c:249 +#, fuzzy +msgid "/Stack/Layer to Top" +msgstr "Слой наверх" + +#: app/layers_dialog.c:964 app/menus.c:250 +#, fuzzy +msgid "/Stack/Layer to Bottom" +msgstr "Слой вниз" + +#: app/layers_dialog.c:967 app/menus.c:244 +#, fuzzy +msgid "/New Layer" +msgstr "Новый слой" + +#: app/layers_dialog.c:970 app/menus.c:251 +#, fuzzy +msgid "/Duplicate Layer" +msgstr "Создать копию слоя" + +#: app/layers_dialog.c:974 app/menus.c:252 +#, fuzzy +msgid "/Anchor Layer" +msgstr "Anchor слой" + +#: app/layers_dialog.c:978 app/menus.c:253 +#, fuzzy +msgid "/Delete Layer" +msgstr "Удалить слой" + +#: app/layers_dialog.c:981 app/menus.c:255 +#, fuzzy +msgid "/Scale Layer" +msgstr "Масштабировать слой" + +#: app/layers_dialog.c:982 app/menus.c:256 +#, fuzzy +msgid "/Resize Layer" +msgstr "Изменить размер слоя" + +#: app/layers_dialog.c:984 app/menus.c:258 +#, fuzzy +msgid "/Merge Visible Layers" +msgstr "Объединить видимые слои" + +#: app/layers_dialog.c:986 app/menus.c:259 +#, fuzzy +msgid "/Merge Down" +msgstr "Объединить с предыдущим" + +#: app/layers_dialog.c:987 app/menus.c:260 +#, fuzzy +msgid "/Flatten Image" +msgstr "Свести изображение" + +#: app/layers_dialog.c:989 app/menus.c:262 +#, fuzzy +msgid "/Add Layer Mask" +msgstr "Добавить маску слоя" + +#: app/layers_dialog.c:991 app/menus.c:263 +#, fuzzy +msgid "/Apply Layer Mask" +msgstr "Применить маску слоя" + +#: app/layers_dialog.c:993 app/menus.c:264 +#, fuzzy +msgid "/Alpha to Selection" +msgstr "Альфа-канал -> Выделенная область" + +#: app/layers_dialog.c:995 app/menus.c:265 +#, fuzzy +msgid "/Mask to Selection" +msgstr "Маска -> Выделенная область" + +#: app/layers_dialog.c:997 app/menus.c:266 +#, fuzzy +msgid "/Add Alpha Channel" +msgstr "Добавить альфа-канал" + +#: app/layers_dialog.c:1185 msgid "Unknown layer mode" msgstr "Неизвестный режим слоя" -#: app/layers_dialog.c:2206 app/layers_dialog.c:3028 app/layers_dialog.c:3471 +#: app/layers_dialog.c:1890 app/layers_dialog.c:2712 app/layers_dialog.c:3157 msgid "Floating Selection" msgstr "Плавающее выделение" -#: app/layers_dialog.c:3149 +#: app/layers_dialog.c:2832 msgid "new_layer_query_ok_callback: could not allocate new layer" msgstr "new_layer_query_ok_callback: не удалось разместить новый слой" -#: app/layers_dialog.c:3231 +#: app/layers_dialog.c:2914 msgid "New Layer Options" msgstr "Опции нового слоя" #. the name label and entry -#: app/layers_dialog.c:3251 +#: app/layers_dialog.c:2934 #, fuzzy msgid "Layer Name:" msgstr "Название слоя:" #. the size labels -#: app/layers_dialog.c:3265 +#: app/layers_dialog.c:2948 #, fuzzy msgid "Layer Width:" msgstr "Ширина слоя: " #. the radio frame and box -#: app/layers_dialog.c:3324 +#: app/layers_dialog.c:3007 msgid "Layer Fill Type" msgstr "Тип заполнения слоя" -#: app/layers_dialog.c:3447 +#: app/layers_dialog.c:3131 msgid "Edit Layer Attributes" msgstr "Редактировать аттрибуты слоя" -#: app/layers_dialog.c:3464 +#: app/layers_dialog.c:3149 msgid "Layer name: " msgstr "Название слоя: " -#: app/layers_dialog.c:3587 +#: app/layers_dialog.c:3275 msgid "White (Full Opacity)" msgstr "Белый (Абсолютно непрозрачный)" -#: app/layers_dialog.c:3588 +#: app/layers_dialog.c:3276 msgid "Black (Full Transparency)" msgstr "Черный (Абсолютно прозрачный)" -#: app/layers_dialog.c:3589 +#: app/layers_dialog.c:3277 msgid "Layer's Alpha Channel" msgstr "Альфа-канал слоя" -#: app/layers_dialog.c:3606 +#: app/layers_dialog.c:3294 msgid "Add Mask Options" msgstr "Добавить опции маски" #. the name entry hbox, label and entry -#: app/layers_dialog.c:3621 +#: app/layers_dialog.c:3309 msgid "Initialize Layer Mask To:" msgstr "" -#: app/layers_dialog.c:3720 +#: app/layers_dialog.c:3408 msgid "Apply" msgstr "Применить" -#: app/layers_dialog.c:3721 +#: app/layers_dialog.c:3409 msgid "Discard" msgstr "Отказаться" -#: app/layers_dialog.c:3735 +#: app/layers_dialog.c:3423 msgid "Layer Mask Options" msgstr "Опции маски слоя" #. the name entry hbox, label and entry -#: app/layers_dialog.c:3751 +#: app/layers_dialog.c:3439 msgid "Apply layer mask?" msgstr "Применить маску слоя?" -#: app/layers_dialog.c:3811 app/layers_dialog.c:3909 +#: app/layers_dialog.c:3499 app/layers_dialog.c:3597 msgid "Invalid width or height. Both must be positive." msgstr "Неправильная ширина или высота. Обе должны быть положительными." -#: app/layers_dialog.c:4062 +#: app/layers_dialog.c:3751 msgid "Expanded as necessary" msgstr "Расширять при необходимости" -#: app/layers_dialog.c:4063 +#: app/layers_dialog.c:3752 msgid "Clipped to image" msgstr "Отсекать по изображению" -#: app/layers_dialog.c:4064 +#: app/layers_dialog.c:3753 msgid "Clipped to bottom layer" msgstr "Отсекать по нижнему слою" -#: app/layers_dialog.c:4082 +#: app/layers_dialog.c:3771 msgid "Layer Merge Options" msgstr "Опции объединения слоев" -#: app/layers_dialog.c:4098 +#: app/layers_dialog.c:3787 msgid "Final, merged layer should be:" msgstr "В итоге, объединенный слой должен быть:" -#: app/layers_dialog.c:4100 +#: app/layers_dialog.c:3789 msgid "Final, anchored layer should be:" msgstr "В итоге, anchored слой должен быть:" -#: app/levels.c:239 +#: app/lc_dialog.c:111 +msgid "Layers & Channels" +msgstr "Слои и Каналы" + +#. The Auto-button +#: app/lc_dialog.c:150 +#, fuzzy +msgid "Auto" +msgstr "/Автоматически" + +#: app/lc_dialog.c:170 +msgid "Layers" +msgstr "Слои" + +#: app/lc_dialog.c:175 +msgid "Channels" +msgstr "Каналы" + +#: app/levels.c:197 msgid "Levels Options" msgstr "Опции уровней" -#: app/levels.c:296 +#: app/levels.c:245 msgid "Levels for indexed drawables cannot be adjusted." msgstr "Уровни для индексированных изображений не могут быть выровнены." -#: app/levels.c:372 +#: app/levels.c:334 msgid "Auto Levels" msgstr "Автовыравнивание уровней" -#: app/levels.c:403 app/tools.c:566 +#: app/levels.c:351 app/tools.c:592 msgid "Levels" msgstr "Уровни" -#: app/levels.c:418 +#: app/levels.c:366 msgid "Modify Levels for Channel: " msgstr "Изменить уровни для канала: " -#: app/levels.c:434 +#: app/levels.c:382 msgid "Input Levels: " msgstr "Уровни на входе: " -#: app/levels.c:522 +#: app/levels.c:470 msgid "Output Levels: " msgstr "Уровни на выходе: " @@ -3362,63 +3263,63 @@ msgstr " msgid "Allow Window Resizing" msgstr "Разрешить изменение размеров окна" -#: app/main.c:279 +#: app/main.c:287 msgid "GIMP version" msgstr "Версия GIMP" -#: app/main.c:283 +#: app/main.c:291 #, fuzzy, c-format msgid "Usage: %s [option ...] [files ...]\n" msgstr "используйте: %s [Опции ...] [Файл ...]\n" -#: app/main.c:284 +#: app/main.c:292 msgid "Valid options are:\n" msgstr "Допустимые опции:\n" -#: app/main.c:285 +#: app/main.c:293 msgid " -h --help Output this help.\n" msgstr " -h --help Выводит эту подсказку.\n" -#: app/main.c:286 +#: app/main.c:294 msgid " -v --version Output version info.\n" msgstr " -v --version Выводит информацию о версии.\n" -#: app/main.c:287 +#: app/main.c:295 msgid " -b --batch Run in batch mode.\n" msgstr " -b --batch Запускается а командном режиме.\n" -#: app/main.c:288 +#: app/main.c:296 msgid " -g --gimprc Use an alternate gimprc file.\n" msgstr " -g --gimprc Использует альтернативный файл gimprc.\n" -#: app/main.c:289 +#: app/main.c:297 msgid " -n --no-interface Run without a user interface.\n" msgstr " -n --no-interface Запускается без интерфейса пользователя.\n" -#: app/main.c:290 +#: app/main.c:298 msgid " -r --restore-session Try to restore saved session.\n" msgstr " -r --restore-session Пытается восстановить сохраненный сеанс.\n" -#: app/main.c:291 +#: app/main.c:299 msgid "" " --no-data Do not load patterns, gradients, palettes, " "brushes.\n" msgstr "" " --no-data Не загружает шаблоны, градиенты, палитры и кисти.\n" -#: app/main.c:292 +#: app/main.c:300 msgid " --verbose Show startup messages.\n" msgstr " --verbose Показывает сообщения при старте.\n" -#: app/main.c:293 +#: app/main.c:301 msgid " --no-splash Do not show the startup window.\n" msgstr " --no-splash Не показывает окно запуска.\n" -#: app/main.c:294 +#: app/main.c:302 msgid " --no-splash-image Do not add an image to the startup window.\n" msgstr " --no-splash-image Не добавляет изображение к окну запуска.\n" -#: app/main.c:295 +#: app/main.c:303 msgid "" " --no-shm Do not use shared memory between GIMP and its " "plugins.\n" @@ -3426,12 +3327,12 @@ msgstr "" " --no-shm Не использовать разделяемую память между GIMP и " "его дополнениями.\n" -#: app/main.c:296 +#: app/main.c:304 msgid " --no-xshm Do not use the X Shared Memory extension.\n" msgstr "" " --no-xshm Не использовать расширение X Shared Memory.\n" -#: app/main.c:297 +#: app/main.c:305 msgid "" " --console-messages Display warnings to console instead of a dialog " "box.\n" @@ -3439,11 +3340,11 @@ msgstr "" " --console-messages Показывать предупреждения на консоли вместо " "диалоговых окон.\n" -#: app/main.c:298 +#: app/main.c:306 msgid " --debug-handlers Enable debugging signal handlers.\n" msgstr " --debug-handlers Разрешить отладку обработчиков сигналов.\n" -#: app/main.c:299 +#: app/main.c:307 msgid "" " --display Use the designated X display.\n" "\n" @@ -3451,662 +3352,825 @@ msgstr "" " --display <дисплей> Использовать указанный X-дисплей.\n" "\n" -#: app/main.c:300 +#: app/main.c:308 msgid " --system-gimprc Use an alternate system gimprc file.\n" msgstr "" " --system-gimprc Использовать альтернативный системный файл " "gimprc.\n" -#: app/main.c:412 +#: app/main.c:420 msgid "sighup caught" msgstr "" -#: app/main.c:417 +#: app/main.c:425 msgid "sigint caught" msgstr "" -#: app/main.c:422 +#: app/main.c:430 msgid "sigquit caught" msgstr "" -#: app/main.c:427 +#: app/main.c:435 msgid "sigabrt caught" msgstr "" -#: app/main.c:432 +#: app/main.c:440 msgid "sigbus caught" msgstr "" -#: app/main.c:437 +#: app/main.c:445 msgid "sigsegv caught" msgstr "" -#: app/main.c:442 +#: app/main.c:450 msgid "sigpipe caught" msgstr "" -#: app/main.c:447 +#: app/main.c:455 msgid "sigterm caught" msgstr "" -#: app/main.c:452 +#: app/main.c:460 msgid "sigfpe caught" msgstr "" -#: app/main.c:456 +#: app/main.c:464 msgid "unknown signal" msgstr "неизвестный сигнал" -#: app/menus.c:43 +#: app/menus.c:46 msgid "/File/MRU00 " msgstr "/Файл/MRU00 " -#: app/menus.c:53 app/menus.c:80 +#: app/menus.c:56 app/menus.c:88 +#, fuzzy +msgid "/File/tearoff1" +msgstr "/Файл/Восстановить" + +#: app/menus.c:57 app/menus.c:89 #, fuzzy msgid "/File/New" msgstr "/Файл/Новый" -#: app/menus.c:54 app/menus.c:81 -#, fuzzy -msgid "/File/Open" -msgstr "/Файл/Открыть" - -#: app/menus.c:55 +#: app/menus.c:59 #, fuzzy msgid "/File/About..." msgstr "/Файл/О программе..." -#: app/menus.c:56 app/menus.c:85 +#: app/menus.c:60 app/menus.c:94 #, fuzzy msgid "/File/Preferences..." msgstr "/Файл/Настройки..." -#: app/menus.c:57 +#: app/menus.c:61 #, fuzzy msgid "/File/Tip of the day" msgstr "/Файл/Совет дня" -#: app/menus.c:58 +#: app/menus.c:63 #, fuzzy msgid "/File/Dialogs/Brushes..." msgstr "/Файл/Диалоги/Кисти..." -#: app/menus.c:59 +#: app/menus.c:64 #, fuzzy msgid "/File/Dialogs/Patterns..." msgstr "/Файл/Диалоги/Шаблоны..." -#: app/menus.c:60 +#: app/menus.c:65 #, fuzzy msgid "/File/Dialogs/Palette..." msgstr "/Файл/Диалоги/Палитра..." -#: app/menus.c:61 +#: app/menus.c:66 #, fuzzy msgid "/File/Dialogs/Gradient..." msgstr "/Файл/Диалоги/Градиент..." -#: app/menus.c:62 +#: app/menus.c:67 #, fuzzy msgid "/File/Dialogs/Layers & Channels..." msgstr "/Файл/Диалоги/Слои и каналы..." -#: app/menus.c:63 +#: app/menus.c:68 #, fuzzy msgid "/File/Dialogs/Tool Options..." msgstr "/Файл/Диалоги/Опции инструментов..." -#: app/menus.c:64 +#: app/menus.c:69 #, fuzzy msgid "/File/Dialogs/Input Devices..." msgstr "/Файл/Диалоги/Устройства ввода..." -#: app/menus.c:65 +#: app/menus.c:70 #, fuzzy msgid "/File/Dialogs/Device Status..." msgstr "/Файл/Диалоги/Состояние устройства..." -#: app/menus.c:66 +#: app/menus.c:71 #, fuzzy msgid "/File/Dialogs/Document Index..." msgstr "/Файл/Диалоги/Индекс документов..." -#: app/menus.c:67 +#: app/menus.c:72 #, fuzzy msgid "/File/Dialogs/Error Console..." msgstr "/Файл/Диалоги/Консоль ошибок..." -#: app/menus.c:68 +#: app/menus.c:74 +msgid "/Xtns/tearoff1" +msgstr "" + +#: app/menus.c:75 #, fuzzy msgid "/Xtns/Module Browser" msgstr "/Файл/Диалоги/Навигатор по модулям...[FixMe]" -#: app/menus.c:69 app/menus.c:70 app/menus.c:75 app/menus.c:86 +#: app/menus.c:76 app/menus.c:77 app/menus.c:82 app/menus.c:95 msgid "/File/---" msgstr "/Файл/---" -#: app/menus.c:76 app/menus.c:89 -#, fuzzy -msgid "/File/Quit" -msgstr "/Файл/Выход" +#: app/menus.c:87 +msgid "/tearoff1" +msgstr "" -#: app/menus.c:82 -#, fuzzy -msgid "/File/Save" -msgstr "/Файл/Сохранить" - -#: app/menus.c:83 -#, fuzzy -msgid "/File/Save as" -msgstr "/Файл/Сохранить как..." - -#: app/menus.c:84 +#: app/menus.c:93 #, fuzzy msgid "/File/Revert" msgstr "/Файл/Восстановить" -#: app/menus.c:88 -#, fuzzy -msgid "/File/Close" -msgstr "/Файл/Закрыть" - -#: app/menus.c:90 +#: app/menus.c:99 msgid "/File/---moved" msgstr "/Файл/---moved" -#: app/menus.c:92 +#: app/menus.c:101 +#, fuzzy +msgid "/Edit/tearoff1" +msgstr "/Правка/Очистить" + +#: app/menus.c:102 #, fuzzy msgid "/Edit/Cut" msgstr "/Правка/Вырезать" -#: app/menus.c:93 +#: app/menus.c:103 #, fuzzy msgid "/Edit/Copy" msgstr "/Правка/Скопировать" -#: app/menus.c:94 +#: app/menus.c:104 #, fuzzy msgid "/Edit/Paste" msgstr "/Правка/Вставить" -#: app/menus.c:95 +#: app/menus.c:105 #, fuzzy msgid "/Edit/Paste Into" msgstr "/Правка/Вставить в..." -#: app/menus.c:96 +#: app/menus.c:106 +#, fuzzy +msgid "/Edit/Paste As New" +msgstr "/Правка/Вставить из буфера с именем" + +#: app/menus.c:107 app/menus.c:113 app/menus.c:117 +msgid "/Edit/---" +msgstr "/Правка/---" + +#: app/menus.c:108 #, fuzzy msgid "/Edit/Clear" msgstr "/Правка/Очистить" -#: app/menus.c:97 +#: app/menus.c:109 #, fuzzy msgid "/Edit/Fill" msgstr "/Правка/Заполнить" -#: app/menus.c:98 +#: app/menus.c:110 #, fuzzy msgid "/Edit/Stroke" msgstr "/Правка/Обводка" -#: app/menus.c:99 +#: app/menus.c:111 #, fuzzy msgid "/Edit/Undo" msgstr "/Правка/Отменить" -#: app/menus.c:100 +#: app/menus.c:112 #, fuzzy msgid "/Edit/Redo" msgstr "/Правка/Повторить" -#: app/menus.c:101 app/menus.c:105 -msgid "/Edit/---" -msgstr "/Правка/---" - -#: app/menus.c:102 +#: app/menus.c:114 #, fuzzy msgid "/Edit/Cut Named" msgstr "/Правка/Вырезать в буфер с именем" -#: app/menus.c:103 +#: app/menus.c:115 #, fuzzy msgid "/Edit/Copy Named" msgstr "/Правка/Скопировать из буфера с именем" -#: app/menus.c:104 +#: app/menus.c:116 #, fuzzy msgid "/Edit/Paste Named" msgstr "/Правка/Вставить из буфера с именем" -#: app/menus.c:107 +#: app/menus.c:119 #, fuzzy -msgid "/Select/Toggle" -msgstr "/Выделение/Показать/Скрыть" +msgid "/Select/tearoff1" +msgstr "/Выделение/Увеличение" -#: app/menus.c:108 +#: app/menus.c:120 #, fuzzy msgid "/Select/Invert" msgstr "/Выделение/Инвертировать" -#: app/menus.c:109 +#: app/menus.c:121 #, fuzzy msgid "/Select/All" msgstr "/Выделение/Выделить все" -#: app/menus.c:110 +#: app/menus.c:122 #, fuzzy msgid "/Select/None" msgstr "/Выделение/Ничего" -#: app/menus.c:111 +#: app/menus.c:123 #, fuzzy msgid "/Select/Float" msgstr "/Выделение/Плавающее" -#: app/menus.c:112 +#: app/menus.c:124 #, fuzzy msgid "/Select/Sharpen" msgstr "/Выделение/Резкость" -#: app/menus.c:113 +#: app/menus.c:125 #, fuzzy msgid "/Select/Border" msgstr "/Выделение/Рамка" -#: app/menus.c:114 +#: app/menus.c:126 #, fuzzy msgid "/Select/Feather" msgstr "/Выделение/Растушевка" -#: app/menus.c:115 +#: app/menus.c:127 #, fuzzy msgid "/Select/Grow" msgstr "/Выделение/Увеличение" -#: app/menus.c:116 +#: app/menus.c:128 #, fuzzy msgid "/Select/Shrink" msgstr "/Выделение/Уменьшение" -#: app/menus.c:117 +#: app/menus.c:129 #, fuzzy msgid "/Select/Save To Channel" msgstr "/Выделение/Сохранить в канале" -#: app/menus.c:119 +#: app/menus.c:131 +msgid "/View/tearoff1" +msgstr "" + +#: app/menus.c:132 #, fuzzy msgid "/View/Zoom In" msgstr "/Просмотр/Увеличить масштаб" -#: app/menus.c:120 +#: app/menus.c:133 #, fuzzy msgid "/View/Zoom Out" msgstr "/Просмотр/Уменьшить масштаб" -#: app/menus.c:121 +#: app/menus.c:134 #, fuzzy msgid "/View/Zoom/16:1" msgstr "/Просмотр/Масштаб/16:1" -#: app/menus.c:122 +#: app/menus.c:135 #, fuzzy msgid "/View/Zoom/8:1" msgstr "/Просмотр/Масштаб/8:1" -#: app/menus.c:123 +#: app/menus.c:136 #, fuzzy msgid "/View/Zoom/4:1" msgstr "/Просмотр/Масштаб/4:1" -#: app/menus.c:124 +#: app/menus.c:137 #, fuzzy msgid "/View/Zoom/2:1" msgstr "/Просмотр/Масштаб/2:1" -#: app/menus.c:125 +#: app/menus.c:138 #, fuzzy msgid "/View/Zoom/1:1" msgstr "/Просмотр/Масштаб/1:1" -#: app/menus.c:126 +#: app/menus.c:139 msgid "/View/Zoom/1:2" msgstr "/Просмотр/Масштаб/1:2" -#: app/menus.c:127 +#: app/menus.c:140 msgid "/View/Zoom/1:4" msgstr "/Просмотр/Масштаб/1:4" -#: app/menus.c:128 +#: app/menus.c:141 msgid "/View/Zoom/1:8" msgstr "/Просмотр/Масштаб/1:8" -#: app/menus.c:129 +#: app/menus.c:142 msgid "/View/Zoom/1:16" msgstr "/Просмотр/Масштаб/1:16" -#: app/menus.c:130 +#: app/menus.c:143 #, fuzzy msgid "/View/Dot for dot" msgstr "/Просмотр/Точка за точкой" -#: app/menus.c:131 +#: app/menus.c:144 #, fuzzy msgid "/View/Window Info..." msgstr "/Просмотр/Информация об окне..." -#: app/menus.c:132 +#: app/menus.c:146 app/menus.c:152 +msgid "/View/---" +msgstr "/Просмотр/---" + +#: app/menus.c:147 +#, fuzzy +msgid "/View/Toggle Selection" +msgstr "/Просмотр/Линейки вкл/выкл" + +#: app/menus.c:148 #, fuzzy msgid "/View/Toggle Rulers" msgstr "/Просмотр/Линейки вкл/выкл" -#: app/menus.c:133 +#: app/menus.c:149 #, fuzzy msgid "/View/Toggle Statusbar" msgstr "/Просмотр/Строка состояния вкл/выкл" -#: app/menus.c:134 +#: app/menus.c:150 #, fuzzy msgid "/View/Toggle Guides" msgstr "/Просмотр/Направляющие вкл/выкл" -#: app/menus.c:135 +#: app/menus.c:151 #, fuzzy msgid "/View/Snap To Guides" msgstr "/Просмотр/Выравнивать по направляющим" -#: app/menus.c:136 -msgid "/View/---" -msgstr "/Просмотр/---" - -#: app/menus.c:137 +#: app/menus.c:154 #, fuzzy msgid "/View/New View" msgstr "/Просмотр/Новое окно" -#: app/menus.c:138 +#: app/menus.c:155 #, fuzzy msgid "/View/Shrink Wrap" msgstr "/Просмотр/Искривление обернуть[FixMe]" -#: app/menus.c:140 +#: app/menus.c:157 +#, fuzzy +msgid "/Image/tearoff1" +msgstr "/Правка/Очистить" + +#: app/menus.c:158 +#, fuzzy +msgid "/Image/Colors/tearoff1" +msgstr "/Изображение/Цвета/Инвертировать" + +#: app/menus.c:159 #, fuzzy msgid "/Image/Colors/Equalize" msgstr "/Изображение/Цвета/Выровнять" -#: app/menus.c:141 +#: app/menus.c:160 #, fuzzy msgid "/Image/Colors/Invert" msgstr "/Изображение/Цвета/Инвертировать" -#: app/menus.c:142 +#: app/menus.c:161 msgid "/Image/Colors/---" msgstr "/Изображение/Цвета/---" -#: app/menus.c:143 +#: app/menus.c:162 #, fuzzy msgid "/Image/Colors/Desaturate" msgstr "/Изображение/Цвета/Обесцветить" -#: app/menus.c:144 +#: app/menus.c:163 +#, fuzzy +msgid "/Image/Channel Ops/tearoff1" +msgstr "/Изображение/Канал/Смещение" + +#: app/menus.c:164 #, fuzzy msgid "/Image/Channel Ops/Duplicate" msgstr "/Изображение/Канал/Создать копию" -#: app/menus.c:145 +#: app/menus.c:165 #, fuzzy msgid "/Image/Channel Ops/Offset" msgstr "/Изображение/Канал/Смещение" -#: app/menus.c:146 +#: app/menus.c:166 +#, fuzzy +msgid "/Image/Alpha/tearoff1" +msgstr "/Изображение/Альфа-канал" + +#: app/menus.c:167 #, fuzzy msgid "/Image/Alpha/Add Alpha Channel" msgstr "/Изображение/Альфа-канал/Добавить альфа-канал" -#: app/menus.c:148 app/menus.c:152 app/menus.c:155 +#: app/menus.c:169 app/menus.c:173 app/menus.c:176 msgid "/Image/---" msgstr "/Изображение/---" -#: app/menus.c:149 +#: app/menus.c:170 #, fuzzy msgid "/Image/RGB" msgstr "/Изображение/RGB" -#: app/menus.c:150 +#: app/menus.c:171 #, fuzzy msgid "/Image/Grayscale" msgstr "/Изображение/Градации серого" -#: app/menus.c:151 +#: app/menus.c:172 #, fuzzy msgid "/Image/Indexed" msgstr "/Изображение/Индексированное" -#: app/menus.c:153 +#: app/menus.c:174 #, fuzzy msgid "/Image/Resize" msgstr "/Изображение/Изменить размер" -#: app/menus.c:154 +#: app/menus.c:175 #, fuzzy msgid "/Image/Scale" msgstr "/Изображение/Масштабировать" -#: app/menus.c:157 +#: app/menus.c:178 +#, fuzzy +msgid "/Layers/tearoff1" +msgstr "/Слои/Поднять слой" + +#: app/menus.c:179 #, fuzzy msgid "/Layers/Layers & Channels..." msgstr "/Слои/Слои и каналы..." -#: app/menus.c:158 +#: app/menus.c:180 +#, fuzzy +msgid "/Layers/Stack/tearoff1" +msgstr "/Слои/Поднять слой" + +#: app/menus.c:181 #, fuzzy msgid "/Layers/Stack/Previous Layer" msgstr "/Слои/Поднять слой" -#: app/menus.c:159 +#: app/menus.c:182 #, fuzzy msgid "/Layers/Stack/Next Layer" msgstr "/Слои/Поднять слой" -#: app/menus.c:160 +#: app/menus.c:183 #, fuzzy msgid "/Layers/Stack/Raise Layer" msgstr "/Слои/Поднять слой" -#: app/menus.c:161 +#: app/menus.c:184 #, fuzzy msgid "/Layers/Stack/Lower Layer" msgstr "/Слои/Опустить слой" -#: app/menus.c:162 +#: app/menus.c:185 #, fuzzy msgid "/Layers/Stack/Layer to Top" msgstr "Слой наверх" -#: app/menus.c:163 +#: app/menus.c:186 #, fuzzy msgid "/Layers/Stack/Layer to Bottom" msgstr "Слой вниз" -#: app/menus.c:164 +#: app/menus.c:187 app/menus.c:194 #, fuzzy msgid "/Layers/---" msgstr "Слои" -#: app/menus.c:165 +#: app/menus.c:188 #, fuzzy msgid "/Layers/Anchor Layer" msgstr "/Слои/Прицепить слой" -#: app/menus.c:166 +#: app/menus.c:189 #, fuzzy msgid "/Layers/Merge Visible Layers" msgstr "/Слои/Объединить видимые слои" -#: app/menus.c:167 +#: app/menus.c:190 #, fuzzy msgid "/Layers/Flatten Image" msgstr "/Слои/Свести изображение" -#: app/menus.c:168 +#: app/menus.c:191 #, fuzzy msgid "/Layers/Alpha To Selection" msgstr "/Слои/Альфа-канал -> Выделенная область" -#: app/menus.c:169 +#: app/menus.c:192 #, fuzzy msgid "/Layers/Mask To Selection" msgstr "/Слои/Маска -> Выделенная область" -#: app/menus.c:170 +#: app/menus.c:193 #, fuzzy msgid "/Layers/Add Alpha Channel" msgstr "/Слои/Новый альфа-канал" -#. these are built on the fly -#. -#. { N_("/Tools/Ellipse Select"), "E", tools_select_cmd_callback, ELLIPSE_SELECT }, -#. { N_("/Tools/Free Select"), "F", tools_select_cmd_callback, FREE_SELECT }, -#. { N_("/Tools/Fuzzy Select"), "Z", tools_select_cmd_callback, FUZZY_SELECT }, -#. { N_("/Tools/Bezier Select"), "B", tools_select_cmd_callback, BEZIER_SELECT }, -#. { N_("/Tools/Intelligent Scissors"), "I", tools_select_cmd_callback, ISCISSORS }, -#. { N_("/Tools/Move"), "M", tools_select_cmd_callback, MOVE }, -#. { N_("/Tools/Magnify"), "M", tools_select_cmd_callback, MAGNIFY }, -#. { N_("/Tools/Crop"), "C", tools_select_cmd_callback, CROP }, -#. { N_("/Tools/Transform"), "T", tools_select_cmd_callback, ROTATE }, -#. { N_("/Tools/Flip"), "F", tools_select_cmd_callback, FLIP }, -#. { N_("/Tools/Text"), "T", tools_select_cmd_callback, TEXT }, -#. { N_("/Tools/Color Picker"), "O", tools_select_cmd_callback, COLOR_PICKER }, -#. { N_("/Tools/Bucket Fill"), "B", tools_select_cmd_callback, BUCKET_FILL }, -#. { N_("/Tools/Blend"), "L", tools_select_cmd_callback, BLEND }, -#. { N_("/Tools/Paintbrush"), "P", tools_select_cmd_callback, PAINTBRUSH }, -#. { N_("/Tools/Pencil"), "P", tools_select_cmd_callback, PENCIL }, -#. { N_("/Tools/Eraser"), "E", tools_select_cmd_callback, ERASER }, -#. { N_("/Tools/Airbrush"), "A", tools_select_cmd_callback, AIRBRUSH }, -#. { N_("/Tools/Clone"), "C", tools_select_cmd_callback, CLONE }, -#. { N_("/Tools/Convolve"), "V", tools_select_cmd_callback, CONVOLVE }, -#. { N_("/Tools/Ink"), "K", tools_select_cmd_callback, INK }, -#. { N_("/Tools/Default Colors"), "D", tools_default_colors_cmd_callback, 0 }, -#. { N_("/Tools/Toolbox"), NULL, toolbox_raise_callback, 0 }, -#. { N_("/Tools/---"), NULL, NULL, 0, "" }, -#. { N_("/Tools/Default Colors"), "D", tools_default_colors_cmd_callback, 0 }, -#. { N_("/Tools/Swap Colors"), "X", tools_swap_colors_cmd_callback, 0 }, -#. -#: app/menus.c:203 +#: app/menus.c:196 +#, fuzzy +msgid "/Tools/tearoff1" +msgstr "/Инструменты/Ластик" + +#: app/menus.c:197 #, fuzzy msgid "/Tools/Toolbox" msgstr "/Инструменты/Панель инструментов" -#: app/menus.c:204 +#: app/menus.c:198 #, fuzzy msgid "/Tools/Default Colors" msgstr "/Инструменты/Цвета по умолчанию" -#: app/menus.c:205 +#: app/menus.c:199 #, fuzzy msgid "/Tools/Swap Colors" msgstr "/Инструменты/Поменять цвета" -#: app/menus.c:206 +#: app/menus.c:200 msgid "/Tools/---" msgstr "/Инструменты/---" -#: app/menus.c:208 +#. the tool entries themselves are built on the fly +#: app/menus.c:204 +#, fuzzy +msgid "/Filters/tearoff1" +msgstr "/Фильтры/---" + +#: app/menus.c:205 app/plug_in.c:1285 #, fuzzy msgid "/Filters/Repeat last" msgstr "/Фильтры/Повторить последний" -#: app/menus.c:209 +#: app/menus.c:206 app/plug_in.c:1286 #, fuzzy msgid "/Filters/Re-show last" msgstr "/Фильтры/Показать последний" -#: app/menus.c:210 +#: app/menus.c:207 msgid "/Filters/---" msgstr "/Фильтры/---" -#: app/menus.c:212 +#: app/menus.c:209 +#, fuzzy +msgid "/Script-Fu/tearoff1" +msgstr "/Script-Fu/" + +#: app/menus.c:210 msgid "/Script-Fu/" msgstr "/Script-Fu/" -#: app/menus.c:214 +#: app/menus.c:212 +#, fuzzy +msgid "/Dialogs/tearoff1" +msgstr "/Диалоги/Шаблоны..." + +#: app/menus.c:213 #, fuzzy msgid "/Dialogs/Brushes..." msgstr "/Диалоги/Кисти..." -#: app/menus.c:215 +#: app/menus.c:214 #, fuzzy msgid "/Dialogs/Patterns..." msgstr "/Диалоги/Шаблоны..." -#: app/menus.c:216 +#: app/menus.c:215 #, fuzzy msgid "/Dialogs/Palette..." msgstr "/Диалоги/Палитра...." -#: app/menus.c:217 +#: app/menus.c:216 #, fuzzy msgid "/Dialogs/Gradient..." msgstr "/Диалоги/Градиент..." -#: app/menus.c:218 +#: app/menus.c:217 #, fuzzy msgid "/Dialogs/Layers & Channels..." msgstr "/Диалоги/Слои и каналы..." -#: app/menus.c:219 +#: app/menus.c:218 #, fuzzy msgid "/Dialogs/Indexed Palette..." msgstr "/Диалоги/Индексированная палитра..." -#: app/menus.c:220 +#: app/menus.c:219 #, fuzzy msgid "/Dialogs/Tool Options..." msgstr "/Диалоги/Опции инструментов..." -#: app/menus.c:221 +#: app/menus.c:220 #, fuzzy msgid "/Dialogs/Input Devices..." msgstr "/Диалоги/Устройства ввода..." -#: app/menus.c:222 +#: app/menus.c:221 #, fuzzy msgid "/Dialogs/Device Status..." msgstr "/Диалоги/Состояние устройства..." -#: app/menus.c:229 +#: app/menus.c:228 msgid "/Automatic" msgstr "/Автоматически" -#: app/menus.c:237 +#: app/menus.c:236 msgid "/By extension" msgstr "/По расширению" -#: app/menus.c:436 +#: app/menus.c:290 +#, fuzzy +msgid "/New Path" +msgstr "Новая палитра" + +#: app/menus.c:291 +#, fuzzy +msgid "/Duplicate Path" +msgstr "Создать копию слоя" + +#: app/menus.c:292 +#, fuzzy +msgid "/Path to Selection" +msgstr "Выбор палитры" + +#: app/menus.c:293 +msgid "/Stroke Path" +msgstr "" + +#: app/menus.c:294 +#, fuzzy +msgid "/Delete Path" +msgstr "Удалить" + +#: app/menus.c:296 +#, fuzzy +msgid "/Copy Path" +msgstr "Скопировать градиент" + +#: app/menus.c:297 +#, fuzzy +msgid "/Paste Path" +msgstr "Вставить" + +#: app/menus.c:298 +#, fuzzy +msgid "/Import Path" +msgstr "Импортировать палитру" + +#: app/menus.c:299 +#, fuzzy +msgid "/Export Path" +msgstr "Импортировать палитру" + +#: app/menus.c:596 #, c-format msgid "Error opening file: %s\n" msgstr "Ошибка при открытии файла: %s\n" -#: app/menus.c:458 app/menus.c:539 +#: app/menus.c:618 app/menus.c:699 #, c-format msgid "/File/MRU%02d" msgstr "/Файл/MRU%02d" -#: app/move.c:438 +#: app/module_db.c:269 +#, fuzzy +msgid "Module DB" +msgstr "Модули" + +#: app/module_db.c:567 +#, fuzzy, c-format +msgid "load module: \"%s\"\n" +msgstr "модули\n" + +#: app/module_db.c:574 +#, c-format +msgid "skipping module: \"%s\"\n" +msgstr "" + +#: app/module_db.c:598 +#, c-format +msgid "module load error: %s: %s" +msgstr "" + +#: app/module_db.c:616 +msgid "missing module_init() symbol" +msgstr "" + +#: app/module_db.c:619 +#, c-format +msgid "%s: module_init() symbol not found" +msgstr "" + +#: app/module_db.c:772 +#, fuzzy +msgid "" +msgstr "модули\n" + +#: app/module_db.c:785 app/module_db.c:794 +msgid "on disk" +msgstr "" + +#: app/module_db.c:785 +msgid "only in memory" +msgstr "" + +#: app/module_db.c:794 +msgid "nowhere (click 'refresh')" +msgstr "" + +#: app/module_db.c:830 +#, fuzzy +msgid "Load" +msgstr "Загрузить из" + +#: app/module_db.c:839 +#, fuzzy +msgid "Unload" +msgstr "Безымянная" + +#: app/module_db.c:852 +msgid "Purpose: " +msgstr "" + +#: app/module_db.c:853 +#, fuzzy +msgid "Author: " +msgstr "/Автоматически" + +#: app/module_db.c:854 +#, fuzzy +msgid "Version: " +msgstr "Версия " + +#: app/module_db.c:855 +#, fuzzy +msgid "Copyright: " +msgstr "Высота слоя: " + +#: app/module_db.c:856 +#, fuzzy +msgid "Date: " +msgstr "Скорость: " + +#: app/module_db.c:857 +#, fuzzy +msgid "Location: " +msgstr "Выделенная область: " + +#: app/module_db.c:858 +#, fuzzy +msgid "State: " +msgstr "Скорость: " + +#: app/module_db.c:877 +msgid "Autoload during startup" +msgstr "" + +#: app/move.c:444 msgid "Move Tool Options" msgstr "Опции перемещения" -#: app/paint_core.c:547 +#: app/paint_core.c:586 msgid "No brushes available for use with this tool." msgstr "Нет кистей доступных для использования с этим инструментом." -#: app/paint_core.c:1290 -msgid "paint_core_replace only works in INCREMENTAL mode" -msgstr "" - -#: app/paint_core.c:1427 +#: app/paint_core.c:1574 msgid "set_undo_tiles: undo_tiles is null" msgstr "" -#: app/paint_funcs.c:85 +#: app/paint_funcs.c:85 app/tool_options.c:777 msgid "Behind" msgstr "Подложка" @@ -4122,31 +4186,32 @@ msgstr " msgid "Once Forward" msgstr "На один вперед" -#: app/paintbrush.c:154 +#: app/paintbrush.c:155 msgid "Once Backward" msgstr "На один назад" -#: app/paintbrush.c:155 +#: app/paintbrush.c:157 msgid "Loop Sawtooth" msgstr "Пилообразный цикл" -#: app/paintbrush.c:156 +#: app/paintbrush.c:159 msgid "Loop Triangle" msgstr "Треугольный цикл" -#: app/paintbrush.c:180 +#: app/paintbrush.c:185 #, fuzzy msgid "Fade Out:" msgstr "Переход" -#: app/paintbrush.c:207 +#: app/paintbrush.c:212 msgid "Length:" msgstr "" -#. the radio frame and box -#: app/paintbrush.c:232 -msgid "Gradient Type" -msgstr "Тип градиента" +#. the gradient type +#: app/paintbrush.c:237 +#, fuzzy +msgid "Type:" +msgstr "Тип:" #: app/palette.c:484 #, c-format @@ -4325,567 +4390,567 @@ msgstr " msgid "Perspective..." msgstr "Перспектива..." -#: app/plug_in.c:204 +#: app/plug_in.c:207 msgid "shmget failed...disabling shared memory tile transport" msgstr "" -#: app/plug_in.c:210 +#: app/plug_in.c:213 msgid "shmat failed...disabling shared memory tile transport" msgstr "" -#: app/plug_in.c:309 +#: app/plug_in.c:312 msgid "Plug-ins" msgstr "Дополнения" -#: app/plug_in.c:321 +#: app/plug_in.c:324 #, c-format msgid "query plug-in: \"%s\"\n" msgstr "запрос дополнения: \"%s\"\n" -#: app/plug_in.c:359 +#: app/plug_in.c:362 #, c-format msgid "writing \"%s\"\n" msgstr "запись \"%s\"\n" -#: app/plug_in.c:374 +#: app/plug_in.c:377 msgid "Starting extensions: " msgstr "Запуск расширений: " -#: app/plug_in.c:375 +#: app/plug_in.c:378 msgid "Extensions" msgstr "Расширения" -#: app/plug_in.c:690 +#: app/plug_in.c:693 #, c-format msgid "\"%s\" executable not found\n" msgstr "\"%s\" исполняемый код не найден\n" -#: app/plug_in.c:743 +#: app/plug_in.c:746 #, c-format msgid "unable to locate plug-in: \"%s\"" msgstr "не удалось обнаружить дополнение: \"%s\"" -#: app/plug_in.c:825 +#: app/plug_in.c:828 msgid "unable to open pipe" msgstr "" -#: app/plug_in.c:914 +#: app/plug_in.c:917 #, c-format msgid "unable to run plug-in: %s" msgstr "не удалось запустить дополнение: %s" -#: app/plug_in.c:1281 -msgid "/Filters/Repeat last" -msgstr "/Фильтры/Повторить последний" - -#: app/plug_in.c:1282 -msgid "/Filters/Re-show last" -msgstr "/Фильтры/Показать последний" - -#: app/plug_in.c:1640 app/plug_in.c:1653 app/plug_in.c:1666 app/plug_in.c:1681 +#: app/plug_in.c:1648 app/plug_in.c:1661 app/plug_in.c:1674 app/plug_in.c:1689 #, c-format msgid "" "plug-in \"%s\" attempted to install procedure \"%s\" which does not take the " "standard plug-in args" msgstr "" -#: app/plug_in.c:1689 +#: app/plug_in.c:1697 #, c-format msgid "" "plug-in \"%s\" attempted to install procedure \"%s\" in an invalid menu " "location. Use either \"\", \"\", \"\", or \"\"." msgstr "" -#: app/plug_in.c:1709 +#: app/plug_in.c:1717 #, c-format msgid "" "plug_in \"%s\" attempted to install procedure \"%s\" which fails to comply " "with the array parameter passing standard. Argument %d is noncompliant." msgstr "" -#: app/plug_in.c:2141 +#: app/plug_in.c:2149 #, c-format msgid "duplicate plug-in: \"%s\" (skipping)\n" msgstr "" -#: app/plug_in.c:2349 +#: app/plug_in.c:2357 msgid "Unknown procedure type." msgstr "Неизвестный тип процедуры." -#: app/plug_in.c:2430 +#: app/plug_in.c:2438 #, c-format msgid "removing duplicate PDB procedure \"%s\"" msgstr "" -#: app/plug_in.c:2686 app/plug_in.c:2851 app/plug_in.c:2968 app/plug_in.c:3053 +#: app/plug_in.c:2694 app/plug_in.c:2859 app/plug_in.c:2976 app/plug_in.c:3061 msgid "the \"region\" arg type is not currently supported" msgstr "" -#: app/posterize.c:217 +#: app/posterize.c:164 msgid "Posterize does not operate on indexed drawables." msgstr "Постеризация не действует на индексированные изображения." -#: app/posterize.c:262 app/tools.c:521 +#: app/posterize.c:211 app/tools.c:547 msgid "Posterize" msgstr "Постеризовать" -#: app/posterize.c:276 +#: app/posterize.c:225 msgid "Posterize Levels: " msgstr "Уровни постеризации: " -#: app/preferences_dialog.c:203 +#: app/preferences_dialog.c:205 msgid "Error: Levels of undo must be zero or greater." msgstr "Ошибка: уровней отмены должно быть 0 или больше." -#: app/preferences_dialog.c:209 +#: app/preferences_dialog.c:211 msgid "Error: Number of processors must be between 1 and 30." msgstr "Ошибка: число процессоров должно быть между 1 и 30." -#: app/preferences_dialog.c:215 +#: app/preferences_dialog.c:217 msgid "Error: Marching speed must be 50 or greater." msgstr "" -#: app/preferences_dialog.c:221 +#: app/preferences_dialog.c:223 msgid "Error: Default width must be one or greater." msgstr "" -#: app/preferences_dialog.c:227 +#: app/preferences_dialog.c:229 msgid "Error: Default height must be one or greater." msgstr "" -#: app/preferences_dialog.c:234 +#: app/preferences_dialog.c:236 msgid "Error: Default unit must be within unit range." msgstr "" -#: app/preferences_dialog.c:241 +#: app/preferences_dialog.c:243 msgid "Error: default resolution must not be zero." msgstr "" -#: app/preferences_dialog.c:249 +#: app/preferences_dialog.c:251 msgid "Error: Default resolution unit must be within unit range." msgstr "" -#: app/preferences_dialog.c:256 +#: app/preferences_dialog.c:258 msgid "Error: Monitor resolution must not be zero." msgstr "" -#: app/preferences_dialog.c:263 +#: app/preferences_dialog.c:265 msgid "Error: Image title format must not be NULL." msgstr "" -#: app/preferences_dialog.c:520 +#: app/preferences_dialog.c:536 msgid "You will need to restart GIMP for these changes to take effect." msgstr "Чтобы эти изменения подействовали, надо перезапустить GIMP." -#: app/preferences_dialog.c:1433 +#: app/preferences_dialog.c:1467 msgid "Preferences" msgstr "Настройки" #. The categories tree -#: app/preferences_dialog.c:1451 +#: app/preferences_dialog.c:1485 msgid "Categories" msgstr "" -#: app/preferences_dialog.c:1477 +#: app/preferences_dialog.c:1512 msgid "New File Settings" msgstr "Установки для нового файла" -#: app/preferences_dialog.c:1479 +#: app/preferences_dialog.c:1514 msgid "New File" msgstr "Новый файл" -#: app/preferences_dialog.c:1489 +#: app/preferences_dialog.c:1524 msgid "Default Image Size and Unit" msgstr "Размер и Unit изображения по умолчанию" -#: app/preferences_dialog.c:1503 +#: app/preferences_dialog.c:1538 msgid "Width" msgstr "Ширина" -#: app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1540 msgid "Height" msgstr "Высота" -#: app/preferences_dialog.c:1532 +#: app/preferences_dialog.c:1567 msgid "Default Image Resolution and Resolution Unit" msgstr "Разрешение изображения и Unit'а по умолчанию" -#: app/preferences_dialog.c:1557 app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:1592 app/preferences_dialog.c:2294 msgid "dpi" msgstr "dpi" -#: app/preferences_dialog.c:1602 +#: app/preferences_dialog.c:1637 msgid "Default Image Type:" msgstr "Тип изображения по умолчанию:" -#: app/preferences_dialog.c:1607 +#: app/preferences_dialog.c:1642 msgid "Display Settings" msgstr "Установки дисплея" -#: app/preferences_dialog.c:1609 +#: app/preferences_dialog.c:1644 msgid "Display" msgstr "Дисплей" -#: app/preferences_dialog.c:1616 +#: app/preferences_dialog.c:1651 msgid "Transparency" msgstr "Прозрачность" -#: app/preferences_dialog.c:1634 +#: app/preferences_dialog.c:1669 msgid "Light Checks" msgstr "Блики" -#: app/preferences_dialog.c:1636 +#: app/preferences_dialog.c:1671 msgid "Mid-Tone Checks" msgstr "Полутона" -#: app/preferences_dialog.c:1638 +#: app/preferences_dialog.c:1673 msgid "Dark Checks" msgstr "Затемнения" -#: app/preferences_dialog.c:1640 +#: app/preferences_dialog.c:1675 msgid "White Only" msgstr "Только белое" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1677 msgid "Gray Only" msgstr "Только серое" -#: app/preferences_dialog.c:1644 +#: app/preferences_dialog.c:1679 msgid "Black Only" msgstr "Только черное" -#: app/preferences_dialog.c:1648 +#: app/preferences_dialog.c:1683 msgid "Transparency Type:" msgstr "Тип прозрачности:" -#: app/preferences_dialog.c:1654 app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1689 app/preferences_dialog.c:1760 msgid "Small" msgstr "Маленький" -#: app/preferences_dialog.c:1656 app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1691 app/preferences_dialog.c:1761 msgid "Medium" msgstr "Средний" -#: app/preferences_dialog.c:1658 app/preferences_dialog.c:1727 +#: app/preferences_dialog.c:1693 app/preferences_dialog.c:1762 msgid "Large" msgstr "Большой" -#: app/preferences_dialog.c:1662 +#: app/preferences_dialog.c:1697 msgid "Check Size:" msgstr "" -#: app/preferences_dialog.c:1664 app/transform_tool.c:191 +#: app/preferences_dialog.c:1699 app/transform_tool.c:190 msgid "Scaling" msgstr "Масштабирование" -#: app/preferences_dialog.c:1673 +#: app/preferences_dialog.c:1708 msgid "Cubic Interpolation" msgstr "Кубическая интерполяция" -#: app/preferences_dialog.c:1684 +#: app/preferences_dialog.c:1719 msgid "Interface Settings" msgstr "Установки интерфейса" -#: app/preferences_dialog.c:1693 +#: app/preferences_dialog.c:1728 msgid "General" msgstr "Общие" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1765 msgid "Preview Size:" msgstr "Размер пред.просмотра:" -#: app/preferences_dialog.c:1739 +#: app/preferences_dialog.c:1774 msgid "Levels of Undo:" msgstr "Уровней отмены:" -#: app/preferences_dialog.c:1748 +#: app/preferences_dialog.c:1783 msgid "Recent Documents List Size:" msgstr "Размер списка последних документов:" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1786 msgid "Help System" msgstr "Система помощи" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1795 msgid "Show Tool Tips" msgstr "Показывать подсказки" -#: app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1806 msgid "Image Windows Settings" msgstr "Установки окна изображения" -#: app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1808 msgid "Image Windows" msgstr "Окно изображения" -#: app/preferences_dialog.c:1780 +#: app/preferences_dialog.c:1815 msgid "Appearance" msgstr "Внешний вид" -#: app/preferences_dialog.c:1789 +#: app/preferences_dialog.c:1824 msgid "Resize Window on Zoom" msgstr "Изменять размер окна при масштабировании" -#: app/preferences_dialog.c:1798 +#: app/preferences_dialog.c:1833 msgid "Show Rulers" msgstr "Показывать линейки прокрутки" -#: app/preferences_dialog.c:1807 +#: app/preferences_dialog.c:1842 msgid "Show Statusbar" msgstr "Показывать строку состояния" -#: app/preferences_dialog.c:1831 +#: app/preferences_dialog.c:1866 msgid "Marching Ants Speed:" msgstr "" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:1839 +#: app/preferences_dialog.c:1874 msgid "Custom" msgstr "По выбору" #. set some commonly used format strings -#: app/preferences_dialog.c:1845 +#: app/preferences_dialog.c:1880 msgid "Standard" msgstr "Стандартный" -#: app/preferences_dialog.c:1850 +#: app/preferences_dialog.c:1885 msgid "Show zoom percentage" msgstr "Показывать масштаб в %" -#: app/preferences_dialog.c:1855 +#: app/preferences_dialog.c:1890 msgid "Show zoom ratio" msgstr "Показывать масштабный коэффициент" -#: app/preferences_dialog.c:1860 +#: app/preferences_dialog.c:1895 msgid "Show reversed zoom ratio" msgstr "Показывать обратный масштабный коэффициент" -#: app/preferences_dialog.c:1871 +#: app/preferences_dialog.c:1906 msgid "Image Title Format:" msgstr "Формат заголовка изображения:" #. End of the title format string -#: app/preferences_dialog.c:1874 +#: app/preferences_dialog.c:1909 msgid "Pointer Movement Feedback" msgstr "" -#: app/preferences_dialog.c:1884 +#: app/preferences_dialog.c:1919 msgid "Perfect-but-slow Pointer Tracking" msgstr "Совершенное-но-медленное движение указателя" -#: app/preferences_dialog.c:1893 +#: app/preferences_dialog.c:1928 msgid "Disable Cursor Updating" msgstr "Отключить обновление курсора" -#: app/preferences_dialog.c:1904 +#: app/preferences_dialog.c:1939 #, fuzzy msgid "Tool Options Settings" msgstr "Опции инструментов" -#: app/preferences_dialog.c:1906 app/tools.c:726 +#: app/preferences_dialog.c:1941 app/tools.c:884 msgid "Tool Options" msgstr "Опции инструментов" -#: app/preferences_dialog.c:1913 +#: app/preferences_dialog.c:1948 #, fuzzy msgid "Paint Options" msgstr "Опции кисти" -#: app/preferences_dialog.c:1923 +#: app/preferences_dialog.c:1958 #, fuzzy msgid "Use Global Paint Options" msgstr "Опции цветового баланса" -#: app/preferences_dialog.c:1933 -msgid "(Switching this off does not yet work consistently.)" +#: app/preferences_dialog.c:1974 +msgid "Display brush and pattern indicators on Toolbar" msgstr "" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1988 msgid "Environment Settings" msgstr "Установки окружения" -#: app/preferences_dialog.c:1945 +#: app/preferences_dialog.c:1990 msgid "Environment" msgstr "Окружение" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1997 msgid "Resource Consumption" msgstr "Конфигурирование ресурсов" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:2006 msgid "Conservative Memory Usage" msgstr "Консервативное использование памяти" -#: app/preferences_dialog.c:2012 app/preferences_dialog.c:2053 +#: app/preferences_dialog.c:2057 app/preferences_dialog.c:2098 msgid "Bytes" msgstr "Байты" -#: app/preferences_dialog.c:2013 app/preferences_dialog.c:2054 +#: app/preferences_dialog.c:2058 app/preferences_dialog.c:2099 msgid "KiloBytes" msgstr "Килобайты" -#: app/preferences_dialog.c:2014 app/preferences_dialog.c:2055 +#: app/preferences_dialog.c:2059 app/preferences_dialog.c:2100 msgid "MegaBytes" msgstr "Мегабайты" -#: app/preferences_dialog.c:2019 +#: app/preferences_dialog.c:2064 msgid "Tile Cache Size:" msgstr "Размер Cache для орнаментов" -#: app/preferences_dialog.c:2060 +#: app/preferences_dialog.c:2105 msgid "Maximum Image Size:" msgstr "" -#: app/preferences_dialog.c:2070 +#: app/preferences_dialog.c:2115 msgid "Number of Processors to Use:" msgstr "Число используемых процессоров:" -#: app/preferences_dialog.c:2074 +#: app/preferences_dialog.c:2119 msgid "8-Bit Displays" msgstr "8-Bit дисплей" -#: app/preferences_dialog.c:2085 +#: app/preferences_dialog.c:2130 msgid "Install Colormap" msgstr "Установить цветовую карту" -#: app/preferences_dialog.c:2094 +#: app/preferences_dialog.c:2139 msgid "Colormap Cycling" msgstr "" -#: app/preferences_dialog.c:2105 +#: app/preferences_dialog.c:2148 +msgid "File Previews / Thumbnails" +msgstr "" + +#: app/preferences_dialog.c:2175 +msgid "Try to Write a Thumbnail File:" +msgstr "" + +#: app/preferences_dialog.c:2180 msgid "Session Management" msgstr "Управление сеансом" -#: app/preferences_dialog.c:2107 +#: app/preferences_dialog.c:2182 msgid "Session" msgstr "Сеанс" -#: app/preferences_dialog.c:2114 +#: app/preferences_dialog.c:2189 msgid "Window Positions" msgstr "Позиция окна" -#: app/preferences_dialog.c:2123 +#: app/preferences_dialog.c:2198 msgid "Save Window Positions on Exit" msgstr "Сохранять позицию окна при выходе" -#: app/preferences_dialog.c:2137 +#: app/preferences_dialog.c:2212 msgid "Clear Saved Window Positions" msgstr "Очистить сохраненную позицию окна" -#: app/preferences_dialog.c:2144 +#: app/preferences_dialog.c:2219 msgid "Always Try to Restore Session" msgstr "Всегда пытаться восстановить сеанс" -#: app/preferences_dialog.c:2153 +#: app/preferences_dialog.c:2228 msgid "Devices" msgstr "Устройства" -#: app/preferences_dialog.c:2162 +#: app/preferences_dialog.c:2237 msgid "Save Device Status on Exit" msgstr "Сохранять состояние устройства при выходе" -#: app/preferences_dialog.c:2173 +#: app/preferences_dialog.c:2248 msgid "Monitor Information" msgstr "Информация о мониторе" -#: app/preferences_dialog.c:2175 +#: app/preferences_dialog.c:2250 msgid "Monitor" msgstr "Монитор" -#: app/preferences_dialog.c:2182 +#: app/preferences_dialog.c:2257 msgid "Get Monitor Resolution" msgstr "Установить разрешение монитора" -#: app/preferences_dialog.c:2197 +#: app/preferences_dialog.c:2272 #, c-format msgid "(Currently %d x %d dpi)" msgstr "(сейчас %d x %d dpi)" -#: app/preferences_dialog.c:2244 +#: app/preferences_dialog.c:2319 msgid "From X Server" msgstr "с X-сервера" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2334 msgid "Manually:" msgstr "вручную:" -#: app/preferences_dialog.c:2272 +#: app/preferences_dialog.c:2347 msgid "Directories Settings" msgstr "Установки каталогов" -#: app/preferences_dialog.c:2274 +#: app/preferences_dialog.c:2349 msgid "Directories" msgstr "Каталоги" -#: app/preferences_dialog.c:2287 +#: app/preferences_dialog.c:2362 msgid "Temp Dir:" msgstr "Временный каталог:" -#: app/preferences_dialog.c:2287 +#: app/preferences_dialog.c:2362 msgid "Select Temp Dir" msgstr "Выбрать временный каталог" -#: app/preferences_dialog.c:2288 +#: app/preferences_dialog.c:2363 msgid "Swap Dir:" msgstr "Каталог подкачки:" -#: app/preferences_dialog.c:2288 +#: app/preferences_dialog.c:2363 msgid "Select Swap Dir" msgstr "Выбрать каталог подкачки" -#: app/preferences_dialog.c:2320 +#: app/preferences_dialog.c:2395 msgid "Brushes Directories" msgstr "Каталог кистей" -#: app/preferences_dialog.c:2320 +#: app/preferences_dialog.c:2395 msgid "Select Brushes Dir" msgstr "Выбрать каталог кистей" -#: app/preferences_dialog.c:2322 +#: app/preferences_dialog.c:2397 msgid "Patterns Directories" msgstr "Каталог шаблонов" -#: app/preferences_dialog.c:2322 +#: app/preferences_dialog.c:2397 msgid "Select Patterns Dir" msgstr "Выбрать каталог шаблонов" -#: app/preferences_dialog.c:2324 +#: app/preferences_dialog.c:2399 msgid "Palettes Directories" msgstr "Каталог палитр" -#: app/preferences_dialog.c:2324 +#: app/preferences_dialog.c:2399 msgid "Select Palettes Dir" msgstr "Выбрать каталог палитр" -#: app/preferences_dialog.c:2326 +#: app/preferences_dialog.c:2401 msgid "Gradients Directories" msgstr "Каталог градиентов" -#: app/preferences_dialog.c:2326 +#: app/preferences_dialog.c:2401 msgid "Select Gradients Dir" msgstr "Выбрать каталог градиентов" -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 msgid "Plug-Ins" msgstr "Дополнения" -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 msgid "Plug-Ins Directories" msgstr "Каталог дополнений" -#: app/preferences_dialog.c:2328 +#: app/preferences_dialog.c:2403 msgid "Select Plug-Ins Dir" msgstr "Выбрать каталог дополнений" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 msgid "Modules" msgstr "Модули" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 msgid "Modules Directories" msgstr "Каталог модулей" -#: app/preferences_dialog.c:2330 +#: app/preferences_dialog.c:2405 msgid "Select Modules Dir" msgstr "Выбрать каталог модулей" @@ -4905,26 +4970,30 @@ msgid "" "Argument %d to '%s' should be a %s, but got passed a %s" msgstr "" -#: app/rect_select.c:179 +#: app/rect_select.c:180 msgid "Selection: ADD" msgstr "Выделенная область: ДОБАВИТЬ" -#: app/rect_select.c:182 +#: app/rect_select.c:183 msgid "Selection: SUBTRACT" msgstr "Выделенная область: ВЫЧЕСТЬ" -#: app/rect_select.c:185 +#: app/rect_select.c:186 msgid "Selection: INTERSECT" msgstr "Выделенная область: ПЕРЕСЕЧЬ" -#: app/rect_select.c:188 +#: app/rect_select.c:189 msgid "Selection: REPLACE" msgstr "Выделенная область: ЗАМЕНИТЬ" -#: app/rect_select.c:404 app/rect_select.c:411 +#: app/rect_select.c:405 app/rect_select.c:412 msgid "Selection: " msgstr "Выделенная область: " +#: app/resize.c:159 +msgid "Scale Layer" +msgstr "Масштабировать слой" + #: app/resize.c:160 app/resize.c:181 #, fuzzy msgid "Size" @@ -4939,6 +5008,10 @@ msgstr " msgid "Pixel Dimensions" msgstr "Расширения" +#: app/resize.c:174 +msgid "Resize Layer" +msgstr "Изменить размер слоя" + #: app/resize.c:178 msgid "Image Resize" msgstr "Изменить размер изображения" @@ -4974,12 +5047,12 @@ msgstr "" msgid "Rotation Information" msgstr "Информация о вращении" -#: app/rotate_tool.c:105 +#: app/rotate_tool.c:106 #, fuzzy msgid "Center X:" msgstr "Центр X: " -#: app/rotate_tool.c:400 +#: app/rotate_tool.c:401 msgid "Rotating..." msgstr "Вращение..." @@ -5026,66 +5099,66 @@ msgstr " msgid "Shearing..." msgstr "Искривление..." -#: app/text_tool.c:158 +#: app/text_tool.c:157 #, fuzzy msgid "Text Tool Options" msgstr "Опции текста" -#: app/text_tool.c:169 +#: app/text_tool.c:168 app/tool_options.c:317 msgid "Antialiasing" msgstr "Выравнивание" -#: app/text_tool.c:183 +#: app/text_tool.c:182 #, fuzzy msgid "Border:" msgstr "Рамка: " -#: app/text_tool.c:209 +#: app/text_tool.c:208 msgid "Use Dynamic Text" msgstr "" -#: app/text_tool.c:285 +#: app/text_tool.c:278 msgid "text_call_gdyntext: gDynText procedure lookup failed" msgstr "" #. Create the shell -#: app/text_tool.c:408 app/text_tool.c:410 +#: app/text_tool.c:399 app/text_tool.c:401 msgid "Text Tool" msgstr "Инструмент \"Текст\"" -#: app/text_tool.c:617 +#: app/text_tool.c:609 #, c-format msgid "Font '%s' not found.%s" msgstr "Шрифт '%s' не найден.%s" -#: app/text_tool.c:619 +#: app/text_tool.c:611 msgid "" "\n" "If you don't have scalable fonts, try turning off antialiasing in the tool " "options." msgstr "" -#: app/text_tool.c:730 +#: app/text_tool.c:722 msgid "Text Layer" msgstr "Слой текста" -#: app/text_tool.c:773 +#: app/text_tool.c:765 msgid "text_render: could not allocate image" msgstr "" -#: app/threshold.c:234 +#: app/threshold.c:189 msgid "Threshold Options" msgstr "Опции порога" -#: app/threshold.c:283 +#: app/threshold.c:232 msgid "Threshold does not operate on indexed drawables." msgstr "" -#: app/threshold.c:341 app/tools.c:536 +#: app/threshold.c:291 app/tools.c:562 msgid "Threshold" msgstr "Порог" -#: app/threshold.c:356 +#: app/threshold.c:306 msgid "Threshold Range: " msgstr "Диапазог порога: " @@ -5093,21 +5166,21 @@ msgstr " msgid "starting tile preswapper\n" msgstr "" -#: app/tile_swap.c:379 +#: app/tile_swap.c:381 msgid "unable to open swap file...BAD THINGS WILL HAPPEN SOON" msgstr "" -#: app/tile_swap.c:499 app/tile_swap.c:560 +#: app/tile_swap.c:501 app/tile_swap.c:562 #, c-format msgid "unable to seek to tile location on disk: %d" msgstr "" -#: app/tile_swap.c:518 +#: app/tile_swap.c:520 #, c-format msgid "unable to read tile data from disk: %d/%d ( %d ) bytes read" msgstr "" -#: app/tile_swap.c:573 +#: app/tile_swap.c:575 #, c-format msgid "unable to write tile data to disk: %d ( %d ) bytes written" msgstr "" @@ -5139,315 +5212,425 @@ msgid "" "GIMP data directory. Please check your installation." msgstr "" -#: app/tools.c:85 +#: app/tools.c:81 msgid "Rect Select" msgstr "Выделение прямоугольника" -#: app/tools.c:87 +#: app/tools.c:83 msgid "/Tools/Rect Select" msgstr "/Инструменты/Прямоугольник" -#: app/tools.c:90 +#: app/tools.c:86 msgid "Select rectangular regions" msgstr "Выделение прямоугольной области" -#: app/tools.c:100 +#: app/tools.c:96 msgid "Ellipse Select" msgstr "Эллипс" -#: app/tools.c:102 +#: app/tools.c:98 msgid "/Tools/Ellipse Select" msgstr "/Инструменты/Эллипс" -#: app/tools.c:105 +#: app/tools.c:101 msgid "Select elliptical regions" msgstr "Выделение эллиптической области" -#: app/tools.c:115 +#: app/tools.c:111 msgid "Free Select" msgstr "Рука" -#: app/tools.c:117 +#: app/tools.c:113 msgid "/Tools/Free Select" msgstr "/Инструменты/Рука" -#: app/tools.c:120 +#: app/tools.c:116 msgid "Select hand-drawn regions" msgstr "Выделение области вручную" -#: app/tools.c:130 +#: app/tools.c:126 msgid "Fuzzy Select" msgstr "Волшебная палочка" -#: app/tools.c:132 +#: app/tools.c:128 msgid "/Tools/Fuzzy Select" msgstr "/Инструменты/Волшебная палочка" -#: app/tools.c:135 +#: app/tools.c:131 msgid "Select contiguous regions" msgstr "Выделение связанной области" -#: app/tools.c:145 +#: app/tools.c:141 msgid "Bezier Select" msgstr "Кривая Безье" -#: app/tools.c:147 +#: app/tools.c:143 msgid "/Tools/Bezier Select" msgstr "/Инструменты/Кривая Безье" -#: app/tools.c:150 +#: app/tools.c:146 msgid "Select regions using Bezier curves" msgstr "Выделение области с использованием кривых Безье" -#: app/tools.c:160 +#: app/tools.c:156 msgid "Intelligent Scissors" msgstr "Умные ножницы" -#: app/tools.c:162 +#: app/tools.c:158 msgid "/Tools/Intelligent Scissors" msgstr "/Инструменты/Умные ножницы" -#: app/tools.c:165 +#: app/tools.c:161 msgid "Select shapes from image" msgstr "Выделение форм в изображении" -#: app/tools.c:175 +#: app/tools.c:171 msgid "Move" msgstr "Перемещение" -#: app/tools.c:177 +#: app/tools.c:173 msgid "/Tools/Move" msgstr "/Инструменты/Перемещение" -#: app/tools.c:180 +#: app/tools.c:176 msgid "Move layers & selections" msgstr "Перемещение слоев и выделенных областей" -#: app/tools.c:190 +#: app/tools.c:186 msgid "Magnify" msgstr "Лупа" -#: app/tools.c:192 +#: app/tools.c:188 msgid "/Tools/Magnify" msgstr "/Инструменты/Лупа" -#: app/tools.c:195 +#: app/tools.c:191 msgid "Zoom in & out" msgstr "Увеличение и уменьшение масштаба" -#: app/tools.c:205 +#: app/tools.c:201 #, fuzzy msgid "Crop & Resize" msgstr "Изменить размер" -#: app/tools.c:207 +#: app/tools.c:203 #, fuzzy msgid "/Tools/Crop & Resize" msgstr "/Инструменты/Рамка" -#: app/tools.c:210 +#: app/tools.c:206 #, fuzzy msgid "Crop or resize the image" msgstr "Кадрирование изображения" #. the first radio frame and box, for transform type -#: app/tools.c:220 app/tools.c:235 app/tools.c:250 app/tools.c:265 +#: app/tools.c:216 app/tools.c:231 app/tools.c:246 app/tools.c:261 #: app/transform_core.c:125 app/transform_tool.c:224 msgid "Transform" msgstr "Преобразование" -#: app/tools.c:222 +#: app/tools.c:218 msgid "/Tools/Transform" msgstr "/Инструменты/Преобразование" -#: app/tools.c:225 +#: app/tools.c:221 msgid "Transform the layer or selection" msgstr "Преобразование слоев и выделенных областей" -#: app/tools.c:280 +#: app/tools.c:276 msgid "Flip" msgstr "Зеркало" -#: app/tools.c:282 +#: app/tools.c:278 msgid "/Tools/Flip" msgstr "/Инструменты/Зеркало" -#: app/tools.c:285 +#: app/tools.c:281 msgid "Flip the layer or selection" msgstr "Зеркальное отражение слоев и выделенных областей" -#: app/tools.c:295 +#: app/tools.c:291 msgid "Text" msgstr "Текст" -#: app/tools.c:297 +#: app/tools.c:293 msgid "/Tools/Text" msgstr "/Инструменты/Текст" -#: app/tools.c:300 +#: app/tools.c:296 msgid "Add text to the image" msgstr "Добавление текста к изображению" -#: app/tools.c:312 +#: app/tools.c:308 msgid "/Tools/Color Picker" msgstr "/Инструменты/Пипетка" -#: app/tools.c:315 +#: app/tools.c:311 msgid "Pick colors from the image" msgstr "Получить цвет из изображения" -#: app/tools.c:325 +#: app/tools.c:321 msgid "Bucket Fill" msgstr "Заливка" -#: app/tools.c:327 +#: app/tools.c:323 msgid "/Tools/Bucket Fill" msgstr "/Инструменты/Заливка" -#: app/tools.c:330 +#: app/tools.c:326 msgid "Fill with a color or pattern" msgstr "Заполнение цветом или шаблоном" -#: app/tools.c:340 +#: app/tools.c:336 msgid "Blend" msgstr "Бленда" -#: app/tools.c:342 +#: app/tools.c:338 msgid "/Tools/Blend" msgstr "/Инструменты/Бленда" -#: app/tools.c:345 +#: app/tools.c:341 msgid "Fill with a color gradient" msgstr "Заполнение с градиентом цвета" -#: app/tools.c:355 +#: app/tools.c:351 msgid "Pencil" msgstr "Карашдаш" -#: app/tools.c:357 +#: app/tools.c:353 msgid "/Tools/Pencil" msgstr "/Инструменты/Карашдаш" -#: app/tools.c:360 +#: app/tools.c:356 msgid "Draw sharp pencil strokes" msgstr "Нанесение резких карандашных обводов" -#: app/tools.c:370 +#: app/tools.c:366 msgid "Paintbrush" msgstr "Кисть" -#: app/tools.c:372 +#: app/tools.c:368 msgid "/Tools/Paintbrush" msgstr "/Инструменты/Кисть" -#: app/tools.c:375 +#: app/tools.c:371 msgid "Paint fuzzy brush strokes" msgstr "Нанесение размытых мазков кистью" -#: app/tools.c:385 +#: app/tools.c:381 msgid "Eraser" msgstr "Ластик" -#: app/tools.c:387 +#: app/tools.c:383 msgid "/Tools/Eraser" msgstr "/Инструменты/Ластик" -#: app/tools.c:390 +#: app/tools.c:386 msgid "Erase to background or transparency" msgstr "Очистка до фона или прозрачности" -#: app/tools.c:400 +#: app/tools.c:396 msgid "Airbrush" msgstr "Аэрограф" -#: app/tools.c:402 +#: app/tools.c:398 msgid "/Tools/Airbrush" msgstr "/Инструменты/Аэрограф" -#: app/tools.c:405 +#: app/tools.c:401 msgid "Airbrush with variable pressure" msgstr "Рисование аэрографом с переменным нажимом" -#: app/tools.c:415 +#: app/tools.c:411 msgid "Clone" msgstr "Штамп" -#: app/tools.c:417 +#: app/tools.c:413 msgid "/Tools/Clone" msgstr "/Инструменты/Штамп" -#: app/tools.c:420 +#: app/tools.c:416 msgid "Paint using patterns or image regions" msgstr "Рисование шаблоном или областью изображения" -#: app/tools.c:430 +#: app/tools.c:426 msgid "Convolve" msgstr "Размыватель" -#: app/tools.c:432 +#: app/tools.c:428 msgid "/Tools/Convolve" msgstr "/Инструменты/Размыватель" -#: app/tools.c:435 +#: app/tools.c:431 msgid "Blur or sharpen" msgstr "Размывание или резкость" -#: app/tools.c:445 +#: app/tools.c:441 msgid "Ink" msgstr "Чернила" -#: app/tools.c:447 +#: app/tools.c:443 msgid "/Tools/Ink" msgstr "/Инструменты/Чернила" -#: app/tools.c:450 +#: app/tools.c:446 msgid "Draw in ink" msgstr "Рисование чернилами" -#: app/tools.c:461 +#: app/tools.c:456 app/tools.c:461 +msgid "Dodge or Burn" +msgstr "" + +#: app/tools.c:458 +#, fuzzy +msgid "/Tools/DodgeBurn" +msgstr "/Инструменты/Перемещение" + +#: app/tools.c:471 app/tools.c:476 +msgid "Smudge" +msgstr "" + +#: app/tools.c:473 +#, fuzzy +msgid "/Tools/Smudge" +msgstr "/Инструменты/Перемещение" + +#: app/tools.c:487 msgid "By Color Select" msgstr "Выделение по цвету" -#: app/tools.c:463 +#: app/tools.c:489 msgid "/Select/By Color..." msgstr "/Выделение/По цвету..." -#: app/tools.c:478 +#: app/tools.c:504 msgid "/Image/Colors/Color Balance" msgstr "/Изображение/Цвета/Цветовой баланс" -#: app/tools.c:493 +#: app/tools.c:519 msgid "/Image/Colors/Brightness-Contrast" msgstr "/Изображение/Цвета/Яркость-Контрастность" -#: app/tools.c:508 +#: app/tools.c:534 msgid "/Image/Colors/Hue-Saturation" msgstr "/Изображение/Цвета/Тон-Насыщенность" -#: app/tools.c:523 +#: app/tools.c:549 msgid "/Image/Colors/Posterize" msgstr "/Изображение/Цвета/Постеризовать" -#: app/tools.c:538 +#: app/tools.c:564 msgid "/Image/Colors/Threshold" msgstr "/Изображение/Цвета/Порог" -#: app/tools.c:553 +#: app/tools.c:579 msgid "/Image/Colors/Curves" msgstr "/Изображение/Цвета/Кривые" -#: app/tools.c:568 +#: app/tools.c:594 msgid "/Image/Colors/Levels" msgstr "/Изображение/Цвета/Уровни" -#: app/tools.c:581 -msgid "Histogram" -msgstr "Гистограмма" - -#: app/tools.c:583 +#: app/tools.c:609 msgid "/Image/Histogram" msgstr "/Изображение/Гистограмма" +#: app/tool_options.c:206 app/tool_options.c:688 +msgid "This tool has no options." +msgstr "Этот инструмент не имеет опций" + +#: app/tool_options.c:230 +msgid "Rectangular Select Options" +msgstr "Опции прямоугольного выделения" + +#: app/tool_options.c:232 +msgid "Elliptical Selection Options" +msgstr "Опции эллиптического выделения" + +#: app/tool_options.c:234 +msgid "Free-hand Selection Options" +msgstr "Опции выделения от руки" + +#: app/tool_options.c:236 +msgid "Fuzzy Selection Options" +msgstr "Опции свободного выделения" + +#: app/tool_options.c:238 +msgid "Bezier Selection Options" +msgstr "Опции выделения кривой Безье" + +#: app/tool_options.c:240 +msgid "Intelligent Scissors Options" +msgstr "Опции умных ножниц" + +#: app/tool_options.c:242 +msgid "By-Color Select Options" +msgstr "Опции выделения по цвету" + +#: app/tool_options.c:243 +msgid "ERROR: Unknown Selection Type" +msgstr "" + +#: app/tool_options.c:273 +msgid "Feather" +msgstr "Растушевка" + +#: app/tool_options.c:381 +msgid "Fixed size / aspect ratio" +msgstr "Фиксированный размер / пропорции" + +#: app/tool_options.c:552 +msgid "Bucket Fill Options" +msgstr "Опции заливки" + +#: app/tool_options.c:554 +msgid "Blend Options" +msgstr "Опции бленды" + +#: app/tool_options.c:556 +msgid "Pencil Options" +msgstr "Опции карандаша" + +#: app/tool_options.c:558 +#, fuzzy +msgid "Paintbrush Options" +msgstr "Опции кисти" + +#: app/tool_options.c:560 +#, fuzzy +msgid "Erazer Options" +msgstr "Опции ластика" + +#: app/tool_options.c:562 +msgid "Airbrush Options" +msgstr "Опции аэрографа" + +#: app/tool_options.c:564 +msgid "Clone Tool Options" +msgstr "Опции клонирования" + +#: app/tool_options.c:566 +msgid "Convolver Options" +msgstr "Опции размывателя" + +#: app/tool_options.c:568 +msgid "Ink Options" +msgstr "Опции чернил" + +#: app/tool_options.c:570 +#, fuzzy +msgid "Dodge or Burn Options" +msgstr "Опции цветового баланса" + +#: app/tool_options.c:572 +#, fuzzy +msgid "Smudge Options" +msgstr "Опции сохранения" + +#: app/tool_options.c:573 +msgid "ERROR: Unknown Paint Type" +msgstr "" + #: app/transform_core.c:122 msgid "Rotate" msgstr "Вращать" @@ -5468,23 +5651,23 @@ msgstr "" "Преобразования не действуют на слои\n" "у которых есть маска слоя." -#: app/transform_core.c:1132 +#: app/transform_core.c:1140 msgid "homogeneous coordinate = 0...\n" msgstr "" -#: app/transform_core.c:1387 +#: app/transform_core.c:1395 msgid "Transformation" msgstr "Преобразование" -#: app/transform_tool.c:190 +#: app/transform_tool.c:189 msgid "Rotation" msgstr "Вращение" -#: app/transform_tool.c:192 +#: app/transform_tool.c:191 msgid "Shearing" msgstr "Искривление" -#: app/transform_tool.c:193 +#: app/transform_tool.c:192 msgid "Perspective" msgstr "Перспектива" @@ -5605,6 +5788,106 @@ msgstr "" msgid "unable to read tile data from xcf file: %d ( %d ) bytes read" msgstr "" +#. pseudo unit +#: libgimp/gimpunit.c:44 +#, fuzzy +msgid "pixel" +msgstr "пикселей" + +#: libgimp/gimpunit.c:44 +#, fuzzy +msgid "pixels" +msgstr "пикселей" + +#. standard units +#: libgimp/gimpunit.c:47 +msgid "inch" +msgstr "" + +#: libgimp/gimpunit.c:47 +#, fuzzy +msgid "inches" +msgstr "Устройства" + +#: libgimp/gimpunit.c:48 +msgid "millimeter" +msgstr "" + +#: libgimp/gimpunit.c:48 +#, fuzzy +msgid "millimeters" +msgstr "/Фильтры/---" + +#. professional units +#: libgimp/gimpunit.c:51 +#, fuzzy +msgid "point" +msgstr "Расщепить" + +#: libgimp/gimpunit.c:51 +msgid "points" +msgstr "" + +#: libgimp/gimpunit.c:52 +#, fuzzy +msgid "pica" +msgstr "Размножить" + +#: libgimp/gimpunit.c:52 +msgid "picas" +msgstr "" + +#: libgimp/gimpunit.c:59 +#, fuzzy +msgid "percent" +msgstr "Перспектива" + +#: libgimp/gimpfileselection.c:352 +#, fuzzy +msgid "Select File" +msgstr "Выделение" + +#: libgimp/gimpfileselection.c:355 libgimp/gimpunitmenu.c:510 +#, fuzzy +msgid "Select" +msgstr "/Выделение" + +#: libgimp/gimpenv.c:82 +msgid "warning: no home directory." +msgstr "" + +#: libgimp/gimpunitmenu.c:207 +msgid "More..." +msgstr "" + +#: libgimp/gimpunitmenu.c:333 +#, fuzzy +msgid "unit-menu-format string ended within %%-sequence" +msgstr "" +"строка заголовка формата изображения закончилась %%-последовательностью" + +#: libgimp/gimpunitmenu.c:366 +#, fuzzy +msgid "unit-menu-format contains unknownformat sequence '%%%c'" +msgstr "" +"заголовок формата изображения содержит неизвестную последовательность " +"формата '%%%c'" + +#: libgimp/gimpunitmenu.c:453 +#, fuzzy +msgid "Unit Selection" +msgstr "Выделение" + +#: libgimp/gimpunitmenu.c:479 +#, fuzzy +msgid "Unit " +msgstr "Безымянное" + +#: libgimp/gimpunitmenu.c:481 +#, fuzzy +msgid "Factor" +msgstr "Растушевка" + #: app/regex.c:976 msgid "Success" msgstr "Успешно" @@ -5693,6 +5976,203 @@ msgstr "" msgid "No previous regular expression" msgstr "" +#~ msgid "/File/Quit" +#~ msgstr "/Файл/Выход" + +#~ msgid "/File/Quit" +#~ msgstr "/Файл/Выход" + +#, fuzzy +#~ msgid "Automatic" +#~ msgstr "/Автоматически" + +#~ msgid "/File/Open" +#~ msgstr "/Файл/Открыть" + +#~ msgid "/File/Open" +#~ msgstr "/Файл/Открыть" + +#~ msgid "/File/Save" +#~ msgstr "/Файл/Сохранить" + +#~ msgid "/File/Save as" +#~ msgstr "/Файл/Сохранить как..." + +#, fuzzy +#~ msgid "/Layers/Stack/Previous Layer" +#~ msgstr "/Слои/Поднять слой" + +#, fuzzy +#~ msgid "/Layers/Stack/Next Layer" +#~ msgstr "/Слои/Поднять слой" + +#, fuzzy +#~ msgid "/Layers/Stack/Raise Layer" +#~ msgstr "/Слои/Поднять слой" + +#, fuzzy +#~ msgid "/Layers/Stack/Lower Layer" +#~ msgstr "/Слои/Опустить слой" + +#, fuzzy +#~ msgid "/Layers/Stack/Layer to Top" +#~ msgstr "/Слои/Поднять слой" + +#, fuzzy +#~ msgid "/Layers/Stack/Layer to Bottom" +#~ msgstr "/Слои/Поднять слой" + +#~ msgid "/Layers/Anchor Layer" +#~ msgstr "/Слои/Прицепить слой" + +#~ msgid "/Layers/Merge Visible Layers" +#~ msgstr "/Слои/Объединить видимые слои" + +#~ msgid "/Layers/Flatten Image" +#~ msgstr "/Слои/Свести изображение" + +#~ msgid "/Layers/Alpha To Selection" +#~ msgstr "/Слои/Альфа-канал -> Выделенная область" + +#~ msgid "/Layers/Mask To Selection" +#~ msgstr "/Слои/Маска -> Выделенная область" + +#~ msgid "/Layers/Add Alpha Channel" +#~ msgstr "/Слои/Новый альфа-канал" + +#~ msgid "/Image/RGB" +#~ msgstr "/Изображение/RGB" + +#~ msgid "/Image/Grayscale" +#~ msgstr "/Изображение/Градации серого" + +#~ msgid "/Image/Indexed" +#~ msgstr "/Изображение/Индексированное" + +#~ msgid "/Image/Colors/Threshold" +#~ msgstr "/Изображение/Цвета/Порог" + +#~ msgid "/Image/Colors/Posterize" +#~ msgstr "/Изображение/Цвета/Постеризовать" + +#~ msgid "/Image/Colors/Equalize" +#~ msgstr "/Изображение/Цвета/Выровнять" + +#~ msgid "/Image/Colors/Invert" +#~ msgstr "/Изображение/Цвета/Инвертировать" + +#~ msgid "/Image/Colors/Color Balance" +#~ msgstr "/Изображение/Цвета/Цветовой баланс" + +#~ msgid "/Image/Colors/Brightness-Contrast" +#~ msgstr "/Изображение/Цвета/Яркость-Контрастность" + +#~ msgid "/Image/Colors/Hue-Saturation" +#~ msgstr "/Изображение/Цвета/Тон-Насыщенность" + +#~ msgid "/Image/Colors/Curves" +#~ msgstr "/Изображение/Цвета/Кривые" + +#~ msgid "/Image/Colors/Levels" +#~ msgstr "/Изображение/Цвета/Уровни" + +#~ msgid "/Image/Colors/Desaturate" +#~ msgstr "/Изображение/Цвета/Обесцветить" + +#~ msgid "/Image/Alpha/Add Alpha Channel" +#~ msgstr "/Изображение/Альфа-канал/Добавить альфа-канал" + +#~ msgid "/Select" +#~ msgstr "/Выделение" + +#~ msgid "/Edit/Cut" +#~ msgstr "/Правка/Вырезать" + +#~ msgid "/Edit/Copy" +#~ msgstr "/Правка/Скопировать" + +#~ msgid "/Edit/Paste" +#~ msgstr "/Правка/Вставить" + +#~ msgid "/Edit/Paste Into" +#~ msgstr "/Правка/Вставить в..." + +#~ msgid "/Edit/Fill" +#~ msgstr "/Правка/Заполнить" + +#~ msgid "/Edit/Stroke" +#~ msgstr "/Правка/Обводка" + +#~ msgid "/Edit/Cut Named" +#~ msgstr "/Правка/Вырезать в буфер с именем" + +#~ msgid "/Edit/Copy Named" +#~ msgstr "/Правка/Скопировать из буфера с именем" + +#~ msgid "/Edit/Paste Named" +#~ msgstr "/Правка/Вставить из буфера с именем" + +#~ msgid "/Image/Colors" +#~ msgstr "/Изображение/Цвета" + +#~ msgid "/Image/Channel Ops/Offset" +#~ msgstr "/Изображение/Канал/Смещение" + +#~ msgid "/Image/Histogram" +#~ msgstr "/Изображение/Гистограмма" + +#~ msgid "/Filters" +#~ msgstr "/Фильтры" + +#~ msgid "/Select/Save To Channel" +#~ msgstr "/Выделение/Сохранить в канале" + +#~ msgid "/View/Toggle Rulers" +#~ msgstr "/Просмотр/Линейки вкл/выкл" + +#~ msgid "/View/Toggle Guides" +#~ msgstr "/Просмотр/Направляющие вкл/выкл" + +#~ msgid "/View/Snap To Guides" +#~ msgstr "/Просмотр/Выравнивать по направляющим" + +#~ msgid "/View/Toggle Statusbar" +#~ msgstr "/Просмотр/Строка состояния вкл/выкл" + +#~ msgid "/View/Dot for dot" +#~ msgstr "/Просмотр/Точка за точкой" + +#~ msgid "/File/Close" +#~ msgstr "/Файл/Закрыть" + +#~ msgid "Replace Current Selection" +#~ msgstr "Заменить текущую выделенную область" + +#~ msgid "Raise Layer" +#~ msgstr "Поднять слой" + +#~ msgid "Lower Layer" +#~ msgstr "Опустить слой" + +#~ msgid "Layer to Top" +#~ msgstr "Слой наверх" + +#~ msgid "Layer to Bottom" +#~ msgstr "Слой вниз" + +#, fuzzy +#~ msgid "/Select/Toggle" +#~ msgstr "/Выделение/Показать/Скрыть" + +#~ msgid "Gradient Type" +#~ msgstr "Тип градиента" + +#~ msgid "/Filters/Repeat last" +#~ msgstr "/Фильтры/Повторить последний" + +#~ msgid "/Filters/Re-show last" +#~ msgstr "/Фильтры/Показать последний" + #~ msgid "brightness_contrast_preview(): No image map" #~ msgstr "brightness_contrast_preview(): нет карты изображения" @@ -5717,15 +6197,6 @@ msgstr "" #~ msgid "Advanced options >>" #~ msgstr "Дополнительные опции >>" -#~ msgid "image-title-format string ended within %%-sequence" -#~ msgstr "" -#~ "строка заголовка формата изображения закончилась %%-последовательностью" - -#~ msgid "image-title-format contains unknown format sequence '%%%c'" -#~ msgstr "" -#~ "заголовок формата изображения содержит неизвестную последовательность " -#~ "формата '%%%c'" - #~ msgid "failed to run gradient callback function" #~ msgstr "не удалось запустить функцию gradient callback" @@ -5842,9 +6313,6 @@ msgstr "" #~ msgid "\t\tplug-ins.\n" #~ msgstr "\t\tдополнения.\n" -#~ msgid "Layer height: " -#~ msgstr "Высота слоя: " - #~ msgid "No image map" #~ msgstr "Нет карты изображения" @@ -5866,15 +6334,6 @@ msgstr "" #~ msgid "Print Size" #~ msgstr "Размер пред.просмотра:" -#~ msgid "Airbrush Options" -#~ msgstr "Опции аэрографа" - -#~ msgid "Blend Options" -#~ msgstr "Опции бленды" - -#~ msgid "Bucket Fill Options" -#~ msgstr "Опции заливки" - #~ msgid "Fill Threshold: " #~ msgstr "Порог заливки: " @@ -5884,27 +6343,15 @@ msgstr "" #~ msgid "Fill Type: " #~ msgstr "Тип заливки: " -#~ msgid "Clone Tool Options" -#~ msgstr "Опции клонирования" - #~ msgid "Index" #~ msgstr "Индекс" #~ msgid "Intensity" #~ msgstr "Интенсивность" -#~ msgid "Convolver Options" -#~ msgstr "Опции размывателя" - -#~ msgid "Selection" -#~ msgstr "Выделение" - #~ msgid "Y Origin: " #~ msgstr "Исходное Y: " -#~ msgid "Eraser Options" -#~ msgstr "Опции ластика" - #~ msgid "pixels per " #~ msgstr "пикселей на " @@ -5925,9 +6372,6 @@ msgstr "" #~ msgstr "" #~ "попытка зарегистрировать несуществующий обработчик сохранения \"%s\"" -#~ msgid "Ink Options" -#~ msgstr "Опции чернил" - #~ msgid "Tilt Sensitivity:" #~ msgstr "Чуствительность к наклону:" @@ -5949,12 +6393,6 @@ msgstr "" #~ msgid "gimprc ops" #~ msgstr "Опции gimprc" -#~ msgid "Intelligent Scissors Options" -#~ msgstr "Опции умных ножниц" - -#~ msgid "Feather" -#~ msgstr "Растушевка" - #~ msgid "Feather Radius: " #~ msgstr "Радиус растушевки: " @@ -5970,9 +6408,6 @@ msgstr "" #~ msgid "/_Edit" #~ msgstr "/Правка" -#~ msgid "/_Select" -#~ msgstr "/Выделение" - #~ msgid "/_View" #~ msgstr "/Просмотр/---" @@ -5985,24 +6420,15 @@ msgstr "" #~ msgid "/Image/C_hannel Ops" #~ msgstr "/Изображение/Канал" -#~ msgid "/Image/_Alpha" -#~ msgstr "/Изображение/Альфа-канал" - #~ msgid "/_Tools" #~ msgstr "/Инструменты/---" -#~ msgid "/Filte_rs" -#~ msgstr "/Фильтры/---" - #~ msgid "/_Dialogs" #~ msgstr "/Диалоги" #~ msgid "Gradient Length" #~ msgstr "Длина градиента" -#~ msgid "Pencil Options" -#~ msgstr "Опции карандаша" - #~ msgid "Posterize Options" #~ msgstr "Опции постеризации" @@ -6027,27 +6453,6 @@ msgstr "" #~ msgid "Temporary Procedure" #~ msgstr "Временная процедура" -#~ msgid "Rectangular Select Options" -#~ msgstr "Опции прямоугольного выделения" - -#~ msgid "Elliptical Selection Options" -#~ msgstr "Опции эллиптического выделения" - -#~ msgid "Free-hand Selection Options" -#~ msgstr "Опции выделения от руки" - -#~ msgid "Fuzzy Selection Options" -#~ msgstr "Опции свободного выделения" - -#~ msgid "Bezier Selection Options" -#~ msgstr "Опции выделения кривой Безье" - -#~ msgid "By-Color Select Options" -#~ msgstr "Опции выделения по цвету" - -#~ msgid "Fixed size / aspect ratio" -#~ msgstr "Фиксированный размер / пропорции" - #~ msgid "New height:" #~ msgstr "Новая высота:" @@ -6077,6 +6482,3 @@ msgstr "" #~ msgid "Y Shear Magnitude: " #~ msgstr "Коэффициент искривления по Y: " - -#~ msgid "This tool has no options." -#~ msgstr "Этот инструмент не имеет опций" diff --git a/po/sv.po b/po/sv.po index 574e98b576..0fbafae11b 100644 --- a/po/sv.po +++ b/po/sv.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: GIMP 1.1.6\n" -"POT-Creation-Date: 1999-07-10 20:01+0200\n" +"POT-Creation-Date: 1999-07-17 11:23-0700\n" "PO-Revision-Date: 1999-06-06 23:40+0200\n" "Last-Translator: Tomas жgren \n" "Language-Team: Swedish \n" @@ -1516,98 +1516,98 @@ msgstr "" msgid "Unable to project indexed image." msgstr "" -#: app/gimpimage.c:2106 +#: app/gimpimage.c:2109 msgid "Layer cannot be raised any further" msgstr "Lagret kan ej hЖjas mer" -#: app/gimpimage.c:2181 +#: app/gimpimage.c:2184 msgid "Layer cannot be lowered any further" msgstr "Lagret kan ej sДnkas mer" #. layer_arg is already the top_layer -#: app/gimpimage.c:2211 +#: app/gimpimage.c:2214 msgid "Layer is already on top" msgstr "Lagret Дr redan lДngst upp" -#: app/gimpimage.c:2216 +#: app/gimpimage.c:2219 msgid "Can't raise Layer without alpha" msgstr "Kan ej hЖja lager utan alfa-kanal" #. there is no next layer below layer_arg -#: app/gimpimage.c:2311 +#: app/gimpimage.c:2314 msgid "Layer is already on bottom" msgstr "Lagret Дr redan lДngst ner" -#: app/gimpimage.c:2324 +#: app/gimpimage.c:2327 msgid "BG has no alpha, layer was placed above" msgstr "" -#: app/gimpimage.c:2387 +#: app/gimpimage.c:2390 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." msgstr "" -#: app/gimpimage.c:2465 +#: app/gimpimage.c:2468 msgid "There are not enough visible layers for a merge down." msgstr "" "Det finns ej tillrДckligt mЕnga synliga lager fЖr att sammanfoga nerЕt." -#: app/gimpimage.c:2578 app/gimpimage.c:2611 +#: app/gimpimage.c:2581 app/gimpimage.c:2614 msgid "gimp_image_merge_layers: could not allocate merge layer" msgstr "" -#: app/gimpimage.c:2650 +#: app/gimpimage.c:2653 msgid "gimp_image_merge_layers attempting to merge incompatible layers\n" msgstr "" -#: app/gimpimage.c:2732 +#: app/gimpimage.c:2735 msgid "gimp_image_add_layer: attempt to add layer to wrong image" msgstr "" -#: app/gimpimage.c:2742 +#: app/gimpimage.c:2745 msgid "gimp_image_add_layer: trying to add layer to image twice" msgstr "" -#: app/gimpimage.c:2861 +#: app/gimpimage.c:2864 msgid "" "Unable to add a layer mask since\n" "the layer already has one." msgstr "" -#: app/gimpimage.c:2865 +#: app/gimpimage.c:2868 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." msgstr "" -#: app/gimpimage.c:2869 +#: app/gimpimage.c:2872 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." msgstr "" -#: app/gimpimage.c:2873 +#: app/gimpimage.c:2876 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -#: app/gimpimage.c:2980 +#: app/gimpimage.c:2983 msgid "Channel cannot be raised any further" msgstr "" -#: app/gimpimage.c:3028 +#: app/gimpimage.c:3031 msgid "Channel cannot be lowered any further" msgstr "" -#: app/gimpimage.c:3050 +#: app/gimpimage.c:3053 msgid "gimp_image_add_channel: attempt to add channel to wrong image" msgstr "" -#: app/gimpimage.c:3060 +#: app/gimpimage.c:3063 msgid "gimp_image_add_channel: trying to add channel to image twice" msgstr "" -#: app/gimpimage.c:3187 app/palette.c:525 app/palette.c:550 app/palette.c:909 +#: app/gimpimage.c:3190 app/palette.c:525 app/palette.c:550 app/palette.c:909 #: app/palette.c:913 app/palette.c:2313 app/palette.c:2995 msgid "Untitled" msgstr "NamnlЖs" @@ -3842,12 +3842,12 @@ msgstr "" msgid "/Export Path" msgstr "" -#: app/menus.c:591 +#: app/menus.c:596 #, c-format msgid "Error opening file: %s\n" msgstr "Kunde inte Жppna fil: %s\n" -#: app/menus.c:613 app/menus.c:694 +#: app/menus.c:618 app/menus.c:699 #, c-format msgid "/File/MRU%02d" msgstr "/Arkiv/MRU%02d" @@ -3856,83 +3856,83 @@ msgstr "/Arkiv/MRU%02d" msgid "Module DB" msgstr "Modul DB" -#: app/module_db.c:555 +#: app/module_db.c:567 #, c-format msgid "load module: \"%s\"\n" msgstr "laddar modul: \"%s\"\n" -#: app/module_db.c:562 +#: app/module_db.c:574 #, c-format msgid "skipping module: \"%s\"\n" msgstr "hoppar Жver modul: \"%s\"\n" -#: app/module_db.c:586 +#: app/module_db.c:598 #, c-format msgid "module load error: %s: %s" msgstr "fel vid laddning av modul: %s: %s" -#: app/module_db.c:604 +#: app/module_db.c:616 msgid "missing module_init() symbol" msgstr "module_init() symbolen saknas" -#: app/module_db.c:607 +#: app/module_db.c:619 #, c-format msgid "%s: module_init() symbol not found" msgstr "%s: module_init() symbolen hittades ej" -#: app/module_db.c:760 +#: app/module_db.c:772 msgid "" msgstr "" -#: app/module_db.c:773 app/module_db.c:782 +#: app/module_db.c:785 app/module_db.c:794 msgid "on disk" msgstr "pЕ disk" -#: app/module_db.c:773 +#: app/module_db.c:785 msgid "only in memory" msgstr "endast i minnet" -#: app/module_db.c:782 +#: app/module_db.c:794 msgid "nowhere (click 'refresh')" msgstr "ingenstans (tryck pЕ 'uppdatera')" -#: app/module_db.c:818 +#: app/module_db.c:830 msgid "Load" msgstr "Ladda" -#: app/module_db.c:827 +#: app/module_db.c:839 msgid "Unload" msgstr "Ladda ur" -#: app/module_db.c:840 +#: app/module_db.c:852 msgid "Purpose: " msgstr "Syfte: " -#: app/module_db.c:841 +#: app/module_db.c:853 msgid "Author: " msgstr "FЖrfattare: " -#: app/module_db.c:842 +#: app/module_db.c:854 msgid "Version: " msgstr "Version: " -#: app/module_db.c:843 +#: app/module_db.c:855 msgid "Copyright: " msgstr "Copyright: " -#: app/module_db.c:844 +#: app/module_db.c:856 msgid "Date: " msgstr "Datum: " -#: app/module_db.c:845 +#: app/module_db.c:857 msgid "Location: " msgstr "Placering: " -#: app/module_db.c:846 +#: app/module_db.c:858 msgid "State: " msgstr "TillstЕnd: " -#: app/module_db.c:865 +#: app/module_db.c:877 msgid "Autoload during startup" msgstr "Ladda automatiskt vid start" @@ -5607,7 +5607,7 @@ msgstr "V msgid "Select" msgstr "VДlj" -#: libgimp/gimpenv.c:81 +#: libgimp/gimpenv.c:82 msgid "warning: no home directory." msgstr "varning: ingen hemkatalog" diff --git a/tools/pdbgen/pdb/channel.pdb b/tools/pdbgen/pdb/channel.pdb index e2cdcecd93..28c6ba5048 100644 --- a/tools/pdbgen/pdb/channel.pdb +++ b/tools/pdbgen/pdb/channel.pdb @@ -81,10 +81,7 @@ sub channel_set_prop_proc { if ($type eq 'color') { %invoke = ( - vars => [ 'int i' ], - code => < "channel_set_color(channel, $prop);" ); } } @@ -133,7 +130,7 @@ HELP { name => 'name', type => 'string', desc => 'The channel name' }, { name => 'opacity', type => '0 <= float <= 100', - desc => 'The channel opacity: (%%desc%%)', alias => 'opacity_arg' }, + desc => 'The channel opacity: (%%desc%%)' }, { name => 'color', type => 'color', desc => 'The channel compositing color' } ); @@ -145,7 +142,6 @@ HELP ); %invoke = ( - vars => [ 'int opacity' ], code => <<'CODE' { channel_set_opacity (channel, opacity);