diff -Nru yad-0.20.3/ChangeLog yad-0.21.0/ChangeLog --- yad-0.20.3/ChangeLog 2013-04-05 08:14:52.000000000 +0000 +++ yad-0.21.0/ChangeLog 2013-05-10 06:15:17.000000000 +0000 @@ -1,3 +1,27 @@ +2013-05-10 06:11 ananasik + + * NEWS, configure.ac: release 0.21.0 + +2013-05-10 06:06 ananasik + + * data/yad.1, po/de.po, po/fr.po, po/ru.po, po/sk.po, po/uk.po, + po/zh_TW.po, src/form.c, src/option.c, src/yad.h: add scrolling + for form dialog + +2013-05-10 04:58 ananasik + + * data/yad.1: fix man page + +2013-04-26 11:23 ananasik@gmail.com + + * po/de.po, po/fr.po, po/ru.po, po/sk.po, po/uk.po, po/zh_TW.po, + src/list.c: add "Duplicate row" menu entry in editable list + dialog + +2013-04-05 08:14 ananasik@gmail.com + + * ChangeLog: + 2013-04-05 08:14 ananasik@gmail.com * NEWS: release 0.20.3 diff -Nru yad-0.20.3/NEWS yad-0.21.0/NEWS --- yad-0.20.3/NEWS 2013-04-05 08:14:15.000000000 +0000 +++ yad-0.21.0/NEWS 2013-05-10 06:14:39.000000000 +0000 @@ -1,3 +1,8 @@ +Version 0.21.0 + - add optional scrollbars for form dialog + - add "duplicate row" menu entry for editable lists + - some fixes in man page + Version 0.20.3 - update slovak translation - use double-ckick for selecting date in form dialog diff -Nru yad-0.20.3/aclocal.m4 yad-0.21.0/aclocal.m4 --- yad-0.20.3/aclocal.m4 2013-04-05 08:11:50.000000000 +0000 +++ yad-0.21.0/aclocal.m4 2013-05-10 06:15:37.000000000 +0000 @@ -1470,8 +1470,7 @@ # ---------------------------------- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) -m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) -m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) +m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) @@ -1517,8 +1516,7 @@ pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], - [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], + [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], [pkg_failed=yes]) else pkg_failed=untried @@ -1566,9 +1564,9 @@ AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then - $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` + $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` else - $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` + $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD @@ -1602,61 +1600,6 @@ fi[]dnl ])# PKG_CHECK_MODULES - -# PKG_INSTALLDIR(DIRECTORY) -# ------------------------- -# Substitutes the variable pkgconfigdir as the location where a module -# should install pkg-config .pc files. By default the directory is -# $libdir/pkgconfig, but the default can be changed by passing -# DIRECTORY. The user can override through the --with-pkgconfigdir -# parameter. -AC_DEFUN([PKG_INSTALLDIR], -[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) -m4_pushdef([pkg_description], - [pkg-config installation directory @<:@]pkg_default[@:>@]) -AC_ARG_WITH([pkgconfigdir], - [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],, - [with_pkgconfigdir=]pkg_default) -AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) -m4_popdef([pkg_default]) -m4_popdef([pkg_description]) -]) dnl PKG_INSTALLDIR - - -# PKG_NOARCH_INSTALLDIR(DIRECTORY) -# ------------------------- -# Substitutes the variable noarch_pkgconfigdir as the location where a -# module should install arch-independent pkg-config .pc files. By -# default the directory is $datadir/pkgconfig, but the default can be -# changed by passing DIRECTORY. The user can override through the -# --with-noarch-pkgconfigdir parameter. -AC_DEFUN([PKG_NOARCH_INSTALLDIR], -[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) -m4_pushdef([pkg_description], - [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@]) -AC_ARG_WITH([noarch-pkgconfigdir], - [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],, - [with_noarch_pkgconfigdir=]pkg_default) -AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) -m4_popdef([pkg_default]) -m4_popdef([pkg_description]) -]) dnl PKG_NOARCH_INSTALLDIR - - -# PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, -# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# ------------------------------------------- -# Retrieves the value of the pkg-config variable for the given module. -AC_DEFUN([PKG_CHECK_VAR], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl -AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl - -_PKG_CONFIG([$1], [variable="][$3]["], [$2]) -AS_VAR_COPY([$1], [pkg_cv_][$1]) - -AS_VAR_IF([$1], [""], [$5], [$4])dnl -])# PKG_CHECK_VAR - # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996-2012 Free Software Foundation, Inc. diff -Nru yad-0.20.3/configure yad-0.21.0/configure --- yad-0.20.3/configure 2013-04-05 08:11:50.000000000 +0000 +++ yad-0.21.0/configure 2013-05-10 06:15:37.000000000 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for YAD 0.20.3. +# Generated by GNU Autoconf 2.69 for YAD 0.21.0. # # Report bugs to . # @@ -580,8 +580,8 @@ # Identity of this package. PACKAGE_NAME='YAD' PACKAGE_TARNAME='yad' -PACKAGE_VERSION='0.20.3' -PACKAGE_STRING='YAD 0.20.3' +PACKAGE_VERSION='0.21.0' +PACKAGE_STRING='YAD 0.21.0' PACKAGE_BUGREPORT='http://code.google.com/p/yad/issues/entry' PACKAGE_URL='http://code.google.com/p/yad' @@ -1339,7 +1339,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures YAD 0.20.3 to adapt to many kinds of systems. +\`configure' configures YAD 0.21.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1405,7 +1405,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of YAD 0.20.3:";; + short | recursive ) echo "Configuration of YAD 0.21.0:";; esac cat <<\_ACEOF @@ -1518,7 +1518,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -YAD configure 0.20.3 +YAD configure 0.21.0 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1887,7 +1887,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by YAD $as_me 0.20.3, which was +It was created by YAD $as_me 0.21.0, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2711,7 +2711,7 @@ # Define the identity of the package. PACKAGE='yad' - VERSION='0.20.3' + VERSION='0.21.0' cat >>confdefs.h <<_ACEOF @@ -5094,7 +5094,6 @@ - if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. @@ -5223,7 +5222,6 @@ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_CFLAGS=`$PKG_CONFIG --cflags "$GTK_MODULE >= $GTK_REQUIRED $GTK_PRINT" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi @@ -5240,7 +5238,6 @@ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_LIBS=`$PKG_CONFIG --libs "$GTK_MODULE >= $GTK_REQUIRED $GTK_PRINT" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi @@ -5260,9 +5257,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$GTK_MODULE >= $GTK_REQUIRED $GTK_PRINT" 2>&1` + GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$GTK_MODULE >= $GTK_REQUIRED $GTK_PRINT" 2>&1` else - GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$GTK_MODULE >= $GTK_REQUIRED $GTK_PRINT" 2>&1` + GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors "$GTK_MODULE >= $GTK_REQUIRED $GTK_PRINT" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GTK_PKG_ERRORS" >&5 @@ -7028,7 +7025,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by YAD $as_me 0.20.3, which was +This file was extended by YAD $as_me 0.21.0, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -7095,7 +7092,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -YAD config.status 0.20.3 +YAD config.status 0.21.0 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -Nru yad-0.20.3/configure.ac yad-0.21.0/configure.ac --- yad-0.20.3/configure.ac 2013-04-05 08:11:43.000000000 +0000 +++ yad-0.21.0/configure.ac 2013-05-10 06:13:06.000000000 +0000 @@ -1,4 +1,4 @@ -AC_INIT([YAD], [0.20.3], [http://code.google.com/p/yad/issues/entry], yad, [http://code.google.com/p/yad]) +AC_INIT([YAD], [0.21.0], [http://code.google.com/p/yad/issues/entry], yad, [http://code.google.com/p/yad]) AM_INIT_AUTOMAKE([1.11 foreign dist-xz no-dist-gzip]) AM_SILENT_RULES([yes]) diff -Nru yad-0.20.3/data/yad.1 yad-0.21.0/data/yad.1 --- yad-0.20.3/data/yad.1 2013-03-27 16:03:12.000000000 +0000 +++ yad-0.21.0/data/yad.1 2013-05-10 06:00:24.000000000 +0000 @@ -392,6 +392,9 @@ .TP .B \-\-date-format=PATTERN Set the format for the date fields (same as in calendar dialog). +.TP +.B \-\-scroll +Make form scrollable. .PP Additional data in command line interprets as a default values for form fields. A special value \fI@disabled\fP makes proper field inactive. @@ -552,7 +555,7 @@ Show log window. This window gathers all of lines from stdin, started from \fI#\fP instead of setting appropriate progress labels. Optional argument \fITEXT\fP is a text label for window expander. .TP -.B \-\--log-on-top +.B \-\-log-on-top Place log window above progress bar. .TP .B \-\-log-expanded diff -Nru yad-0.20.3/debian/changelog yad-0.21.0/debian/changelog --- yad-0.20.3/debian/changelog 2013-04-05 08:22:40.000000000 +0000 +++ yad-0.21.0/debian/changelog 2013-05-13 09:52:02.000000000 +0000 @@ -1,3 +1,9 @@ +yad (0.21.0-1~webupd8~natty) natty; urgency=medium + + * new upstream release - build with gtk2 for natty - lucid + + -- Alin Andrei Mon, 13 May 2013 12:52:02 +0300 + yad (0.20.3-1~webupd8~natty) natty; urgency=medium * new upstream release - build with gtk2 for natty - lucid diff -Nru yad-0.20.3/depcomp yad-0.21.0/depcomp --- yad-0.20.3/depcomp 2012-12-11 10:38:27.000000000 +0000 +++ yad-0.21.0/depcomp 2010-07-10 09:29:49.000000000 +0000 @@ -1,9 +1,10 @@ #! /bin/sh # depcomp - compile a program generating dependencies as side-effects -scriptversion=2012-07-12.20; # UTC +scriptversion=2009-04-28.21; # UTC -# Copyright (C) 1999-2012 Free Software Foundation, Inc. +# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free +# Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -27,7 +28,7 @@ case $1 in '') - echo "$0: No command. Try '$0 --help' for more information." 1>&2 + echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) @@ -39,11 +40,11 @@ Environment variables: depmode Dependency tracking mode. - source Source file read by 'PROGRAMS ARGS'. - object Object file output by 'PROGRAMS ARGS'. + source Source file read by `PROGRAMS ARGS'. + object Object file output by `PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. - tmpdepfile Temporary file to use when outputting dependencies. + tmpdepfile Temporary file to use when outputing dependencies. libtool Whether libtool is used (yes/no). Report bugs to . @@ -56,12 +57,6 @@ ;; esac -# A tabulation character. -tab=' ' -# A newline character. -nl=' -' - if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 @@ -74,9 +69,6 @@ rm -f "$tmpdepfile" -# Avoid interferences from the environment. -gccflag= dashmflag= - # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case @@ -98,24 +90,10 @@ # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 - cygpath_u='sed s,\\\\,/,g' + cygpath_u="sed s,\\\\\\\\,/,g" depmode=msvisualcpp fi -if test "$depmode" = msvc7msys; then - # This is just like msvc7 but w/o cygpath translation. - # Just convert the backslash-escaped backslashes to single forward - # slashes to satisfy depend.m4 - cygpath_u='sed s,\\\\,/,g' - depmode=msvc7 -fi - -if test "$depmode" = xlc; then - # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. - gccflag=-qmakedep=gcc,-MF - depmode=gcc -fi - case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what @@ -145,17 +123,13 @@ ;; gcc) -## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. -## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. -## (see the conditional assignment to $gccflag above). ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like -## -MM, not -M (despite what the docs say). Also, it might not be -## supported by the other compilers which use the 'gcc' depmode. +## -MM, not -M (despite what the docs say). ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then @@ -174,21 +148,20 @@ ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" -## This next piece of magic avoids the "deleted header file" problem. +## This next piece of magic avoids the `deleted header file' problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. - tr ' ' "$nl" < "$tmpdepfile" | -## Some versions of gcc put a space before the ':'. On the theory + tr ' ' ' +' < "$tmpdepfile" | +## Some versions of gcc put a space before the `:'. On the theory ## that the space means something, we add a space to the output as -## well. hp depmode also adds that space, but also prefixes the VPATH -## to the object. Take care to not repeat it in the output. +## well. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. - sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ - | sed -e 's/$/ :/' >> "$depfile" + sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; @@ -220,15 +193,18 @@ # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; - # the IRIX cc adds comments like '#:fec' to the end of the + # the IRIX cc adds comments like `#:fec' to the end of the # dependency line. - tr ' ' "$nl" < "$tmpdepfile" \ + tr ' ' ' +' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ - tr "$nl" ' ' >> "$depfile" + tr ' +' ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. - tr ' ' "$nl" < "$tmpdepfile" \ + tr ' ' ' +' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else @@ -240,17 +216,10 @@ rm -f "$tmpdepfile" ;; -xlc) - # This case exists only to let depend.m4 do its work. It works by - # looking at the text of this script. This case will never be run, - # since it is checked for above. - exit 1 - ;; - aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the - # current directory. Also, the AIX compiler puts '$object:' at the + # current directory. Also, the AIX compiler puts `$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` @@ -280,11 +249,12 @@ test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then - # Each line is of the form 'foo.o: dependent.h'. + # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to - # '$object: dependent.h' and one to simply 'dependent.h:'. + # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" - sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" + # That's a tab and a space in the []. + sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile @@ -295,26 +265,23 @@ ;; icc) - # Intel's C compiler anf tcc (Tiny C Compiler) understand '-MD -MF file'. - # However on - # $CC -MD -MF foo.d -c -o sub/foo.o sub/foo.c + # Intel's C compiler understands `-MD -MF file'. However on + # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h - # which is wrong. We want + # which is wrong. We want: # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h - # and will wrap long lines using '\': + # and will wrap long lines using \ : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... - # tcc 0.9.26 (FIXME still under development at the moment of writing) - # will emit a similar output, but also prepend the continuation lines - # with horizontal tabulation characters. + "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : @@ -323,85 +290,6 @@ exit $stat fi rm -f "$depfile" - # Each line is of the form 'foo.o: dependent.h', - # or 'foo.o: dep1.h dep2.h \', or ' dep3.h dep4.h \'. - # Do two passes, one to just change these to - # '$object: dependent.h' and one to simply 'dependent.h:'. - sed -e "s/^[ $tab][ $tab]*/ /" -e "s,^[^:]*:,$object :," \ - < "$tmpdepfile" > "$depfile" - sed ' - s/[ '"$tab"'][ '"$tab"']*/ /g - s/^ *// - s/ *\\*$// - s/^[^:]*: *// - /^$/d - /:$/d - s/$/ :/ - ' < "$tmpdepfile" >> "$depfile" - rm -f "$tmpdepfile" - ;; - -## The order of this option in the case statement is important, since the -## shell code in configure will try each of these formats in the order -## listed in this file. A plain '-MD' option would be understood by many -## compilers, so we must ensure this comes after the gcc and icc options. -pgcc) - # Portland's C compiler understands '-MD'. - # Will always output deps to 'file.d' where file is the root name of the - # source file under compilation, even if file resides in a subdirectory. - # The object file name does not affect the name of the '.d' file. - # pgcc 10.2 will output - # foo.o: sub/foo.c sub/foo.h - # and will wrap long lines using '\' : - # foo.o: sub/foo.c ... \ - # sub/foo.h ... \ - # ... - dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` - test "x$dir" = "x$object" && dir= - # Use the source, not the object, to determine the base name, since - # that's sadly what pgcc will do too. - base=`echo "$source" | sed -e 's|^.*/||' -e 's/\.[-_a-zA-Z0-9]*$//'` - tmpdepfile="$base.d" - - # For projects that build the same source file twice into different object - # files, the pgcc approach of using the *source* file root name can cause - # problems in parallel builds. Use a locking strategy to avoid stomping on - # the same $tmpdepfile. - lockdir="$base.d-lock" - trap "echo '$0: caught signal, cleaning up...' >&2; rm -rf $lockdir" 1 2 13 15 - numtries=100 - i=$numtries - while test $i -gt 0 ; do - # mkdir is a portable test-and-set. - if mkdir $lockdir 2>/dev/null; then - # This process acquired the lock. - "$@" -MD - stat=$? - # Release the lock. - rm -rf $lockdir - break - else - ## the lock is being held by a different process, - ## wait until the winning process is done or we timeout - while test -d $lockdir && test $i -gt 0; do - sleep 1 - i=`expr $i - 1` - done - fi - i=`expr $i - 1` - done - trap - 1 2 13 15 - if test $i -le 0; then - echo "$0: failed to acquire lock after $numtries attempts" >&2 - echo "$0: check lockdir '$lockdir'" >&2 - exit 1 - fi - - if test $stat -ne 0; then - rm -f "$tmpdepfile" - exit $stat - fi - rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to @@ -446,7 +334,7 @@ done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" - # Add 'dependent.h:' lines. + # Add `dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// @@ -461,9 +349,9 @@ tru64) # The Tru64 compiler uses -MD to generate dependencies as a side - # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. + # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put - # dependencies in 'foo.d' instead, so we check for that too. + # dependencies in `foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= @@ -509,59 +397,14 @@ done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" - sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" + # That's a tab and a space in the []. + sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; -msvc7) - if test "$libtool" = yes; then - showIncludes=-Wc,-showIncludes - else - showIncludes=-showIncludes - fi - "$@" $showIncludes > "$tmpdepfile" - stat=$? - grep -v '^Note: including file: ' "$tmpdepfile" - if test "$stat" = 0; then : - else - rm -f "$tmpdepfile" - exit $stat - fi - rm -f "$depfile" - echo "$object : \\" > "$depfile" - # The first sed program below extracts the file names and escapes - # backslashes for cygpath. The second sed program outputs the file - # name when reading, but also accumulates all include files in the - # hold buffer in order to output them again at the end. This only - # works with sed implementations that can handle large buffers. - sed < "$tmpdepfile" -n ' -/^Note: including file: *\(.*\)/ { - s//\1/ - s/\\/\\\\/g - p -}' | $cygpath_u | sort -u | sed -n ' -s/ /\\ /g -s/\(.*\)/'"$tab"'\1 \\/p -s/.\(.*\) \\/\1:/ -H -$ { - s/.*/'"$tab"'/ - G - p -}' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -msvc7msys) - # This case exists only to let depend.m4 do its work. It works by - # looking at the text of this script. This case will never be run, - # since it is checked for above. - exit 1 - ;; - #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. @@ -579,7 +422,7 @@ shift fi - # Remove '-o $object'. + # Remove `-o $object'. IFS=" " for arg do @@ -599,14 +442,15 @@ done test -z "$dashmflag" && dashmflag=-M - # Require at least two characters before searching for ':' + # Require at least two characters before searching for `:' # in the target name. This is to cope with DOS-style filenames: - # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. + # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. "$@" $dashmflag | - sed 's:^['"$tab"' ]*[^:'"$tab"' ][^:][^:]*\:['"$tab"' ]*:'"$object"'\: :' > "$tmpdepfile" + sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" - tr ' ' "$nl" < "$tmpdepfile" | \ + tr ' ' ' +' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" @@ -659,10 +503,9 @@ touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" - # makedepend may prepend the VPATH from the source file name to the object. - # No need to regex-escape $object, excess matching of '.' is harmless. - sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" - sed '1,2d' "$tmpdepfile" | tr ' ' "$nl" | \ + cat < "$tmpdepfile" > "$depfile" + sed '1,2d' "$tmpdepfile" | tr ' ' ' +' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" @@ -682,7 +525,7 @@ shift fi - # Remove '-o $object'. + # Remove `-o $object'. IFS=" " for arg do @@ -751,8 +594,8 @@ sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" - sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" - echo "$tab" >> "$depfile" + sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" + echo " " >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; diff -Nru yad-0.20.3/install-sh yad-0.21.0/install-sh --- yad-0.20.3/install-sh 2012-12-11 10:38:27.000000000 +0000 +++ yad-0.21.0/install-sh 2010-07-10 09:29:49.000000000 +0000 @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2011-11-20.07; # UTC +scriptversion=2009-04-28.21; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the @@ -35,7 +35,7 @@ # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent -# 'make' implicit rules from creating a file called install from it +# `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written @@ -156,10 +156,6 @@ -s) stripcmd=$stripprog;; -t) dst_arg=$2 - # Protect names problematic for 'test' and other utilities. - case $dst_arg in - -* | [=\(\)!]) dst_arg=./$dst_arg;; - esac shift;; -T) no_target_directory=true;; @@ -190,10 +186,6 @@ fi shift # arg dst_arg=$arg - # Protect names problematic for 'test' and other utilities. - case $dst_arg in - -* | [=\(\)!]) dst_arg=./$dst_arg;; - esac done fi @@ -202,17 +194,13 @@ echo "$0: no input file specified." >&2 exit 1 fi - # It's OK to call 'install-sh -d' without argument. + # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then - do_exit='(exit $ret); exit $ret' - trap "ret=129; $do_exit" 1 - trap "ret=130; $do_exit" 2 - trap "ret=141; $do_exit" 13 - trap "ret=143; $do_exit" 15 + trap '(exit $?); exit' 1 2 13 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. @@ -240,9 +228,9 @@ for src do - # Protect names problematic for 'test' and other utilities. + # Protect names starting with `-'. case $src in - -* | [=\(\)!]) src=./$src;; + -*) src=./$src;; esac if test -n "$dir_arg"; then @@ -264,7 +252,12 @@ echo "$0: no destination specified." >&2 exit 1 fi + dst=$dst_arg + # Protect names starting with `-'. + case $dst in + -*) dst=./$dst;; + esac # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. @@ -354,7 +347,7 @@ if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or - # other-writable bit of parent directory when it shouldn't. + # other-writeable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in @@ -392,7 +385,7 @@ case $dstdir in /*) prefix='/';; - [-=\(\)!]*) prefix='./';; + -*) prefix='./';; *) prefix='';; esac @@ -410,7 +403,7 @@ for d do - test X"$d" = X && continue + test -z "$d" && continue prefix=$prefix$d if test -d "$prefix"; then diff -Nru yad-0.20.3/missing yad-0.21.0/missing --- yad-0.20.3/missing 2012-12-11 10:38:27.000000000 +0000 +++ yad-0.21.0/missing 2010-07-10 09:29:49.000000000 +0000 @@ -1,9 +1,10 @@ #! /bin/sh # Common stub for a few missing GNU programs while installing. -scriptversion=2012-01-06.18; # UTC +scriptversion=2009-04-28.21; # UTC -# Copyright (C) 1996-2012 Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, +# 2008, 2009 Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify @@ -25,7 +26,7 @@ # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then - echo 1>&2 "Try '$0 --help' for more information" + echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi @@ -33,7 +34,7 @@ sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' sed_minuso='s/.* -o \([^ ]*\).*/\1/p' -# In the cases where this matters, 'missing' is being run in the +# In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac @@ -64,7 +65,7 @@ echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... -Handle 'PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an +Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: @@ -73,20 +74,21 @@ --run try to run the given command, and emulate it if it fails Supported PROGRAM values: - aclocal touch file 'aclocal.m4' - autoconf touch file 'configure' - autoheader touch file 'config.h.in' + aclocal touch file \`aclocal.m4' + autoconf touch file \`configure' + autoheader touch file \`config.h.in' autom4te touch the output file, or create a stub one - automake touch all 'Makefile.in' files - bison create 'y.tab.[ch]', if possible, from existing .[ch] - flex create 'lex.yy.c', if possible, from existing .c + automake touch all \`Makefile.in' files + bison create \`y.tab.[ch]', if possible, from existing .[ch] + flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file - lex create 'lex.yy.c', if possible, from existing .c + lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file - yacc create 'y.tab.[ch]', if possible, from existing .[ch] + tar try tar, gnutar, gtar, then tar without non-portable flags + yacc create \`y.tab.[ch]', if possible, from existing .[ch] -Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and -'g' are ignored when checking the name. +Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and +\`g' are ignored when checking the name. Send bug reports to ." exit $? @@ -98,8 +100,8 @@ ;; -*) - echo 1>&2 "$0: Unknown '$1' option" - echo 1>&2 "Try '$0 --help' for more information" + echo 1>&2 "$0: Unknown \`$1' option" + echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; @@ -120,13 +122,22 @@ # Not GNU programs, they don't have --version. ;; + tar*) + if test -n "$run"; then + echo 1>&2 "ERROR: \`tar' requires --run" + exit 1 + elif test "x$2" = "x--version" || test "x$2" = "x--help"; then + exit 1 + fi + ;; + *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone - # running '$TOOL --version' or '$TOOL --help' to check whether + # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi @@ -138,27 +149,27 @@ case $program in aclocal*) echo 1>&2 "\ -WARNING: '$1' is $msg. You should only need it if - you modified 'acinclude.m4' or '${configure_ac}'. You might want - to install the Automake and Perl packages. Grab them from +WARNING: \`$1' is $msg. You should only need it if + you modified \`acinclude.m4' or \`${configure_ac}'. You might want + to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf*) echo 1>&2 "\ -WARNING: '$1' is $msg. You should only need it if - you modified '${configure_ac}'. You might want to install the - Autoconf and GNU m4 packages. Grab them from any GNU +WARNING: \`$1' is $msg. You should only need it if + you modified \`${configure_ac}'. You might want to install the + \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader*) echo 1>&2 "\ -WARNING: '$1' is $msg. You should only need it if - you modified 'acconfig.h' or '${configure_ac}'. You might want - to install the Autoconf and GNU m4 packages. Grab them +WARNING: \`$1' is $msg. You should only need it if + you modified \`acconfig.h' or \`${configure_ac}'. You might want + to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" @@ -175,9 +186,9 @@ automake*) echo 1>&2 "\ -WARNING: '$1' is $msg. You should only need it if - you modified 'Makefile.am', 'acinclude.m4' or '${configure_ac}'. - You might want to install the Automake and Perl packages. +WARNING: \`$1' is $msg. You should only need it if + you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. + You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | @@ -186,10 +197,10 @@ autom4te*) echo 1>&2 "\ -WARNING: '$1' is needed, but is $msg. +WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. - You can get '$1' as part of Autoconf from any GNU + You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` @@ -209,13 +220,13 @@ bison*|yacc*) echo 1>&2 "\ -WARNING: '$1' $msg. You should only need it if - you modified a '.y' file. You may need the Bison package +WARNING: \`$1' $msg. You should only need it if + you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get - Bison from any GNU archive site." + \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if test $# -ne 1; then - eval LASTARG=\${$#} + eval LASTARG="\${$#}" case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` @@ -239,13 +250,13 @@ lex*|flex*) echo 1>&2 "\ -WARNING: '$1' is $msg. You should only need it if - you modified a '.l' file. You may need the Flex package +WARNING: \`$1' is $msg. You should only need it if + you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get - Flex from any GNU archive site." + \`Flex' from any GNU archive site." rm -f lex.yy.c if test $# -ne 1; then - eval LASTARG=\${$#} + eval LASTARG="\${$#}" case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` @@ -262,10 +273,10 @@ help2man*) echo 1>&2 "\ -WARNING: '$1' is $msg. You should only need it if +WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the - Help2man package in order for those modifications to take - effect. You can get Help2man from any GNU archive site." + \`Help2man' package in order for those modifications to take + effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` @@ -280,12 +291,12 @@ makeinfo*) echo 1>&2 "\ -WARNING: '$1' is $msg. You should only need it if - you modified a '.texi' or '.texinfo' file, or any other file +WARNING: \`$1' is $msg. You should only need it if + you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious - call might also be the consequence of using a buggy 'make' (AIX, - DU, IRIX). You might want to install the Texinfo package or - the GNU make package. Grab either from any GNU archive site." + call might also be the consequence of using a buggy \`make' (AIX, + DU, IRIX). You might want to install the \`Texinfo' package or + the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` @@ -307,14 +318,49 @@ touch $file ;; + tar*) + shift + + # We have already tried tar in the generic part. + # Look for gnutar/gtar before invocation to avoid ugly error + # messages. + if (gnutar --version > /dev/null 2>&1); then + gnutar "$@" && exit 0 + fi + if (gtar --version > /dev/null 2>&1); then + gtar "$@" && exit 0 + fi + firstarg="$1" + if shift; then + case $firstarg in + *o*) + firstarg=`echo "$firstarg" | sed s/o//` + tar "$firstarg" "$@" && exit 0 + ;; + esac + case $firstarg in + *h*) + firstarg=`echo "$firstarg" | sed s/h//` + tar "$firstarg" "$@" && exit 0 + ;; + esac + fi + + echo 1>&2 "\ +WARNING: I can't seem to be able to run \`tar' with the given arguments. + You may want to install GNU tar or Free paxutils, or check the + command line arguments." + exit 1 + ;; + *) echo 1>&2 "\ -WARNING: '$1' is needed, and is $msg. +WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the - proper tools for further handling them. Check the 'README' file, + proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case - some other package would contain this missing '$1' program." + some other package would contain this missing \`$1' program." exit 1 ;; esac diff -Nru yad-0.20.3/po/de.po yad-0.21.0/po/de.po --- yad-0.20.3/po/de.po 2013-03-27 16:03:14.000000000 +0000 +++ yad-0.21.0/po/de.po 2013-05-10 06:00:47.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: yad\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-20 07:37+0200\n" +"POT-Creation-Date: 2013-05-10 09:00+0300\n" "PO-Revision-Date: 2009-11-30 16:53+0100\n" "Last-Translator: Manfred Mueller aka Quax\n" "Language-Team: German translations at Lin2Go \n" @@ -102,17 +102,17 @@ msgid "Select or create folder" msgstr "" -#: ../src/form.c:461 +#: ../src/form.c:467 #, fuzzy msgid "Select date" msgstr "Datei öffnen" -#: ../src/form.c:637 +#: ../src/form.c:667 #, fuzzy msgid "Select file" msgstr "Datei öffnen" -#: ../src/form.c:651 +#: ../src/form.c:681 msgid "Select folder" msgstr "" @@ -126,12 +126,12 @@ msgid "Unable to open directory %s: %s\n" msgstr "Kann Befehlszeile nicht einlesen: %s\n" -#: ../src/main.c:102 ../src/main.c:228 +#: ../src/main.c:102 ../src/main.c:227 #, c-format msgid "%d sec" msgstr "" -#: ../src/main.c:608 +#: ../src/main.c:611 #, c-format msgid "Unable to parse command line: %s\n" msgstr "Kann Befehlszeile nicht einlesen: %s\n" @@ -155,15 +155,20 @@ msgid "Yad notification" msgstr "Yad Benachrichtigung" -#: ../src/list.c:746 +#: ../src/list.c:800 msgid "Add row" msgstr "Reihe hinzufügen" -#: ../src/list.c:753 +#: ../src/list.c:807 msgid "Delete row" msgstr "Reihe löschen" -#: ../src/list.c:779 +#: ../src/list.c:814 +#, fuzzy +msgid "Duplicate row" +msgstr "Reihe löschen" + +#: ../src/list.c:841 #, c-format msgid "No column titles specified for List dialog.\n" msgstr "Keine Spaltentitel für Listendialog angegeben\n" @@ -231,7 +236,7 @@ #: ../src/option.c:110 ../src/option.c:140 ../src/option.c:371 #: ../src/option.c:377 ../src/option.c:383 ../src/option.c:517 -#: ../src/option.c:894 ../src/option.c:933 +#: ../src/option.c:900 ../src/option.c:939 msgid "TEXT" msgstr "TEXT" @@ -240,8 +245,8 @@ msgstr "" #: ../src/option.c:116 ../src/option.c:158 ../src/option.c:540 -#: ../src/option.c:694 ../src/option.c:770 ../src/option.c:798 -#: ../src/option.c:860 ../src/option.c:1061 +#: ../src/option.c:700 ../src/option.c:776 ../src/option.c:804 +#: ../src/option.c:866 ../src/option.c:1067 msgid "TYPE" msgstr "" @@ -299,8 +304,8 @@ msgstr "Fenster-Größe fixieren" #: ../src/option.c:178 ../src/option.c:245 ../src/option.c:546 -#: ../src/option.c:700 ../src/option.c:706 ../src/option.c:712 -#: ../src/option.c:718 ../src/option.c:724 ../src/option.c:804 +#: ../src/option.c:706 ../src/option.c:712 ../src/option.c:718 +#: ../src/option.c:724 ../src/option.c:730 ../src/option.c:810 msgid "NUMBER" msgstr "ZAHL" @@ -346,7 +351,7 @@ msgid "Special type of dialog for XEMBED" msgstr "" -#: ../src/option.c:239 ../src/option.c:786 +#: ../src/option.c:239 ../src/option.c:792 msgid "KEY" msgstr "" @@ -398,7 +403,7 @@ msgid "Set the format for the returned date" msgstr "Format des angezeigten Datums angeben" -#: ../src/option.c:293 ../src/option.c:564 ../src/option.c:611 +#: ../src/option.c:293 ../src/option.c:564 ../src/option.c:617 msgid "PATTERN" msgstr "FORMAT" @@ -408,7 +413,7 @@ msgstr "Dateinamen angeben" #: ../src/option.c:299 ../src/option.c:327 ../src/option.c:447 -#: ../src/option.c:854 ../src/option.c:1079 ../src/option.c:1123 +#: ../src/option.c:860 ../src/option.c:1085 ../src/option.c:1129 msgid "FILENAME" msgstr "DATEINAME" @@ -424,7 +429,7 @@ msgid "Set initial color value" msgstr "Wert der Anfangsfarbe angeben" -#: ../src/option.c:321 ../src/option.c:1037 ../src/option.c:1043 +#: ../src/option.c:321 ../src/option.c:1043 ../src/option.c:1049 msgid "COLOR" msgstr "FARBE" @@ -450,7 +455,7 @@ msgstr "" #: ../src/option.c:355 ../src/option.c:413 ../src/option.c:425 -#: ../src/option.c:730 ../src/option.c:820 +#: ../src/option.c:736 ../src/option.c:826 msgid "CMD" msgstr "" @@ -527,12 +532,12 @@ msgid "Activate save mode" msgstr "Sicheren Modus aktivieren" -#: ../src/option.c:470 ../src/option.c:551 ../src/option.c:669 +#: ../src/option.c:470 ../src/option.c:551 ../src/option.c:675 msgid "Set output separator character" msgstr "Ausgabe-Trennzeichen angeben" #: ../src/option.c:471 ../src/option.c:552 ../src/option.c:558 -#: ../src/option.c:670 ../src/option.c:832 ../src/option.c:838 +#: ../src/option.c:676 ../src/option.c:838 ../src/option.c:844 msgid "SEPARATOR" msgstr "Trennzeichen" @@ -572,7 +577,7 @@ msgid "Set initial font" msgstr "Anfangs-Prozentsatz angeben" -#: ../src/option.c:511 ../src/option.c:878 ../src/option.c:1049 +#: ../src/option.c:511 ../src/option.c:884 ../src/option.c:1055 msgid "FONTNAME" msgstr "SCHRIFTART" @@ -591,7 +596,7 @@ "MDIR, FN, DT, CLR, BTN, LBL or TXT)" msgstr "" -#: ../src/option.c:534 ../src/option.c:758 +#: ../src/option.c:534 ../src/option.c:764 msgid "LABEL[:TYPE]" msgstr "" @@ -608,617 +613,621 @@ msgid "Set separator character for combobox or scale data" msgstr "Ausgabe-Trennzeichen angeben" -#: ../src/option.c:573 +#: ../src/option.c:569 +msgid "Make form scrollable" +msgstr "" + +#: ../src/option.c:579 #, fuzzy msgid "Display icons box dialog" msgstr "Listen-Dialog" -#: ../src/option.c:579 +#: ../src/option.c:585 msgid "Read data from .desktop files in specified directory" msgstr "" -#: ../src/option.c:580 +#: ../src/option.c:586 msgid "DIRECTORY" msgstr "" -#: ../src/option.c:585 +#: ../src/option.c:591 msgid "Use compact (list) view" msgstr "" -#: ../src/option.c:591 +#: ../src/option.c:597 msgid "Use GenericName field instead of Name for icon label" msgstr "" -#: ../src/option.c:597 +#: ../src/option.c:603 #, fuzzy msgid "Read data from stdin" msgstr "Alle Werte der Liste" -#: ../src/option.c:603 +#: ../src/option.c:609 #, fuzzy msgid "Set the width of dialog items" msgstr "Dialogtitel angeben" -#: ../src/option.c:610 +#: ../src/option.c:616 #, no-c-format msgid "" "Use specified pattern for launch command in terminal (default: xterm -e %s)" msgstr "" -#: ../src/option.c:616 +#: ../src/option.c:622 msgid "Sort items by name instead of filename" msgstr "" -#: ../src/option.c:622 +#: ../src/option.c:628 msgid "Sort items in descending order" msgstr "" -#: ../src/option.c:628 +#: ../src/option.c:634 msgid "Activate items by single click" msgstr "" -#: ../src/option.c:638 +#: ../src/option.c:644 msgid "Display list dialog" msgstr "Listen-Dialog" -#: ../src/option.c:644 +#: ../src/option.c:650 #, fuzzy msgid "Don't show column headers" msgstr "Spalten-Bezeichnung angeben" -#: ../src/option.c:650 +#: ../src/option.c:656 msgid "Set the column header (TYPE - TEXT, NUM, FLT, CHK, RD, IMG, HD or TIP)" msgstr "" -#: ../src/option.c:651 +#: ../src/option.c:657 #, fuzzy msgid "COLUMN[:TYPE]" msgstr "SPALTE" -#: ../src/option.c:656 +#: ../src/option.c:662 #, fuzzy msgid "Use checkboxes for first column" msgstr "Ankreuzfeld für erste Spalte benutzen" -#: ../src/option.c:662 +#: ../src/option.c:668 #, fuzzy msgid "Use radioboxes for first column" msgstr "Ankreuzfeld für erste Spalte benutzen" -#: ../src/option.c:675 +#: ../src/option.c:681 msgid "Allow multiple rows to be selected" msgstr "Auswahl mehrerer Reihen erlauben" -#: ../src/option.c:681 ../src/option.c:1084 +#: ../src/option.c:687 ../src/option.c:1090 msgid "Allow changes to text" msgstr "Textänderungen erlauben" -#: ../src/option.c:687 +#: ../src/option.c:693 msgid "Print all data from list" msgstr "Alle Werte der Liste" -#: ../src/option.c:693 +#: ../src/option.c:699 msgid "Set ellipsize mode for text columns (TYPE - NONE, START, MIDDLE or END)" msgstr "" -#: ../src/option.c:699 +#: ../src/option.c:705 #, fuzzy msgid "" "Print a specific column. By default or if 0 is specified will be printed all " "columns" msgstr "Bestimmte Spalte ausgeben (Standard=1 - Alle=0)" -#: ../src/option.c:705 +#: ../src/option.c:711 msgid "Hide a specific column" msgstr "Bestimmte Spalte verbergen" -#: ../src/option.c:711 +#: ../src/option.c:717 msgid "Set the column expandable by default. 0 sets all columns expandable" msgstr "" -#: ../src/option.c:717 +#: ../src/option.c:723 msgid "" "Set the quick search column. Default is first column. Set it to 0 for " "disable searching" msgstr "" -#: ../src/option.c:723 +#: ../src/option.c:729 #, fuzzy msgid "Set the limit of rows in list" msgstr "Dialogtitel angeben" -#: ../src/option.c:729 +#: ../src/option.c:735 msgid "Set double-click action" msgstr "" -#: ../src/option.c:735 +#: ../src/option.c:741 msgid "Use regex in search" msgstr "" -#: ../src/option.c:741 +#: ../src/option.c:747 msgid "Listen for data on stdin in addition to command-line" msgstr "" -#: ../src/option.c:751 +#: ../src/option.c:757 #, fuzzy msgid "Display multi progress bars dialog" msgstr "Fortschrittsbalken" -#: ../src/option.c:757 +#: ../src/option.c:763 msgid "Add the progress bar (TYPE - NORM, RTL or PULSE)" msgstr "" -#: ../src/option.c:763 +#: ../src/option.c:769 msgid "Show vertical bars" msgstr "" -#: ../src/option.c:769 +#: ../src/option.c:775 msgid "Set alignment of bar labels (left, center or right)" msgstr "" -#: ../src/option.c:779 +#: ../src/option.c:785 #, fuzzy msgid "Display notebook dialog" msgstr "Listen-Dialog" -#: ../src/option.c:785 +#: ../src/option.c:791 msgid "Identifier of embedded dialogs" msgstr "" -#: ../src/option.c:791 +#: ../src/option.c:797 msgid "Add a tab to notebook" msgstr "" -#: ../src/option.c:792 +#: ../src/option.c:798 msgid "LABEL" msgstr "BEZEICHNUNG" -#: ../src/option.c:797 +#: ../src/option.c:803 msgid "Set alignment of tab labels (left, center or right)" msgstr "" -#: ../src/option.c:803 +#: ../src/option.c:809 #, fuzzy msgid "Set tab borders" msgstr "Fenster-Größe fixieren" -#: ../src/option.c:813 +#: ../src/option.c:819 msgid "Display notification" msgstr "Benachrichtigung" -#: ../src/option.c:819 +#: ../src/option.c:825 msgid "Set left-click action" msgstr "" -#: ../src/option.c:825 +#: ../src/option.c:831 #, fuzzy msgid "Listen for commands on stdin" msgstr "Auf Befehle von stdin warten" -#: ../src/option.c:831 +#: ../src/option.c:837 #, fuzzy msgid "Set separator character for menu values" msgstr "Ausgabe-Trennzeichen angeben" -#: ../src/option.c:837 +#: ../src/option.c:843 #, fuzzy msgid "Set separator character for menu items" msgstr "Ausgabe-Trennzeichen angeben" -#: ../src/option.c:847 +#: ../src/option.c:853 #, fuzzy msgid "Display printing dialog" msgstr "Listen-Dialog" -#: ../src/option.c:853 +#: ../src/option.c:859 #, fuzzy msgid "Source filename" msgstr "Dateinamen angeben" -#: ../src/option.c:859 +#: ../src/option.c:865 msgid "Set source type (TYPE - TEXT, IMAGE or RAW)" msgstr "" -#: ../src/option.c:865 +#: ../src/option.c:871 msgid "Add headers to page" msgstr "" -#: ../src/option.c:871 +#: ../src/option.c:877 msgid "Enable preview in print dialog" msgstr "" -#: ../src/option.c:877 ../src/option.c:1048 +#: ../src/option.c:883 ../src/option.c:1054 msgid "Use specified font" msgstr "Bestimmte Schriftart benutzen" -#: ../src/option.c:887 +#: ../src/option.c:893 msgid "Display progress indication dialog" msgstr "Fortschrittsbalken" -#: ../src/option.c:893 +#: ../src/option.c:899 msgid "Set progress text" msgstr "Text für Fortschrittsbalken angeben" -#: ../src/option.c:899 +#: ../src/option.c:905 msgid "Set initial percentage" msgstr "Anfangs-Prozentsatz angeben" -#: ../src/option.c:900 +#: ../src/option.c:906 msgid "PERCENTAGE" msgstr "Prozentsatz" -#: ../src/option.c:905 +#: ../src/option.c:911 msgid "Pulsate progress bar" msgstr "Pulsierender Fortschrittsbalken" -#: ../src/option.c:912 +#: ../src/option.c:918 #, no-c-format msgid "Dismiss the dialog when 100% has been reached" msgstr "Dialog bei Erreichen von 100% beenden" -#: ../src/option.c:919 +#: ../src/option.c:925 msgid "Kill parent process if cancel button is pressed" msgstr "Hauptprozess bei Klick auf Abbrechen beenden" -#: ../src/option.c:926 +#: ../src/option.c:932 msgid "Right-To-Left progress bar direction" msgstr "" -#: ../src/option.c:932 +#: ../src/option.c:938 #, fuzzy msgid "Show log window" msgstr "Farb-Einstellungen anzeigen" -#: ../src/option.c:938 +#: ../src/option.c:944 msgid "Expand log window" msgstr "" -#: ../src/option.c:944 +#: ../src/option.c:950 #, fuzzy msgid "Place log window above progress bar" msgstr "Pulsierender Fortschrittsbalken" -#: ../src/option.c:950 +#: ../src/option.c:956 #, fuzzy msgid "Height of log window" msgstr "Farb-Einstellungen anzeigen" -#: ../src/option.c:960 +#: ../src/option.c:966 msgid "Display scale dialog" msgstr "Schieberegler" -#: ../src/option.c:966 +#: ../src/option.c:972 msgid "Set initial value" msgstr "Anfangswert angeben" -#: ../src/option.c:967 ../src/option.c:973 ../src/option.c:979 -#: ../src/option.c:985 ../src/option.c:991 +#: ../src/option.c:973 ../src/option.c:979 ../src/option.c:985 +#: ../src/option.c:991 ../src/option.c:997 msgid "VALUE" msgstr "WERT" -#: ../src/option.c:972 +#: ../src/option.c:978 msgid "Set minimum value" msgstr "Minimal-Wert angeben" -#: ../src/option.c:978 +#: ../src/option.c:984 msgid "Set maximum value" msgstr "Maximal-Wert angeben" -#: ../src/option.c:984 +#: ../src/option.c:990 msgid "Set step size" msgstr "Abstände angeben" -#: ../src/option.c:990 +#: ../src/option.c:996 #, fuzzy msgid "Set paging size" msgstr "Abstände angeben" -#: ../src/option.c:996 +#: ../src/option.c:1002 msgid "Print partial values" msgstr "Teilwerte ausgeben" -#: ../src/option.c:1002 +#: ../src/option.c:1008 msgid "Hide value" msgstr "Wert verbergen" -#: ../src/option.c:1008 +#: ../src/option.c:1014 msgid "Show vertical scale" msgstr "" -#: ../src/option.c:1014 +#: ../src/option.c:1020 msgid "Invert direction" msgstr "" -#: ../src/option.c:1020 +#: ../src/option.c:1026 #, fuzzy msgid "Add mark to scale (may be used multiple times)" msgstr "Dialog-Schaltfläche hinzufügen (Auch mehrmals)" -#: ../src/option.c:1021 +#: ../src/option.c:1027 #, fuzzy msgid "NAME:VALUE" msgstr "WERT" -#: ../src/option.c:1030 +#: ../src/option.c:1036 msgid "Display text information dialog" msgstr "Textinformations-Dialog" -#: ../src/option.c:1036 +#: ../src/option.c:1042 #, fuzzy msgid "Use specified color for text" msgstr "Bestimmte Schriftart benutzen" -#: ../src/option.c:1042 +#: ../src/option.c:1048 #, fuzzy msgid "Use specified color for background" msgstr "Bestimmte Schriftart benutzen" -#: ../src/option.c:1054 +#: ../src/option.c:1060 #, fuzzy msgid "Enable text wrapping" msgstr "Textumbruch nicht aktivieren" -#: ../src/option.c:1060 +#: ../src/option.c:1066 msgid "Set justification (TYPE - left, right, center or fill)" msgstr "" -#: ../src/option.c:1066 +#: ../src/option.c:1072 msgid "Set text margins" msgstr "" -#: ../src/option.c:1067 +#: ../src/option.c:1073 msgid "SIZE" msgstr "" -#: ../src/option.c:1072 +#: ../src/option.c:1078 msgid "Autoscroll to end of text" msgstr "" -#: ../src/option.c:1078 +#: ../src/option.c:1084 msgid "Open file" msgstr "Datei öffnen" -#: ../src/option.c:1090 +#: ../src/option.c:1096 msgid "Make URI clickable" msgstr "" -#: ../src/option.c:1096 +#: ../src/option.c:1102 msgid "Listen for data on stdin in addition to file" msgstr "" -#: ../src/option.c:1106 +#: ../src/option.c:1112 msgid "Show about dialog" msgstr "Über-Dialog" -#: ../src/option.c:1112 +#: ../src/option.c:1118 msgid "Print version" msgstr "Version" -#: ../src/option.c:1122 +#: ../src/option.c:1128 msgid "Load extra arguments from file" msgstr "" -#: ../src/option.c:1165 ../src/option.c:1376 +#: ../src/option.c:1171 ../src/option.c:1382 #, fuzzy, c-format msgid "Unknown align type: %s\n" msgstr "Befehl '%s' unbekannt\n" -#: ../src/option.c:1318 +#: ../src/option.c:1324 #, c-format msgid "Mark %s doesn't have a value\n" msgstr "" -#: ../src/option.c:1361 +#: ../src/option.c:1367 #, fuzzy, c-format msgid "Unknown buttons layout type: %s\n" msgstr "Befehl '%s' unbekannt\n" -#: ../src/option.c:1393 +#: ../src/option.c:1399 #, c-format msgid "Unknown justification type: %s\n" msgstr "" -#: ../src/option.c:1429 +#: ../src/option.c:1435 #, fuzzy, c-format msgid "Unknown ellipsize type: %s\n" msgstr "Befehl '%s' unbekannt\n" -#: ../src/option.c:1444 +#: ../src/option.c:1450 #, fuzzy, c-format msgid "Unknown source type: %s\n" msgstr "Befehl '%s' unbekannt\n" -#: ../src/option.c:1455 +#: ../src/option.c:1461 #, fuzzy msgid "Progress log" msgstr "Fortschrittsbalken-Einstellungen" -#: ../src/option.c:1546 +#: ../src/option.c:1561 #, fuzzy, c-format msgid "Unknown signal: %s\n" msgstr "Befehl '%s' unbekannt\n" -#: ../src/option.c:1686 +#: ../src/option.c:1701 msgid "File exist. Overwrite?" msgstr "" -#: ../src/option.c:1774 +#: ../src/option.c:1789 msgid "Yet another dialoging program" msgstr "Nur ein anderes Dialog-Programm" #. Adds general option entries -#: ../src/option.c:1778 +#: ../src/option.c:1793 msgid "General options" msgstr "Allgemeine Einstellungen" -#: ../src/option.c:1778 +#: ../src/option.c:1793 msgid "Show general options" msgstr "Allgemeine Einstellungen anzeigen" #. Adds calendar option entries -#: ../src/option.c:1784 +#: ../src/option.c:1799 msgid "Calendar options" msgstr "Kalender-Einstellungen" -#: ../src/option.c:1784 +#: ../src/option.c:1799 msgid "Show calendar options" msgstr "Kalender-Einstellungen anzeigen" #. Adds color option entries -#: ../src/option.c:1790 +#: ../src/option.c:1805 #, fuzzy msgid "Color selection options" msgstr "Dateiauswahl-Einstellungen" -#: ../src/option.c:1790 +#: ../src/option.c:1805 #, fuzzy msgid "Show color selection options" msgstr "Dateiauswahl-Einstellungen anzeigen" #. Adds dnd option entries -#: ../src/option.c:1796 +#: ../src/option.c:1811 #, fuzzy msgid "DND options" msgstr "Formular-Einstellungen" -#: ../src/option.c:1796 +#: ../src/option.c:1811 #, fuzzy msgid "Show drag-n-drop options" msgstr "Kalender-Einstellungen anzeigen" #. Adds entry option entries -#: ../src/option.c:1802 +#: ../src/option.c:1817 msgid "Text entry options" msgstr "Textfeld-Einstellungen" -#: ../src/option.c:1802 +#: ../src/option.c:1817 msgid "Show text entry options" msgstr "Textfeld-Einstellungen anzeigen" #. Adds file selection option entries -#: ../src/option.c:1808 +#: ../src/option.c:1823 msgid "File selection options" msgstr "Dateiauswahl-Einstellungen" -#: ../src/option.c:1808 +#: ../src/option.c:1823 msgid "Show file selection options" msgstr "Dateiauswahl-Einstellungen anzeigen" #. Add font selection option entries -#: ../src/option.c:1814 +#: ../src/option.c:1829 #, fuzzy msgid "Font selection options" msgstr "Dateiauswahl-Einstellungen" -#: ../src/option.c:1814 +#: ../src/option.c:1829 #, fuzzy msgid "Show font selection options" msgstr "Dateiauswahl-Einstellungen anzeigen" #. Add form option entries -#: ../src/option.c:1820 +#: ../src/option.c:1835 msgid "Form options" msgstr "Formular-Einstellungen" -#: ../src/option.c:1820 +#: ../src/option.c:1835 msgid "Show form options" msgstr "Formular-Einstellungen anzeigen" #. Add icons option entries -#: ../src/option.c:1826 +#: ../src/option.c:1841 #, fuzzy msgid "Icons box options" msgstr "Farb-Einstellungen" -#: ../src/option.c:1826 +#: ../src/option.c:1841 #, fuzzy msgid "Show icons box options" msgstr "Farb-Einstellungen anzeigen" #. Adds list option entries -#: ../src/option.c:1832 +#: ../src/option.c:1847 msgid "List options" msgstr "Listen-Einstellungen" -#: ../src/option.c:1832 +#: ../src/option.c:1847 msgid "Show list options" msgstr "Listen-Einstellungen anzeigen" #. Adds multi progress option entries -#: ../src/option.c:1838 +#: ../src/option.c:1853 #, fuzzy msgid "Multi progress bars options" msgstr "Fortschrittsbalken-Einstellungen anzeigen" -#: ../src/option.c:1839 +#: ../src/option.c:1854 #, fuzzy msgid "Show multi progress bars options" msgstr "Fortschrittsbalken-Einstellungen anzeigen" #. Adds notebook option entries -#: ../src/option.c:1845 +#: ../src/option.c:1860 #, fuzzy msgid "Notebook options" msgstr "Farb-Einstellungen" -#: ../src/option.c:1845 +#: ../src/option.c:1860 #, fuzzy msgid "Show notebook dialog options" msgstr "Fortschrittsbalken-Einstellungen anzeigen" #. Adds notification option entries -#: ../src/option.c:1851 +#: ../src/option.c:1866 msgid "Notification icon options" msgstr "Benachrichtigungssymbol-Einstellungen" -#: ../src/option.c:1852 +#: ../src/option.c:1867 msgid "Show notification icon options" msgstr "Benachrichtigungssymbol-Einstellungen" #. Adds print option entries -#: ../src/option.c:1858 +#: ../src/option.c:1873 #, fuzzy msgid "Print dialog options" msgstr "Fortschrittsbalken-Einstellungen" -#: ../src/option.c:1858 +#: ../src/option.c:1873 #, fuzzy msgid "Show print dialog options" msgstr "Fortschrittsbalken-Einstellungen anzeigen" #. Adds progress option entries -#: ../src/option.c:1864 +#: ../src/option.c:1879 msgid "Progress options" msgstr "Fortschrittsbalken-Einstellungen" -#: ../src/option.c:1864 +#: ../src/option.c:1879 msgid "Show progress options" msgstr "Fortschrittsbalken-Einstellungen anzeigen" #. Adds scale option entries -#: ../src/option.c:1870 +#: ../src/option.c:1885 msgid "Scale options" msgstr "Schieberegler-Einstellungen" -#: ../src/option.c:1870 +#: ../src/option.c:1885 msgid "Show scale options" msgstr "Schieberegler-Einstellungen anzeigen" #. Adds text option entries -#: ../src/option.c:1876 +#: ../src/option.c:1891 msgid "Text information options" msgstr "Informationstext-Einstellungen" -#: ../src/option.c:1876 +#: ../src/option.c:1891 msgid "Show text information options" msgstr "Informationstext-Einstellungen anzeigen" #. Adds miscellaneous option entries -#: ../src/option.c:1882 +#: ../src/option.c:1897 msgid "Miscellaneous options" msgstr "Verschiedene Einstellungen" -#: ../src/option.c:1882 +#: ../src/option.c:1897 msgid "Show miscellaneous options" msgstr "Verschiedene Einstellungen anzeigen" diff -Nru yad-0.20.3/po/fr.po yad-0.21.0/po/fr.po --- yad-0.20.3/po/fr.po 2013-03-27 16:03:14.000000000 +0000 +++ yad-0.21.0/po/fr.po 2013-05-10 06:00:48.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: YAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-20 07:37+0200\n" +"POT-Creation-Date: 2013-05-10 09:00+0300\n" "PO-Revision-Date: \n" "Last-Translator: Yannou90 \n" "Language-Team: Français\n" @@ -108,15 +108,15 @@ msgid "Select or create folder" msgstr "Sélectionner ou créer le dossier" -#: ../src/form.c:461 +#: ../src/form.c:467 msgid "Select date" msgstr "Sélectionner une date" -#: ../src/form.c:637 +#: ../src/form.c:667 msgid "Select file" msgstr "Sélectionner le fichier" -#: ../src/form.c:651 +#: ../src/form.c:681 msgid "Select folder" msgstr "Choisir un répertoire" @@ -130,12 +130,12 @@ msgid "Unable to open directory %s: %s\n" msgstr "impossible d'ouvrir le répertoire %s: %s\n" -#: ../src/main.c:102 ../src/main.c:228 +#: ../src/main.c:102 ../src/main.c:227 #, c-format msgid "%d sec" msgstr "%d sec" -#: ../src/main.c:608 +#: ../src/main.c:611 #, c-format msgid "Unable to parse command line: %s\n" msgstr "Impossible d'analyser la ligne de commande: %s\n" @@ -159,15 +159,20 @@ msgid "Yad notification" msgstr "Yad notification" -#: ../src/list.c:746 +#: ../src/list.c:800 msgid "Add row" msgstr "Ajouter une ligne" -#: ../src/list.c:753 +#: ../src/list.c:807 msgid "Delete row" msgstr "Supprimer la ligne" -#: ../src/list.c:779 +#: ../src/list.c:814 +#, fuzzy +msgid "Duplicate row" +msgstr "Supprimer la ligne" + +#: ../src/list.c:841 #, c-format msgid "No column titles specified for List dialog.\n" msgstr "Pas de titre de colonne spécifié pour liste.\n" @@ -234,7 +239,7 @@ #: ../src/option.c:110 ../src/option.c:140 ../src/option.c:371 #: ../src/option.c:377 ../src/option.c:383 ../src/option.c:517 -#: ../src/option.c:894 ../src/option.c:933 +#: ../src/option.c:900 ../src/option.c:939 msgid "TEXT" msgstr "TEXTE" @@ -245,8 +250,8 @@ "Définir l'alignement des étiquettes de champs (gauche, centre ou droite)" #: ../src/option.c:116 ../src/option.c:158 ../src/option.c:540 -#: ../src/option.c:694 ../src/option.c:770 ../src/option.c:798 -#: ../src/option.c:860 ../src/option.c:1061 +#: ../src/option.c:700 ../src/option.c:776 ../src/option.c:804 +#: ../src/option.c:866 ../src/option.c:1067 msgid "TYPE" msgstr "TYPE" @@ -304,8 +309,8 @@ msgstr "Définir les bordures de fenêtre" #: ../src/option.c:178 ../src/option.c:245 ../src/option.c:546 -#: ../src/option.c:700 ../src/option.c:706 ../src/option.c:712 -#: ../src/option.c:718 ../src/option.c:724 ../src/option.c:804 +#: ../src/option.c:706 ../src/option.c:712 ../src/option.c:718 +#: ../src/option.c:724 ../src/option.c:730 ../src/option.c:810 msgid "NUMBER" msgstr "NOMBRE" @@ -349,7 +354,7 @@ msgid "Special type of dialog for XEMBED" msgstr "" -#: ../src/option.c:239 ../src/option.c:786 +#: ../src/option.c:239 ../src/option.c:792 msgid "KEY" msgstr "" @@ -402,7 +407,7 @@ msgid "Set the format for the returned date" msgstr "Régler le format de la date de retour" -#: ../src/option.c:293 ../src/option.c:564 ../src/option.c:611 +#: ../src/option.c:293 ../src/option.c:564 ../src/option.c:617 msgid "PATTERN" msgstr "MOTIF" @@ -411,7 +416,7 @@ msgstr "Régler le fichier avec les détails de dates" #: ../src/option.c:299 ../src/option.c:327 ../src/option.c:447 -#: ../src/option.c:854 ../src/option.c:1079 ../src/option.c:1123 +#: ../src/option.c:860 ../src/option.c:1085 ../src/option.c:1129 msgid "FILENAME" msgstr "NOMDEFICHIER" @@ -427,7 +432,7 @@ msgid "Set initial color value" msgstr "Définir la valeur initial de la couleur" -#: ../src/option.c:321 ../src/option.c:1037 ../src/option.c:1043 +#: ../src/option.c:321 ../src/option.c:1043 ../src/option.c:1049 msgid "COLOR" msgstr "COULEUR" @@ -452,7 +457,7 @@ msgstr "Définir la commande du processus d-n-d data" #: ../src/option.c:355 ../src/option.c:413 ../src/option.c:425 -#: ../src/option.c:730 ../src/option.c:820 +#: ../src/option.c:736 ../src/option.c:826 msgid "CMD" msgstr "CMD" @@ -524,12 +529,12 @@ msgid "Activate save mode" msgstr "Activer le mode sauvegarde" -#: ../src/option.c:470 ../src/option.c:551 ../src/option.c:669 +#: ../src/option.c:470 ../src/option.c:551 ../src/option.c:675 msgid "Set output separator character" msgstr "Définir le charactère séparateur en sortie" #: ../src/option.c:471 ../src/option.c:552 ../src/option.c:558 -#: ../src/option.c:670 ../src/option.c:832 ../src/option.c:838 +#: ../src/option.c:676 ../src/option.c:838 ../src/option.c:844 msgid "SEPARATOR" msgstr "SÉPARATEUR" @@ -566,7 +571,7 @@ msgid "Set initial font" msgstr "Définir la police d'écriture" -#: ../src/option.c:511 ../src/option.c:878 ../src/option.c:1049 +#: ../src/option.c:511 ../src/option.c:884 ../src/option.c:1055 msgid "FONTNAME" msgstr "NOMDEPOLICE" @@ -587,7 +592,7 @@ "Ajouter un champ à la forme (TYPE - H, RO, NUM, CHK, CB, CBE, FL, SFL, DIR, " "CDIR, FN, MFL, DT, CLR, BTN or LBL)" -#: ../src/option.c:534 ../src/option.c:758 +#: ../src/option.c:534 ../src/option.c:764 msgid "LABEL[:TYPE]" msgstr "ETIQUETTE[:TYPE]" @@ -607,36 +612,41 @@ "Définir le séparateur de charactère pour la liste déroulante ou les données " "d'échelle" -#: ../src/option.c:573 +#: ../src/option.c:569 +#, fuzzy +msgid "Make form scrollable" +msgstr "Rendre les URI clickable" + +#: ../src/option.c:579 msgid "Display icons box dialog" msgstr "Afficher une boîte de type icône" -#: ../src/option.c:579 +#: ../src/option.c:585 msgid "Read data from .desktop files in specified directory" msgstr "Lire les données des fichiers .desktop dans le répertoire spécifié" -#: ../src/option.c:580 +#: ../src/option.c:586 msgid "DIRECTORY" msgstr "REPERTOIRE" -#: ../src/option.c:585 +#: ../src/option.c:591 msgid "Use compact (list) view" msgstr "Utiliser la vue compacter (liste)" -#: ../src/option.c:591 +#: ../src/option.c:597 msgid "Use GenericName field instead of Name for icon label" msgstr "" "Utiliser le nom générique plutôt que le nom pour l'étiquette de l'icone" -#: ../src/option.c:597 +#: ../src/option.c:603 msgid "Read data from stdin" msgstr "Lire les données de stdin" -#: ../src/option.c:603 +#: ../src/option.c:609 msgid "Set the width of dialog items" msgstr "Définir la largeur du champs" -#: ../src/option.c:610 +#: ../src/option.c:616 #, no-c-format msgid "" "Use specified pattern for launch command in terminal (default: xterm -e %s)" @@ -644,64 +654,64 @@ "Utiliser un motif spécifié pour la commande de lancement dans le terminal " "(par défaut: xterm-e% s)" -#: ../src/option.c:616 +#: ../src/option.c:622 msgid "Sort items by name instead of filename" msgstr "Trier les éléments par nom plutôt que par fichier" -#: ../src/option.c:622 +#: ../src/option.c:628 msgid "Sort items in descending order" msgstr "Trier les éléments par ordre décroissant" -#: ../src/option.c:628 +#: ../src/option.c:634 msgid "Activate items by single click" msgstr "" -#: ../src/option.c:638 +#: ../src/option.c:644 msgid "Display list dialog" msgstr "Afficher une boîte de type liste" -#: ../src/option.c:644 +#: ../src/option.c:650 msgid "Don't show column headers" msgstr "Ne pas afficher les entêtes de colonnes" -#: ../src/option.c:650 +#: ../src/option.c:656 #, fuzzy msgid "Set the column header (TYPE - TEXT, NUM, FLT, CHK, RD, IMG, HD or TIP)" msgstr "Définir l'entête de colonne (TYPE - TEXT, NUM, FLT, CHK, IMG or TIP)" -#: ../src/option.c:651 +#: ../src/option.c:657 msgid "COLUMN[:TYPE]" msgstr "COLONNE[:TYPE]" -#: ../src/option.c:656 +#: ../src/option.c:662 #, fuzzy msgid "Use checkboxes for first column" msgstr "Utiliser des cases à cocher pour la première colonne" -#: ../src/option.c:662 +#: ../src/option.c:668 #, fuzzy msgid "Use radioboxes for first column" msgstr "Utiliser des cases à cocher pour la première colonne" -#: ../src/option.c:675 +#: ../src/option.c:681 msgid "Allow multiple rows to be selected" msgstr "Autoriser plusieurs lignes à être sélectionnés" -#: ../src/option.c:681 ../src/option.c:1084 +#: ../src/option.c:687 ../src/option.c:1090 msgid "Allow changes to text" msgstr "Autoriser l'édition de texte" -#: ../src/option.c:687 +#: ../src/option.c:693 msgid "Print all data from list" msgstr "Afficher toute les données de la liste" -#: ../src/option.c:693 +#: ../src/option.c:699 msgid "Set ellipsize mode for text columns (TYPE - NONE, START, MIDDLE or END)" msgstr "" "Définir le mode défilement automatique pour les colonnes texte (TYPE - " "NONE, START, MIDDLE or END)" -#: ../src/option.c:699 +#: ../src/option.c:705 msgid "" "Print a specific column. By default or if 0 is specified will be printed all " "columns" @@ -709,17 +719,17 @@ "Renvoyer une colonne spécifique. Par défaut ou si 0 est spécifié toutes les " "colonnes sont renvoyée" -#: ../src/option.c:705 +#: ../src/option.c:711 msgid "Hide a specific column" msgstr "Cacher une colonne spécifique" -#: ../src/option.c:711 +#: ../src/option.c:717 msgid "Set the column expandable by default. 0 sets all columns expandable" msgstr "" "Définirla colonne extensible par défaut. 0 définit toutes les colonnes comme " "extensible" -#: ../src/option.c:717 +#: ../src/option.c:723 msgid "" "Set the quick search column. Default is first column. Set it to 0 for " "disable searching" @@ -727,485 +737,485 @@ "Définir la colonne de recherche rapide. Par défaut : la première colonne. " "Réglez à 0 pour désactiver la recherche" -#: ../src/option.c:723 +#: ../src/option.c:729 msgid "Set the limit of rows in list" msgstr "Définir la limite de lignes dans une liste" -#: ../src/option.c:729 +#: ../src/option.c:735 msgid "Set double-click action" msgstr "Action sur un double clic" -#: ../src/option.c:735 +#: ../src/option.c:741 msgid "Use regex in search" msgstr "Utiliser regex dans les recherches" -#: ../src/option.c:741 +#: ../src/option.c:747 msgid "Listen for data on stdin in addition to command-line" msgstr "" -#: ../src/option.c:751 +#: ../src/option.c:757 msgid "Display multi progress bars dialog" msgstr "Afficher une boîte de dialogue à barre de progression multiple " -#: ../src/option.c:757 +#: ../src/option.c:763 msgid "Add the progress bar (TYPE - NORM, RTL or PULSE)" msgstr "Ajouter une barre de progression (TYPE - NORM, RTL or PULSE)" -#: ../src/option.c:763 +#: ../src/option.c:769 msgid "Show vertical bars" msgstr "Afficher les barres verticales" -#: ../src/option.c:769 +#: ../src/option.c:775 #, fuzzy msgid "Set alignment of bar labels (left, center or right)" msgstr "" "Définir l'alignement des étiquettes de champs (gauche, centre ou droite)" -#: ../src/option.c:779 +#: ../src/option.c:785 #, fuzzy msgid "Display notebook dialog" msgstr "Afficher une boîte de type icône" -#: ../src/option.c:785 +#: ../src/option.c:791 msgid "Identifier of embedded dialogs" msgstr "" -#: ../src/option.c:791 +#: ../src/option.c:797 msgid "Add a tab to notebook" msgstr "" -#: ../src/option.c:792 +#: ../src/option.c:798 msgid "LABEL" msgstr "" -#: ../src/option.c:797 +#: ../src/option.c:803 #, fuzzy msgid "Set alignment of tab labels (left, center or right)" msgstr "" "Définir l'alignement des étiquettes de champs (gauche, centre ou droite)" -#: ../src/option.c:803 +#: ../src/option.c:809 #, fuzzy msgid "Set tab borders" msgstr "Définir les bordures de fenêtre" -#: ../src/option.c:813 +#: ../src/option.c:819 msgid "Display notification" msgstr "Utiliser la notification" -#: ../src/option.c:819 +#: ../src/option.c:825 msgid "Set left-click action" msgstr "Action sur un clic gauche" -#: ../src/option.c:825 +#: ../src/option.c:831 msgid "Listen for commands on stdin" msgstr "Écouter les commandes sur stdin" -#: ../src/option.c:831 +#: ../src/option.c:837 msgid "Set separator character for menu values" msgstr "Définir le séparateur pour les valeurs de menu" -#: ../src/option.c:837 +#: ../src/option.c:843 msgid "Set separator character for menu items" msgstr "Définir le séparateur pour les champs du menu" -#: ../src/option.c:847 +#: ../src/option.c:853 #, fuzzy msgid "Display printing dialog" msgstr "Afficher une boîte de type liste" -#: ../src/option.c:853 +#: ../src/option.c:859 #, fuzzy msgid "Source filename" msgstr "Définir le nom de fichier" -#: ../src/option.c:859 +#: ../src/option.c:865 msgid "Set source type (TYPE - TEXT, IMAGE or RAW)" msgstr "" -#: ../src/option.c:865 +#: ../src/option.c:871 msgid "Add headers to page" msgstr "" -#: ../src/option.c:871 +#: ../src/option.c:877 msgid "Enable preview in print dialog" msgstr "" -#: ../src/option.c:877 ../src/option.c:1048 +#: ../src/option.c:883 ../src/option.c:1054 msgid "Use specified font" msgstr "Utiliser une police spécifiée" -#: ../src/option.c:887 +#: ../src/option.c:893 msgid "Display progress indication dialog" msgstr "Afficher l'indication de progression" -#: ../src/option.c:893 +#: ../src/option.c:899 msgid "Set progress text" msgstr "Définir le texte de progression" -#: ../src/option.c:899 +#: ../src/option.c:905 msgid "Set initial percentage" msgstr "Définir le pourcentage initial" -#: ../src/option.c:900 +#: ../src/option.c:906 msgid "PERCENTAGE" msgstr "POURCENTAGE" -#: ../src/option.c:905 +#: ../src/option.c:911 msgid "Pulsate progress bar" msgstr "Barre de progression pulsative" -#: ../src/option.c:912 +#: ../src/option.c:918 #, no-c-format msgid "Dismiss the dialog when 100% has been reached" msgstr "Fermer la boîte de dialogue quand 100% sont atteint" -#: ../src/option.c:919 +#: ../src/option.c:925 msgid "Kill parent process if cancel button is pressed" msgstr "Tuer le processus parent quand le bouton quitter est pressé" -#: ../src/option.c:926 +#: ../src/option.c:932 msgid "Right-To-Left progress bar direction" msgstr "Barre de progression altérnante" -#: ../src/option.c:932 +#: ../src/option.c:938 msgid "Show log window" msgstr "" -#: ../src/option.c:938 +#: ../src/option.c:944 msgid "Expand log window" msgstr "" -#: ../src/option.c:944 +#: ../src/option.c:950 #, fuzzy msgid "Place log window above progress bar" msgstr "Barre de progression pulsative" -#: ../src/option.c:950 +#: ../src/option.c:956 msgid "Height of log window" msgstr "" -#: ../src/option.c:960 +#: ../src/option.c:966 msgid "Display scale dialog" msgstr "Afficher une boîte de type échelle" -#: ../src/option.c:966 +#: ../src/option.c:972 msgid "Set initial value" msgstr "Définir la valeur initial" -#: ../src/option.c:967 ../src/option.c:973 ../src/option.c:979 -#: ../src/option.c:985 ../src/option.c:991 +#: ../src/option.c:973 ../src/option.c:979 ../src/option.c:985 +#: ../src/option.c:991 ../src/option.c:997 msgid "VALUE" msgstr "VALEUR" -#: ../src/option.c:972 +#: ../src/option.c:978 msgid "Set minimum value" msgstr "Définir la valeur minimale" -#: ../src/option.c:978 +#: ../src/option.c:984 msgid "Set maximum value" msgstr "Définir la valeur maximale" -#: ../src/option.c:984 +#: ../src/option.c:990 msgid "Set step size" msgstr "Définir le pas" -#: ../src/option.c:990 +#: ../src/option.c:996 msgid "Set paging size" msgstr "Définir les dimensions de la page" -#: ../src/option.c:996 +#: ../src/option.c:1002 msgid "Print partial values" msgstr "Afficher des valeurs partielles" -#: ../src/option.c:1002 +#: ../src/option.c:1008 msgid "Hide value" msgstr "Cacher la valeur" -#: ../src/option.c:1008 +#: ../src/option.c:1014 msgid "Show vertical scale" msgstr "Affiche l'échelle verticale" -#: ../src/option.c:1014 +#: ../src/option.c:1020 msgid "Invert direction" msgstr "Inverser la direction" -#: ../src/option.c:1020 +#: ../src/option.c:1026 msgid "Add mark to scale (may be used multiple times)" msgstr "Ajouter un marqueur à l'échelle (peut être utilisée plusieurs fois)" -#: ../src/option.c:1021 +#: ../src/option.c:1027 msgid "NAME:VALUE" msgstr "NOM: VALEUR" -#: ../src/option.c:1030 +#: ../src/option.c:1036 msgid "Display text information dialog" msgstr "Afficher une boîte d'information" -#: ../src/option.c:1036 +#: ../src/option.c:1042 msgid "Use specified color for text" msgstr "Utiliser une couleur spécifiée pour le texte" -#: ../src/option.c:1042 +#: ../src/option.c:1048 msgid "Use specified color for background" msgstr "Utiliser une couleur spécifiée pour le fond" -#: ../src/option.c:1054 +#: ../src/option.c:1060 msgid "Enable text wrapping" msgstr "Activer les sauts de ligne automatiques" -#: ../src/option.c:1060 +#: ../src/option.c:1066 msgid "Set justification (TYPE - left, right, center or fill)" msgstr "Définir le type (TYPE - gauche, droite, centre ou de remplissage)" -#: ../src/option.c:1066 +#: ../src/option.c:1072 msgid "Set text margins" msgstr "Définir la marge du texte" -#: ../src/option.c:1067 +#: ../src/option.c:1073 msgid "SIZE" msgstr "TAILLE" -#: ../src/option.c:1072 +#: ../src/option.c:1078 msgid "Autoscroll to end of text" msgstr "Sauter en fin de texte" -#: ../src/option.c:1078 +#: ../src/option.c:1084 msgid "Open file" msgstr "Ouvrir un fichier" -#: ../src/option.c:1090 +#: ../src/option.c:1096 msgid "Make URI clickable" msgstr "Rendre les URI clickable" -#: ../src/option.c:1096 +#: ../src/option.c:1102 msgid "Listen for data on stdin in addition to file" msgstr "" -#: ../src/option.c:1106 +#: ../src/option.c:1112 msgid "Show about dialog" msgstr "Afficher la boîte \"A propos\"" -#: ../src/option.c:1112 +#: ../src/option.c:1118 msgid "Print version" msgstr "Afficher la version" -#: ../src/option.c:1122 +#: ../src/option.c:1128 msgid "Load extra arguments from file" msgstr "" -#: ../src/option.c:1165 ../src/option.c:1376 +#: ../src/option.c:1171 ../src/option.c:1382 #, c-format msgid "Unknown align type: %s\n" msgstr "Type d'alignement inconnue: %s\n" -#: ../src/option.c:1318 +#: ../src/option.c:1324 #, c-format msgid "Mark %s doesn't have a value\n" msgstr "Le marqueur %s n'a pas de valeur\n" -#: ../src/option.c:1361 +#: ../src/option.c:1367 #, fuzzy, c-format msgid "Unknown buttons layout type: %s\n" msgstr "Type d'alignement inconnue: %s\n" -#: ../src/option.c:1393 +#: ../src/option.c:1399 #, c-format msgid "Unknown justification type: %s\n" msgstr "Type de justification inconnue: %s\n" -#: ../src/option.c:1429 +#: ../src/option.c:1435 #, c-format msgid "Unknown ellipsize type: %s\n" msgstr "Type de défilement automatique inconnue: %s\n" -#: ../src/option.c:1444 +#: ../src/option.c:1450 #, fuzzy, c-format msgid "Unknown source type: %s\n" msgstr "Type de défilement automatique inconnue: %s\n" -#: ../src/option.c:1455 +#: ../src/option.c:1461 #, fuzzy msgid "Progress log" msgstr "Options de la barre de progression" -#: ../src/option.c:1546 +#: ../src/option.c:1561 #, fuzzy, c-format msgid "Unknown signal: %s\n" msgstr "Type d'alignement inconnue: %s\n" -#: ../src/option.c:1686 +#: ../src/option.c:1701 msgid "File exist. Overwrite?" msgstr "Le fichier existe. Écraser?" -#: ../src/option.c:1774 +#: ../src/option.c:1789 msgid "Yet another dialoging program" msgstr "Yet another dialoging program" #. Adds general option entries -#: ../src/option.c:1778 +#: ../src/option.c:1793 msgid "General options" msgstr "Options générales" -#: ../src/option.c:1778 +#: ../src/option.c:1793 msgid "Show general options" msgstr "Afficher les options générales" #. Adds calendar option entries -#: ../src/option.c:1784 +#: ../src/option.c:1799 msgid "Calendar options" msgstr "Options du calendrier" -#: ../src/option.c:1784 +#: ../src/option.c:1799 msgid "Show calendar options" msgstr "Afficher les options du calendrier" #. Adds color option entries -#: ../src/option.c:1790 +#: ../src/option.c:1805 msgid "Color selection options" msgstr "Options de la boîte de sélection de couleurs" -#: ../src/option.c:1790 +#: ../src/option.c:1805 msgid "Show color selection options" msgstr "Afficher les options de la boîte de sélection de couleurs" #. Adds dnd option entries -#: ../src/option.c:1796 +#: ../src/option.c:1811 msgid "DND options" msgstr "Options de la boîte de glisser/déposer" -#: ../src/option.c:1796 +#: ../src/option.c:1811 msgid "Show drag-n-drop options" msgstr "Afficher les options de la boîte de glisser/déposer" #. Adds entry option entries -#: ../src/option.c:1802 +#: ../src/option.c:1817 msgid "Text entry options" msgstr "Options de la boîte d'entrée" -#: ../src/option.c:1802 +#: ../src/option.c:1817 msgid "Show text entry options" msgstr "Afficher les options de la boîte d'entrée" #. Adds file selection option entries -#: ../src/option.c:1808 +#: ../src/option.c:1823 msgid "File selection options" msgstr "Options de la boîte de sélection de fichier" -#: ../src/option.c:1808 +#: ../src/option.c:1823 msgid "Show file selection options" msgstr "Afficher les options de la boîte de sélection de fichier" #. Add font selection option entries -#: ../src/option.c:1814 +#: ../src/option.c:1829 msgid "Font selection options" msgstr "Options de la boîte de sélection de police" -#: ../src/option.c:1814 +#: ../src/option.c:1829 msgid "Show font selection options" msgstr "Afficher les options de la boîte de sélection de police" #. Add form option entries -#: ../src/option.c:1820 +#: ../src/option.c:1835 msgid "Form options" msgstr "Options de types form" -#: ../src/option.c:1820 +#: ../src/option.c:1835 msgid "Show form options" msgstr "Afficher les options de types form" #. Add icons option entries -#: ../src/option.c:1826 +#: ../src/option.c:1841 msgid "Icons box options" msgstr "Options de la boîte de sélection d'icône" -#: ../src/option.c:1826 +#: ../src/option.c:1841 msgid "Show icons box options" msgstr "Afficher les options de la boîte de sélection d'icône" #. Adds list option entries -#: ../src/option.c:1832 +#: ../src/option.c:1847 msgid "List options" msgstr "Options de la boîte de type liste" -#: ../src/option.c:1832 +#: ../src/option.c:1847 msgid "Show list options" msgstr "Afficher les options de la boîte de sélection d'icône" #. Adds multi progress option entries -#: ../src/option.c:1838 +#: ../src/option.c:1853 msgid "Multi progress bars options" msgstr "Options des barres de progression multpile" -#: ../src/option.c:1839 +#: ../src/option.c:1854 #, fuzzy msgid "Show multi progress bars options" msgstr "Afficher les options des barres de progression multiples" #. Adds notebook option entries -#: ../src/option.c:1845 +#: ../src/option.c:1860 #, fuzzy msgid "Notebook options" msgstr "Options de la boîte de glisser/déposer" -#: ../src/option.c:1845 +#: ../src/option.c:1860 #, fuzzy msgid "Show notebook dialog options" msgstr "Afficher les options de la barre de progression" #. Adds notification option entries -#: ../src/option.c:1851 +#: ../src/option.c:1866 msgid "Notification icon options" msgstr "Options de la boîte de type icône" -#: ../src/option.c:1852 +#: ../src/option.c:1867 msgid "Show notification icon options" msgstr "Afficher les options de la boîte de type icône" #. Adds print option entries -#: ../src/option.c:1858 +#: ../src/option.c:1873 #, fuzzy msgid "Print dialog options" msgstr "Options de la barre de progression" -#: ../src/option.c:1858 +#: ../src/option.c:1873 #, fuzzy msgid "Show print dialog options" msgstr "Afficher les options de la barre de progression" #. Adds progress option entries -#: ../src/option.c:1864 +#: ../src/option.c:1879 msgid "Progress options" msgstr "Options de la barre de progression" -#: ../src/option.c:1864 +#: ../src/option.c:1879 msgid "Show progress options" msgstr "Afficher les options de la barre de progression" #. Adds scale option entries -#: ../src/option.c:1870 +#: ../src/option.c:1885 msgid "Scale options" msgstr "Options de la boîte échelle" -#: ../src/option.c:1870 +#: ../src/option.c:1885 msgid "Show scale options" msgstr "Afficher les options de la boîte échelle" #. Adds text option entries -#: ../src/option.c:1876 +#: ../src/option.c:1891 msgid "Text information options" msgstr "Options de la boîte de type information" -#: ../src/option.c:1876 +#: ../src/option.c:1891 msgid "Show text information options" msgstr "Afficher les options de la boîte de type information" #. Adds miscellaneous option entries -#: ../src/option.c:1882 +#: ../src/option.c:1897 msgid "Miscellaneous options" msgstr "Options diverses" -#: ../src/option.c:1882 +#: ../src/option.c:1897 msgid "Show miscellaneous options" msgstr "Afficher les options diverses" diff -Nru yad-0.20.3/po/ru.po yad-0.21.0/po/ru.po --- yad-0.20.3/po/ru.po 2013-03-27 16:03:14.000000000 +0000 +++ yad-0.21.0/po/ru.po 2013-05-10 06:01:18.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: YAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-20 07:37+0200\n" +"POT-Creation-Date: 2013-05-10 09:00+0300\n" "PO-Revision-Date: 2009-04-30 16:47+0300\n" "Last-Translator: Victor Ananjevsky \n" "Language-Team: Russian\n" @@ -99,15 +99,15 @@ msgid "Select or create folder" msgstr "Выбор или создание каталога" -#: ../src/form.c:461 +#: ../src/form.c:467 msgid "Select date" msgstr "Выбор даты" -#: ../src/form.c:637 +#: ../src/form.c:667 msgid "Select file" msgstr "Выбор файла" -#: ../src/form.c:651 +#: ../src/form.c:681 msgid "Select folder" msgstr "Выбор каталога" @@ -121,12 +121,12 @@ msgid "Unable to open directory %s: %s\n" msgstr "Не могу открыть каталог %s: %s\n" -#: ../src/main.c:102 ../src/main.c:228 +#: ../src/main.c:102 ../src/main.c:227 #, c-format msgid "%d sec" msgstr "%d сек" -#: ../src/main.c:608 +#: ../src/main.c:611 #, c-format msgid "Unable to parse command line: %s\n" msgstr "Не удается разобрать командную строку: %s\n" @@ -150,15 +150,19 @@ msgid "Yad notification" msgstr "Диалог уведомлений" -#: ../src/list.c:746 +#: ../src/list.c:800 msgid "Add row" msgstr "Добавить строку" -#: ../src/list.c:753 +#: ../src/list.c:807 msgid "Delete row" msgstr "Удалить строку" -#: ../src/list.c:779 +#: ../src/list.c:814 +msgid "Duplicate row" +msgstr "Скопировать строку" + +#: ../src/list.c:841 #, c-format msgid "No column titles specified for List dialog.\n" msgstr "Не заданы заголовоки колонок для диалога со списком\n" @@ -225,7 +229,7 @@ #: ../src/option.c:110 ../src/option.c:140 ../src/option.c:371 #: ../src/option.c:377 ../src/option.c:383 ../src/option.c:517 -#: ../src/option.c:894 ../src/option.c:933 +#: ../src/option.c:900 ../src/option.c:939 msgid "TEXT" msgstr "ТЕКСТ" @@ -234,8 +238,8 @@ msgstr "Задать выравнивание текста диалога (left, center или right)" #: ../src/option.c:116 ../src/option.c:158 ../src/option.c:540 -#: ../src/option.c:694 ../src/option.c:770 ../src/option.c:798 -#: ../src/option.c:860 ../src/option.c:1061 +#: ../src/option.c:700 ../src/option.c:776 ../src/option.c:804 +#: ../src/option.c:866 ../src/option.c:1067 msgid "TYPE" msgstr "ТИП" @@ -292,8 +296,8 @@ msgstr "Установить границы окна" #: ../src/option.c:178 ../src/option.c:245 ../src/option.c:546 -#: ../src/option.c:700 ../src/option.c:706 ../src/option.c:712 -#: ../src/option.c:718 ../src/option.c:724 ../src/option.c:804 +#: ../src/option.c:706 ../src/option.c:712 ../src/option.c:718 +#: ../src/option.c:724 ../src/option.c:730 ../src/option.c:810 msgid "NUMBER" msgstr "ЧИСЛО" @@ -337,7 +341,7 @@ msgid "Special type of dialog for XEMBED" msgstr "Специальный режим диалога для встраивания" -#: ../src/option.c:239 ../src/option.c:786 +#: ../src/option.c:239 ../src/option.c:792 msgid "KEY" msgstr "КЛЮЧ" @@ -389,7 +393,7 @@ msgid "Set the format for the returned date" msgstr "Задать формат возвращаемой даты" -#: ../src/option.c:293 ../src/option.c:564 ../src/option.c:611 +#: ../src/option.c:293 ../src/option.c:564 ../src/option.c:617 msgid "PATTERN" msgstr "ШАБЛОН" @@ -398,7 +402,7 @@ msgstr "Задать имя файла с описанием дат" #: ../src/option.c:299 ../src/option.c:327 ../src/option.c:447 -#: ../src/option.c:854 ../src/option.c:1079 ../src/option.c:1123 +#: ../src/option.c:860 ../src/option.c:1085 ../src/option.c:1129 msgid "FILENAME" msgstr "ИМЯ_ФАЙЛА" @@ -414,7 +418,7 @@ msgid "Set initial color value" msgstr "Задать начальное значение цвета" -#: ../src/option.c:321 ../src/option.c:1037 ../src/option.c:1043 +#: ../src/option.c:321 ../src/option.c:1043 ../src/option.c:1049 msgid "COLOR" msgstr "ЦВЕТ" @@ -439,7 +443,7 @@ msgstr "Команда для обработки полученных данных" #: ../src/option.c:355 ../src/option.c:413 ../src/option.c:425 -#: ../src/option.c:730 ../src/option.c:820 +#: ../src/option.c:736 ../src/option.c:826 msgid "CMD" msgstr "КОМАНДА" @@ -511,12 +515,12 @@ msgid "Activate save mode" msgstr "Активировать режим сохранения" -#: ../src/option.c:470 ../src/option.c:551 ../src/option.c:669 +#: ../src/option.c:470 ../src/option.c:551 ../src/option.c:675 msgid "Set output separator character" msgstr "Установить выходной разделяющий символ" #: ../src/option.c:471 ../src/option.c:552 ../src/option.c:558 -#: ../src/option.c:670 ../src/option.c:832 ../src/option.c:838 +#: ../src/option.c:676 ../src/option.c:838 ../src/option.c:844 msgid "SEPARATOR" msgstr "РАЗДЕЛИТЕЛЬ" @@ -552,7 +556,7 @@ msgid "Set initial font" msgstr "Задать начальный шрифт" -#: ../src/option.c:511 ../src/option.c:878 ../src/option.c:1049 +#: ../src/option.c:511 ../src/option.c:884 ../src/option.c:1055 msgid "FONTNAME" msgstr "ИМЯ_ШРИФТА" @@ -572,7 +576,7 @@ "Добавить поле к форме (Тип поля: Н, RO, NUM, CHK, CB, CBE, FL, SFL, MFL, " "DIR, CDIR, MDIR, FN, MFL, DT, CLR, BTN, LBL или TXT)" -#: ../src/option.c:534 ../src/option.c:758 +#: ../src/option.c:534 ../src/option.c:764 msgid "LABEL[:TYPE]" msgstr "МЕТКА[:ТИП]" @@ -588,35 +592,39 @@ msgid "Set separator character for combobox or scale data" msgstr "Установить разделяющий символ для данных списка или числового поля" -#: ../src/option.c:573 +#: ../src/option.c:569 +msgid "Make form scrollable" +msgstr "Сделать форму прокручиваемой" + +#: ../src/option.c:579 msgid "Display icons box dialog" msgstr "Отобразить диалог со значками быстрого доступа" -#: ../src/option.c:579 +#: ../src/option.c:585 msgid "Read data from .desktop files in specified directory" msgstr "Читать данные из .desktop файлов в определенном каталоге" -#: ../src/option.c:580 +#: ../src/option.c:586 msgid "DIRECTORY" msgstr "КАТАЛОГ" -#: ../src/option.c:585 +#: ../src/option.c:591 msgid "Use compact (list) view" msgstr "Использовать компактный вид (список)" -#: ../src/option.c:591 +#: ../src/option.c:597 msgid "Use GenericName field instead of Name for icon label" msgstr "Использовать поле GenericName вместо Name для метки" -#: ../src/option.c:597 +#: ../src/option.c:603 msgid "Read data from stdin" msgstr "Читать данные со стандартного ввода" -#: ../src/option.c:603 +#: ../src/option.c:609 msgid "Set the width of dialog items" msgstr "Задать ширину элемента диалога" -#: ../src/option.c:610 +#: ../src/option.c:616 #, no-c-format msgid "" "Use specified pattern for launch command in terminal (default: xterm -e %s)" @@ -624,62 +632,62 @@ "Использовать указанный шаблон для запуска в терминале (по умолчанию: xterm -" "e %s)" -#: ../src/option.c:616 +#: ../src/option.c:622 msgid "Sort items by name instead of filename" msgstr "Сортировать по полю Имя вместо имени файла" -#: ../src/option.c:622 +#: ../src/option.c:628 msgid "Sort items in descending order" msgstr "Сортировать в убывающем порядке" -#: ../src/option.c:628 +#: ../src/option.c:634 msgid "Activate items by single click" msgstr "Активировать элемент одинарным щелчком" -#: ../src/option.c:638 +#: ../src/option.c:644 msgid "Display list dialog" msgstr "Отобразить диалог со списком" -#: ../src/option.c:644 +#: ../src/option.c:650 msgid "Don't show column headers" msgstr "Не показывать заголовки колонок" -#: ../src/option.c:650 +#: ../src/option.c:656 msgid "Set the column header (TYPE - TEXT, NUM, FLT, CHK, RD, IMG, HD or TIP)" msgstr "" "Задать заголовок столбца (ТИП - TEXT, NUM, FLT, CHK, RD, IMG, HD или TIP)" -#: ../src/option.c:651 +#: ../src/option.c:657 msgid "COLUMN[:TYPE]" msgstr "СТОЛБЕЦ[:ТИП]" -#: ../src/option.c:656 +#: ../src/option.c:662 msgid "Use checkboxes for first column" msgstr "Использовать флажки для первой колонки" -#: ../src/option.c:662 +#: ../src/option.c:668 msgid "Use radioboxes for first column" msgstr "Использовать переключатель для первой колонки" -#: ../src/option.c:675 +#: ../src/option.c:681 msgid "Allow multiple rows to be selected" msgstr "Разрешить выбор нескольких строк" -#: ../src/option.c:681 ../src/option.c:1084 +#: ../src/option.c:687 ../src/option.c:1090 msgid "Allow changes to text" msgstr "Разрешить изменять текст" -#: ../src/option.c:687 +#: ../src/option.c:693 msgid "Print all data from list" msgstr "Печатать таблицу полностью" -#: ../src/option.c:693 +#: ../src/option.c:699 msgid "Set ellipsize mode for text columns (TYPE - NONE, START, MIDDLE or END)" msgstr "" "Задать тип усечсения для текстовых столбцов (ТИП - NONE, START, MIDDLE или " "END)" -#: ../src/option.c:699 +#: ../src/option.c:705 msgid "" "Print a specific column. By default or if 0 is specified will be printed all " "columns" @@ -687,486 +695,486 @@ "Распечатать только определённый столбец. По-умолчанию или если столбец равен " "0, будут распечатаны все столбцы" -#: ../src/option.c:705 +#: ../src/option.c:711 msgid "Hide a specific column" msgstr "Скрыть указанный столбец" -#: ../src/option.c:711 +#: ../src/option.c:717 msgid "Set the column expandable by default. 0 sets all columns expandable" msgstr "" "Задать колонку, расширяемую по-умолчанию. 0 устанавливает расширяемыми все " "колонки" -#: ../src/option.c:717 +#: ../src/option.c:723 msgid "" "Set the quick search column. Default is first column. Set it to 0 for " "disable searching" msgstr "Задать колонку поиска. По-умолчанию первая. 0 запрещает поиск" -#: ../src/option.c:723 +#: ../src/option.c:729 msgid "Set the limit of rows in list" msgstr "Задать количество строк в списке" -#: ../src/option.c:729 +#: ../src/option.c:735 msgid "Set double-click action" msgstr "Действие по двойному щелчку мыши" -#: ../src/option.c:735 +#: ../src/option.c:741 msgid "Use regex in search" msgstr "Использовать регулярные выражения при поиске" -#: ../src/option.c:741 +#: ../src/option.c:747 msgid "Listen for data on stdin in addition to command-line" msgstr "Получать даннные из stdin в дополнение к указанным в командной строке" -#: ../src/option.c:751 +#: ../src/option.c:757 msgid "Display multi progress bars dialog" msgstr "Отобразить диалог c несколькими индикаторами" -#: ../src/option.c:757 +#: ../src/option.c:763 msgid "Add the progress bar (TYPE - NORM, RTL or PULSE)" msgstr "Добавить индикатор (ТИП - NORM, RTL или PULSE))" -#: ../src/option.c:763 +#: ../src/option.c:769 msgid "Show vertical bars" msgstr "Показывать вертикальные индикаторы" -#: ../src/option.c:769 +#: ../src/option.c:775 msgid "Set alignment of bar labels (left, center or right)" msgstr "Задать выравнивание меток индикаторов (left, center или right)" -#: ../src/option.c:779 +#: ../src/option.c:785 msgid "Display notebook dialog" msgstr "Отобразить диалог с вкладками" -#: ../src/option.c:785 +#: ../src/option.c:791 msgid "Identifier of embedded dialogs" msgstr "Идентификатор встраиваемых диалогов" -#: ../src/option.c:791 +#: ../src/option.c:797 msgid "Add a tab to notebook" msgstr "Добавить вкладку" -#: ../src/option.c:792 +#: ../src/option.c:798 msgid "LABEL" msgstr "МЕТКА" -#: ../src/option.c:797 +#: ../src/option.c:803 msgid "Set alignment of tab labels (left, center or right)" msgstr "Задать выравнивание меток вкладок (left, center или right)" -#: ../src/option.c:803 +#: ../src/option.c:809 msgid "Set tab borders" msgstr "Установить границы вкладки" -#: ../src/option.c:813 +#: ../src/option.c:819 msgid "Display notification" msgstr "Отобразить диалог уведомления" -#: ../src/option.c:819 +#: ../src/option.c:825 msgid "Set left-click action" msgstr "Действие по левому щелчку мыши" -#: ../src/option.c:825 +#: ../src/option.c:831 msgid "Listen for commands on stdin" msgstr "Воспринимать команды со стандартного ввода" -#: ../src/option.c:831 +#: ../src/option.c:837 msgid "Set separator character for menu values" msgstr "Установить разделяющий символ для значений меню" -#: ../src/option.c:837 +#: ../src/option.c:843 msgid "Set separator character for menu items" msgstr "Установить разделяющий символ для элементов меню" -#: ../src/option.c:847 +#: ../src/option.c:853 msgid "Display printing dialog" msgstr "Отобразить диалог печати" -#: ../src/option.c:853 +#: ../src/option.c:859 msgid "Source filename" msgstr "Имя исходного файла" -#: ../src/option.c:859 +#: ../src/option.c:865 msgid "Set source type (TYPE - TEXT, IMAGE or RAW)" msgstr "Тип исходных данных (ТИП - TEXT, IMAGE или RAW)" -#: ../src/option.c:865 +#: ../src/option.c:871 msgid "Add headers to page" msgstr "Добавлять колонтитулы на страницу" -#: ../src/option.c:871 +#: ../src/option.c:877 msgid "Enable preview in print dialog" msgstr "Разрешить предпросмотр в диалоге печати" -#: ../src/option.c:877 ../src/option.c:1048 +#: ../src/option.c:883 ../src/option.c:1054 msgid "Use specified font" msgstr "Использовать указанный шрифт" -#: ../src/option.c:887 +#: ../src/option.c:893 msgid "Display progress indication dialog" msgstr "Отобразить диалог хода процесса" -#: ../src/option.c:893 +#: ../src/option.c:899 msgid "Set progress text" msgstr "Показывать текст на индикаторе" -#: ../src/option.c:899 +#: ../src/option.c:905 msgid "Set initial percentage" msgstr "Задать начальный процент" -#: ../src/option.c:900 +#: ../src/option.c:906 msgid "PERCENTAGE" msgstr "ПРОЦЕНТЫ" -#: ../src/option.c:905 +#: ../src/option.c:911 msgid "Pulsate progress bar" msgstr "Пульсирующий индикатор прогресса" -#: ../src/option.c:912 +#: ../src/option.c:918 #, no-c-format msgid "Dismiss the dialog when 100% has been reached" msgstr "Закрыть диалог когда дойдет до 100%" -#: ../src/option.c:919 +#: ../src/option.c:925 msgid "Kill parent process if cancel button is pressed" msgstr "Завершить родительский процесс, если нажата кнопка отмены" -#: ../src/option.c:926 +#: ../src/option.c:932 msgid "Right-To-Left progress bar direction" msgstr "Направление индикатора Справа-Налево" -#: ../src/option.c:932 +#: ../src/option.c:938 msgid "Show log window" msgstr "Показать окно журнала" -#: ../src/option.c:938 +#: ../src/option.c:944 msgid "Expand log window" msgstr "Развернуть окно журнала" -#: ../src/option.c:944 +#: ../src/option.c:950 msgid "Place log window above progress bar" msgstr "Разместить окно журнала над индикатором прогресса" -#: ../src/option.c:950 +#: ../src/option.c:956 msgid "Height of log window" msgstr "Высота окна журнала" -#: ../src/option.c:960 +#: ../src/option.c:966 msgid "Display scale dialog" msgstr "Отобразить диалог масштаба" -#: ../src/option.c:966 +#: ../src/option.c:972 msgid "Set initial value" msgstr "Задать начальное значение" -#: ../src/option.c:967 ../src/option.c:973 ../src/option.c:979 -#: ../src/option.c:985 ../src/option.c:991 +#: ../src/option.c:973 ../src/option.c:979 ../src/option.c:985 +#: ../src/option.c:991 ../src/option.c:997 msgid "VALUE" msgstr "ЗНАЧЕНИЕ" -#: ../src/option.c:972 +#: ../src/option.c:978 msgid "Set minimum value" msgstr "Задать минимальное значение" -#: ../src/option.c:978 +#: ../src/option.c:984 msgid "Set maximum value" msgstr "Задать максимальное значение" -#: ../src/option.c:984 +#: ../src/option.c:990 msgid "Set step size" msgstr "Задать шаг" -#: ../src/option.c:990 +#: ../src/option.c:996 msgid "Set paging size" msgstr "Задать шаг страницы" -#: ../src/option.c:996 +#: ../src/option.c:1002 msgid "Print partial values" msgstr "Печатать частичные значения" -#: ../src/option.c:1002 +#: ../src/option.c:1008 msgid "Hide value" msgstr "Скрыть величину" -#: ../src/option.c:1008 +#: ../src/option.c:1014 msgid "Show vertical scale" msgstr "Показывать вертикальную шкалу" -#: ../src/option.c:1014 +#: ../src/option.c:1020 msgid "Invert direction" msgstr "Инвертировать направление" -#: ../src/option.c:1020 +#: ../src/option.c:1026 msgid "Add mark to scale (may be used multiple times)" msgstr "Добавить метку (может использоваться несколько раз)" -#: ../src/option.c:1021 +#: ../src/option.c:1027 msgid "NAME:VALUE" msgstr "ИМЯ:ЗНАЧЕНИЕ" -#: ../src/option.c:1030 +#: ../src/option.c:1036 msgid "Display text information dialog" msgstr "Отобразить диалог с текстовой информацией" -#: ../src/option.c:1036 +#: ../src/option.c:1042 msgid "Use specified color for text" msgstr "Использовать указанный цвет текста" -#: ../src/option.c:1042 +#: ../src/option.c:1048 msgid "Use specified color for background" msgstr "Использовать указанный цвет фона" -#: ../src/option.c:1054 +#: ../src/option.c:1060 msgid "Enable text wrapping" msgstr "Разрешить перенос текста" -#: ../src/option.c:1060 +#: ../src/option.c:1066 msgid "Set justification (TYPE - left, right, center or fill)" msgstr "Установить выравнивание (ТИП - left, right, center или fill)" -#: ../src/option.c:1066 +#: ../src/option.c:1072 msgid "Set text margins" msgstr "Установить отступы" -#: ../src/option.c:1067 +#: ../src/option.c:1073 msgid "SIZE" msgstr "РАЗМЕР" -#: ../src/option.c:1072 +#: ../src/option.c:1078 msgid "Autoscroll to end of text" msgstr "Автопрокрутка в конец текста" -#: ../src/option.c:1078 +#: ../src/option.c:1084 msgid "Open file" msgstr "Открыть файл" -#: ../src/option.c:1090 +#: ../src/option.c:1096 msgid "Make URI clickable" msgstr "Сделать ссылки активными" -#: ../src/option.c:1096 +#: ../src/option.c:1102 msgid "Listen for data on stdin in addition to file" msgstr "Получать данные из стандартного потока ввода в дополнение к файлу" -#: ../src/option.c:1106 +#: ../src/option.c:1112 msgid "Show about dialog" msgstr "Показать диалог 'О программе'" -#: ../src/option.c:1112 +#: ../src/option.c:1118 msgid "Print version" msgstr "Вывести версию" -#: ../src/option.c:1122 +#: ../src/option.c:1128 msgid "Load extra arguments from file" msgstr "Загрузить дополнительные аргументы из файла" -#: ../src/option.c:1165 ../src/option.c:1376 +#: ../src/option.c:1171 ../src/option.c:1382 #, c-format msgid "Unknown align type: %s\n" msgstr "Неизвестный тип выравнивания: %s\n" -#: ../src/option.c:1318 +#: ../src/option.c:1324 #, c-format msgid "Mark %s doesn't have a value\n" msgstr "Метке %s не задано значение\n" -#: ../src/option.c:1361 +#: ../src/option.c:1367 #, c-format msgid "Unknown buttons layout type: %s\n" msgstr "Неизвестный тип расположения кнопок: %s\n" -#: ../src/option.c:1393 +#: ../src/option.c:1399 #, c-format msgid "Unknown justification type: %s\n" msgstr "Неизвестный тип выравнивания: %s\n" -#: ../src/option.c:1429 +#: ../src/option.c:1435 #, c-format msgid "Unknown ellipsize type: %s\n" msgstr "Неизвестный тип усечения: %s\n" -#: ../src/option.c:1444 +#: ../src/option.c:1450 #, c-format msgid "Unknown source type: %s\n" msgstr "Неизвестный исходный тип: %s\n" -#: ../src/option.c:1455 +#: ../src/option.c:1461 msgid "Progress log" msgstr "Окно журнала" -#: ../src/option.c:1546 +#: ../src/option.c:1561 #, c-format msgid "Unknown signal: %s\n" msgstr "Неизвестный сигнал: %s\n" -#: ../src/option.c:1686 +#: ../src/option.c:1701 msgid "File exist. Overwrite?" msgstr "Файл существует. Перезаписать?" -#: ../src/option.c:1774 +#: ../src/option.c:1789 msgid "Yet another dialoging program" msgstr "Программа для отображения диалогов" #. Adds general option entries -#: ../src/option.c:1778 +#: ../src/option.c:1793 msgid "General options" msgstr "Основные параметры" -#: ../src/option.c:1778 +#: ../src/option.c:1793 msgid "Show general options" msgstr "Показывать основные параметры" #. Adds calendar option entries -#: ../src/option.c:1784 +#: ../src/option.c:1799 msgid "Calendar options" msgstr "Параметры календаря" -#: ../src/option.c:1784 +#: ../src/option.c:1799 msgid "Show calendar options" msgstr "Показывать параметры календаря" #. Adds color option entries -#: ../src/option.c:1790 +#: ../src/option.c:1805 msgid "Color selection options" msgstr "Параметры диалога выбора цвета" -#: ../src/option.c:1790 +#: ../src/option.c:1805 msgid "Show color selection options" msgstr "Показывать параметры диалога выбора цвета" #. Adds dnd option entries -#: ../src/option.c:1796 +#: ../src/option.c:1811 msgid "DND options" msgstr "Параметры DND" -#: ../src/option.c:1796 +#: ../src/option.c:1811 msgid "Show drag-n-drop options" msgstr "Показывать параметры dnd" #. Adds entry option entries -#: ../src/option.c:1802 +#: ../src/option.c:1817 msgid "Text entry options" msgstr "Параметры ввода текста" -#: ../src/option.c:1802 +#: ../src/option.c:1817 msgid "Show text entry options" msgstr "Показывать параметры ввода текста" #. Adds file selection option entries -#: ../src/option.c:1808 +#: ../src/option.c:1823 msgid "File selection options" msgstr "Параметры диалога выбора файла" -#: ../src/option.c:1808 +#: ../src/option.c:1823 msgid "Show file selection options" msgstr "Показывать параметры диалога выбора файлов" #. Add font selection option entries -#: ../src/option.c:1814 +#: ../src/option.c:1829 msgid "Font selection options" msgstr "Параметры диалога выбора шрифта" -#: ../src/option.c:1814 +#: ../src/option.c:1829 msgid "Show font selection options" msgstr "Показывать параметры диалога выбора шрифта" #. Add form option entries -#: ../src/option.c:1820 +#: ../src/option.c:1835 msgid "Form options" msgstr "Параметры диалога формы" -#: ../src/option.c:1820 +#: ../src/option.c:1835 msgid "Show form options" msgstr "Показывать параметры диалога формы" #. Add icons option entries -#: ../src/option.c:1826 +#: ../src/option.c:1841 msgid "Icons box options" msgstr "Параметры диалога значков" -#: ../src/option.c:1826 +#: ../src/option.c:1841 msgid "Show icons box options" msgstr "Показывать параметры диалога значков быстрого доступа" #. Adds list option entries -#: ../src/option.c:1832 +#: ../src/option.c:1847 msgid "List options" msgstr "Параметры списка" -#: ../src/option.c:1832 +#: ../src/option.c:1847 msgid "Show list options" msgstr "Показывать параметры списка" #. Adds multi progress option entries -#: ../src/option.c:1838 +#: ../src/option.c:1853 msgid "Multi progress bars options" msgstr "Параметры диалога с несколькими индикаторами" -#: ../src/option.c:1839 +#: ../src/option.c:1854 msgid "Show multi progress bars options" msgstr "Показывать параметры диалога с несколькими индикаторами" #. Adds notebook option entries -#: ../src/option.c:1845 +#: ../src/option.c:1860 msgid "Notebook options" msgstr "Параметры диалога с вкладками" -#: ../src/option.c:1845 +#: ../src/option.c:1860 msgid "Show notebook dialog options" msgstr "Показывать параметры диалога с вкладками" #. Adds notification option entries -#: ../src/option.c:1851 +#: ../src/option.c:1866 msgid "Notification icon options" msgstr "Параметры значка уведомления" -#: ../src/option.c:1852 +#: ../src/option.c:1867 msgid "Show notification icon options" msgstr "Показывать параметры значка уведомления" #. Adds print option entries -#: ../src/option.c:1858 +#: ../src/option.c:1873 msgid "Print dialog options" msgstr "Параметры диалога печати" -#: ../src/option.c:1858 +#: ../src/option.c:1873 msgid "Show print dialog options" msgstr "Показывать параметры диалога печати" #. Adds progress option entries -#: ../src/option.c:1864 +#: ../src/option.c:1879 msgid "Progress options" msgstr "Параметры хода процесса" -#: ../src/option.c:1864 +#: ../src/option.c:1879 msgid "Show progress options" msgstr "Показывать параметры хода процесса" #. Adds scale option entries -#: ../src/option.c:1870 +#: ../src/option.c:1885 msgid "Scale options" msgstr "Параметры масштаба" -#: ../src/option.c:1870 +#: ../src/option.c:1885 msgid "Show scale options" msgstr "Показывать параметры масштаба" #. Adds text option entries -#: ../src/option.c:1876 +#: ../src/option.c:1891 msgid "Text information options" msgstr "Параметры текстовой информации" -#: ../src/option.c:1876 +#: ../src/option.c:1891 msgid "Show text information options" msgstr "Показывать параметры текстовой информации" #. Adds miscellaneous option entries -#: ../src/option.c:1882 +#: ../src/option.c:1897 msgid "Miscellaneous options" msgstr "Дополнительные параметры" -#: ../src/option.c:1882 +#: ../src/option.c:1897 msgid "Show miscellaneous options" msgstr "Показывать дополнительные параметры" diff -Nru yad-0.20.3/po/sk.po yad-0.21.0/po/sk.po --- yad-0.20.3/po/sk.po 2013-04-01 08:16:44.000000000 +0000 +++ yad-0.21.0/po/sk.po 2013-05-10 06:00:48.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: YAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-20 07:37+0200\n" +"POT-Creation-Date: 2013-05-10 09:00+0300\n" "PO-Revision-Date: 2013-03-30 08:10+0100\n" "Last-Translator: Slavko \n" "Language-Team: slovenčina \n" @@ -107,15 +107,15 @@ msgid "Select or create folder" msgstr "Vyberte alebo vytvorte adresár" -#: ../src/form.c:461 +#: ../src/form.c:467 msgid "Select date" msgstr "Vyberte dátum" -#: ../src/form.c:637 +#: ../src/form.c:667 msgid "Select file" msgstr "Vyberte súbor" -#: ../src/form.c:651 +#: ../src/form.c:681 msgid "Select folder" msgstr "Vyberte adresár" @@ -129,12 +129,12 @@ msgid "Unable to open directory %s: %s\n" msgstr "Nemožno otvoriť adresár %s: %s\n" -#: ../src/main.c:102 ../src/main.c:228 +#: ../src/main.c:102 ../src/main.c:227 #, c-format msgid "%d sec" msgstr "%d s" -#: ../src/main.c:608 +#: ../src/main.c:611 #, c-format msgid "Unable to parse command line: %s\n" msgstr "Nemožno spracovať príkazový riadok: %s\n" @@ -158,15 +158,20 @@ msgid "Yad notification" msgstr "Informačná ikona Yad" -#: ../src/list.c:746 +#: ../src/list.c:800 msgid "Add row" msgstr "Pridá riadok" -#: ../src/list.c:753 +#: ../src/list.c:807 msgid "Delete row" msgstr "Odstráni riadok" -#: ../src/list.c:779 +#: ../src/list.c:814 +#, fuzzy +msgid "Duplicate row" +msgstr "Odstráni riadok" + +#: ../src/list.c:841 #, c-format msgid "No column titles specified for List dialog.\n" msgstr "Neboli zadané mená stĺpcov pre dialóg Zoznam.\n" @@ -233,7 +238,7 @@ #: ../src/option.c:110 ../src/option.c:140 ../src/option.c:371 #: ../src/option.c:377 ../src/option.c:383 ../src/option.c:517 -#: ../src/option.c:894 ../src/option.c:933 +#: ../src/option.c:900 ../src/option.c:939 msgid "TEXT" msgstr "TEXT" @@ -242,8 +247,8 @@ msgstr "Nastaví zarovnanie textu dialógu (left, center, right)" #: ../src/option.c:116 ../src/option.c:158 ../src/option.c:540 -#: ../src/option.c:694 ../src/option.c:770 ../src/option.c:798 -#: ../src/option.c:860 ../src/option.c:1061 +#: ../src/option.c:700 ../src/option.c:776 ../src/option.c:804 +#: ../src/option.c:866 ../src/option.c:1067 msgid "TYPE" msgstr "TYP" @@ -300,8 +305,8 @@ msgstr "Nastaví okraje okna" #: ../src/option.c:178 ../src/option.c:245 ../src/option.c:546 -#: ../src/option.c:700 ../src/option.c:706 ../src/option.c:712 -#: ../src/option.c:718 ../src/option.c:724 ../src/option.c:804 +#: ../src/option.c:706 ../src/option.c:712 ../src/option.c:718 +#: ../src/option.c:724 ../src/option.c:730 ../src/option.c:810 msgid "NUMBER" msgstr "ČÍSLO" @@ -345,7 +350,7 @@ msgid "Special type of dialog for XEMBED" msgstr "Špeciálny typ dialógu pre XEMBED" -#: ../src/option.c:239 ../src/option.c:786 +#: ../src/option.c:239 ../src/option.c:792 msgid "KEY" msgstr "KĽÚČ" @@ -397,7 +402,7 @@ msgid "Set the format for the returned date" msgstr "Nastaví formát vráteného dátumu" -#: ../src/option.c:293 ../src/option.c:564 ../src/option.c:611 +#: ../src/option.c:293 ../src/option.c:564 ../src/option.c:617 msgid "PATTERN" msgstr "VZOR" @@ -406,7 +411,7 @@ msgstr "Nastaví meno súboru s podrobnosťami dátumu" #: ../src/option.c:299 ../src/option.c:327 ../src/option.c:447 -#: ../src/option.c:854 ../src/option.c:1079 ../src/option.c:1123 +#: ../src/option.c:860 ../src/option.c:1085 ../src/option.c:1129 msgid "FILENAME" msgstr "MENO_SÚBORU" @@ -422,7 +427,7 @@ msgid "Set initial color value" msgstr "Nastaví počiatočnú hodnotu farby" -#: ../src/option.c:321 ../src/option.c:1037 ../src/option.c:1043 +#: ../src/option.c:321 ../src/option.c:1043 ../src/option.c:1049 msgid "COLOR" msgstr "FARBA" @@ -447,7 +452,7 @@ msgstr "Nastaví príkaz pre spracovanie dát Ťahaj a Pusť" #: ../src/option.c:355 ../src/option.c:413 ../src/option.c:425 -#: ../src/option.c:730 ../src/option.c:820 +#: ../src/option.c:736 ../src/option.c:826 msgid "CMD" msgstr "PRÍKAZ" @@ -519,12 +524,12 @@ msgid "Activate save mode" msgstr "Aktivuje režim save" -#: ../src/option.c:470 ../src/option.c:551 ../src/option.c:669 +#: ../src/option.c:470 ../src/option.c:551 ../src/option.c:675 msgid "Set output separator character" msgstr "Nastaví znak výstupného oddeľovača" #: ../src/option.c:471 ../src/option.c:552 ../src/option.c:558 -#: ../src/option.c:670 ../src/option.c:832 ../src/option.c:838 +#: ../src/option.c:676 ../src/option.c:838 ../src/option.c:844 msgid "SEPARATOR" msgstr "ODDEĽOVAČ" @@ -560,7 +565,7 @@ msgid "Set initial font" msgstr "Nastaví počiatočné písmo" -#: ../src/option.c:511 ../src/option.c:878 ../src/option.c:1049 +#: ../src/option.c:511 ../src/option.c:884 ../src/option.c:1055 msgid "FONTNAME" msgstr "MENO_FONTU" @@ -580,7 +585,7 @@ "Pridá do formulára pole (TYP – H, RO, NUM, CHK, CB, CBE, FL, SFL, MFL, DIR, " "CDIR, MDIR, FN, DT, CLR, BTN, LBL alebo TXT)" -#: ../src/option.c:534 ../src/option.c:758 +#: ../src/option.c:534 ../src/option.c:764 msgid "LABEL[:TYPE]" msgstr "NÁVESTIE[:TYP]" @@ -596,96 +601,101 @@ msgid "Set separator character for combobox or scale data" msgstr "Nastaví znak oddeľovača dát rozbaľovacieho zoznamu alebo posuvníka" -#: ../src/option.c:573 +#: ../src/option.c:569 +#, fuzzy +msgid "Make form scrollable" +msgstr "Urobí URI kliknuteľné" + +#: ../src/option.c:579 msgid "Display icons box dialog" msgstr "Zobrazí dialóg Ikony" -#: ../src/option.c:579 +#: ../src/option.c:585 msgid "Read data from .desktop files in specified directory" msgstr "Číta dáta zo súborov .desktop v zadanom adresári" -#: ../src/option.c:580 +#: ../src/option.c:586 msgid "DIRECTORY" msgstr "ADRESÁR" -#: ../src/option.c:585 +#: ../src/option.c:591 msgid "Use compact (list) view" msgstr "Použije kompaktné (zoznam) zobrazenie" -#: ../src/option.c:591 +#: ../src/option.c:597 msgid "Use GenericName field instead of Name for icon label" msgstr "Pre menovku ikony použiť pole GenericName namiesto Name" -#: ../src/option.c:597 +#: ../src/option.c:603 msgid "Read data from stdin" msgstr "Číta dáta zo štandardného vstupu" -#: ../src/option.c:603 +#: ../src/option.c:609 msgid "Set the width of dialog items" msgstr "Nastaví šírku položiek dialógu" -#: ../src/option.c:610 +#: ../src/option.c:616 #, no-c-format msgid "" "Use specified pattern for launch command in terminal (default: xterm -e %s)" msgstr "" "Špecifický vzor spustenia príkazu v terminále (predvolené: xterm -e %s)" -#: ../src/option.c:616 +#: ../src/option.c:622 msgid "Sort items by name instead of filename" msgstr "Radí položky podľa mena namiesto mena súboru" -#: ../src/option.c:622 +#: ../src/option.c:628 msgid "Sort items in descending order" msgstr "Zoradí položky zostupne" -#: ../src/option.c:628 +#: ../src/option.c:634 msgid "Activate items by single click" msgstr "Aktivovať položku jedným kliknutím" -#: ../src/option.c:638 +#: ../src/option.c:644 msgid "Display list dialog" msgstr "Zobrazí dialóg Zoznam" -#: ../src/option.c:644 +#: ../src/option.c:650 msgid "Don't show column headers" msgstr "Nezobrazuje hlavičky stĺpcov" -#: ../src/option.c:650 +#: ../src/option.c:656 msgid "Set the column header (TYPE - TEXT, NUM, FLT, CHK, RD, IMG, HD or TIP)" msgstr "" "Nastaví hlavičku stĺpca (TYP – TEXT, NUM, FLT, CHK, RD, IMG, HD alebo TIP)" -#: ../src/option.c:651 +#: ../src/option.c:657 msgid "COLUMN[:TYPE]" msgstr "STĹPEC[:TYP]" -#: ../src/option.c:656 +#: ../src/option.c:662 msgid "Use checkboxes for first column" msgstr "V prvom stĺpci použije zaškrtávacie voľby" -#: ../src/option.c:662 +#: ../src/option.c:668 msgid "Use radioboxes for first column" msgstr "V prvom stĺpci použije výberové voľby" -#: ../src/option.c:675 +#: ../src/option.c:681 msgid "Allow multiple rows to be selected" msgstr "Dovolí viacnásobný výber riadkov" -#: ../src/option.c:681 ../src/option.c:1084 +#: ../src/option.c:687 ../src/option.c:1090 msgid "Allow changes to text" msgstr "Dovolí zmeny textu" -#: ../src/option.c:687 +#: ../src/option.c:693 msgid "Print all data from list" msgstr "Vypíše všetky dáta zoznamu" -#: ../src/option.c:693 +#: ../src/option.c:699 msgid "Set ellipsize mode for text columns (TYPE - NONE, START, MIDDLE or END)" msgstr "" "Nastaví režim výpustky textových polí (TYP – NONE, START, MIDDLE alebo END)" -#: ../src/option.c:699 +#: ../src/option.c:705 msgid "" "Print a specific column. By default or if 0 is specified will be printed all " "columns" @@ -693,17 +703,17 @@ "Vypíše zadaný stĺpec. Predvolene alebo ak je zadaná 0 budú vypísané všetky " "stĺpce" -#: ../src/option.c:705 +#: ../src/option.c:711 msgid "Hide a specific column" msgstr "Skryje zadaný stĺpec" -#: ../src/option.c:711 +#: ../src/option.c:717 msgid "Set the column expandable by default. 0 sets all columns expandable" msgstr "" "Nastaví stĺpec predvolene ako rozšíriteľný. 0 nastavuje všetky stĺpce ako " "rozšíriteľné" -#: ../src/option.c:717 +#: ../src/option.c:723 msgid "" "Set the quick search column. Default is first column. Set it to 0 for " "disable searching" @@ -711,470 +721,470 @@ "Nastaví rýchle vyhľadávacie pole. Predvolene je to prvý stĺpec. Nastavenie " "na 0 zakáže vyhľadávanie" -#: ../src/option.c:723 +#: ../src/option.c:729 msgid "Set the limit of rows in list" msgstr "Nastaví limit počtu riadkov zoznamu" -#: ../src/option.c:729 +#: ../src/option.c:735 msgid "Set double-click action" msgstr "Nastaví akciu dvojitého kliknutia" -#: ../src/option.c:735 +#: ../src/option.c:741 msgid "Use regex in search" msgstr "Použije regulárny výraz v hľadaní" -#: ../src/option.c:741 +#: ../src/option.c:747 msgid "Listen for data on stdin in addition to command-line" msgstr "Prijímať dáta na stdin ako doplnenie príkazového riadku" -#: ../src/option.c:751 +#: ../src/option.c:757 msgid "Display multi progress bars dialog" msgstr "Zobrazí viacnásobný dialóg Indikátor priebehu" -#: ../src/option.c:757 +#: ../src/option.c:763 msgid "Add the progress bar (TYPE - NORM, RTL or PULSE)" msgstr "Pridá ukazovateľ priebehu (TYP – NORM, RTL alebo PULSE)" -#: ../src/option.c:763 +#: ../src/option.c:769 msgid "Show vertical bars" msgstr "Zobraziť zvislé ukazovatele" -#: ../src/option.c:769 +#: ../src/option.c:775 msgid "Set alignment of bar labels (left, center or right)" msgstr "Nastaví zarovnanie menoviek ukazovateľov (left, center alebo right)" -#: ../src/option.c:779 +#: ../src/option.c:785 msgid "Display notebook dialog" msgstr "Zobrazí dialóg Zápisník" -#: ../src/option.c:785 +#: ../src/option.c:791 msgid "Identifier of embedded dialogs" msgstr "Identifikátor vnorených dialógov" -#: ../src/option.c:791 +#: ../src/option.c:797 msgid "Add a tab to notebook" msgstr "Pridá do zápisníka záložku" -#: ../src/option.c:792 +#: ../src/option.c:798 msgid "LABEL" msgstr "MENOVKA" -#: ../src/option.c:797 +#: ../src/option.c:803 msgid "Set alignment of tab labels (left, center or right)" msgstr "Nastaví zarovnanie menoviek záložiek (left, center alebo right)" -#: ../src/option.c:803 +#: ../src/option.c:809 msgid "Set tab borders" msgstr "Nastaví okraje záložky" -#: ../src/option.c:813 +#: ../src/option.c:819 msgid "Display notification" msgstr "Zobrazí ikonu informačnej oblasti" -#: ../src/option.c:819 +#: ../src/option.c:825 msgid "Set left-click action" msgstr "Nastaví akciu ľavého tlačidla myši" -#: ../src/option.c:825 +#: ../src/option.c:831 msgid "Listen for commands on stdin" msgstr "Prijíma príkazy zo štandardného vstupu" -#: ../src/option.c:831 +#: ../src/option.c:837 msgid "Set separator character for menu values" msgstr "Nastaví znak oddeľovača hodnôt menu" -#: ../src/option.c:837 +#: ../src/option.c:843 msgid "Set separator character for menu items" msgstr "Nastaví znak oddeľovača položiek menu" -#: ../src/option.c:847 +#: ../src/option.c:853 msgid "Display printing dialog" msgstr "Zobrazí dialóg Tlače" -#: ../src/option.c:853 +#: ../src/option.c:859 msgid "Source filename" msgstr "Meno zdrojového súboru" -#: ../src/option.c:859 +#: ../src/option.c:865 msgid "Set source type (TYPE - TEXT, IMAGE or RAW)" msgstr "Nastaví typ zdroja (TYP – TEXT, IMAGE alebo RAW)" -#: ../src/option.c:865 +#: ../src/option.c:871 msgid "Add headers to page" msgstr "Pridať hlavičky do stránky" -#: ../src/option.c:871 +#: ../src/option.c:877 msgid "Enable preview in print dialog" msgstr "Zapne ukážku pred tlačou v dialógu Tlače" -#: ../src/option.c:877 ../src/option.c:1048 +#: ../src/option.c:883 ../src/option.c:1054 msgid "Use specified font" msgstr "Použije zadaný font" -#: ../src/option.c:887 +#: ../src/option.c:893 msgid "Display progress indication dialog" msgstr "Zobrazí dialóg Indikátor priebehu" -#: ../src/option.c:893 +#: ../src/option.c:899 msgid "Set progress text" msgstr "Nastaví text ukazovateľa" -#: ../src/option.c:899 +#: ../src/option.c:905 msgid "Set initial percentage" msgstr "Nastaví počiatočné percentá" -#: ../src/option.c:900 +#: ../src/option.c:906 msgid "PERCENTAGE" msgstr "PERCENTÁ" -#: ../src/option.c:905 +#: ../src/option.c:911 msgid "Pulsate progress bar" msgstr "Pulzujúci ukazovateľ priebehu" -#: ../src/option.c:912 +#: ../src/option.c:918 #, no-c-format msgid "Dismiss the dialog when 100% has been reached" msgstr "Zatvorí dialóg pri dosiahnutí 100%" -#: ../src/option.c:919 +#: ../src/option.c:925 msgid "Kill parent process if cancel button is pressed" msgstr "Ukončí rodičovský proces, ak je stlačený kláves Zrušiť" -#: ../src/option.c:926 +#: ../src/option.c:932 msgid "Right-To-Left progress bar direction" msgstr "Indikátor priebehu sprava doľava" -#: ../src/option.c:932 +#: ../src/option.c:938 msgid "Show log window" msgstr "Zobrazí okno záznamu" -#: ../src/option.c:938 +#: ../src/option.c:944 msgid "Expand log window" msgstr "Rozšíriť okno záznamu" -#: ../src/option.c:944 +#: ../src/option.c:950 msgid "Place log window above progress bar" msgstr "Umiestni okno záznamu nad ukazovateľ" -#: ../src/option.c:950 +#: ../src/option.c:956 msgid "Height of log window" msgstr "Výška okna záznamu" -#: ../src/option.c:960 +#: ../src/option.c:966 msgid "Display scale dialog" msgstr "Zobrazí dialóg Posuvník" -#: ../src/option.c:966 +#: ../src/option.c:972 msgid "Set initial value" msgstr "Nastaví východziu hodnotu" -#: ../src/option.c:967 ../src/option.c:973 ../src/option.c:979 -#: ../src/option.c:985 ../src/option.c:991 +#: ../src/option.c:973 ../src/option.c:979 ../src/option.c:985 +#: ../src/option.c:991 ../src/option.c:997 msgid "VALUE" msgstr "HODNOTA" -#: ../src/option.c:972 +#: ../src/option.c:978 msgid "Set minimum value" msgstr "Nastaví minimálnu hodnotu" -#: ../src/option.c:978 +#: ../src/option.c:984 msgid "Set maximum value" msgstr "Nastaví maximálnu hodnotu" -#: ../src/option.c:984 +#: ../src/option.c:990 msgid "Set step size" msgstr "Nastaví veľkosť kroku" -#: ../src/option.c:990 +#: ../src/option.c:996 msgid "Set paging size" msgstr "Nastaví veľkosť skoku" -#: ../src/option.c:996 +#: ../src/option.c:1002 msgid "Print partial values" msgstr "Vypíše čiastočné hodnoty" -#: ../src/option.c:1002 +#: ../src/option.c:1008 msgid "Hide value" msgstr "Skryje hodnotu" -#: ../src/option.c:1008 +#: ../src/option.c:1014 msgid "Show vertical scale" msgstr "Zobrazí zvislý posuvník" -#: ../src/option.c:1014 +#: ../src/option.c:1020 msgid "Invert direction" msgstr "Obráti smer" -#: ../src/option.c:1020 +#: ../src/option.c:1026 msgid "Add mark to scale (may be used multiple times)" msgstr "Pridá značku do posuvníka (možno použiť viackrát)" -#: ../src/option.c:1021 +#: ../src/option.c:1027 msgid "NAME:VALUE" msgstr "MENO:HODNOTA" -#: ../src/option.c:1030 +#: ../src/option.c:1036 msgid "Display text information dialog" msgstr "Zobrazí dialóg Informačný text" -#: ../src/option.c:1036 +#: ../src/option.c:1042 msgid "Use specified color for text" msgstr "Použije zadanú farbu textu" -#: ../src/option.c:1042 +#: ../src/option.c:1048 msgid "Use specified color for background" msgstr "Použije zadanú farbu pozadia" -#: ../src/option.c:1054 +#: ../src/option.c:1060 msgid "Enable text wrapping" msgstr "Zapne zalamovanie textu" -#: ../src/option.c:1060 +#: ../src/option.c:1066 msgid "Set justification (TYPE - left, right, center or fill)" msgstr "Nastaví zarovnanie (TYP – left, right, center alebo fill)" -#: ../src/option.c:1066 +#: ../src/option.c:1072 msgid "Set text margins" msgstr "Nastaví okraje textu" -#: ../src/option.c:1067 +#: ../src/option.c:1073 msgid "SIZE" msgstr "VEĽKOSŤ" -#: ../src/option.c:1072 +#: ../src/option.c:1078 msgid "Autoscroll to end of text" msgstr "Automaticky posunúť na koniec textu" -#: ../src/option.c:1078 +#: ../src/option.c:1084 msgid "Open file" msgstr "Otvorí súbor" -#: ../src/option.c:1090 +#: ../src/option.c:1096 msgid "Make URI clickable" msgstr "Urobí URI kliknuteľné" -#: ../src/option.c:1096 +#: ../src/option.c:1102 msgid "Listen for data on stdin in addition to file" msgstr "Prijímať dáta na stdin, ako doplnenie k súboru" -#: ../src/option.c:1106 +#: ../src/option.c:1112 msgid "Show about dialog" msgstr "Zobrazí dialóg O programe" -#: ../src/option.c:1112 +#: ../src/option.c:1118 msgid "Print version" msgstr "Vypíše verziu" -#: ../src/option.c:1122 +#: ../src/option.c:1128 msgid "Load extra arguments from file" msgstr "Načíta ďalšie argumenty zo súboru" -#: ../src/option.c:1165 ../src/option.c:1376 +#: ../src/option.c:1171 ../src/option.c:1382 #, c-format msgid "Unknown align type: %s\n" msgstr "Neznámy typ zarovnania: %s\n" -#: ../src/option.c:1318 +#: ../src/option.c:1324 #, c-format msgid "Mark %s doesn't have a value\n" msgstr "Značka %s nemá hodnotu\n" -#: ../src/option.c:1361 +#: ../src/option.c:1367 #, c-format msgid "Unknown buttons layout type: %s\n" msgstr "Neznámy typ vzhľadu tlačidiel: %s\n" -#: ../src/option.c:1393 +#: ../src/option.c:1399 #, c-format msgid "Unknown justification type: %s\n" msgstr "Neznámy typ zarovnania: %s\n" -#: ../src/option.c:1429 +#: ../src/option.c:1435 #, c-format msgid "Unknown ellipsize type: %s\n" msgstr "Neznámy typ výpustky: %s\n" -#: ../src/option.c:1444 +#: ../src/option.c:1450 #, c-format msgid "Unknown source type: %s\n" msgstr "Neznámy typ zdroja: %s\n" -#: ../src/option.c:1455 +#: ../src/option.c:1461 msgid "Progress log" msgstr "Spracuje záznam" -#: ../src/option.c:1546 +#: ../src/option.c:1561 #, c-format msgid "Unknown signal: %s\n" msgstr "Neznámy signál: %s\n" -#: ../src/option.c:1686 +#: ../src/option.c:1701 msgid "File exist. Overwrite?" msgstr "Súbor existuje. Prepísať ho?" -#: ../src/option.c:1774 +#: ../src/option.c:1789 msgid "Yet another dialoging program" msgstr "Prosto ďalší program na dialógy" #. Adds general option entries -#: ../src/option.c:1778 +#: ../src/option.c:1793 msgid "General options" msgstr "Všeobecné voľby" -#: ../src/option.c:1778 +#: ../src/option.c:1793 msgid "Show general options" msgstr "Zobrazí všeobecné voľby" #. Adds calendar option entries -#: ../src/option.c:1784 +#: ../src/option.c:1799 msgid "Calendar options" msgstr "Voľby kalendára" -#: ../src/option.c:1784 +#: ../src/option.c:1799 msgid "Show calendar options" msgstr "Zobrazí voľby kalendára" #. Adds color option entries -#: ../src/option.c:1790 +#: ../src/option.c:1805 msgid "Color selection options" msgstr "Voľby výberu farby" -#: ../src/option.c:1790 +#: ../src/option.c:1805 msgid "Show color selection options" msgstr "Zobrazí voľby výberu farby" #. Adds dnd option entries -#: ../src/option.c:1796 +#: ../src/option.c:1811 msgid "DND options" msgstr "Voľby Ťahaj a Pusť" -#: ../src/option.c:1796 +#: ../src/option.c:1811 msgid "Show drag-n-drop options" msgstr "Zobrazí voľby pre Ťahaj a Pusť" #. Adds entry option entries -#: ../src/option.c:1802 +#: ../src/option.c:1817 msgid "Text entry options" msgstr "Voľby textovej položky" -#: ../src/option.c:1802 +#: ../src/option.c:1817 msgid "Show text entry options" msgstr "Zobrazí voľby textovej položky" #. Adds file selection option entries -#: ../src/option.c:1808 +#: ../src/option.c:1823 msgid "File selection options" msgstr "Voľby výberu súboru" -#: ../src/option.c:1808 +#: ../src/option.c:1823 msgid "Show file selection options" msgstr "Zobrazí voľby výberu súboru" #. Add font selection option entries -#: ../src/option.c:1814 +#: ../src/option.c:1829 msgid "Font selection options" msgstr "Voľby výberu písma" -#: ../src/option.c:1814 +#: ../src/option.c:1829 msgid "Show font selection options" msgstr "Zobrazí voľby výberu písma" #. Add form option entries -#: ../src/option.c:1820 +#: ../src/option.c:1835 msgid "Form options" msgstr "Voľby formulára" -#: ../src/option.c:1820 +#: ../src/option.c:1835 msgid "Show form options" msgstr "Zobrazí voľby formulára" #. Add icons option entries -#: ../src/option.c:1826 +#: ../src/option.c:1841 msgid "Icons box options" msgstr "Voľby dialógu ikon" -#: ../src/option.c:1826 +#: ../src/option.c:1841 msgid "Show icons box options" msgstr "Zobrazí voľby dialógu ikon" #. Adds list option entries -#: ../src/option.c:1832 +#: ../src/option.c:1847 msgid "List options" msgstr "Voľby zoznamu" -#: ../src/option.c:1832 +#: ../src/option.c:1847 msgid "Show list options" msgstr "Zobrazí voľby zoznamu" #. Adds multi progress option entries -#: ../src/option.c:1838 +#: ../src/option.c:1853 msgid "Multi progress bars options" msgstr "Voľby viacnásobného ukazovateľa priebehu" -#: ../src/option.c:1839 +#: ../src/option.c:1854 msgid "Show multi progress bars options" msgstr "Zobrazí voľby viacnásobného ukazovateľa priebehu" #. Adds notebook option entries -#: ../src/option.c:1845 +#: ../src/option.c:1860 msgid "Notebook options" msgstr "Voľby zápisníka" -#: ../src/option.c:1845 +#: ../src/option.c:1860 msgid "Show notebook dialog options" msgstr "Zobrazí voľby zápisníka" #. Adds notification option entries -#: ../src/option.c:1851 +#: ../src/option.c:1866 msgid "Notification icon options" msgstr "Voľby informačnej ikony" -#: ../src/option.c:1852 +#: ../src/option.c:1867 msgid "Show notification icon options" msgstr "Zobrazí voľby informačnej ikony" #. Adds print option entries -#: ../src/option.c:1858 +#: ../src/option.c:1873 msgid "Print dialog options" msgstr "Voľby dialógu Tlače" -#: ../src/option.c:1858 +#: ../src/option.c:1873 msgid "Show print dialog options" msgstr "Zobrazí voľby dialógu Tlače" #. Adds progress option entries -#: ../src/option.c:1864 +#: ../src/option.c:1879 msgid "Progress options" msgstr "Voľby ukazovateľa priebehu" -#: ../src/option.c:1864 +#: ../src/option.c:1879 msgid "Show progress options" msgstr "Zobrazí voľby ukazovateľa priebehu" #. Adds scale option entries -#: ../src/option.c:1870 +#: ../src/option.c:1885 msgid "Scale options" msgstr "Voľby posuvníka" -#: ../src/option.c:1870 +#: ../src/option.c:1885 msgid "Show scale options" msgstr "Zobrazí voľby posuvníka" #. Adds text option entries -#: ../src/option.c:1876 +#: ../src/option.c:1891 msgid "Text information options" msgstr "Voľby textovej informácie" -#: ../src/option.c:1876 +#: ../src/option.c:1891 msgid "Show text information options" msgstr "Zobrazí voľby textovej informácie" #. Adds miscellaneous option entries -#: ../src/option.c:1882 +#: ../src/option.c:1897 msgid "Miscellaneous options" msgstr "Doplnkové voľby" -#: ../src/option.c:1882 +#: ../src/option.c:1897 msgid "Show miscellaneous options" msgstr "Zobrazí doplnkové voľby" diff -Nru yad-0.20.3/po/uk.po yad-0.21.0/po/uk.po --- yad-0.20.3/po/uk.po 2013-03-27 16:03:14.000000000 +0000 +++ yad-0.21.0/po/uk.po 2013-05-10 06:09:07.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: YAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-20 07:37+0200\n" +"POT-Creation-Date: 2013-05-10 09:00+0300\n" "PO-Revision-Date: 2009-04-30 16:47+0300\n" "Last-Translator: Victor Ananjevsky \n" "Language-Team: Ukrainian\n" @@ -99,15 +99,15 @@ msgid "Select or create folder" msgstr "Вибір або створення каталогу" -#: ../src/form.c:461 +#: ../src/form.c:467 msgid "Select date" msgstr "Вибір дати" -#: ../src/form.c:637 +#: ../src/form.c:667 msgid "Select file" msgstr "Вибір файлу" -#: ../src/form.c:651 +#: ../src/form.c:681 msgid "Select folder" msgstr "Вибір каталогу" @@ -121,12 +121,12 @@ msgid "Unable to open directory %s: %s\n" msgstr "Не можу відкрити каталогу %s: %s\n" -#: ../src/main.c:102 ../src/main.c:228 +#: ../src/main.c:102 ../src/main.c:227 #, c-format msgid "%d sec" msgstr "%d сек" -#: ../src/main.c:608 +#: ../src/main.c:611 #, c-format msgid "Unable to parse command line: %s\n" msgstr "Не вдається розібрати командний рядок: %s\n" @@ -150,15 +150,19 @@ msgid "Yad notification" msgstr "Діалог повідомлень" -#: ../src/list.c:746 +#: ../src/list.c:800 msgid "Add row" msgstr "Додати рядок" -#: ../src/list.c:753 +#: ../src/list.c:807 msgid "Delete row" msgstr "Прибрати рядок" -#: ../src/list.c:779 +#: ../src/list.c:814 +msgid "Duplicate row" +msgstr "Скопіювати рядок" + +#: ../src/list.c:841 #, c-format msgid "No column titles specified for List dialog.\n" msgstr "Не задані заголовки стовпчиків для діалогу зі списком\n" @@ -225,7 +229,7 @@ #: ../src/option.c:110 ../src/option.c:140 ../src/option.c:371 #: ../src/option.c:377 ../src/option.c:383 ../src/option.c:517 -#: ../src/option.c:894 ../src/option.c:933 +#: ../src/option.c:900 ../src/option.c:939 msgid "TEXT" msgstr "ТЕКСТ" @@ -234,8 +238,8 @@ msgstr "Задати вирівнювання тексту діалогу (left, center або right)" #: ../src/option.c:116 ../src/option.c:158 ../src/option.c:540 -#: ../src/option.c:694 ../src/option.c:770 ../src/option.c:798 -#: ../src/option.c:860 ../src/option.c:1061 +#: ../src/option.c:700 ../src/option.c:776 ../src/option.c:804 +#: ../src/option.c:866 ../src/option.c:1067 msgid "TYPE" msgstr "ТИП" @@ -293,8 +297,8 @@ msgstr "Задати краї вікна" #: ../src/option.c:178 ../src/option.c:245 ../src/option.c:546 -#: ../src/option.c:700 ../src/option.c:706 ../src/option.c:712 -#: ../src/option.c:718 ../src/option.c:724 ../src/option.c:804 +#: ../src/option.c:706 ../src/option.c:712 ../src/option.c:718 +#: ../src/option.c:724 ../src/option.c:730 ../src/option.c:810 msgid "NUMBER" msgstr "ЧИСЛО" @@ -338,7 +342,7 @@ msgid "Special type of dialog for XEMBED" msgstr "Спеціальний режим діалога для вбудовування" -#: ../src/option.c:239 ../src/option.c:786 +#: ../src/option.c:239 ../src/option.c:792 msgid "KEY" msgstr "КЛЮЧ" @@ -390,7 +394,7 @@ msgid "Set the format for the returned date" msgstr "Задати формат відображення дати" -#: ../src/option.c:293 ../src/option.c:564 ../src/option.c:611 +#: ../src/option.c:293 ../src/option.c:564 ../src/option.c:617 msgid "PATTERN" msgstr "ШАБЛОН" @@ -399,7 +403,7 @@ msgstr "Задати назву файлу з описом дат" #: ../src/option.c:299 ../src/option.c:327 ../src/option.c:447 -#: ../src/option.c:854 ../src/option.c:1079 ../src/option.c:1123 +#: ../src/option.c:860 ../src/option.c:1085 ../src/option.c:1129 msgid "FILENAME" msgstr "НАЗВА ФАЙЛУ" @@ -415,7 +419,7 @@ msgid "Set initial color value" msgstr "Задати початковий колір" -#: ../src/option.c:321 ../src/option.c:1037 ../src/option.c:1043 +#: ../src/option.c:321 ../src/option.c:1043 ../src/option.c:1049 msgid "COLOR" msgstr "КОЛІР" @@ -440,7 +444,7 @@ msgstr "Команда для обробки отриманих даних" #: ../src/option.c:355 ../src/option.c:413 ../src/option.c:425 -#: ../src/option.c:730 ../src/option.c:820 +#: ../src/option.c:736 ../src/option.c:826 msgid "CMD" msgstr "КОМАНДА" @@ -512,12 +516,12 @@ msgid "Activate save mode" msgstr "Активувати режим зберігання" -#: ../src/option.c:470 ../src/option.c:551 ../src/option.c:669 +#: ../src/option.c:470 ../src/option.c:551 ../src/option.c:675 msgid "Set output separator character" msgstr "Установити вихідний розділювач" #: ../src/option.c:471 ../src/option.c:552 ../src/option.c:558 -#: ../src/option.c:670 ../src/option.c:832 ../src/option.c:838 +#: ../src/option.c:676 ../src/option.c:838 ../src/option.c:844 msgid "SEPARATOR" msgstr "РОЗДІЛЮВАЧ" @@ -553,7 +557,7 @@ msgid "Set initial font" msgstr "Задати початковий шрифт" -#: ../src/option.c:511 ../src/option.c:878 ../src/option.c:1049 +#: ../src/option.c:511 ../src/option.c:884 ../src/option.c:1055 msgid "FONTNAME" msgstr "НАЗВА_ШРИФТУ" @@ -573,7 +577,7 @@ "Додати поле до форми (Тип поля: Н, RO, NUM, CHK, CB, CBE, FL, SFL, MFL, DIR, " "CDIR, MDIR, FN, MFL, DT, CLR, BTN, LBL або TXT)" -#: ../src/option.c:534 ../src/option.c:758 +#: ../src/option.c:534 ../src/option.c:764 msgid "LABEL[:TYPE]" msgstr "МІТКА[:ТИП]" @@ -589,35 +593,39 @@ msgid "Set separator character for combobox or scale data" msgstr "Задати розділювач для даних списку або числового поля" -#: ../src/option.c:573 +#: ../src/option.c:569 +msgid "Make form scrollable" +msgstr "Додати прокрутку до форми" + +#: ../src/option.c:579 msgid "Display icons box dialog" msgstr "Відобразити діалог з іконками швидкого доступу" -#: ../src/option.c:579 +#: ../src/option.c:585 msgid "Read data from .desktop files in specified directory" msgstr "Читати дані з файлів .desktop у вказаному каталозі" -#: ../src/option.c:580 +#: ../src/option.c:586 msgid "DIRECTORY" msgstr "КАТАЛОГ" -#: ../src/option.c:585 +#: ../src/option.c:591 msgid "Use compact (list) view" msgstr "Використовувати компактний вигляд (список)" -#: ../src/option.c:591 +#: ../src/option.c:597 msgid "Use GenericName field instead of Name for icon label" msgstr "Використовувати поле GenericName замість Name для мітки" -#: ../src/option.c:597 +#: ../src/option.c:603 msgid "Read data from stdin" msgstr "Читати дані зі стандартного вводу" -#: ../src/option.c:603 +#: ../src/option.c:609 msgid "Set the width of dialog items" msgstr "Задати ширину елемента діалогу" -#: ../src/option.c:610 +#: ../src/option.c:616 #, no-c-format msgid "" "Use specified pattern for launch command in terminal (default: xterm -e %s)" @@ -625,62 +633,62 @@ "Використовувати вказаний шаблон для запуску в терміналі (без шаблону: xterm -" "e %s)" -#: ../src/option.c:616 +#: ../src/option.c:622 msgid "Sort items by name instead of filename" msgstr "Сортувати по полю Назва замість назви файлу" -#: ../src/option.c:622 +#: ../src/option.c:628 msgid "Sort items in descending order" msgstr "Сортувати в порядку спадання" -#: ../src/option.c:628 +#: ../src/option.c:634 msgid "Activate items by single click" msgstr "Активувати елемент одним натисненням" -#: ../src/option.c:638 +#: ../src/option.c:644 msgid "Display list dialog" msgstr "Відобразити діалог зі списком" -#: ../src/option.c:644 +#: ../src/option.c:650 msgid "Don't show column headers" msgstr "Не показувати заголовки стовпчиків" -#: ../src/option.c:650 +#: ../src/option.c:656 msgid "Set the column header (TYPE - TEXT, NUM, FLT, CHK, RD, IMG, HD or TIP)" msgstr "" "Задати заголовок стовпчика (ТИП - TEXT, NUM, FLT, CHK, RD, IMG, HD або TIP)" -#: ../src/option.c:651 +#: ../src/option.c:657 msgid "COLUMN[:TYPE]" msgstr "СТОВПЧИК[:ТИП]" -#: ../src/option.c:656 +#: ../src/option.c:662 msgid "Use checkboxes for first column" msgstr "Використовувати відмітки для першого стовпчика" -#: ../src/option.c:662 +#: ../src/option.c:668 msgid "Use radioboxes for first column" msgstr "Використовувати перемикач для першого стовпчика" -#: ../src/option.c:675 +#: ../src/option.c:681 msgid "Allow multiple rows to be selected" msgstr "Дозволити вибір декількох рядків" -#: ../src/option.c:681 ../src/option.c:1084 +#: ../src/option.c:687 ../src/option.c:1090 msgid "Allow changes to text" msgstr "Дозволити змінювати текст" -#: ../src/option.c:687 +#: ../src/option.c:693 msgid "Print all data from list" msgstr "Виводити таблицю повністю" -#: ../src/option.c:693 +#: ../src/option.c:699 msgid "Set ellipsize mode for text columns (TYPE - NONE, START, MIDDLE or END)" msgstr "" "Задати тип урізання для текстових стовпчиків (ТИП - NONE, START, MIDDLE або " "END)" -#: ../src/option.c:699 +#: ../src/option.c:705 msgid "" "Print a specific column. By default or if 0 is specified will be printed all " "columns" @@ -688,15 +696,15 @@ "Виводити тільки вказаний стовпчик. Без вказівки або якщо стовпчик дорівнює " "0, будуть виведені усі стовпчики" -#: ../src/option.c:705 +#: ../src/option.c:711 msgid "Hide a specific column" msgstr "Сховати вказаний стовпчик" -#: ../src/option.c:711 +#: ../src/option.c:717 msgid "Set the column expandable by default. 0 sets all columns expandable" msgstr "Задати стовпчик, який розширюється. 0 розширює всі стовпчики" -#: ../src/option.c:717 +#: ../src/option.c:723 msgid "" "Set the quick search column. Default is first column. Set it to 0 for " "disable searching" @@ -704,470 +712,470 @@ "Задати стовпчик швидкого пошуку. Без вказівки використовується перший " "стовпчик. 0 забороняє пошук" -#: ../src/option.c:723 +#: ../src/option.c:729 msgid "Set the limit of rows in list" msgstr "Задати кількість рядків у списку" -#: ../src/option.c:729 +#: ../src/option.c:735 msgid "Set double-click action" msgstr "Дія для подвійного клацання мишки" -#: ../src/option.c:735 +#: ../src/option.c:741 msgid "Use regex in search" msgstr "Використовувати регулярні вирази в пошуку" -#: ../src/option.c:741 +#: ../src/option.c:747 msgid "Listen for data on stdin in addition to command-line" msgstr "Отримувати дані з потоку вводу додатково до командного рядка" -#: ../src/option.c:751 +#: ../src/option.c:757 msgid "Display multi progress bars dialog" msgstr "Відобразити діалог з декількома індикаторами виконання" -#: ../src/option.c:757 +#: ../src/option.c:763 msgid "Add the progress bar (TYPE - NORM, RTL or PULSE)" msgstr "Додати індикатор виконання (ТИП - NORM, RTL або PULSE)" -#: ../src/option.c:763 +#: ../src/option.c:769 msgid "Show vertical bars" msgstr "Відобразити вертикальні індикатори" -#: ../src/option.c:769 +#: ../src/option.c:775 msgid "Set alignment of bar labels (left, center or right)" msgstr "Задати вирівнювання міток індикаторів (left, center або right)" -#: ../src/option.c:779 +#: ../src/option.c:785 msgid "Display notebook dialog" msgstr "Відобразити діалог з вкладками" -#: ../src/option.c:785 +#: ../src/option.c:791 msgid "Identifier of embedded dialogs" msgstr "Ідентифікатор діалогів що вбудовуваються" -#: ../src/option.c:791 +#: ../src/option.c:797 msgid "Add a tab to notebook" msgstr "Додати вкладку" -#: ../src/option.c:792 +#: ../src/option.c:798 msgid "LABEL" msgstr "МІТКА" -#: ../src/option.c:797 +#: ../src/option.c:803 msgid "Set alignment of tab labels (left, center or right)" msgstr "Задати вирівнювання міток вкладок (left, center або right)" -#: ../src/option.c:803 +#: ../src/option.c:809 msgid "Set tab borders" msgstr "Задати краї вкладок" -#: ../src/option.c:813 +#: ../src/option.c:819 msgid "Display notification" msgstr "Відобразити діалог повідомлень" -#: ../src/option.c:819 +#: ../src/option.c:825 msgid "Set left-click action" msgstr "Дія для лівого клацання мишки" -#: ../src/option.c:825 +#: ../src/option.c:831 msgid "Listen for commands on stdin" msgstr "Читати команди зі стандартного вводу" -#: ../src/option.c:831 +#: ../src/option.c:837 msgid "Set separator character for menu values" msgstr "Встановити розділювач для значень меню" -#: ../src/option.c:837 +#: ../src/option.c:843 msgid "Set separator character for menu items" msgstr "Встановити розділювач для елементів меню" -#: ../src/option.c:847 +#: ../src/option.c:853 msgid "Display printing dialog" msgstr "Відобразити діалог друку" -#: ../src/option.c:853 +#: ../src/option.c:859 msgid "Source filename" msgstr "Назва файлу" -#: ../src/option.c:859 +#: ../src/option.c:865 msgid "Set source type (TYPE - TEXT, IMAGE or RAW)" msgstr "Задати тип даних (ТИП - TEXT, IMAGE або RAW)" -#: ../src/option.c:865 +#: ../src/option.c:871 msgid "Add headers to page" msgstr "Додати колонтитули до сторінки" -#: ../src/option.c:871 +#: ../src/option.c:877 msgid "Enable preview in print dialog" msgstr "Додати попередній перегляд до діалогу друку" -#: ../src/option.c:877 ../src/option.c:1048 +#: ../src/option.c:883 ../src/option.c:1054 msgid "Use specified font" msgstr "Використовувати вказаний шрифт" -#: ../src/option.c:887 +#: ../src/option.c:893 msgid "Display progress indication dialog" msgstr "Відобразити діалог прогресу" -#: ../src/option.c:893 +#: ../src/option.c:899 msgid "Set progress text" msgstr "Показувати текст на індикаторі" -#: ../src/option.c:899 +#: ../src/option.c:905 msgid "Set initial percentage" msgstr "Задати початковий процент" -#: ../src/option.c:900 +#: ../src/option.c:906 msgid "PERCENTAGE" msgstr "ВІДСОТКИ" -#: ../src/option.c:905 +#: ../src/option.c:911 msgid "Pulsate progress bar" msgstr "Пульсовий індикатор виконання" -#: ../src/option.c:912 +#: ../src/option.c:918 #, no-c-format msgid "Dismiss the dialog when 100% has been reached" msgstr "Закрити діалог по досягненні 100%" -#: ../src/option.c:919 +#: ../src/option.c:925 msgid "Kill parent process if cancel button is pressed" msgstr "Завершити батьківський процес, якщо натиснута кнопка відміни" -#: ../src/option.c:926 +#: ../src/option.c:932 msgid "Right-To-Left progress bar direction" msgstr "Напрямок індикатору Справа Наліво" -#: ../src/option.c:932 +#: ../src/option.c:938 msgid "Show log window" msgstr "Відобразити вікно журналу" -#: ../src/option.c:938 +#: ../src/option.c:944 msgid "Expand log window" msgstr "Розгорнути вікно журналу" -#: ../src/option.c:944 +#: ../src/option.c:950 msgid "Place log window above progress bar" msgstr "Розмістити вікно жуналу поверх індикатора виконання" -#: ../src/option.c:950 +#: ../src/option.c:956 msgid "Height of log window" msgstr "Висота вікна журналу" -#: ../src/option.c:960 +#: ../src/option.c:966 msgid "Display scale dialog" msgstr "Відобразити діалог масштабу" -#: ../src/option.c:966 +#: ../src/option.c:972 msgid "Set initial value" msgstr "Задати початкове значення" -#: ../src/option.c:967 ../src/option.c:973 ../src/option.c:979 -#: ../src/option.c:985 ../src/option.c:991 +#: ../src/option.c:973 ../src/option.c:979 ../src/option.c:985 +#: ../src/option.c:991 ../src/option.c:997 msgid "VALUE" msgstr "ЗНАЧЕННЯ" -#: ../src/option.c:972 +#: ../src/option.c:978 msgid "Set minimum value" msgstr "Задати мінімальне значення" -#: ../src/option.c:978 +#: ../src/option.c:984 msgid "Set maximum value" msgstr "Задати максимальне значення" -#: ../src/option.c:984 +#: ../src/option.c:990 msgid "Set step size" msgstr "Задати крок" -#: ../src/option.c:990 +#: ../src/option.c:996 msgid "Set paging size" msgstr "Задати крок сторінки" -#: ../src/option.c:996 +#: ../src/option.c:1002 msgid "Print partial values" msgstr "Виводити часткові значення" -#: ../src/option.c:1002 +#: ../src/option.c:1008 msgid "Hide value" msgstr "Сховати значення" -#: ../src/option.c:1008 +#: ../src/option.c:1014 msgid "Show vertical scale" msgstr "Відобразити вертикальну шкалу" -#: ../src/option.c:1014 +#: ../src/option.c:1020 msgid "Invert direction" msgstr "Інвертувати напрямок" -#: ../src/option.c:1020 +#: ../src/option.c:1026 msgid "Add mark to scale (may be used multiple times)" msgstr "Додати мітку шкали (може використовуватись декілька разів)" -#: ../src/option.c:1021 +#: ../src/option.c:1027 msgid "NAME:VALUE" msgstr "НАЗВА:ЗНАЧЕННЯ" -#: ../src/option.c:1030 +#: ../src/option.c:1036 msgid "Display text information dialog" msgstr "Відобразити діалог з текстовою інформацією" -#: ../src/option.c:1036 +#: ../src/option.c:1042 msgid "Use specified color for text" msgstr "Використовувати вказаний колір тексту" -#: ../src/option.c:1042 +#: ../src/option.c:1048 msgid "Use specified color for background" msgstr "Використовувати вказаний колір фону" -#: ../src/option.c:1054 +#: ../src/option.c:1060 msgid "Enable text wrapping" msgstr "Дозволити перенос тексту" -#: ../src/option.c:1060 +#: ../src/option.c:1066 msgid "Set justification (TYPE - left, right, center or fill)" msgstr "Встановити вирівнювання (ТИП - left, right, center або fill)" -#: ../src/option.c:1066 +#: ../src/option.c:1072 msgid "Set text margins" msgstr "Встановити відступи" -#: ../src/option.c:1067 +#: ../src/option.c:1073 msgid "SIZE" msgstr "РОЗМІР" -#: ../src/option.c:1072 +#: ../src/option.c:1078 msgid "Autoscroll to end of text" msgstr "Автопрокрутка в кінець тексту" -#: ../src/option.c:1078 +#: ../src/option.c:1084 msgid "Open file" msgstr "Відкрити файл" -#: ../src/option.c:1090 +#: ../src/option.c:1096 msgid "Make URI clickable" msgstr "Зробити посилання активними" -#: ../src/option.c:1096 +#: ../src/option.c:1102 msgid "Listen for data on stdin in addition to file" msgstr "Отримувати дані з потоку вводу додатково до файлу" -#: ../src/option.c:1106 +#: ../src/option.c:1112 msgid "Show about dialog" msgstr "Показати діалог 'Про програму'" -#: ../src/option.c:1112 +#: ../src/option.c:1118 msgid "Print version" msgstr "Вивести версію" -#: ../src/option.c:1122 +#: ../src/option.c:1128 msgid "Load extra arguments from file" msgstr "Завантажити додаткові аргументи з файлу" -#: ../src/option.c:1165 ../src/option.c:1376 +#: ../src/option.c:1171 ../src/option.c:1382 #, c-format msgid "Unknown align type: %s\n" msgstr "Невідомий тип вирівнювання: %s\n" -#: ../src/option.c:1318 +#: ../src/option.c:1324 #, c-format msgid "Mark %s doesn't have a value\n" msgstr "Помітці %s не надано значення\n" -#: ../src/option.c:1361 +#: ../src/option.c:1367 #, c-format msgid "Unknown buttons layout type: %s\n" msgstr "Невідомий тип розміщення кнопок: %s\n" -#: ../src/option.c:1393 +#: ../src/option.c:1399 #, c-format msgid "Unknown justification type: %s\n" msgstr "Невідомий тип вирівнювання: %s\n" -#: ../src/option.c:1429 +#: ../src/option.c:1435 #, c-format msgid "Unknown ellipsize type: %s\n" msgstr "Невідомий тип урізання: %s\n" -#: ../src/option.c:1444 +#: ../src/option.c:1450 #, c-format msgid "Unknown source type: %s\n" msgstr "Невідомий тип даних: %s\n" -#: ../src/option.c:1455 +#: ../src/option.c:1461 msgid "Progress log" msgstr "Вікно журналу" -#: ../src/option.c:1546 +#: ../src/option.c:1561 #, c-format msgid "Unknown signal: %s\n" msgstr "Невідомий сигнал: %s\n" -#: ../src/option.c:1686 +#: ../src/option.c:1701 msgid "File exist. Overwrite?" msgstr "Файл існує. Перезаписати?" -#: ../src/option.c:1774 +#: ../src/option.c:1789 msgid "Yet another dialoging program" msgstr "Програма для відображення діалогів" #. Adds general option entries -#: ../src/option.c:1778 +#: ../src/option.c:1793 msgid "General options" msgstr "Основні параметри" -#: ../src/option.c:1778 +#: ../src/option.c:1793 msgid "Show general options" msgstr "Показувати основні параметри" #. Adds calendar option entries -#: ../src/option.c:1784 +#: ../src/option.c:1799 msgid "Calendar options" msgstr "Параметри календаря" -#: ../src/option.c:1784 +#: ../src/option.c:1799 msgid "Show calendar options" msgstr "Показувати параметри календаря" #. Adds color option entries -#: ../src/option.c:1790 +#: ../src/option.c:1805 msgid "Color selection options" msgstr "Параметри діалогу вибору кольору" -#: ../src/option.c:1790 +#: ../src/option.c:1805 msgid "Show color selection options" msgstr "Показувати параметри діалогу вибору кольору" #. Adds dnd option entries -#: ../src/option.c:1796 +#: ../src/option.c:1811 msgid "DND options" msgstr "Параметри DND" -#: ../src/option.c:1796 +#: ../src/option.c:1811 msgid "Show drag-n-drop options" msgstr "Показувати параметри dnd" #. Adds entry option entries -#: ../src/option.c:1802 +#: ../src/option.c:1817 msgid "Text entry options" msgstr "Параметри вводу тексту" -#: ../src/option.c:1802 +#: ../src/option.c:1817 msgid "Show text entry options" msgstr "Показувати параметри вводу тексту" #. Adds file selection option entries -#: ../src/option.c:1808 +#: ../src/option.c:1823 msgid "File selection options" msgstr "Параметри діалогу вибору файлів" -#: ../src/option.c:1808 +#: ../src/option.c:1823 msgid "Show file selection options" msgstr "Показувати параметри діалогу вибору файлів" #. Add font selection option entries -#: ../src/option.c:1814 +#: ../src/option.c:1829 msgid "Font selection options" msgstr "Параметри діалогу вибору шрифту" -#: ../src/option.c:1814 +#: ../src/option.c:1829 msgid "Show font selection options" msgstr "Показувати параметри діалоги вибору шрифту" #. Add form option entries -#: ../src/option.c:1820 +#: ../src/option.c:1835 msgid "Form options" msgstr "Параметри діалогу форми" -#: ../src/option.c:1820 +#: ../src/option.c:1835 msgid "Show form options" msgstr "Показувати параметри діалогу форми" #. Add icons option entries -#: ../src/option.c:1826 +#: ../src/option.c:1841 msgid "Icons box options" msgstr "Параметри діалогу іконок" -#: ../src/option.c:1826 +#: ../src/option.c:1841 msgid "Show icons box options" msgstr "Показувати параметри діалогу іконок швидкого доступу" #. Adds list option entries -#: ../src/option.c:1832 +#: ../src/option.c:1847 msgid "List options" msgstr "Параметри списку" -#: ../src/option.c:1832 +#: ../src/option.c:1847 msgid "Show list options" msgstr "Показувати параметри списку" #. Adds multi progress option entries -#: ../src/option.c:1838 +#: ../src/option.c:1853 msgid "Multi progress bars options" msgstr "Параметри діалогу з декількома індикаторами" -#: ../src/option.c:1839 +#: ../src/option.c:1854 msgid "Show multi progress bars options" msgstr "Показувати параметри діалогу з декількома індикаторами" #. Adds notebook option entries -#: ../src/option.c:1845 +#: ../src/option.c:1860 msgid "Notebook options" msgstr "Параметри діалогу з вкладками" -#: ../src/option.c:1845 +#: ../src/option.c:1860 msgid "Show notebook dialog options" msgstr "Показувати параметри діалогу з вкладками" #. Adds notification option entries -#: ../src/option.c:1851 +#: ../src/option.c:1866 msgid "Notification icon options" msgstr "Параметри іконки повідомлень" -#: ../src/option.c:1852 +#: ../src/option.c:1867 msgid "Show notification icon options" msgstr "Показувати параметри іконки повідомлень" #. Adds print option entries -#: ../src/option.c:1858 +#: ../src/option.c:1873 msgid "Print dialog options" msgstr "Параметри діалогу друку" -#: ../src/option.c:1858 +#: ../src/option.c:1873 msgid "Show print dialog options" msgstr "Показувати параметри діалогу друку" #. Adds progress option entries -#: ../src/option.c:1864 +#: ../src/option.c:1879 msgid "Progress options" msgstr "Параметри прогресу" -#: ../src/option.c:1864 +#: ../src/option.c:1879 msgid "Show progress options" msgstr "Показувати параметри прогресу" #. Adds scale option entries -#: ../src/option.c:1870 +#: ../src/option.c:1885 msgid "Scale options" msgstr "Параметри масштабу" -#: ../src/option.c:1870 +#: ../src/option.c:1885 msgid "Show scale options" msgstr "Показувати параметри масштабу" #. Adds text option entries -#: ../src/option.c:1876 +#: ../src/option.c:1891 msgid "Text information options" msgstr "Параметри текстової інформації" -#: ../src/option.c:1876 +#: ../src/option.c:1891 msgid "Show text information options" msgstr "Показувати параметри текстової інформації" #. Adds miscellaneous option entries -#: ../src/option.c:1882 +#: ../src/option.c:1897 msgid "Miscellaneous options" msgstr "Додаткові параметри" -#: ../src/option.c:1882 +#: ../src/option.c:1897 msgid "Show miscellaneous options" msgstr "Показувати додаткові параметри" diff -Nru yad-0.20.3/po/zh_TW.po yad-0.21.0/po/zh_TW.po --- yad-0.20.3/po/zh_TW.po 2013-03-27 16:03:14.000000000 +0000 +++ yad-0.21.0/po/zh_TW.po 2013-05-10 06:00:48.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: yad 0.17.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-20 07:37+0200\n" +"POT-Creation-Date: 2013-05-10 09:00+0300\n" "PO-Revision-Date: 2012-02-28 16:08+0800\n" "Last-Translator: Wei-Lun Chao \n" "Language-Team: Chinese (traditional) \n" @@ -93,15 +93,15 @@ msgid "Select or create folder" msgstr "選取或建立資料夾" -#: ../src/form.c:461 +#: ../src/form.c:467 msgid "Select date" msgstr "選取日期" -#: ../src/form.c:637 +#: ../src/form.c:667 msgid "Select file" msgstr "選取檔案" -#: ../src/form.c:651 +#: ../src/form.c:681 msgid "Select folder" msgstr "選取資料夾" @@ -115,12 +115,12 @@ msgid "Unable to open directory %s: %s\n" msgstr "無法開啟目錄 %s:%s\n" -#: ../src/main.c:102 ../src/main.c:228 +#: ../src/main.c:102 ../src/main.c:227 #, c-format msgid "%d sec" msgstr "%d 秒" -#: ../src/main.c:608 +#: ../src/main.c:611 #, c-format msgid "Unable to parse command line: %s\n" msgstr "無法剖析命令列:%s\n" @@ -144,15 +144,20 @@ msgid "Yad notification" msgstr "Yad 通知" -#: ../src/list.c:746 +#: ../src/list.c:800 msgid "Add row" msgstr "加入列" -#: ../src/list.c:753 +#: ../src/list.c:807 msgid "Delete row" msgstr "刪除列" -#: ../src/list.c:779 +#: ../src/list.c:814 +#, fuzzy +msgid "Duplicate row" +msgstr "刪除列" + +#: ../src/list.c:841 #, c-format msgid "No column titles specified for List dialog.\n" msgstr "沒有指定的欄標題用於清單對話框。\n" @@ -219,7 +224,7 @@ #: ../src/option.c:110 ../src/option.c:140 ../src/option.c:371 #: ../src/option.c:377 ../src/option.c:383 ../src/option.c:517 -#: ../src/option.c:894 ../src/option.c:933 +#: ../src/option.c:900 ../src/option.c:939 msgid "TEXT" msgstr "文字" @@ -228,8 +233,8 @@ msgstr "設定對話框文字對齊 (靠左、置中,靠右)" #: ../src/option.c:116 ../src/option.c:158 ../src/option.c:540 -#: ../src/option.c:694 ../src/option.c:770 ../src/option.c:798 -#: ../src/option.c:860 ../src/option.c:1061 +#: ../src/option.c:700 ../src/option.c:776 ../src/option.c:804 +#: ../src/option.c:866 ../src/option.c:1067 msgid "TYPE" msgstr "型態" @@ -286,8 +291,8 @@ msgstr "設定視窗邊線" #: ../src/option.c:178 ../src/option.c:245 ../src/option.c:546 -#: ../src/option.c:700 ../src/option.c:706 ../src/option.c:712 -#: ../src/option.c:718 ../src/option.c:724 ../src/option.c:804 +#: ../src/option.c:706 ../src/option.c:712 ../src/option.c:718 +#: ../src/option.c:724 ../src/option.c:730 ../src/option.c:810 msgid "NUMBER" msgstr "編號" @@ -331,7 +336,7 @@ msgid "Special type of dialog for XEMBED" msgstr "" -#: ../src/option.c:239 ../src/option.c:786 +#: ../src/option.c:239 ../src/option.c:792 msgid "KEY" msgstr "" @@ -384,7 +389,7 @@ msgid "Set the format for the returned date" msgstr "設定回傳日期的格式" -#: ../src/option.c:293 ../src/option.c:564 ../src/option.c:611 +#: ../src/option.c:293 ../src/option.c:564 ../src/option.c:617 msgid "PATTERN" msgstr "胚騰" @@ -393,7 +398,7 @@ msgstr "以約會細節設定檔名" #: ../src/option.c:299 ../src/option.c:327 ../src/option.c:447 -#: ../src/option.c:854 ../src/option.c:1079 ../src/option.c:1123 +#: ../src/option.c:860 ../src/option.c:1085 ../src/option.c:1129 msgid "FILENAME" msgstr "檔名" @@ -409,7 +414,7 @@ msgid "Set initial color value" msgstr "設定初始顏色值" -#: ../src/option.c:321 ../src/option.c:1037 ../src/option.c:1043 +#: ../src/option.c:321 ../src/option.c:1043 ../src/option.c:1049 msgid "COLOR" msgstr "顏色" @@ -434,7 +439,7 @@ msgstr "設定處理拖放資料的命令" #: ../src/option.c:355 ../src/option.c:413 ../src/option.c:425 -#: ../src/option.c:730 ../src/option.c:820 +#: ../src/option.c:736 ../src/option.c:826 msgid "CMD" msgstr "命令" @@ -506,12 +511,12 @@ msgid "Activate save mode" msgstr "啟用儲存模式" -#: ../src/option.c:470 ../src/option.c:551 ../src/option.c:669 +#: ../src/option.c:470 ../src/option.c:551 ../src/option.c:675 msgid "Set output separator character" msgstr "設定輸出的分隔字元" #: ../src/option.c:471 ../src/option.c:552 ../src/option.c:558 -#: ../src/option.c:670 ../src/option.c:832 ../src/option.c:838 +#: ../src/option.c:676 ../src/option.c:838 ../src/option.c:844 msgid "SEPARATOR" msgstr "分隔符號" @@ -548,7 +553,7 @@ msgid "Set initial font" msgstr "設定初始字型" -#: ../src/option.c:511 ../src/option.c:878 ../src/option.c:1049 +#: ../src/option.c:511 ../src/option.c:884 ../src/option.c:1055 msgid "FONTNAME" msgstr "字型名稱" @@ -568,7 +573,7 @@ "加入欄位到表單 (型態 - H, RO, NUM, CHK, CB, CBE, FL, SFL, MFL, DIR, CDIR, " "MDIR, FN, DT, CLR, BTN, LBL 或 TXT)" -#: ../src/option.c:534 ../src/option.c:758 +#: ../src/option.c:534 ../src/option.c:764 msgid "LABEL[:TYPE]" msgstr "標籤[:型態]" @@ -585,588 +590,593 @@ msgid "Set separator character for combobox or scale data" msgstr "設定用於複合方塊或尺度資料的分隔字元" -#: ../src/option.c:573 +#: ../src/option.c:569 +#, fuzzy +msgid "Make form scrollable" +msgstr "讓 URI 可點選" + +#: ../src/option.c:579 msgid "Display icons box dialog" msgstr "顯示圖示方塊對話框" -#: ../src/option.c:579 +#: ../src/option.c:585 msgid "Read data from .desktop files in specified directory" msgstr "在指定的目錄中從 .desktop 檔案讀取資料" -#: ../src/option.c:580 +#: ../src/option.c:586 msgid "DIRECTORY" msgstr "目錄" -#: ../src/option.c:585 +#: ../src/option.c:591 msgid "Use compact (list) view" msgstr "使用壓縮 (清單) 檢視" -#: ../src/option.c:591 +#: ../src/option.c:597 msgid "Use GenericName field instead of Name for icon label" msgstr "使用 GenericName 欄位以代替 Name 做為圖示標籤" -#: ../src/option.c:597 +#: ../src/option.c:603 msgid "Read data from stdin" msgstr "從標準輸入讀取資料" -#: ../src/option.c:603 +#: ../src/option.c:609 msgid "Set the width of dialog items" msgstr "設定對話框項目的寬度" -#: ../src/option.c:610 +#: ../src/option.c:616 #, no-c-format msgid "" "Use specified pattern for launch command in terminal (default: xterm -e %s)" msgstr "使用指定的胚騰以在終端機中啟動命令 (預設:xterm -e %s)" -#: ../src/option.c:616 +#: ../src/option.c:622 msgid "Sort items by name instead of filename" msgstr "依名稱而非檔名排序項目" -#: ../src/option.c:622 +#: ../src/option.c:628 msgid "Sort items in descending order" msgstr "以遞降排序項目" -#: ../src/option.c:628 +#: ../src/option.c:634 msgid "Activate items by single click" msgstr "" -#: ../src/option.c:638 +#: ../src/option.c:644 msgid "Display list dialog" msgstr "顯示清單對話框" -#: ../src/option.c:644 +#: ../src/option.c:650 msgid "Don't show column headers" msgstr "不顯示欄標題" -#: ../src/option.c:650 +#: ../src/option.c:656 #, fuzzy msgid "Set the column header (TYPE - TEXT, NUM, FLT, CHK, RD, IMG, HD or TIP)" msgstr "設定欄標題 (型態 - TEXT, NUM, FLT, CHK, IMG 或 TIP)" -#: ../src/option.c:651 +#: ../src/option.c:657 msgid "COLUMN[:TYPE]" msgstr "欄[:型態]" -#: ../src/option.c:656 +#: ../src/option.c:662 #, fuzzy msgid "Use checkboxes for first column" msgstr "首欄使用核取方塊" -#: ../src/option.c:662 +#: ../src/option.c:668 #, fuzzy msgid "Use radioboxes for first column" msgstr "首欄使用核取方塊" -#: ../src/option.c:675 +#: ../src/option.c:681 msgid "Allow multiple rows to be selected" msgstr "允許選取多列" -#: ../src/option.c:681 ../src/option.c:1084 +#: ../src/option.c:687 ../src/option.c:1090 msgid "Allow changes to text" msgstr "允許變更文字" -#: ../src/option.c:687 +#: ../src/option.c:693 msgid "Print all data from list" msgstr "從清單印出所有資料" -#: ../src/option.c:693 +#: ../src/option.c:699 msgid "Set ellipsize mode for text columns (TYPE - NONE, START, MIDDLE or END)" msgstr "設定文字欄的省略模式 (型態 - NONE, START, MIDDLE 或 END)" -#: ../src/option.c:699 +#: ../src/option.c:705 msgid "" "Print a specific column. By default or if 0 is specified will be printed all " "columns" msgstr "印出特定的欄。按照預設或是如果指定為 0 將印出所有欄" -#: ../src/option.c:705 +#: ../src/option.c:711 msgid "Hide a specific column" msgstr "隱藏特定欄" -#: ../src/option.c:711 +#: ../src/option.c:717 msgid "Set the column expandable by default. 0 sets all columns expandable" msgstr "設定欄預設可擴展。0 將設定所有欄為可擴展" -#: ../src/option.c:717 +#: ../src/option.c:723 msgid "" "Set the quick search column. Default is first column. Set it to 0 for " "disable searching" msgstr "設定快速搜尋欄。預設是首欄。設定它為 0 表示停用搜尋" -#: ../src/option.c:723 +#: ../src/option.c:729 msgid "Set the limit of rows in list" msgstr "設定清單中列數的限制" -#: ../src/option.c:729 +#: ../src/option.c:735 msgid "Set double-click action" msgstr "設定連按兩下滑鼠的動作" -#: ../src/option.c:735 +#: ../src/option.c:741 msgid "Use regex in search" msgstr "在搜尋中使用 regex" -#: ../src/option.c:741 +#: ../src/option.c:747 msgid "Listen for data on stdin in addition to command-line" msgstr "" -#: ../src/option.c:751 +#: ../src/option.c:757 msgid "Display multi progress bars dialog" msgstr "顯示多重進度條對話框" -#: ../src/option.c:757 +#: ../src/option.c:763 msgid "Add the progress bar (TYPE - NORM, RTL or PULSE)" msgstr "加入進度條 (型態 - NORM, RTL 或 PULSE)" -#: ../src/option.c:763 +#: ../src/option.c:769 msgid "Show vertical bars" msgstr "顯示垂直條" -#: ../src/option.c:769 +#: ../src/option.c:775 #, fuzzy msgid "Set alignment of bar labels (left, center or right)" msgstr "設定欄位標籤的對齊 (靠左、置中或靠右)" -#: ../src/option.c:779 +#: ../src/option.c:785 #, fuzzy msgid "Display notebook dialog" msgstr "顯示圖示方塊對話框" -#: ../src/option.c:785 +#: ../src/option.c:791 msgid "Identifier of embedded dialogs" msgstr "" -#: ../src/option.c:791 +#: ../src/option.c:797 msgid "Add a tab to notebook" msgstr "" -#: ../src/option.c:792 +#: ../src/option.c:798 msgid "LABEL" msgstr "" -#: ../src/option.c:797 +#: ../src/option.c:803 #, fuzzy msgid "Set alignment of tab labels (left, center or right)" msgstr "設定欄位標籤的對齊 (靠左、置中或靠右)" -#: ../src/option.c:803 +#: ../src/option.c:809 #, fuzzy msgid "Set tab borders" msgstr "設定視窗邊線" -#: ../src/option.c:813 +#: ../src/option.c:819 msgid "Display notification" msgstr "顯示通知" -#: ../src/option.c:819 +#: ../src/option.c:825 msgid "Set left-click action" msgstr "設定按一下滑鼠左鍵的動作" -#: ../src/option.c:825 +#: ../src/option.c:831 msgid "Listen for commands on stdin" msgstr "聽取來自標準輸入的命令" -#: ../src/option.c:831 +#: ../src/option.c:837 msgid "Set separator character for menu values" msgstr "設定選單值的分隔字元" -#: ../src/option.c:837 +#: ../src/option.c:843 msgid "Set separator character for menu items" msgstr "設定功能表項目的分隔字元" -#: ../src/option.c:847 +#: ../src/option.c:853 msgid "Display printing dialog" msgstr "顯示列印對話框" -#: ../src/option.c:853 +#: ../src/option.c:859 msgid "Source filename" msgstr "來源檔名" -#: ../src/option.c:859 +#: ../src/option.c:865 msgid "Set source type (TYPE - TEXT, IMAGE or RAW)" msgstr "設定來源型態 (型態 - TEXT, IMAGE 或 RAW)" -#: ../src/option.c:865 +#: ../src/option.c:871 msgid "Add headers to page" msgstr "將頁首加入頁面" -#: ../src/option.c:871 +#: ../src/option.c:877 msgid "Enable preview in print dialog" msgstr "在列印對話框中啟用預覽" -#: ../src/option.c:877 ../src/option.c:1048 +#: ../src/option.c:883 ../src/option.c:1054 msgid "Use specified font" msgstr "使用指定的字型" -#: ../src/option.c:887 +#: ../src/option.c:893 msgid "Display progress indication dialog" msgstr "顯示進度指示對話框" -#: ../src/option.c:893 +#: ../src/option.c:899 msgid "Set progress text" msgstr "設定進度文字" -#: ../src/option.c:899 +#: ../src/option.c:905 msgid "Set initial percentage" msgstr "設定初始百分比" -#: ../src/option.c:900 +#: ../src/option.c:906 msgid "PERCENTAGE" msgstr "百分比" -#: ../src/option.c:905 +#: ../src/option.c:911 msgid "Pulsate progress bar" msgstr "脈衝式進度條" -#: ../src/option.c:912 +#: ../src/option.c:918 #, no-c-format msgid "Dismiss the dialog when 100% has been reached" msgstr "當達到 100% 時去除對話框" -#: ../src/option.c:919 +#: ../src/option.c:925 msgid "Kill parent process if cancel button is pressed" msgstr "如果按下取消按鈕就砍除上層進程" -#: ../src/option.c:926 +#: ../src/option.c:932 msgid "Right-To-Left progress bar direction" msgstr "進度條方向由右到左" -#: ../src/option.c:932 +#: ../src/option.c:938 msgid "Show log window" msgstr "" -#: ../src/option.c:938 +#: ../src/option.c:944 msgid "Expand log window" msgstr "" -#: ../src/option.c:944 +#: ../src/option.c:950 #, fuzzy msgid "Place log window above progress bar" msgstr "脈衝式進度條" -#: ../src/option.c:950 +#: ../src/option.c:956 msgid "Height of log window" msgstr "" -#: ../src/option.c:960 +#: ../src/option.c:966 msgid "Display scale dialog" msgstr "顯示尺度對話框" -#: ../src/option.c:966 +#: ../src/option.c:972 msgid "Set initial value" msgstr "設定初始值" -#: ../src/option.c:967 ../src/option.c:973 ../src/option.c:979 -#: ../src/option.c:985 ../src/option.c:991 +#: ../src/option.c:973 ../src/option.c:979 ../src/option.c:985 +#: ../src/option.c:991 ../src/option.c:997 msgid "VALUE" msgstr "值" -#: ../src/option.c:972 +#: ../src/option.c:978 msgid "Set minimum value" msgstr "設定最小值" -#: ../src/option.c:978 +#: ../src/option.c:984 msgid "Set maximum value" msgstr "設定最大值" -#: ../src/option.c:984 +#: ../src/option.c:990 msgid "Set step size" msgstr "設定步增值" -#: ../src/option.c:990 +#: ../src/option.c:996 msgid "Set paging size" msgstr "設定換頁大小" -#: ../src/option.c:996 +#: ../src/option.c:1002 msgid "Print partial values" msgstr "列印部分值" -#: ../src/option.c:1002 +#: ../src/option.c:1008 msgid "Hide value" msgstr "隱藏值" -#: ../src/option.c:1008 +#: ../src/option.c:1014 msgid "Show vertical scale" msgstr "顯示垂直尺度" -#: ../src/option.c:1014 +#: ../src/option.c:1020 msgid "Invert direction" msgstr "反相方向" -#: ../src/option.c:1020 +#: ../src/option.c:1026 msgid "Add mark to scale (may be used multiple times)" msgstr "將標記加入尺度 (也許會被多次使用)" -#: ../src/option.c:1021 +#: ../src/option.c:1027 msgid "NAME:VALUE" msgstr "名稱:值" -#: ../src/option.c:1030 +#: ../src/option.c:1036 msgid "Display text information dialog" msgstr "顯示文字資訊對話框" -#: ../src/option.c:1036 +#: ../src/option.c:1042 msgid "Use specified color for text" msgstr "使用指定的文字顏色" -#: ../src/option.c:1042 +#: ../src/option.c:1048 msgid "Use specified color for background" msgstr "使用指定的背景顏色" -#: ../src/option.c:1054 +#: ../src/option.c:1060 msgid "Enable text wrapping" msgstr "啟用文字環繞" -#: ../src/option.c:1060 +#: ../src/option.c:1066 msgid "Set justification (TYPE - left, right, center or fill)" msgstr "設定調整 (型態 - left, right, center 或 fill)" -#: ../src/option.c:1066 +#: ../src/option.c:1072 msgid "Set text margins" msgstr "設定文字邊距" -#: ../src/option.c:1067 +#: ../src/option.c:1073 msgid "SIZE" msgstr "大小" -#: ../src/option.c:1072 +#: ../src/option.c:1078 msgid "Autoscroll to end of text" msgstr "自動捲動到文末" -#: ../src/option.c:1078 +#: ../src/option.c:1084 msgid "Open file" msgstr "開啟檔案" -#: ../src/option.c:1090 +#: ../src/option.c:1096 msgid "Make URI clickable" msgstr "讓 URI 可點選" -#: ../src/option.c:1096 +#: ../src/option.c:1102 msgid "Listen for data on stdin in addition to file" msgstr "" -#: ../src/option.c:1106 +#: ../src/option.c:1112 msgid "Show about dialog" msgstr "顯示關於對話框" -#: ../src/option.c:1112 +#: ../src/option.c:1118 msgid "Print version" msgstr "印出版本" -#: ../src/option.c:1122 +#: ../src/option.c:1128 msgid "Load extra arguments from file" msgstr "從檔案載入額外引數" -#: ../src/option.c:1165 ../src/option.c:1376 +#: ../src/option.c:1171 ../src/option.c:1382 #, c-format msgid "Unknown align type: %s\n" msgstr "不明的對齊型態:%s\n" -#: ../src/option.c:1318 +#: ../src/option.c:1324 #, c-format msgid "Mark %s doesn't have a value\n" msgstr "標記 %s 沒有值\n" -#: ../src/option.c:1361 +#: ../src/option.c:1367 #, fuzzy, c-format msgid "Unknown buttons layout type: %s\n" msgstr "不明的來源型態:%s\n" -#: ../src/option.c:1393 +#: ../src/option.c:1399 #, c-format msgid "Unknown justification type: %s\n" msgstr "不明的調整型態:%s\n" -#: ../src/option.c:1429 +#: ../src/option.c:1435 #, c-format msgid "Unknown ellipsize type: %s\n" msgstr "不明的省略型態:%s\n" -#: ../src/option.c:1444 +#: ../src/option.c:1450 #, c-format msgid "Unknown source type: %s\n" msgstr "不明的來源型態:%s\n" -#: ../src/option.c:1455 +#: ../src/option.c:1461 #, fuzzy msgid "Progress log" msgstr "進度選項" -#: ../src/option.c:1546 +#: ../src/option.c:1561 #, fuzzy, c-format msgid "Unknown signal: %s\n" msgstr "不明的對齊型態:%s\n" -#: ../src/option.c:1686 +#: ../src/option.c:1701 msgid "File exist. Overwrite?" msgstr "檔案已存在。覆寫?" -#: ../src/option.c:1774 +#: ../src/option.c:1789 msgid "Yet another dialoging program" msgstr "又一個對話框程式" #. Adds general option entries -#: ../src/option.c:1778 +#: ../src/option.c:1793 msgid "General options" msgstr "一般選項" -#: ../src/option.c:1778 +#: ../src/option.c:1793 msgid "Show general options" msgstr "顯示一般選項" #. Adds calendar option entries -#: ../src/option.c:1784 +#: ../src/option.c:1799 msgid "Calendar options" msgstr "行事曆選項" -#: ../src/option.c:1784 +#: ../src/option.c:1799 msgid "Show calendar options" msgstr "顯示行事曆選項" #. Adds color option entries -#: ../src/option.c:1790 +#: ../src/option.c:1805 msgid "Color selection options" msgstr "顏色選擇選項" -#: ../src/option.c:1790 +#: ../src/option.c:1805 msgid "Show color selection options" msgstr "顯示顏色選擇選項" #. Adds dnd option entries -#: ../src/option.c:1796 +#: ../src/option.c:1811 msgid "DND options" msgstr "拖放選項" -#: ../src/option.c:1796 +#: ../src/option.c:1811 msgid "Show drag-n-drop options" msgstr "顯示拖放選項" #. Adds entry option entries -#: ../src/option.c:1802 +#: ../src/option.c:1817 msgid "Text entry options" msgstr "文字輸入框選項" -#: ../src/option.c:1802 +#: ../src/option.c:1817 msgid "Show text entry options" msgstr "顯示文字輸入框選項" #. Adds file selection option entries -#: ../src/option.c:1808 +#: ../src/option.c:1823 msgid "File selection options" msgstr "檔案選取選項" -#: ../src/option.c:1808 +#: ../src/option.c:1823 msgid "Show file selection options" msgstr "顯示檔案選取選項" #. Add font selection option entries -#: ../src/option.c:1814 +#: ../src/option.c:1829 msgid "Font selection options" msgstr "字型選擇選項" -#: ../src/option.c:1814 +#: ../src/option.c:1829 msgid "Show font selection options" msgstr "顯示字型選擇選項" #. Add form option entries -#: ../src/option.c:1820 +#: ../src/option.c:1835 msgid "Form options" msgstr "表單選項" -#: ../src/option.c:1820 +#: ../src/option.c:1835 msgid "Show form options" msgstr "顯示表單選項" #. Add icons option entries -#: ../src/option.c:1826 +#: ../src/option.c:1841 msgid "Icons box options" msgstr "圖示框選項" -#: ../src/option.c:1826 +#: ../src/option.c:1841 msgid "Show icons box options" msgstr "顯示圖示框選項" #. Adds list option entries -#: ../src/option.c:1832 +#: ../src/option.c:1847 msgid "List options" msgstr "清單選項" -#: ../src/option.c:1832 +#: ../src/option.c:1847 msgid "Show list options" msgstr "顯示清單選項" #. Adds multi progress option entries -#: ../src/option.c:1838 +#: ../src/option.c:1853 msgid "Multi progress bars options" msgstr "多重進度條選項" -#: ../src/option.c:1839 +#: ../src/option.c:1854 #, fuzzy msgid "Show multi progress bars options" msgstr "顯示多重進度條選項" #. Adds notebook option entries -#: ../src/option.c:1845 +#: ../src/option.c:1860 #, fuzzy msgid "Notebook options" msgstr "拖放選項" -#: ../src/option.c:1845 +#: ../src/option.c:1860 #, fuzzy msgid "Show notebook dialog options" msgstr "顯示列印對話框選項" #. Adds notification option entries -#: ../src/option.c:1851 +#: ../src/option.c:1866 msgid "Notification icon options" msgstr "通知圖示選項" -#: ../src/option.c:1852 +#: ../src/option.c:1867 msgid "Show notification icon options" msgstr "顯示通知圖示選項" #. Adds print option entries -#: ../src/option.c:1858 +#: ../src/option.c:1873 msgid "Print dialog options" msgstr "列印對話框選項" -#: ../src/option.c:1858 +#: ../src/option.c:1873 msgid "Show print dialog options" msgstr "顯示列印對話框選項" #. Adds progress option entries -#: ../src/option.c:1864 +#: ../src/option.c:1879 msgid "Progress options" msgstr "進度選項" -#: ../src/option.c:1864 +#: ../src/option.c:1879 msgid "Show progress options" msgstr "顯示進度選項" #. Adds scale option entries -#: ../src/option.c:1870 +#: ../src/option.c:1885 msgid "Scale options" msgstr "尺度選項" -#: ../src/option.c:1870 +#: ../src/option.c:1885 msgid "Show scale options" msgstr "顯示尺度選項" #. Adds text option entries -#: ../src/option.c:1876 +#: ../src/option.c:1891 msgid "Text information options" msgstr "文字資訊選項" -#: ../src/option.c:1876 +#: ../src/option.c:1891 msgid "Show text information options" msgstr "顯示文字資訊選項" #. Adds miscellaneous option entries -#: ../src/option.c:1882 +#: ../src/option.c:1897 msgid "Miscellaneous options" msgstr "雜項選項" -#: ../src/option.c:1882 +#: ../src/option.c:1897 msgid "Show miscellaneous options" msgstr "顯示雜項選項" diff -Nru yad-0.20.3/src/form.c yad-0.21.0/src/form.c --- yad-0.20.3/src/form.c 2013-04-05 08:09:47.000000000 +0000 +++ yad-0.21.0/src/form.c 2013-05-10 05:58:56.000000000 +0000 @@ -505,6 +505,7 @@ GtkWidget * form_create_widget (GtkWidget * dlg) { + GtkWidget *sw, *vp, *tbl; GtkWidget *w = NULL; if (options.form_data.fields) @@ -521,12 +522,34 @@ rows++; #if !GTK_CHECK_VERSION(3,0,0) - w = gtk_table_new (n_fields, 2 * options.form_data.columns, FALSE); + tbl = gtk_table_new (n_fields, 2 * options.form_data.columns, FALSE); #else - w = gtk_grid_new (); - gtk_grid_set_row_spacing (GTK_GRID (w), 5); - gtk_grid_set_column_spacing (GTK_GRID (w), 5); -#endif + tbl = gtk_grid_new (); + gtk_grid_set_row_spacing (GTK_GRID (tbl), 5); + gtk_grid_set_column_spacing (GTK_GRID (tbl), 5); +#endif + + if (options.form_data.scroll) + { + /* create scrolled container */ + GtkAdjustment *hadj, *vadj; + + sw = gtk_scrolled_window_new (NULL, NULL); + gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (sw), GTK_SHADOW_NONE); + gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); + + hadj = gtk_scrolled_window_get_hadjustment (GTK_SCROLLED_WINDOW (sw)); + vadj = gtk_scrolled_window_get_vadjustment (GTK_SCROLLED_WINDOW (sw)); + + vp = gtk_viewport_new (hadj, vadj); + gtk_viewport_set_shadow_type (GTK_VIEWPORT (vp), GTK_SHADOW_NONE); + gtk_container_add (GTK_CONTAINER (sw), vp); + + gtk_container_add (GTK_CONTAINER (vp), tbl); + w = sw; + } + else + w = tbl; /* create form */ for (i = 0; i < n_fields; i++) @@ -546,9 +569,9 @@ gtk_widget_set_name (l, "yad-form-flabel"); gtk_misc_set_alignment (GTK_MISC (l), options.common_data.align, 0.5); #if !GTK_CHECK_VERSION(3,0,0) - gtk_table_attach (GTK_TABLE (w), l, col * 2, 1 + col * 2, row, row + 1, GTK_FILL, 0, 5, 5); + gtk_table_attach (GTK_TABLE (tbl), l, col * 2, 1 + col * 2, row, row + 1, GTK_FILL, 0, 5, 5); #else - gtk_grid_attach (GTK_GRID (w), l, col * 2, row, 1, 1); + gtk_grid_attach (GTK_GRID (tbl), l, col * 2, row, 1, 1); #endif g_free (buf); } @@ -567,10 +590,10 @@ else if (fld->type == YAD_FIELD_READ_ONLY) gtk_widget_set_sensitive (e, FALSE); #if !GTK_CHECK_VERSION(3,0,0) - gtk_table_attach (GTK_TABLE (w), e, 1 + col * 2, 2 + col * 2, row, row + 1, + gtk_table_attach (GTK_TABLE (tbl), e, 1 + col * 2, 2 + col * 2, row, row + 1, GTK_EXPAND | GTK_FILL, 0, 5, 5); #else - gtk_grid_attach (GTK_GRID (w), e, 1 + col * 2, row, 1, 1); + gtk_grid_attach (GTK_GRID (tbl), e, 1 + col * 2, row, 1, 1); gtk_widget_set_hexpand (e, TRUE); #endif fields = g_slist_append (fields, e); @@ -580,10 +603,10 @@ e = gtk_spin_button_new_with_range (0.0, 65525.0, 1.0); gtk_widget_set_name (e, "yad-form-spin"); #if !GTK_CHECK_VERSION(3,0,0) - gtk_table_attach (GTK_TABLE (w), e, 1 + col * 2, 2 + col * 2, row, row + 1, + gtk_table_attach (GTK_TABLE (tbl), e, 1 + col * 2, 2 + col * 2, row, row + 1, GTK_EXPAND | GTK_FILL, 0, 5, 5); #else - gtk_grid_attach (GTK_GRID (w), e, 1 + col * 2, row, 1, 1); + gtk_grid_attach (GTK_GRID (tbl), e, 1 + col * 2, row, 1, 1); gtk_widget_set_hexpand (e, TRUE); #endif fields = g_slist_append (fields, e); @@ -595,10 +618,10 @@ e = gtk_check_button_new_with_label (buf); gtk_widget_set_name (e, "yad-form-check"); #if !GTK_CHECK_VERSION(3,0,0) - gtk_table_attach (GTK_TABLE (w), e, col * 2, 2 + col * 2, row, row + 1, + gtk_table_attach (GTK_TABLE (tbl), e, col * 2, 2 + col * 2, row, row + 1, GTK_EXPAND | GTK_FILL, 0, 5, 5); #else - gtk_grid_attach (GTK_GRID (w), e, col * 2, row, 2, 1); + gtk_grid_attach (GTK_GRID (tbl), e, col * 2, row, 2, 1); gtk_widget_set_hexpand (e, TRUE); #endif fields = g_slist_append (fields, e); @@ -614,10 +637,10 @@ #endif gtk_widget_set_name (e, "yad-form-combo"); #if !GTK_CHECK_VERSION(3,0,0) - gtk_table_attach (GTK_TABLE (w), e, 1 + col * 2, 2 + col * 2, row, row + 1, + gtk_table_attach (GTK_TABLE (tbl), e, 1 + col * 2, 2 + col * 2, row, row + 1, GTK_EXPAND | GTK_FILL, 0, 5, 5); #else - gtk_grid_attach (GTK_GRID (w), e, 1 + col * 2, row, 1, 1); + gtk_grid_attach (GTK_GRID (tbl), e, 1 + col * 2, row, 1, 1); gtk_widget_set_hexpand (e, TRUE); #endif fields = g_slist_append (fields, e); @@ -631,10 +654,10 @@ #endif gtk_widget_set_name (e, "yad-form-edit-combo"); #if !GTK_CHECK_VERSION(3,0,0) - gtk_table_attach (GTK_TABLE (w), e, 1 + col * 2, 2 + col * 2, row, row + 1, + gtk_table_attach (GTK_TABLE (tbl), e, 1 + col * 2, 2 + col * 2, row, row + 1, GTK_EXPAND | GTK_FILL, 0, 5, 5); #else - gtk_grid_attach (GTK_GRID (w), e, 1 + col * 2, row, 1, 1); + gtk_grid_attach (GTK_GRID (tbl), e, 1 + col * 2, row, 1, 1); gtk_widget_set_hexpand (e, TRUE); #endif fields = g_slist_append (fields, e); @@ -645,10 +668,10 @@ gtk_widget_set_name (e, "yad-form-file"); gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (e), g_get_current_dir ()); #if !GTK_CHECK_VERSION(3,0,0) - gtk_table_attach (GTK_TABLE (w), e, 1 + col * 2, 2 + col * 2, row, row + 1, + gtk_table_attach (GTK_TABLE (tbl), e, 1 + col * 2, 2 + col * 2, row, row + 1, GTK_EXPAND | GTK_FILL, 0, 5, 5); #else - gtk_grid_attach (GTK_GRID (w), e, 1 + col * 2, row, 1, 1); + gtk_grid_attach (GTK_GRID (tbl), e, 1 + col * 2, row, 1, 1); gtk_widget_set_hexpand (e, TRUE); #endif fields = g_slist_append (fields, e); @@ -659,10 +682,10 @@ gtk_widget_set_name (e, "yad-form-file"); gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (e), g_get_current_dir ()); #if !GTK_CHECK_VERSION(3,0,0) - gtk_table_attach (GTK_TABLE (w), e, 1 + col * 2, 2 + col * 2, row, row + 1, + gtk_table_attach (GTK_TABLE (tbl), e, 1 + col * 2, 2 + col * 2, row, row + 1, GTK_EXPAND | GTK_FILL, 0, 5, 5); #else - gtk_grid_attach (GTK_GRID (w), e, 1 + col * 2, row, 1, 1); + gtk_grid_attach (GTK_GRID (tbl), e, 1 + col * 2, row, 1, 1); gtk_widget_set_hexpand (e, TRUE); #endif fields = g_slist_append (fields, e); @@ -672,10 +695,10 @@ e = gtk_font_button_new (); gtk_widget_set_name (e, "yad-form-font"); #if !GTK_CHECK_VERSION(3,0,0) - gtk_table_attach (GTK_TABLE (w), e, 1 + col * 2, 2 + col * 2, row, row + 1, + gtk_table_attach (GTK_TABLE (tbl), e, 1 + col * 2, 2 + col * 2, row, row + 1, GTK_EXPAND | GTK_FILL, 0, 5, 5); #else - gtk_grid_attach (GTK_GRID (w), e, 1 + col * 2, row, 1, 1); + gtk_grid_attach (GTK_GRID (tbl), e, 1 + col * 2, row, 1, 1); gtk_widget_set_hexpand (e, TRUE); #endif fields = g_slist_append (fields, e); @@ -685,10 +708,10 @@ e = gtk_color_button_new (); gtk_widget_set_name (e, "yad-form-color"); #if !GTK_CHECK_VERSION(3,0,0) - gtk_table_attach (GTK_TABLE (w), e, 1 + col * 2, 2 + col * 2, row, row + 1, + gtk_table_attach (GTK_TABLE (tbl), e, 1 + col * 2, 2 + col * 2, row, row + 1, GTK_EXPAND | GTK_FILL, 0, 5, 5); #else - gtk_grid_attach (GTK_GRID (w), e, 1 + col * 2, row, 1, 1); + gtk_grid_attach (GTK_GRID (tbl), e, 1 + col * 2, row, 1, 1); gtk_widget_set_hexpand (e, TRUE); #endif fields = g_slist_append (fields, e); @@ -703,10 +726,10 @@ GINT_TO_POINTER (fld->type)); g_signal_connect (G_OBJECT (e), "activate", G_CALLBACK (form_activate_cb), dlg); #if !GTK_CHECK_VERSION(3,0,0) - gtk_table_attach (GTK_TABLE (w), e, 1 + col * 2, 2 + col * 2, row, row + 1, + gtk_table_attach (GTK_TABLE (tbl), e, 1 + col * 2, 2 + col * 2, row, row + 1, GTK_EXPAND | GTK_FILL, 0, 5, 5); #else - gtk_grid_attach (GTK_GRID (w), e, 1 + col * 2, row, 1, 1); + gtk_grid_attach (GTK_GRID (tbl), e, 1 + col * 2, row, 1, 1); gtk_widget_set_hexpand (e, TRUE); #endif fields = g_slist_append (fields, e); @@ -721,10 +744,10 @@ GINT_TO_POINTER (fld->type)); g_signal_connect (G_OBJECT (e), "activate", G_CALLBACK (form_activate_cb), dlg); #if !GTK_CHECK_VERSION(3,0,0) - gtk_table_attach (GTK_TABLE (w), e, 1 + col * 2, 2 + col * 2, row, row + 1, + gtk_table_attach (GTK_TABLE (tbl), e, 1 + col * 2, 2 + col * 2, row, row + 1, GTK_EXPAND | GTK_FILL, 0, 5, 5); #else - gtk_grid_attach (GTK_GRID (w), e, 1 + col * 2, row, 1, 1); + gtk_grid_attach (GTK_GRID (tbl), e, 1 + col * 2, row, 1, 1); gtk_widget_set_hexpand (e, TRUE); #endif fields = g_slist_append (fields, e); @@ -739,10 +762,10 @@ g_signal_connect (G_OBJECT (e), "icon-press", G_CALLBACK (select_date_cb), e); g_signal_connect (G_OBJECT (e), "activate", G_CALLBACK (form_activate_cb), dlg); #if !GTK_CHECK_VERSION(3,0,0) - gtk_table_attach (GTK_TABLE (w), e, 1 + col * 2, 2 + col * 2, row, row + 1, + gtk_table_attach (GTK_TABLE (tbl), e, 1 + col * 2, 2 + col * 2, row, row + 1, GTK_EXPAND | GTK_FILL, 0, 5, 5); #else - gtk_grid_attach (GTK_GRID (w), e, 1 + col * 2, row, 1, 1); + gtk_grid_attach (GTK_GRID (tbl), e, 1 + col * 2, row, 1, 1); gtk_widget_set_hexpand (e, TRUE); #endif fields = g_slist_append (fields, e); @@ -762,10 +785,10 @@ gtk_widget_set_name (e, "yad-form-button"); gtk_button_set_relief (GTK_BUTTON (e), GTK_RELIEF_NONE); #if !GTK_CHECK_VERSION(3,0,0) - gtk_table_attach (GTK_TABLE (w), e, col * 2, 2 + col * 2, row, row + 1, + gtk_table_attach (GTK_TABLE (tbl), e, col * 2, 2 + col * 2, row, row + 1, GTK_EXPAND | GTK_FILL, 0, 5, 5); #else - gtk_grid_attach (GTK_GRID (w), e, col * 2, row, 1, 1); + gtk_grid_attach (GTK_GRID (tbl), e, col * 2, row, 1, 1); gtk_widget_set_hexpand (e, TRUE); #endif fields = g_slist_append (fields, e); @@ -799,10 +822,10 @@ gtk_widget_set_name (e, "yad-form-separator"); } #if !GTK_CHECK_VERSION(3,0,0) - gtk_table_attach (GTK_TABLE (w), e, col * 2, 2 + col * 2, row, row + 1, + gtk_table_attach (GTK_TABLE (tbl), e, col * 2, 2 + col * 2, row, row + 1, GTK_EXPAND | GTK_FILL, 0, 5, 5); #else - gtk_grid_attach (GTK_GRID (w), e, col * 2, row, 2, 1); + gtk_grid_attach (GTK_GRID (tbl), e, col * 2, row, 2, 1); gtk_widget_set_hexpand (e, TRUE); #endif fields = g_slist_append (fields, e); @@ -840,10 +863,10 @@ gtk_container_add (GTK_CONTAINER (sw), e); #if !GTK_CHECK_VERSION(3,0,0) - gtk_table_attach (GTK_TABLE (w), b, col * 2, 2 + col * 2, row, row + 1, + gtk_table_attach (GTK_TABLE (tbl), b, col * 2, 2 + col * 2, row, row + 1, GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 5, 5); #else - gtk_grid_attach (GTK_GRID (w), b, col * 2, row, 2, 1); + gtk_grid_attach (GTK_GRID (tbl), b, col * 2, row, 2, 1); gtk_widget_set_hexpand (b, TRUE); gtk_widget_set_vexpand (b, TRUE); #endif diff -Nru yad-0.20.3/src/list.c yad-0.21.0/src/list.c --- yad-0.20.3/src/list.c 2013-03-27 16:03:12.000000000 +0000 +++ yad-0.21.0/src/list.c 2013-05-10 05:00:42.000000000 +0000 @@ -186,7 +186,7 @@ text = g_strdup_printf ("%s", cval); break; } - default: + default: return FALSE; } @@ -194,7 +194,7 @@ g_free (text); } } - + return TRUE; } @@ -657,10 +657,10 @@ gchar *cval, *uval, *sval; gtk_tree_model_get (model, &iter, i, &cval, -1); uval = unescape_markup (cval); - sval = g_shell_quote (uval); + sval = g_shell_quote (uval); g_free (uval); g_string_append_printf (args, " %s", sval); - g_free (sval); + g_free (sval); break; } } @@ -708,7 +708,7 @@ } } -void +static void add_row_cb (GtkMenuItem * item, gpointer data) { GtkTreeModel *model; @@ -719,7 +719,7 @@ gtk_list_store_append (GTK_LIST_STORE (model), &iter); } -void +static void del_row_cb (GtkMenuItem * item, gpointer data) { GtkTreeIter iter; @@ -730,6 +730,61 @@ gtk_list_store_remove (GTK_LIST_STORE (model), &iter); } +static void +copy_row_cb (GtkMenuItem * item, gpointer data) +{ + GtkTreeIter iter, new_iter; + GtkTreeModel *model = gtk_tree_view_get_model (GTK_TREE_VIEW (list_view)); + GtkTreeSelection *sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (list_view)); + + if (gtk_tree_selection_get_selected (sel, NULL, &iter)) + { + gint i, n_columns; + + /* decrease by 1 due to last ellipsize column */ + n_columns = gtk_tree_model_get_n_columns (model) - 1; + + gtk_list_store_insert_after (GTK_LIST_STORE (model), &new_iter, &iter); + + for (i = 0; i < n_columns; i++) + { + GdkPixbuf *pb; + gchar *tv; + gint64 iv; + gfloat fv; + gboolean bv; + YadColumn *col = (YadColumn *) g_slist_nth_data (options.list_data.columns, i); + + switch (col->type) + { + case YAD_COLUMN_CHECK: + case YAD_COLUMN_RADIO: + gtk_tree_model_get (model, &iter, i, &bv, -1); + gtk_list_store_set (GTK_LIST_STORE (model), &new_iter, i, bv, -1); + break; + case YAD_COLUMN_NUM: + gtk_tree_model_get (model, &iter, i, &iv, -1); + gtk_list_store_set (GTK_LIST_STORE (model), &new_iter, i, iv, -1); + break; + case YAD_COLUMN_FLOAT: + gtk_tree_model_get (model, &iter, i, &fv, -1); + gtk_list_store_set (GTK_LIST_STORE (model), &new_iter, i, fv, -1); + break; + case YAD_COLUMN_IMAGE: + gtk_tree_model_get (model, &iter, i, &pb, -1); + gtk_list_store_set (GTK_LIST_STORE (model), &new_iter, i, pb, -1); + break; + default: + gtk_tree_model_get (model, &iter, i, &tv, -1); + gtk_list_store_set (GTK_LIST_STORE (model), &new_iter, i, tv, -1); + break; + } + } + /* set ellipsize */ + gtk_list_store_set (GTK_LIST_STORE (model), &new_iter, n_columns, options.list_data.ellipsize, -1); + } +} + static gboolean popup_menu_cb (GtkWidget * w, GdkEventButton * ev, gpointer data) { @@ -755,6 +810,14 @@ gtk_widget_show (item); gtk_menu_shell_append (GTK_MENU_SHELL (menu), item); g_signal_connect (G_OBJECT (item), "activate", G_CALLBACK (del_row_cb), NULL); + + item = gtk_image_menu_item_new_with_label (_("Duplicate row")); + gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), + gtk_image_new_from_stock (GTK_STOCK_COPY, GTK_ICON_SIZE_MENU)); + gtk_widget_show (item); + gtk_menu_shell_append (GTK_MENU_SHELL (menu), item); + g_signal_connect (G_OBJECT (item), "activate", G_CALLBACK (copy_row_cb), NULL); + gtk_widget_show (menu); } gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL, ev->button, ev->time); diff -Nru yad-0.20.3/src/option.c yad-0.21.0/src/option.c --- yad-0.20.3/src/option.c 2013-03-27 16:03:12.000000000 +0000 +++ yad-0.21.0/src/option.c 2013-05-10 05:49:20.000000000 +0000 @@ -562,6 +562,12 @@ &options.common_data.date_format, N_("Set the format for the returned date"), N_("PATTERN")}, + {"scroll", 0, + 0, + G_OPTION_ARG_NONE, + &options.form_data.scroll, + N_("Make form scrollable"), + NULL}, {NULL} }; @@ -1512,7 +1518,7 @@ #ifdef SIGSTKFLT else if (strcmp (value + ofst, "STKFLT") == 0) sn = SIGSTKFLT; -#endif +#endif else if (strcmp (value + ofst, "CHLD") == 0 || strcmp (value + ofst, "CLD") == 0) sn = SIGCHLD; @@ -1541,10 +1547,10 @@ else if (strcmp (value + ofst, "IO") == 0 || strcmp (value + ofst, "POLL") == 0) sn = SIGIO; -#ifdef SIGPWR +#ifdef SIGPWR else if (strcmp (value + ofst, "PWR") == 0) sn = SIGPWR; -#endif +#endif else if (strcmp (value + ofst, "SYS") == 0) sn = SIGSYS; } diff -Nru yad-0.20.3/src/yad.h yad-0.21.0/src/yad.h --- yad-0.20.3/src/yad.h 2013-03-27 16:03:12.000000000 +0000 +++ yad-0.21.0/src/yad.h 2013-05-10 05:47:53.000000000 +0000 @@ -222,6 +222,7 @@ typedef struct { GSList *fields; guint columns; + gboolean scroll; } YadFormData; typedef struct {