diff -Nru docky-2.0.4/aclocal.m4 docky-2.0.5/aclocal.m4 --- docky-2.0.4/aclocal.m4 2010-05-31 08:00:09.665622447 +0200 +++ docky-2.0.5/aclocal.m4 2010-07-01 19:05:30.625184001 +0200 @@ -648,7 +648,7 @@ AC_DEFUN([IT_PO_SUBDIR], [AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS. dnl -dnl The following CONFIG_COMMANDS should be exetuted at the very end +dnl The following CONFIG_COMMANDS should be executed at the very end dnl of config.status. AC_CONFIG_COMMANDS_PRE([ AC_CONFIG_COMMANDS([$1/stamp-it], [ @@ -724,6 +724,7 @@ ]) # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +# serial 1 (pkg-config-0.24) # # Copyright © 2004 Scott James Remnant . # @@ -751,7 +752,10 @@ AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) -AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl +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]) + if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi @@ -764,7 +768,6 @@ AC_MSG_RESULT([no]) PKG_CONFIG="" fi - fi[]dnl ])# PKG_PROG_PKG_CONFIG @@ -773,34 +776,31 @@ # Check to see whether a particular set of modules exists. Similar # to PKG_CHECK_MODULES(), but does not set variables or print errors. # -# -# Similar to PKG_CHECK_MODULES, make sure that the first instance of -# this or PKG_CHECK_MODULES is called, or make sure to call -# PKG_CHECK_EXISTS manually +# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +# only at the first occurence in configure.ac, so if the first place +# it's called might be skipped (such as if it is within an "if", you +# have to call PKG_CHECK_EXISTS manually # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then - m4_ifval([$2], [$2], [:]) + m4_default([$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) - # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], -[if test -n "$PKG_CONFIG"; then - if test -n "$$1"; then - pkg_cv_[]$1="$$1" - else - PKG_CHECK_EXISTS([$3], - [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], - [pkg_failed=yes]) - fi -else - pkg_failed=untried +[if test -n "$$1"; then + pkg_cv_[]$1="$$1" + elif test -n "$PKG_CONFIG"; then + PKG_CHECK_EXISTS([$3], + [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], + [pkg_failed=yes]) + else + pkg_failed=untried fi[]dnl ])# _PKG_CONFIG @@ -842,16 +842,17 @@ See the pkg-config man page for more details.]) if test $pkg_failed = yes; then + AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then - $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"` + $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` else - $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"` + $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 - ifelse([$4], , [AC_MSG_ERROR(dnl + m4_default([$4], [AC_MSG_ERROR( [Package requirements ($2) were not met: $$1_PKG_ERRORS @@ -859,25 +860,24 @@ Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. -_PKG_TEXT -])], - [AC_MSG_RESULT([no]) - $4]) +_PKG_TEXT])dnl + ]) elif test $pkg_failed = untried; then - ifelse([$4], , [AC_MSG_FAILURE(dnl + AC_MSG_RESULT([no]) + m4_default([$4], [AC_MSG_FAILURE( [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT -To get pkg-config, see .])], - [$4]) +To get pkg-config, see .])dnl + ]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) - ifelse([$3], , :, [$3]) + $3 fi[]dnl ])# PKG_CHECK_MODULES diff -Nru docky-2.0.4/AUTHORS docky-2.0.5/AUTHORS --- docky-2.0.4/AUTHORS 2010-05-25 14:22:51.826113858 +0200 +++ docky-2.0.5/AUTHORS 2010-06-26 15:47:36.543229000 +0200 @@ -13,6 +13,3 @@ Robert Dyer Chris Szikszoy Rico Tzschichholz -Seif Lotfy -Chris Halse Rogers -Alex Launi diff -Nru docky-2.0.4/configure docky-2.0.5/configure --- docky-2.0.4/configure 2010-05-31 08:00:13.405621764 +0200 +++ docky-2.0.5/configure 2010-07-01 19:05:34.915184001 +0200 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.65 for docky 2.0.4. +# Generated by GNU Autoconf 2.65 for docky 2.0.5. # # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, @@ -609,8 +609,8 @@ # Identity of this package. PACKAGE_NAME='docky' PACKAGE_TARNAME='docky' -PACKAGE_VERSION='2.0.4' -PACKAGE_STRING='docky 2.0.4' +PACKAGE_VERSION='2.0.5' +PACKAGE_STRING='docky 2.0.5' PACKAGE_BUGREPORT='' PACKAGE_URL='' @@ -710,6 +710,8 @@ GLADE_SHARP_20_CFLAGS GCONF_SHARP_20_LIBS GCONF_SHARP_20_CFLAGS +PKG_CONFIG_LIBDIR +PKG_CONFIG_PATH expanded_datadir expanded_bindir expanded_libdir @@ -880,6 +882,8 @@ CPPFLAGS CPP PKG_CONFIG +PKG_CONFIG_PATH +PKG_CONFIG_LIBDIR GCONF_SHARP_20_CFLAGS GCONF_SHARP_20_LIBS GLADE_SHARP_20_CFLAGS @@ -1465,7 +1469,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 docky 2.0.4 to adapt to many kinds of systems. +\`configure' configures docky 2.0.5 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1531,7 +1535,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of docky 2.0.4:";; + short | recursive ) echo "Configuration of docky 2.0.5:";; esac cat <<\_ACEOF @@ -1565,6 +1569,10 @@ you have headers in a nonstandard directory CPP C preprocessor PKG_CONFIG path to pkg-config utility + PKG_CONFIG_PATH + directories to add to pkg-config's search path + PKG_CONFIG_LIBDIR + path overriding pkg-config's built-in search path GCONF_SHARP_20_CFLAGS C compiler flags for GCONF_SHARP_20, overriding pkg-config GCONF_SHARP_20_LIBS @@ -1714,7 +1722,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -docky configure 2.0.4 +docky configure 2.0.5 generated by GNU Autoconf 2.65 Copyright (C) 2009 Free Software Foundation, Inc. @@ -2079,7 +2087,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by docky $as_me 2.0.4, which was +It was created by docky $as_me 2.0.5, which was generated by GNU Autoconf 2.65. Invocation command line was $ $0 $@ @@ -2887,7 +2895,7 @@ # Define the identity of the package. PACKAGE='docky' - VERSION='2.0.4' + VERSION='2.0.5' cat >>confdefs.h <<_ACEOF @@ -7091,6 +7099,10 @@ + + + + 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. @@ -7203,18 +7215,16 @@ $as_echo "no" >&6; } PKG_CONFIG="" fi - fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GCONF_SHARP_20" >&5 $as_echo_n "checking for GCONF_SHARP_20... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GCONF_SHARP_20_CFLAGS"; then - pkg_cv_GCONF_SHARP_20_CFLAGS="$GCONF_SHARP_20_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GCONF_SHARP_20_CFLAGS"; then + pkg_cv_GCONF_SHARP_20_CFLAGS="$GCONF_SHARP_20_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gconf-sharp-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gconf-sharp-2.0") 2>&5 ac_status=$? @@ -7224,15 +7234,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GCONF_SHARP_20_LIBS"; then - pkg_cv_GCONF_SHARP_20_LIBS="$GCONF_SHARP_20_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GCONF_SHARP_20_LIBS"; then + pkg_cv_GCONF_SHARP_20_LIBS="$GCONF_SHARP_20_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gconf-sharp-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gconf-sharp-2.0") 2>&5 ac_status=$? @@ -7242,14 +7250,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -7257,9 +7266,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GCONF_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gconf-sharp-2.0"` + GCONF_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "gconf-sharp-2.0" 2>&1` else - GCONF_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gconf-sharp-2.0"` + GCONF_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --print-errors "gconf-sharp-2.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GCONF_SHARP_20_PKG_ERRORS" >&5 @@ -7273,9 +7282,10 @@ Alternatively, you may set the environment variables GCONF_SHARP_20_CFLAGS and GCONF_SHARP_20_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -7293,18 +7303,17 @@ GCONF_SHARP_20_LIBS=$pkg_cv_GCONF_SHARP_20_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GLADE_SHARP_20" >&5 $as_echo_n "checking for GLADE_SHARP_20... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GLADE_SHARP_20_CFLAGS"; then - pkg_cv_GLADE_SHARP_20_CFLAGS="$GLADE_SHARP_20_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GLADE_SHARP_20_CFLAGS"; then + pkg_cv_GLADE_SHARP_20_CFLAGS="$GLADE_SHARP_20_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glade-sharp-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glade-sharp-2.0") 2>&5 ac_status=$? @@ -7314,15 +7323,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GLADE_SHARP_20_LIBS"; then - pkg_cv_GLADE_SHARP_20_LIBS="$GLADE_SHARP_20_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GLADE_SHARP_20_LIBS"; then + pkg_cv_GLADE_SHARP_20_LIBS="$GLADE_SHARP_20_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glade-sharp-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glade-sharp-2.0") 2>&5 ac_status=$? @@ -7332,14 +7339,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -7347,9 +7355,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GLADE_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "glade-sharp-2.0"` + GLADE_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "glade-sharp-2.0" 2>&1` else - GLADE_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "glade-sharp-2.0"` + GLADE_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --print-errors "glade-sharp-2.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GLADE_SHARP_20_PKG_ERRORS" >&5 @@ -7363,9 +7371,10 @@ Alternatively, you may set the environment variables GLADE_SHARP_20_CFLAGS and GLADE_SHARP_20_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -7383,18 +7392,17 @@ GLADE_SHARP_20_LIBS=$pkg_cv_GLADE_SHARP_20_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GLIB_SHARP_20" >&5 $as_echo_n "checking for GLIB_SHARP_20... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GLIB_SHARP_20_CFLAGS"; then - pkg_cv_GLIB_SHARP_20_CFLAGS="$GLIB_SHARP_20_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GLIB_SHARP_20_CFLAGS"; then + pkg_cv_GLIB_SHARP_20_CFLAGS="$GLIB_SHARP_20_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-sharp-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-sharp-2.0") 2>&5 ac_status=$? @@ -7404,15 +7412,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GLIB_SHARP_20_LIBS"; then - pkg_cv_GLIB_SHARP_20_LIBS="$GLIB_SHARP_20_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GLIB_SHARP_20_LIBS"; then + pkg_cv_GLIB_SHARP_20_LIBS="$GLIB_SHARP_20_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-sharp-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-sharp-2.0") 2>&5 ac_status=$? @@ -7422,14 +7428,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -7437,9 +7444,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GLIB_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "glib-sharp-2.0"` + GLIB_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "glib-sharp-2.0" 2>&1` else - GLIB_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "glib-sharp-2.0"` + GLIB_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --print-errors "glib-sharp-2.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GLIB_SHARP_20_PKG_ERRORS" >&5 @@ -7453,9 +7460,10 @@ Alternatively, you may set the environment variables GLIB_SHARP_20_CFLAGS and GLIB_SHARP_20_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -7473,18 +7481,17 @@ GLIB_SHARP_20_LIBS=$pkg_cv_GLIB_SHARP_20_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNOME_DESKTOP_SHARP_20" >&5 $as_echo_n "checking for GNOME_DESKTOP_SHARP_20... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GNOME_DESKTOP_SHARP_20_CFLAGS"; then - pkg_cv_GNOME_DESKTOP_SHARP_20_CFLAGS="$GNOME_DESKTOP_SHARP_20_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GNOME_DESKTOP_SHARP_20_CFLAGS"; then + pkg_cv_GNOME_DESKTOP_SHARP_20_CFLAGS="$GNOME_DESKTOP_SHARP_20_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnome-desktop-sharp-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gnome-desktop-sharp-2.0") 2>&5 ac_status=$? @@ -7494,15 +7501,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GNOME_DESKTOP_SHARP_20_LIBS"; then - pkg_cv_GNOME_DESKTOP_SHARP_20_LIBS="$GNOME_DESKTOP_SHARP_20_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GNOME_DESKTOP_SHARP_20_LIBS"; then + pkg_cv_GNOME_DESKTOP_SHARP_20_LIBS="$GNOME_DESKTOP_SHARP_20_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnome-desktop-sharp-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gnome-desktop-sharp-2.0") 2>&5 ac_status=$? @@ -7512,14 +7517,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -7527,9 +7533,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GNOME_DESKTOP_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gnome-desktop-sharp-2.0"` + GNOME_DESKTOP_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "gnome-desktop-sharp-2.0" 2>&1` else - GNOME_DESKTOP_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gnome-desktop-sharp-2.0"` + GNOME_DESKTOP_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --print-errors "gnome-desktop-sharp-2.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GNOME_DESKTOP_SHARP_20_PKG_ERRORS" >&5 @@ -7543,9 +7549,10 @@ Alternatively, you may set the environment variables GNOME_DESKTOP_SHARP_20_CFLAGS and GNOME_DESKTOP_SHARP_20_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -7563,18 +7570,17 @@ GNOME_DESKTOP_SHARP_20_LIBS=$pkg_cv_GNOME_DESKTOP_SHARP_20_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNOME_KEYRING_SHARP" >&5 $as_echo_n "checking for GNOME_KEYRING_SHARP... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GNOME_KEYRING_SHARP_CFLAGS"; then - pkg_cv_GNOME_KEYRING_SHARP_CFLAGS="$GNOME_KEYRING_SHARP_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GNOME_KEYRING_SHARP_CFLAGS"; then + pkg_cv_GNOME_KEYRING_SHARP_CFLAGS="$GNOME_KEYRING_SHARP_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnome-keyring-sharp-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gnome-keyring-sharp-1.0") 2>&5 ac_status=$? @@ -7584,15 +7590,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GNOME_KEYRING_SHARP_LIBS"; then - pkg_cv_GNOME_KEYRING_SHARP_LIBS="$GNOME_KEYRING_SHARP_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GNOME_KEYRING_SHARP_LIBS"; then + pkg_cv_GNOME_KEYRING_SHARP_LIBS="$GNOME_KEYRING_SHARP_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnome-keyring-sharp-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gnome-keyring-sharp-1.0") 2>&5 ac_status=$? @@ -7602,14 +7606,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -7617,9 +7622,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GNOME_KEYRING_SHARP_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gnome-keyring-sharp-1.0"` + GNOME_KEYRING_SHARP_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "gnome-keyring-sharp-1.0" 2>&1` else - GNOME_KEYRING_SHARP_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gnome-keyring-sharp-1.0"` + GNOME_KEYRING_SHARP_PKG_ERRORS=`$PKG_CONFIG --print-errors "gnome-keyring-sharp-1.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GNOME_KEYRING_SHARP_PKG_ERRORS" >&5 @@ -7633,9 +7638,10 @@ Alternatively, you may set the environment variables GNOME_KEYRING_SHARP_CFLAGS and GNOME_KEYRING_SHARP_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -7653,18 +7659,17 @@ GNOME_KEYRING_SHARP_LIBS=$pkg_cv_GNOME_KEYRING_SHARP_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNOME_SHARP_20" >&5 $as_echo_n "checking for GNOME_SHARP_20... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GNOME_SHARP_20_CFLAGS"; then - pkg_cv_GNOME_SHARP_20_CFLAGS="$GNOME_SHARP_20_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GNOME_SHARP_20_CFLAGS"; then + pkg_cv_GNOME_SHARP_20_CFLAGS="$GNOME_SHARP_20_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnome-sharp-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gnome-sharp-2.0") 2>&5 ac_status=$? @@ -7674,15 +7679,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GNOME_SHARP_20_LIBS"; then - pkg_cv_GNOME_SHARP_20_LIBS="$GNOME_SHARP_20_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GNOME_SHARP_20_LIBS"; then + pkg_cv_GNOME_SHARP_20_LIBS="$GNOME_SHARP_20_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnome-sharp-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gnome-sharp-2.0") 2>&5 ac_status=$? @@ -7692,14 +7695,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -7707,9 +7711,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GNOME_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gnome-sharp-2.0"` + GNOME_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "gnome-sharp-2.0" 2>&1` else - GNOME_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gnome-sharp-2.0"` + GNOME_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --print-errors "gnome-sharp-2.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GNOME_SHARP_20_PKG_ERRORS" >&5 @@ -7723,9 +7727,10 @@ Alternatively, you may set the environment variables GNOME_SHARP_20_CFLAGS and GNOME_SHARP_20_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -7743,18 +7748,17 @@ GNOME_SHARP_20_LIBS=$pkg_cv_GNOME_SHARP_20_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNOME_VFS_SHARP_20" >&5 $as_echo_n "checking for GNOME_VFS_SHARP_20... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GNOME_VFS_SHARP_20_CFLAGS"; then - pkg_cv_GNOME_VFS_SHARP_20_CFLAGS="$GNOME_VFS_SHARP_20_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GNOME_VFS_SHARP_20_CFLAGS"; then + pkg_cv_GNOME_VFS_SHARP_20_CFLAGS="$GNOME_VFS_SHARP_20_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnome-vfs-sharp-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gnome-vfs-sharp-2.0") 2>&5 ac_status=$? @@ -7764,15 +7768,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GNOME_VFS_SHARP_20_LIBS"; then - pkg_cv_GNOME_VFS_SHARP_20_LIBS="$GNOME_VFS_SHARP_20_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GNOME_VFS_SHARP_20_LIBS"; then + pkg_cv_GNOME_VFS_SHARP_20_LIBS="$GNOME_VFS_SHARP_20_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnome-vfs-sharp-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gnome-vfs-sharp-2.0") 2>&5 ac_status=$? @@ -7782,14 +7784,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -7797,9 +7800,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GNOME_VFS_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gnome-vfs-sharp-2.0"` + GNOME_VFS_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "gnome-vfs-sharp-2.0" 2>&1` else - GNOME_VFS_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gnome-vfs-sharp-2.0"` + GNOME_VFS_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --print-errors "gnome-vfs-sharp-2.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GNOME_VFS_SHARP_20_PKG_ERRORS" >&5 @@ -7813,9 +7816,10 @@ Alternatively, you may set the environment variables GNOME_VFS_SHARP_20_CFLAGS and GNOME_VFS_SHARP_20_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -7833,18 +7837,17 @@ GNOME_VFS_SHARP_20_LIBS=$pkg_cv_GNOME_VFS_SHARP_20_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK_SHARP_20" >&5 $as_echo_n "checking for GTK_SHARP_20... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GTK_SHARP_20_CFLAGS"; then - pkg_cv_GTK_SHARP_20_CFLAGS="$GTK_SHARP_20_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GTK_SHARP_20_CFLAGS"; then + pkg_cv_GTK_SHARP_20_CFLAGS="$GTK_SHARP_20_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk-sharp-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk-sharp-2.0") 2>&5 ac_status=$? @@ -7854,15 +7857,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GTK_SHARP_20_LIBS"; then - pkg_cv_GTK_SHARP_20_LIBS="$GTK_SHARP_20_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GTK_SHARP_20_LIBS"; then + pkg_cv_GTK_SHARP_20_LIBS="$GTK_SHARP_20_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk-sharp-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk-sharp-2.0") 2>&5 ac_status=$? @@ -7872,14 +7873,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -7887,9 +7889,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GTK_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gtk-sharp-2.0"` + GTK_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "gtk-sharp-2.0" 2>&1` else - GTK_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gtk-sharp-2.0"` + GTK_SHARP_20_PKG_ERRORS=`$PKG_CONFIG --print-errors "gtk-sharp-2.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GTK_SHARP_20_PKG_ERRORS" >&5 @@ -7903,9 +7905,10 @@ Alternatively, you may set the environment variables GTK_SHARP_20_CFLAGS and GTK_SHARP_20_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -7923,18 +7926,17 @@ GTK_SHARP_20_LIBS=$pkg_cv_GTK_SHARP_20_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBRSVG_SHARP" >&5 $as_echo_n "checking for LIBRSVG_SHARP... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$LIBRSVG_SHARP_CFLAGS"; then - pkg_cv_LIBRSVG_SHARP_CFLAGS="$LIBRSVG_SHARP_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$LIBRSVG_SHARP_CFLAGS"; then + pkg_cv_LIBRSVG_SHARP_CFLAGS="$LIBRSVG_SHARP_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"rsvg2-sharp-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "rsvg2-sharp-2.0") 2>&5 ac_status=$? @@ -7944,15 +7946,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$LIBRSVG_SHARP_LIBS"; then - pkg_cv_LIBRSVG_SHARP_LIBS="$LIBRSVG_SHARP_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$LIBRSVG_SHARP_LIBS"; then + pkg_cv_LIBRSVG_SHARP_LIBS="$LIBRSVG_SHARP_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"rsvg2-sharp-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "rsvg2-sharp-2.0") 2>&5 ac_status=$? @@ -7962,14 +7962,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -7977,9 +7978,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - LIBRSVG_SHARP_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "rsvg2-sharp-2.0"` + LIBRSVG_SHARP_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "rsvg2-sharp-2.0" 2>&1` else - LIBRSVG_SHARP_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "rsvg2-sharp-2.0"` + LIBRSVG_SHARP_PKG_ERRORS=`$PKG_CONFIG --print-errors "rsvg2-sharp-2.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$LIBRSVG_SHARP_PKG_ERRORS" >&5 @@ -7993,9 +7994,10 @@ Alternatively, you may set the environment variables LIBRSVG_SHARP_CFLAGS and LIBRSVG_SHARP_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -8013,18 +8015,17 @@ LIBRSVG_SHARP_LIBS=$pkg_cv_LIBRSVG_SHARP_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for MONO_ADDINS" >&5 $as_echo_n "checking for MONO_ADDINS... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$MONO_ADDINS_CFLAGS"; then - pkg_cv_MONO_ADDINS_CFLAGS="$MONO_ADDINS_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$MONO_ADDINS_CFLAGS"; then + pkg_cv_MONO_ADDINS_CFLAGS="$MONO_ADDINS_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"mono-addins\""; } >&5 ($PKG_CONFIG --exists --print-errors "mono-addins") 2>&5 ac_status=$? @@ -8034,15 +8035,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$MONO_ADDINS_LIBS"; then - pkg_cv_MONO_ADDINS_LIBS="$MONO_ADDINS_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$MONO_ADDINS_LIBS"; then + pkg_cv_MONO_ADDINS_LIBS="$MONO_ADDINS_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"mono-addins\""; } >&5 ($PKG_CONFIG --exists --print-errors "mono-addins") 2>&5 ac_status=$? @@ -8052,14 +8051,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -8067,9 +8067,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - MONO_ADDINS_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "mono-addins"` + MONO_ADDINS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "mono-addins" 2>&1` else - MONO_ADDINS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "mono-addins"` + MONO_ADDINS_PKG_ERRORS=`$PKG_CONFIG --print-errors "mono-addins" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$MONO_ADDINS_PKG_ERRORS" >&5 @@ -8083,9 +8083,10 @@ Alternatively, you may set the environment variables MONO_ADDINS_CFLAGS and MONO_ADDINS_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -8103,18 +8104,17 @@ MONO_ADDINS_LIBS=$pkg_cv_MONO_ADDINS_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for MONO_ADDINS_GUI" >&5 $as_echo_n "checking for MONO_ADDINS_GUI... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$MONO_ADDINS_GUI_CFLAGS"; then - pkg_cv_MONO_ADDINS_GUI_CFLAGS="$MONO_ADDINS_GUI_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$MONO_ADDINS_GUI_CFLAGS"; then + pkg_cv_MONO_ADDINS_GUI_CFLAGS="$MONO_ADDINS_GUI_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"mono-addins-gui\""; } >&5 ($PKG_CONFIG --exists --print-errors "mono-addins-gui") 2>&5 ac_status=$? @@ -8124,15 +8124,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$MONO_ADDINS_GUI_LIBS"; then - pkg_cv_MONO_ADDINS_GUI_LIBS="$MONO_ADDINS_GUI_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$MONO_ADDINS_GUI_LIBS"; then + pkg_cv_MONO_ADDINS_GUI_LIBS="$MONO_ADDINS_GUI_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"mono-addins-gui\""; } >&5 ($PKG_CONFIG --exists --print-errors "mono-addins-gui") 2>&5 ac_status=$? @@ -8142,14 +8140,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -8157,9 +8156,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - MONO_ADDINS_GUI_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "mono-addins-gui"` + MONO_ADDINS_GUI_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "mono-addins-gui" 2>&1` else - MONO_ADDINS_GUI_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "mono-addins-gui"` + MONO_ADDINS_GUI_PKG_ERRORS=`$PKG_CONFIG --print-errors "mono-addins-gui" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$MONO_ADDINS_GUI_PKG_ERRORS" >&5 @@ -8173,9 +8172,10 @@ Alternatively, you may set the environment variables MONO_ADDINS_GUI_CFLAGS and MONO_ADDINS_GUI_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -8193,18 +8193,17 @@ MONO_ADDINS_GUI_LIBS=$pkg_cv_MONO_ADDINS_GUI_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for MONO_ADDINS_SETUP" >&5 $as_echo_n "checking for MONO_ADDINS_SETUP... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$MONO_ADDINS_SETUP_CFLAGS"; then - pkg_cv_MONO_ADDINS_SETUP_CFLAGS="$MONO_ADDINS_SETUP_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$MONO_ADDINS_SETUP_CFLAGS"; then + pkg_cv_MONO_ADDINS_SETUP_CFLAGS="$MONO_ADDINS_SETUP_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"mono-addins-setup\""; } >&5 ($PKG_CONFIG --exists --print-errors "mono-addins-setup") 2>&5 ac_status=$? @@ -8214,15 +8213,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$MONO_ADDINS_SETUP_LIBS"; then - pkg_cv_MONO_ADDINS_SETUP_LIBS="$MONO_ADDINS_SETUP_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$MONO_ADDINS_SETUP_LIBS"; then + pkg_cv_MONO_ADDINS_SETUP_LIBS="$MONO_ADDINS_SETUP_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"mono-addins-setup\""; } >&5 ($PKG_CONFIG --exists --print-errors "mono-addins-setup") 2>&5 ac_status=$? @@ -8232,14 +8229,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -8247,9 +8245,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - MONO_ADDINS_SETUP_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "mono-addins-setup"` + MONO_ADDINS_SETUP_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "mono-addins-setup" 2>&1` else - MONO_ADDINS_SETUP_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "mono-addins-setup"` + MONO_ADDINS_SETUP_PKG_ERRORS=`$PKG_CONFIG --print-errors "mono-addins-setup" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$MONO_ADDINS_SETUP_PKG_ERRORS" >&5 @@ -8263,9 +8261,10 @@ Alternatively, you may set the environment variables MONO_ADDINS_SETUP_CFLAGS and MONO_ADDINS_SETUP_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -8283,18 +8282,17 @@ MONO_ADDINS_SETUP_LIBS=$pkg_cv_MONO_ADDINS_SETUP_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for MONO_CAIRO" >&5 $as_echo_n "checking for MONO_CAIRO... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$MONO_CAIRO_CFLAGS"; then - pkg_cv_MONO_CAIRO_CFLAGS="$MONO_CAIRO_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$MONO_CAIRO_CFLAGS"; then + pkg_cv_MONO_CAIRO_CFLAGS="$MONO_CAIRO_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"mono-cairo\""; } >&5 ($PKG_CONFIG --exists --print-errors "mono-cairo") 2>&5 ac_status=$? @@ -8304,15 +8302,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$MONO_CAIRO_LIBS"; then - pkg_cv_MONO_CAIRO_LIBS="$MONO_CAIRO_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$MONO_CAIRO_LIBS"; then + pkg_cv_MONO_CAIRO_LIBS="$MONO_CAIRO_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"mono-cairo\""; } >&5 ($PKG_CONFIG --exists --print-errors "mono-cairo") 2>&5 ac_status=$? @@ -8322,14 +8318,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -8337,9 +8334,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - MONO_CAIRO_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "mono-cairo"` + MONO_CAIRO_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "mono-cairo" 2>&1` else - MONO_CAIRO_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "mono-cairo"` + MONO_CAIRO_PKG_ERRORS=`$PKG_CONFIG --print-errors "mono-cairo" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$MONO_CAIRO_PKG_ERRORS" >&5 @@ -8353,9 +8350,10 @@ Alternatively, you may set the environment variables MONO_CAIRO_CFLAGS and MONO_CAIRO_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -8373,18 +8371,17 @@ MONO_CAIRO_LIBS=$pkg_cv_MONO_CAIRO_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for MONO_OPTIONS" >&5 $as_echo_n "checking for MONO_OPTIONS... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$MONO_OPTIONS_CFLAGS"; then - pkg_cv_MONO_OPTIONS_CFLAGS="$MONO_OPTIONS_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$MONO_OPTIONS_CFLAGS"; then + pkg_cv_MONO_OPTIONS_CFLAGS="$MONO_OPTIONS_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"mono-options\""; } >&5 ($PKG_CONFIG --exists --print-errors "mono-options") 2>&5 ac_status=$? @@ -8394,15 +8391,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$MONO_OPTIONS_LIBS"; then - pkg_cv_MONO_OPTIONS_LIBS="$MONO_OPTIONS_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$MONO_OPTIONS_LIBS"; then + pkg_cv_MONO_OPTIONS_LIBS="$MONO_OPTIONS_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"mono-options\""; } >&5 ($PKG_CONFIG --exists --print-errors "mono-options") 2>&5 ac_status=$? @@ -8412,14 +8407,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -8427,9 +8423,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - MONO_OPTIONS_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "mono-options"` + MONO_OPTIONS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "mono-options" 2>&1` else - MONO_OPTIONS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "mono-options"` + MONO_OPTIONS_PKG_ERRORS=`$PKG_CONFIG --print-errors "mono-options" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$MONO_OPTIONS_PKG_ERRORS" >&5 @@ -8443,9 +8439,10 @@ Alternatively, you may set the environment variables MONO_OPTIONS_CFLAGS and MONO_OPTIONS_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -8463,18 +8460,17 @@ MONO_OPTIONS_LIBS=$pkg_cv_MONO_OPTIONS_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for NDESK_DBUS_10" >&5 $as_echo_n "checking for NDESK_DBUS_10... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$NDESK_DBUS_10_CFLAGS"; then - pkg_cv_NDESK_DBUS_10_CFLAGS="$NDESK_DBUS_10_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$NDESK_DBUS_10_CFLAGS"; then + pkg_cv_NDESK_DBUS_10_CFLAGS="$NDESK_DBUS_10_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"ndesk-dbus-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "ndesk-dbus-1.0") 2>&5 ac_status=$? @@ -8484,15 +8480,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$NDESK_DBUS_10_LIBS"; then - pkg_cv_NDESK_DBUS_10_LIBS="$NDESK_DBUS_10_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$NDESK_DBUS_10_LIBS"; then + pkg_cv_NDESK_DBUS_10_LIBS="$NDESK_DBUS_10_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"ndesk-dbus-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "ndesk-dbus-1.0") 2>&5 ac_status=$? @@ -8502,14 +8496,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -8517,9 +8512,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - NDESK_DBUS_10_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "ndesk-dbus-1.0"` + NDESK_DBUS_10_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "ndesk-dbus-1.0" 2>&1` else - NDESK_DBUS_10_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "ndesk-dbus-1.0"` + NDESK_DBUS_10_PKG_ERRORS=`$PKG_CONFIG --print-errors "ndesk-dbus-1.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$NDESK_DBUS_10_PKG_ERRORS" >&5 @@ -8533,9 +8528,10 @@ Alternatively, you may set the environment variables NDESK_DBUS_10_CFLAGS and NDESK_DBUS_10_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -8553,18 +8549,17 @@ NDESK_DBUS_10_LIBS=$pkg_cv_NDESK_DBUS_10_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for NDESK_DBUS_GLIB_10" >&5 $as_echo_n "checking for NDESK_DBUS_GLIB_10... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$NDESK_DBUS_GLIB_10_CFLAGS"; then - pkg_cv_NDESK_DBUS_GLIB_10_CFLAGS="$NDESK_DBUS_GLIB_10_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$NDESK_DBUS_GLIB_10_CFLAGS"; then + pkg_cv_NDESK_DBUS_GLIB_10_CFLAGS="$NDESK_DBUS_GLIB_10_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"ndesk-dbus-glib-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "ndesk-dbus-glib-1.0") 2>&5 ac_status=$? @@ -8574,15 +8569,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$NDESK_DBUS_GLIB_10_LIBS"; then - pkg_cv_NDESK_DBUS_GLIB_10_LIBS="$NDESK_DBUS_GLIB_10_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$NDESK_DBUS_GLIB_10_LIBS"; then + pkg_cv_NDESK_DBUS_GLIB_10_LIBS="$NDESK_DBUS_GLIB_10_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"ndesk-dbus-glib-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "ndesk-dbus-glib-1.0") 2>&5 ac_status=$? @@ -8592,14 +8585,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -8607,9 +8601,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - NDESK_DBUS_GLIB_10_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "ndesk-dbus-glib-1.0"` + NDESK_DBUS_GLIB_10_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "ndesk-dbus-glib-1.0" 2>&1` else - NDESK_DBUS_GLIB_10_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "ndesk-dbus-glib-1.0"` + NDESK_DBUS_GLIB_10_PKG_ERRORS=`$PKG_CONFIG --print-errors "ndesk-dbus-glib-1.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$NDESK_DBUS_GLIB_10_PKG_ERRORS" >&5 @@ -8623,9 +8617,10 @@ Alternatively, you may set the environment variables NDESK_DBUS_GLIB_10_CFLAGS and NDESK_DBUS_GLIB_10_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -8643,18 +8638,17 @@ NDESK_DBUS_GLIB_10_LIBS=$pkg_cv_NDESK_DBUS_GLIB_10_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for NOTIFY_SHARP" >&5 $as_echo_n "checking for NOTIFY_SHARP... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$NOTIFY_SHARP_CFLAGS"; then - pkg_cv_NOTIFY_SHARP_CFLAGS="$NOTIFY_SHARP_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$NOTIFY_SHARP_CFLAGS"; then + pkg_cv_NOTIFY_SHARP_CFLAGS="$NOTIFY_SHARP_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"notify-sharp\""; } >&5 ($PKG_CONFIG --exists --print-errors "notify-sharp") 2>&5 ac_status=$? @@ -8664,15 +8658,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$NOTIFY_SHARP_LIBS"; then - pkg_cv_NOTIFY_SHARP_LIBS="$NOTIFY_SHARP_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$NOTIFY_SHARP_LIBS"; then + pkg_cv_NOTIFY_SHARP_LIBS="$NOTIFY_SHARP_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"notify-sharp\""; } >&5 ($PKG_CONFIG --exists --print-errors "notify-sharp") 2>&5 ac_status=$? @@ -8682,14 +8674,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -8697,9 +8690,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - NOTIFY_SHARP_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "notify-sharp"` + NOTIFY_SHARP_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "notify-sharp" 2>&1` else - NOTIFY_SHARP_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "notify-sharp"` + NOTIFY_SHARP_PKG_ERRORS=`$PKG_CONFIG --print-errors "notify-sharp" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$NOTIFY_SHARP_PKG_ERRORS" >&5 @@ -8713,9 +8706,10 @@ Alternatively, you may set the environment variables NOTIFY_SHARP_CFLAGS and NOTIFY_SHARP_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -8733,18 +8727,17 @@ NOTIFY_SHARP_LIBS=$pkg_cv_NOTIFY_SHARP_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for WNCK_SHARP_10" >&5 $as_echo_n "checking for WNCK_SHARP_10... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$WNCK_SHARP_10_CFLAGS"; then - pkg_cv_WNCK_SHARP_10_CFLAGS="$WNCK_SHARP_10_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$WNCK_SHARP_10_CFLAGS"; then + pkg_cv_WNCK_SHARP_10_CFLAGS="$WNCK_SHARP_10_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"wnck-sharp-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "wnck-sharp-1.0") 2>&5 ac_status=$? @@ -8754,15 +8747,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$WNCK_SHARP_10_LIBS"; then - pkg_cv_WNCK_SHARP_10_LIBS="$WNCK_SHARP_10_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$WNCK_SHARP_10_LIBS"; then + pkg_cv_WNCK_SHARP_10_LIBS="$WNCK_SHARP_10_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"wnck-sharp-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "wnck-sharp-1.0") 2>&5 ac_status=$? @@ -8772,14 +8763,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -8787,9 +8779,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - WNCK_SHARP_10_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "wnck-sharp-1.0"` + WNCK_SHARP_10_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "wnck-sharp-1.0" 2>&1` else - WNCK_SHARP_10_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "wnck-sharp-1.0"` + WNCK_SHARP_10_PKG_ERRORS=`$PKG_CONFIG --print-errors "wnck-sharp-1.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$WNCK_SHARP_10_PKG_ERRORS" >&5 @@ -8803,9 +8795,10 @@ Alternatively, you may set the environment variables WNCK_SHARP_10_CFLAGS and WNCK_SHARP_10_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -8823,7 +8816,7 @@ WNCK_SHARP_10_LIBS=$pkg_cv_WNCK_SHARP_10_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi GTK_REQUIRED_VERSION=2.14.3 @@ -8833,11 +8826,10 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GIO" >&5 $as_echo_n "checking for GIO... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GIO_CFLAGS"; then - pkg_cv_GIO_CFLAGS="$GIO_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GIO_CFLAGS"; then + pkg_cv_GIO_CFLAGS="$GIO_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gio-2.0 >= \$GLIB_REQUIRED_VERSION\""; } >&5 ($PKG_CONFIG --exists --print-errors "gio-2.0 >= $GLIB_REQUIRED_VERSION") 2>&5 ac_status=$? @@ -8847,15 +8839,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GIO_LIBS"; then - pkg_cv_GIO_LIBS="$GIO_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GIO_LIBS"; then + pkg_cv_GIO_LIBS="$GIO_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gio-2.0 >= \$GLIB_REQUIRED_VERSION\""; } >&5 ($PKG_CONFIG --exists --print-errors "gio-2.0 >= $GLIB_REQUIRED_VERSION") 2>&5 ac_status=$? @@ -8865,14 +8855,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -8880,9 +8871,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GIO_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gio-2.0 >= $GLIB_REQUIRED_VERSION"` + GIO_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "gio-2.0 >= $GLIB_REQUIRED_VERSION" 2>&1` else - GIO_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gio-2.0 >= $GLIB_REQUIRED_VERSION"` + GIO_PKG_ERRORS=`$PKG_CONFIG --print-errors "gio-2.0 >= $GLIB_REQUIRED_VERSION" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GIO_PKG_ERRORS" >&5 @@ -8896,9 +8887,10 @@ Alternatively, you may set the environment variables GIO_CFLAGS and GIO_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -8916,18 +8908,17 @@ GIO_LIBS=$pkg_cv_GIO_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK" >&5 $as_echo_n "checking for GTK... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GTK_CFLAGS"; then - pkg_cv_GTK_CFLAGS="$GTK_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GTK_CFLAGS"; then + pkg_cv_GTK_CFLAGS="$GTK_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= \$GTK_REQUIRED_VERSION\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-2.0 >= $GTK_REQUIRED_VERSION") 2>&5 ac_status=$? @@ -8937,15 +8928,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GTK_LIBS"; then - pkg_cv_GTK_LIBS="$GTK_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GTK_LIBS"; then + pkg_cv_GTK_LIBS="$GTK_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= \$GTK_REQUIRED_VERSION\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-2.0 >= $GTK_REQUIRED_VERSION") 2>&5 ac_status=$? @@ -8955,14 +8944,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -8970,9 +8960,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gtk+-2.0 >= $GTK_REQUIRED_VERSION"` + GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "gtk+-2.0 >= $GTK_REQUIRED_VERSION" 2>&1` else - GTK_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gtk+-2.0 >= $GTK_REQUIRED_VERSION"` + GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors "gtk+-2.0 >= $GTK_REQUIRED_VERSION" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GTK_PKG_ERRORS" >&5 @@ -8986,9 +8976,10 @@ Alternatively, you may set the environment variables GTK_CFLAGS and GTK_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -9006,18 +8997,17 @@ GTK_LIBS=$pkg_cv_GTK_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GLIB" >&5 $as_echo_n "checking for GLIB... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GLIB_CFLAGS"; then - pkg_cv_GLIB_CFLAGS="$GLIB_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GLIB_CFLAGS"; then + pkg_cv_GLIB_CFLAGS="$GLIB_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gobject-2.0 >= \$GLIB_REQUIRED_VERSION\""; } >&5 ($PKG_CONFIG --exists --print-errors "gobject-2.0 >= $GLIB_REQUIRED_VERSION") 2>&5 ac_status=$? @@ -9027,15 +9017,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GLIB_LIBS"; then - pkg_cv_GLIB_LIBS="$GLIB_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GLIB_LIBS"; then + pkg_cv_GLIB_LIBS="$GLIB_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gobject-2.0 >= \$GLIB_REQUIRED_VERSION\""; } >&5 ($PKG_CONFIG --exists --print-errors "gobject-2.0 >= $GLIB_REQUIRED_VERSION") 2>&5 ac_status=$? @@ -9045,14 +9033,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -9060,9 +9049,9 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GLIB_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gobject-2.0 >= $GLIB_REQUIRED_VERSION"` + GLIB_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "gobject-2.0 >= $GLIB_REQUIRED_VERSION" 2>&1` else - GLIB_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gobject-2.0 >= $GLIB_REQUIRED_VERSION"` + GLIB_PKG_ERRORS=`$PKG_CONFIG --print-errors "gobject-2.0 >= $GLIB_REQUIRED_VERSION" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GLIB_PKG_ERRORS" >&5 @@ -9076,9 +9065,10 @@ Alternatively, you may set the environment variables GLIB_CFLAGS and GLIB_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "The pkg-config script could not be found or is too old. Make sure it @@ -9096,7 +9086,7 @@ GLIB_LIBS=$pkg_cv_GLIB_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi @@ -9141,11 +9131,10 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for NUNIT" >&5 $as_echo_n "checking for NUNIT... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$NUNIT_CFLAGS"; then - pkg_cv_NUNIT_CFLAGS="$NUNIT_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$NUNIT_CFLAGS"; then + pkg_cv_NUNIT_CFLAGS="$NUNIT_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"nunit\""; } >&5 ($PKG_CONFIG --exists --print-errors "nunit") 2>&5 ac_status=$? @@ -9155,15 +9144,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$NUNIT_LIBS"; then - pkg_cv_NUNIT_LIBS="$NUNIT_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$NUNIT_LIBS"; then + pkg_cv_NUNIT_LIBS="$NUNIT_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"nunit\""; } >&5 ($PKG_CONFIG --exists --print-errors "nunit") 2>&5 ac_status=$? @@ -9173,14 +9160,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -9188,17 +9176,17 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - NUNIT_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "nunit"` + NUNIT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "nunit" 2>&1` else - NUNIT_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "nunit"` + NUNIT_PKG_ERRORS=`$PKG_CONFIG --print-errors "nunit" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$NUNIT_PKG_ERRORS" >&5 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - have_nunit=no + have_nunit=no elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } have_nunit=no else NUNIT_CFLAGS=$pkg_cv_NUNIT_CFLAGS @@ -9856,7 +9844,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by docky $as_me 2.0.4, which was +This file was extended by docky $as_me 2.0.5, which was generated by GNU Autoconf 2.65. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -9913,7 +9901,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -docky config.status 2.0.4 +docky config.status 2.0.5 configured by $0, generated by GNU Autoconf 2.65, with options \\"\$ac_cs_config\\" diff -Nru docky-2.0.4/configure.ac docky-2.0.5/configure.ac --- docky-2.0.4/configure.ac 2010-05-31 07:57:05.815621942 +0200 +++ docky-2.0.5/configure.ac 2010-07-01 19:03:00.505184003 +0200 @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ([2.54]) -AC_INIT([docky], [2.0.4]) +AC_INIT([docky], [2.0.5]) AM_INIT_AUTOMAKE([foreign tar-pax]) AC_CONFIG_MACRO_DIR([m4]) diff -Nru docky-2.0.4/COPYRIGHT docky-2.0.5/COPYRIGHT --- docky-2.0.4/COPYRIGHT 2010-02-14 19:56:42.000000000 +0100 +++ docky-2.0.5/COPYRIGHT 2010-06-26 15:47:36.543229000 +0200 @@ -1,5 +1,5 @@ Docky -Copyright (C) 2009 by the following: +Copyright (C) 2009-2010 by the following: If you have contributed to this project then you deserve to be on this list. Contact us (see: AUTHORS) and we'll add you. @@ -10,6 +10,7 @@ Rico Tzschichholz Seif Lofty Chris Halse Rogers +Alex Launi diff -Nru docky-2.0.4/data/icons/hicolor/128x128/apps/Makefile.in docky-2.0.5/data/icons/hicolor/128x128/apps/Makefile.in --- docky-2.0.4/data/icons/hicolor/128x128/apps/Makefile.in 2010-05-31 08:00:11.705620863 +0200 +++ docky-2.0.5/data/icons/hicolor/128x128/apps/Makefile.in 2010-07-01 19:05:32.915184001 +0200 @@ -188,6 +188,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/icons/hicolor/128x128/Makefile.in docky-2.0.5/data/icons/hicolor/128x128/Makefile.in --- docky-2.0.4/data/icons/hicolor/128x128/Makefile.in 2010-05-31 08:00:11.665621381 +0200 +++ docky-2.0.5/data/icons/hicolor/128x128/Makefile.in 2010-07-01 19:05:32.855184001 +0200 @@ -204,6 +204,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/icons/hicolor/16x16/apps/Makefile.in docky-2.0.5/data/icons/hicolor/16x16/apps/Makefile.in --- docky-2.0.4/data/icons/hicolor/16x16/apps/Makefile.in 2010-05-31 08:00:11.795621343 +0200 +++ docky-2.0.5/data/icons/hicolor/16x16/apps/Makefile.in 2010-07-01 19:05:33.025184001 +0200 @@ -188,6 +188,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/icons/hicolor/16x16/Makefile.in docky-2.0.5/data/icons/hicolor/16x16/Makefile.in --- docky-2.0.4/data/icons/hicolor/16x16/Makefile.in 2010-05-31 08:00:11.745621382 +0200 +++ docky-2.0.5/data/icons/hicolor/16x16/Makefile.in 2010-07-01 19:05:32.965184001 +0200 @@ -204,6 +204,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/icons/hicolor/22x22/apps/Makefile.in docky-2.0.5/data/icons/hicolor/22x22/apps/Makefile.in --- docky-2.0.4/data/icons/hicolor/22x22/apps/Makefile.in 2010-05-31 08:00:11.875621425 +0200 +++ docky-2.0.5/data/icons/hicolor/22x22/apps/Makefile.in 2010-07-01 19:05:33.135184001 +0200 @@ -188,6 +188,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/icons/hicolor/22x22/Makefile.in docky-2.0.5/data/icons/hicolor/22x22/Makefile.in --- docky-2.0.4/data/icons/hicolor/22x22/Makefile.in 2010-05-31 08:00:11.835620729 +0200 +++ docky-2.0.5/data/icons/hicolor/22x22/Makefile.in 2010-07-01 19:05:33.085184001 +0200 @@ -204,6 +204,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/icons/hicolor/24x24/apps/Makefile.in docky-2.0.5/data/icons/hicolor/24x24/apps/Makefile.in --- docky-2.0.4/data/icons/hicolor/24x24/apps/Makefile.in 2010-05-31 08:00:11.965621653 +0200 +++ docky-2.0.5/data/icons/hicolor/24x24/apps/Makefile.in 2010-07-01 19:05:33.255184001 +0200 @@ -188,6 +188,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/icons/hicolor/24x24/Makefile.in docky-2.0.5/data/icons/hicolor/24x24/Makefile.in --- docky-2.0.4/data/icons/hicolor/24x24/Makefile.in 2010-05-31 08:00:11.924371709 +0200 +++ docky-2.0.5/data/icons/hicolor/24x24/Makefile.in 2010-07-01 19:05:33.195184001 +0200 @@ -204,6 +204,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/icons/hicolor/32x32/apps/Makefile.in docky-2.0.5/data/icons/hicolor/32x32/apps/Makefile.in --- docky-2.0.4/data/icons/hicolor/32x32/apps/Makefile.in 2010-05-31 08:00:12.055621325 +0200 +++ docky-2.0.5/data/icons/hicolor/32x32/apps/Makefile.in 2010-07-01 19:05:33.365184001 +0200 @@ -188,6 +188,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/icons/hicolor/32x32/Makefile.in docky-2.0.5/data/icons/hicolor/32x32/Makefile.in --- docky-2.0.4/data/icons/hicolor/32x32/Makefile.in 2010-05-31 08:00:12.005621402 +0200 +++ docky-2.0.5/data/icons/hicolor/32x32/Makefile.in 2010-07-01 19:05:33.315184001 +0200 @@ -204,6 +204,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/icons/hicolor/48x48/apps/Makefile.in docky-2.0.5/data/icons/hicolor/48x48/apps/Makefile.in --- docky-2.0.4/data/icons/hicolor/48x48/apps/Makefile.in 2010-05-31 08:00:12.135620635 +0200 +++ docky-2.0.5/data/icons/hicolor/48x48/apps/Makefile.in 2010-07-01 19:05:33.485184001 +0200 @@ -188,6 +188,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/icons/hicolor/48x48/Makefile.in docky-2.0.5/data/icons/hicolor/48x48/Makefile.in --- docky-2.0.4/data/icons/hicolor/48x48/Makefile.in 2010-05-31 08:00:12.095620745 +0200 +++ docky-2.0.5/data/icons/hicolor/48x48/Makefile.in 2010-07-01 19:05:33.425184001 +0200 @@ -204,6 +204,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/icons/hicolor/48x48/mimetypes/Makefile.in docky-2.0.5/data/icons/hicolor/48x48/mimetypes/Makefile.in --- docky-2.0.4/data/icons/hicolor/48x48/mimetypes/Makefile.in 2010-05-31 08:00:12.185621398 +0200 +++ docky-2.0.5/data/icons/hicolor/48x48/mimetypes/Makefile.in 2010-07-01 19:05:33.535184001 +0200 @@ -188,6 +188,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/icons/hicolor/64x64/apps/Makefile.in docky-2.0.5/data/icons/hicolor/64x64/apps/Makefile.in --- docky-2.0.4/data/icons/hicolor/64x64/apps/Makefile.in 2010-05-31 08:00:12.265621408 +0200 +++ docky-2.0.5/data/icons/hicolor/64x64/apps/Makefile.in 2010-07-01 19:05:33.655184001 +0200 @@ -188,6 +188,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/icons/hicolor/64x64/Makefile.in docky-2.0.5/data/icons/hicolor/64x64/Makefile.in --- docky-2.0.4/data/icons/hicolor/64x64/Makefile.in 2010-05-31 08:00:12.225621347 +0200 +++ docky-2.0.5/data/icons/hicolor/64x64/Makefile.in 2010-07-01 19:05:33.595184001 +0200 @@ -204,6 +204,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/icons/hicolor/Makefile.in docky-2.0.5/data/icons/hicolor/Makefile.in --- docky-2.0.4/data/icons/hicolor/Makefile.in 2010-05-31 08:00:12.315621366 +0200 +++ docky-2.0.5/data/icons/hicolor/Makefile.in 2010-07-01 19:05:33.715184001 +0200 @@ -204,6 +204,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/icons/Makefile.in docky-2.0.5/data/icons/Makefile.in --- docky-2.0.4/data/icons/Makefile.in 2010-05-31 08:00:11.615621360 +0200 +++ docky-2.0.5/data/icons/Makefile.in 2010-07-01 19:05:32.795184001 +0200 @@ -204,6 +204,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/Makefile.in docky-2.0.5/data/Makefile.in --- docky-2.0.4/data/Makefile.in 2010-05-31 08:00:11.575621626 +0200 +++ docky-2.0.5/data/Makefile.in 2010-07-01 19:05:32.745184001 +0200 @@ -229,6 +229,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/themes/Air/Makefile.in docky-2.0.5/data/themes/Air/Makefile.in --- docky-2.0.4/data/themes/Air/Makefile.in 2010-05-31 08:00:12.355621373 +0200 +++ docky-2.0.5/data/themes/Air/Makefile.in 2010-07-01 19:05:33.765184001 +0200 @@ -188,6 +188,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/themes/Glass/Makefile.in docky-2.0.5/data/themes/Glass/Makefile.in --- docky-2.0.4/data/themes/Glass/Makefile.in 2010-05-31 08:00:12.395620512 +0200 +++ docky-2.0.5/data/themes/Glass/Makefile.in 2010-07-01 19:05:33.825184001 +0200 @@ -188,6 +188,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/themes/Grayscale/Makefile.in docky-2.0.5/data/themes/Grayscale/Makefile.in --- docky-2.0.4/data/themes/Grayscale/Makefile.in 2010-05-31 08:00:12.445621372 +0200 +++ docky-2.0.5/data/themes/Grayscale/Makefile.in 2010-07-01 19:05:33.885184001 +0200 @@ -188,6 +188,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/themes/HUD/Makefile.in docky-2.0.5/data/themes/HUD/Makefile.in --- docky-2.0.4/data/themes/HUD/Makefile.in 2010-05-31 08:00:12.485621367 +0200 +++ docky-2.0.5/data/themes/HUD/Makefile.in 2010-07-01 19:05:33.935184001 +0200 @@ -188,6 +188,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/themes/Makefile.in docky-2.0.5/data/themes/Makefile.in --- docky-2.0.4/data/themes/Makefile.in 2010-05-31 08:00:12.525621400 +0200 +++ docky-2.0.5/data/themes/Makefile.in 2010-07-01 19:05:33.995184001 +0200 @@ -204,6 +204,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/data/themes/Smoke/Makefile.in docky-2.0.5/data/themes/Smoke/Makefile.in --- docky-2.0.4/data/themes/Smoke/Makefile.in 2010-05-31 08:00:12.575621383 +0200 +++ docky-2.0.5/data/themes/Smoke/Makefile.in 2010-07-01 19:05:34.055184001 +0200 @@ -188,6 +188,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/debian/changelog docky-2.0.5/debian/changelog --- docky-2.0.4/debian/changelog 2010-07-05 13:04:39.000000000 +0200 +++ docky-2.0.5/debian/changelog 2010-07-05 13:04:39.000000000 +0200 @@ -1,3 +1,83 @@ +docky (2.0.5-0ubuntu1) lucid-proposed; urgency=low + + * New upstream release 2.0.5 "Be proud of your dock", + changes include: + + remove --debug flag from launcher for lower memory usage + + update the about dialog credits to list documenters and make translation + tab easier to read + + change url in about dialog to the launchpad project page + + Window-Matching + - fix for applications commandline + - properly match qt creator (LP: #594814) + - prefer local over global launchers (LP: #588073) (LP: #592841) + - match prefix for gksudo (LP: #516433) + - fix nautilus items showing active indicator when desktop + is focused (LP: #487113) + - fix matching wine apps that use a prefixed launcher (LP: #596092) + + Memory Leaks + - dispose of calendar painter when the clock item is disposed + - fix leak in AutoHideManager + - several fixes using Cairo.Context.Target and Pango.Layout + - fix leak in PagingPainters + - fix leak in recursive file-deletion + - fix leaking SeparatorItems, WnckDockItems + - fix leaks with FileEmblems + - fix Pixbuf related leaks + - fix some leaks regarding FileMonitors + - fix leaks regarding Tiles and AbtractTileObjects + - fix leaking Glib.FileAdapter caused by unreferenced Action in + FileDockItem + + Handle invalid desktopfile entry and UriFormatException in + FileApplicationProvider (LP: #595921) + + fix potential crash for invalid HelperMetadata + + handle drops correctly + + fix handling of Helpers in HelperService + + make the sliders in preferences behave better + + fix drawing of rotated items + + fix HoveredItem click-position + + avoids fatal errors on console when loading embedded icons when no + height or width is specified and when dock items have a null Icon + + fix icon theme change not refreshing the dock icons (LP: #590205) + + fix SVG rendering bug + + fix iconsize temporarily getting large when adding to full dock + (LP: #579576) + + fix the 'crash in PinToDock' (LP: #588073) + + make 3d background height more consistent and a tad larger (LP: #503038) + + fix dragging multiple files to a folder on the dock, which caused + a crash and data corruption (LP: #579049) + + don't request animations if urgent state is removed from a window and + fix glow location (LP: #596422) + + fix window previews being offset (LP: #495065) + + fix broken zoom after shrinking icon size (LP: #598924) + + fix problem with hovers still visible when painters show + + fix displaying default icon in place of missing file emblem (LP: #534651) + + fix crash when gconf key for menus_have_icons is not set (LP: #573751) + + make sure painters fit on screen (LP: #589978) + + fix icon minimize animations not working immediately for some newly + opened windows + + don't dispose our static DockyItem + + fix CurrentDesktopOnly not working when dragging a window across desktops + (LP: #600290) + + GMail: + - fix thread-guards and remove deprecated code + - fix problem with feeds that don't have an author entry (LP: #595530) + + NPR: fix bug where removing your last NPR station unloaded the docklet + and fix station icon + + NetworkManager: fix crash caused when NM goes away + and fix icons and add another fallback icon (LP: #588581) + + Mounter: + - fixed some leaks + - only remove mounted items if they were successfully unmounted + (LP: #597637) + - fix duplicate icons showing in mounter (LP: #525306) + + Weather: fix feels like temp showing incorrect for metric (LP: #597670) + + RecentDocuments: + - fixed some leaks + - fix sensitivity of recent docs clear menu item - even if docky shows + the list as empty does not mean it cant be cleared + + -- Rico Tzschichholz Fri, 02 Jul 2010 10:26:00 +0200 + docky (2.0.4-0ubuntu1) lucid-proposed; urgency=low [ Iain Lane ] diff -Nru docky-2.0.4/Docky/AssemblyInfo.cs docky-2.0.5/Docky/AssemblyInfo.cs --- docky-2.0.4/Docky/AssemblyInfo.cs 2010-05-31 08:00:18.424372989 +0200 +++ docky-2.0.5/Docky/AssemblyInfo.cs 2010-07-01 19:05:38.505184002 +0200 @@ -46,7 +46,7 @@ // // You can specify all values by your own or you can build default build and revision // numbers with the '*' character (the default): -[assembly: AssemblyVersion("1266")] +[assembly: AssemblyVersion("1336")] // The following attributes specify the key for the sign of your assembly. See the // .NET Framework documentation for more information about signing. @@ -58,8 +58,8 @@ { internal static class AssemblyInfo { - public const string DisplayVersion = "2.0.4"; - public const string VersionDetails = "bzr docky-2.0 r1266"; + public const string DisplayVersion = "2.0.5"; + public const string VersionDetails = "bzr docky-2.0 r1336"; public const string LocaleDirectory = "/usr/share/locale"; public const string InstallData = "/usr/share"; } diff -Nru docky-2.0.4/Docky/Docky/ConfigurationWindow.cs docky-2.0.5/Docky/Docky/ConfigurationWindow.cs --- docky-2.0.4/Docky/Docky/ConfigurationWindow.cs 2010-05-25 13:12:33.844863402 +0200 +++ docky-2.0.5/Docky/Docky/ConfigurationWindow.cs 2010-06-30 10:15:00.800310995 +0200 @@ -65,6 +65,9 @@ TileView HelpersTileview, DockletsTileview; Widgets.SearchEntry HelperSearch, DockletSearch; + List helpertiles; + List docklettiles; + internal static ConfigurationWindow Instance { get; private set; } static ConfigurationWindow () { @@ -78,11 +81,15 @@ if (activeDock == value) return; - if (activeDock != null) + if (activeDock != null) { activeDock.UnsetActiveGlow (); + activeDock.Preferences.ItemProvidersChanged -= HandleItemProvidersChanged; + } - if (value != null) + if (value != null) { value.SetActiveGlow (); + value.Preferences.ItemProvidersChanged += HandleItemProvidersChanged; + } activeDock = value; @@ -92,6 +99,27 @@ } } + void HandleItemProvidersChanged (object o, ItemProvidersChangedEventArgs args) + { + RefreshDocklets (); + } + + public override void Dispose () + { + ActiveDock = null; + if (HelpersTileview != null) + HelpersTileview.Clear (); + if (DockletsTileview != null) + DockletsTileview.Clear (); + + helpertiles.ForEach (to => to.Dispose ()); + helpertiles.Clear (); + docklettiles.ForEach (to => to.Dispose ()); + docklettiles.Clear (); + + base.Dispose (); + } + private ConfigurationWindow () : base(Gtk.WindowType.Toplevel) { this.Build (); @@ -113,6 +141,7 @@ start_with_computer_checkbutton.Active = IsAutoStartEnabled (); // setup docklets { + docklettiles = new List (); DockletSearch = new SearchEntry (); DockletSearch.EmptyMessage = Catalog.GetString ("Search Docklets..."); DockletSearch.InnerEntry.Changed += delegate { @@ -128,6 +157,7 @@ // } // setup helpers { + helpertiles = new List (); HelperSearch = new SearchEntry (); HelperSearch.EmptyMessage = Catalog.GetString ("Search Helpers..."); HelperSearch.InnerEntry.Changed += delegate { @@ -280,6 +310,8 @@ md.DefaultResponse = Gtk.ResponseType.Cancel; if ((ResponseType)md.Run () == Gtk.ResponseType.Ok) { + ActiveDock.ConfigurationClick -= HandleDockConfigurationClick; + ActiveDock.LeaveConfigurationMode (); Docky.Controller.DeleteDock (ActiveDock); if (Docky.Controller.Docks.Count () == 1) ActiveDock = Docky.Controller.Docks.First (); @@ -412,27 +444,48 @@ void RefreshHelpers () { + if (HelpersTileview == null) + return; + + HelpersTileview.Clear (); + + List helpers = DockServices.Helpers.Helpers; + + foreach (HelperTile tileobject in helpertiles.Where (to => !helpers.Contains (to.Helper))) { + helpertiles.Remove (tileobject); + tileobject.Dispose (); + } + helpertiles = helpers.Where (helper => !helpertiles.Exists (to => helper == to.Helper)) + .Select (h => new HelperTile (h)) + .Union (helpertiles).ToList (); + string query = HelperSearch.InnerEntry.Text.ToLower (); - IEnumerable tiles = DockServices.Helpers.Helpers.Select (h => new HelperTile (h)) - .Where (h => h.Name.ToLower ().Contains (query) || h.Description.ToLower ().Contains (query)) - .OrderBy (t => t.Name); + IEnumerable showinghelpertiles = helpertiles + .Where (hto => hto.Name.ToLower ().Contains (query) || hto.Description.ToLower ().Contains (query)) + .OrderBy (hto => hto.Name); if (helper_show_cmb.Active == (uint) HelperShowStates.Enabled) - tiles = tiles.Where (h => h.Enabled); - else if (helper_show_cmb.Active == (uint) HelperShowStates.Disabled) - tiles = tiles.Where (h => !h.Enabled); + showinghelpertiles = showinghelpertiles.Where (hto => hto.Enabled); + else if (helper_show_cmb.Active == (uint) HelperShowStates.Disabled) + showinghelpertiles = showinghelpertiles.Where (hto => !hto.Enabled); - HelpersTileview.Clear (); - foreach (HelperTile helper in tiles) { - HelpersTileview.AppendTile (helper); - } + foreach (HelperTile tileobject in showinghelpertiles) + HelpersTileview.AppendTile (tileobject); } void RefreshDocklets () { if (DockletsTileview == null) return; + + AbstractDockItemProvider selectedProvider = null; + DockletTile selectedTile = (DockletTile) DockletsTileview.CurrentTile (); + if (selectedTile != null) + selectedProvider = selectedTile.Provider; + DockletsTileview.Clear (); + docklettiles.ForEach (tile => tile.Dispose ()); + docklettiles.Clear (); if (ActiveDock == null) return; @@ -440,28 +493,32 @@ string query = DockletSearch.InnerEntry.Text.ToLower (); // build a list of DockletTiles, starting with the currently active tiles for the active dock, // and the available addins - List tiles = new List (); + DockletTile currentTile = null; foreach (AbstractDockItemProvider provider in ActiveDock.Preferences.ItemProviders) { string providerID = PluginManager.AddinIDFromProvider (provider); if (string.IsNullOrEmpty (providerID)) - continue; + continue; - tiles.Add (new DockletTile (providerID, provider)); + docklettiles.Add (new DockletTile (providerID, provider)); + if (provider == selectedProvider) + currentTile = docklettiles.Last (); } - tiles = tiles.Concat (PluginManager.AvailableProviderIDs.Select (id => new DockletTile (id))).ToList (); + docklettiles = docklettiles.Concat (PluginManager.AvailableProviderIDs.Select (id => new DockletTile (id))).ToList (); if (docklet_show_cmb.Active == (int) DockletShowStates.Active) - tiles = tiles.Where (t => t.Enabled).ToList (); + docklettiles = docklettiles.Where (t => t.Enabled).ToList (); else if (docklet_show_cmb.Active == (int) DockletShowStates.Disabled) - tiles = tiles.Where (t => !t.Enabled).ToList (); + docklettiles = docklettiles.Where (t => !t.Enabled).ToList (); - tiles = tiles.Where (t => t.Description.ToLower ().Contains (query) || t.Name.ToLower ().Contains (query)).ToList (); + docklettiles = docklettiles.Where (t => t.Description.ToLower ().Contains (query) || t.Name.ToLower ().Contains (query)).ToList (); - foreach (DockletTile docklet in tiles) { + foreach (DockletTile docklet in docklettiles) DockletsTileview.AppendTile (docklet); - } + + if (currentTile != null) + DockletsTileview.Select (docklettiles.IndexOf (currentTile)); } } } diff -Nru docky-2.0.4/Docky/Docky/DockletTile.cs docky-2.0.5/Docky/Docky/DockletTile.cs --- docky-2.0.4/Docky/Docky/DockletTile.cs 2010-05-03 07:58:13.407077962 +0200 +++ docky-2.0.5/Docky/Docky/DockletTile.cs 2010-06-30 11:39:35.290310994 +0200 @@ -32,6 +32,7 @@ { public Addin Addin { get; private set; } public AbstractDockItemProvider Provider { get; private set; } + Gtk.Button ConfigButton; public DockletTile (string addinID) : this (addinID, null) @@ -53,25 +54,37 @@ SubDescriptionText = Addin.Description.Author; ConfigButton = new Gtk.Button (Catalog.GetString ("Settings")); - ConfigButton.Clicked += delegate { - if (PluginManager.ConfigForAddin (Addin.Id) != null) - PluginManager.ConfigForAddin (Addin.Id).Show (); - }; + ConfigButton.Clicked += HandleConfigButtonClicked; UpdateInfo (); } + void HandleHelpButtonClicked (object sender, EventArgs e) + { + string id = Addin.Id.Substring (0, Addin.Id.IndexOf (",")); + id = id.Substring (id.IndexOf (".") + 1); + DockServices.System.Open ("http://wiki.go-docky.com/index.php?title=" + id + "_Docklet"); + } + + void HandleConfigButtonClicked (object sender, EventArgs e) + { + if (PluginManager.ConfigForAddin (Addin.Id) != null) + PluginManager.ConfigForAddin (Addin.Id).Show (); + } + void UpdateInfo () { - if (Enabled && PluginManager.ConfigForAddin (Addin.Id) != null) + if (Enabled && Addin != null && PluginManager.ConfigForAddin (Addin.Id) != null) AddUserButton (ConfigButton); else RemoveUserButton (ConfigButton); if (Provider == null) Icon = PluginManager.DefaultPluginIcon; - else + else if (Provider.Icon.IndexOf ("@") == -1) Icon = Provider.Icon; + else + ForcePixbuf = DockServices.Drawing.LoadIcon (Provider.Icon, 128, -1); } public override void OnActiveChanged () @@ -98,6 +111,10 @@ Addin = null; Provider = null; + ConfigButton.Clicked -= HandleConfigButtonClicked; + ConfigButton.Dispose (); + ConfigButton.Destroy (); + base.Dispose (); } } diff -Nru docky-2.0.4/Docky/Docky/Docky.cs docky-2.0.5/Docky/Docky/Docky.cs --- docky-2.0.4/Docky/Docky/Docky.cs 2010-05-28 22:39:57.586377487 +0200 +++ docky-2.0.5/Docky/Docky/Docky.cs 2010-06-26 15:47:36.543229000 +0200 @@ -1,5 +1,5 @@ // -// Copyright (C) 2009 Jason Smith +// Copyright (C) 2009-2010 Jason Smith, Robert Dyer // // 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 @@ -34,10 +34,8 @@ namespace Docky { - public static class Docky { - public static UserArgs CommandLinePreferences { get; private set; } static DockController controller; @@ -114,7 +112,7 @@ about.Version = AssemblyInfo.DisplayVersion + "\n" + AssemblyInfo.VersionDetails; about.IconName = "docky"; about.LogoIconName = "docky"; - about.Website = "http://www.go-docky.com/"; + about.Website = "https://launchpad.net/docky"; about.WebsiteLabel = "Website"; Gtk.AboutDialog.SetUrlHook ((dialog, link) => DockServices.System.Open (link)); about.Copyright = "Copyright \xa9 2009-2010 Docky Developers"; @@ -126,100 +124,134 @@ "Rico Tzschichholz ", "Seif Lotfy ", "Chris Halse Rogers ", - "Alex Launi " + "Alex Launi ", }; about.Artists = new[] { "Daniel Foré ", }; + about.Documenters = new[] { + "Sven Mauhar ", + "Robert Dyer ", + "Daniel Foré ", + "Chris Szikszoy ", + "Rico Tzschichholz ", + }; about.TranslatorCredits = "Asturian\n" + " Xuacu Saturio\n" + - + "\n" + + "Basque\n" + " Ibai Oihanguren\n" + + "\n" + "Bengali\n" + " Scio\n" + - + "\n" + + "Brazilian Portuguese\n" + " André Gondim, Fabio S Monteiro, Flávio Etrusco, Glauco Vinicius\n" + " Lindeval, Thiago Bellini, Victor Mello\n" + - + "\n" + + "Bulgarian\n" + " Boyan Sotirov, Krasimir Chonov\n" + - + "\n" + + "Catalan\n" + " BadChoice, Siegfried Gevatter\n" + - + "\n" + + "Chinese (Simplified)\n" + " Chen Tao, G.S.Alex, Xhacker Liu, fighterlyt, lhquark, skatiger, 冯超\n" + - + "\n" + + "Croatian\n" + " Saša Teković, zekopeko\n" + - + "\n" + + "English (United Kingdom)\n" + " Alex Denvir, Daniel Bell, David Wood, Joel Auterson, SteVe Cook\n" + - + "\n" + + "Finnish\n" + " Jiri Grönroos\n" + - + "\n" + + "French\n" + " Hugo M., Kévin Gomez, Pierre Slamich\n" + " Simon Richard, alienworkshop, maxime Cheval\n" + - + "\n" + + "Galician\n" + " Francisco Diéguez, Indalecio Freiría Santos, Miguel Anxo Bouzada, NaNo\n" + - + "\n" + + "German\n" + " Cephinux, Gabriel Shahzad, Jan-Christoph Borchardt, Mark Parigger\n" + " Martin Lettner, augias, fiction, pheder, tai\n" + - + "\n" + + "Hebrew\n" + " Uri Shabtay\n" + - + "\n" + + "Hindi\n" + " Bilal Akhtar\n" + - + "\n" + + "Hungarian\n" + " Bognár András, Gabor Kelemen, Jezsoviczki Ádám, NewPlayer\n" + - + "\n" + + "Icelandic\n" + " Baldur, Sveinn í Felli\n" + - + "\n" + + "Indonesian\n" + " Andika Triwidada, Fakhrul Rijal\n" + - + "\n" + + "Italian\n" + " Andrea Amoroso, Blaster, Ivan, MastroPino, Michele, Milo Casagrande, Quizzlo\n" + - + "\n" + + "Japanese\n" + " kawaji\n" + - + "\n" + + "Korean\n" + " Bugbear5, Cedna\n" + - + "\n" + + "Polish\n" + " 313, Adrian Grzemski, EuGene, Rafał Szalecki, Stanisław Gackowski, bumper, emol007\n" + - + "\n" + + "Romanian\n" + " Adi Roiban, George Dumitrescu\n" + - + "\n" + + "Russian\n" + " Alexander Semyonov, Alexey Nedilko, Andrey Sitnik, Artem Yakimenko\n" + " Dmitriy Bobylev, Ivan, Phenomen, Sergey Demurin, Sergey Sedov\n" + " SochiX, Vladimir, legin, sX11\n" + - + "\n" + + "Spanish\n" + " Alejandro Navarro, David, DiegoJ, Edgardo Fredz, FAMM, Fuerteventura\n" + " Gus, José A. Fuentes Santiago, Julián Alarcón, Malq, Martín V.\n" + " Omar Campagne, Ricardo Pérez López, Sebastián Porta, alvin23, augias, elXATU\n" + - + "\n" + + "Swedish\n" + " Daniel Nylander, Rovanion, riiga\n" + - + "\n" + + "Turkish\n" + " Yalçın Can, Yiğit Ateş\n" + - + "\n" + + "Ukrainian\n" + " naker.ua\n"; diff -Nru docky-2.0.4/Docky/Docky/HelperTile.cs docky-2.0.5/Docky/Docky/HelperTile.cs --- docky-2.0.4/Docky/Docky/HelperTile.cs 2010-05-25 13:12:33.844863402 +0200 +++ docky-2.0.5/Docky/Docky/HelperTile.cs 2010-06-30 10:03:10.860310995 +0200 @@ -30,11 +30,12 @@ public class HelperTile : AbstractTileObject { public Helper Helper { get; private set; } - + Gtk.Button UninstallButton; + public HelperTile (Helper helper) { this.Helper = helper; - DockServices.Helpers.HelperStatusChanged += HandleHelperHelperStatusChanged; + DockServices.Helpers.HelperStatusChanged += HandleHelperStatusChanged; ButtonStateDisabledText = Catalog.GetString ("_Enable"); ButtonStateEnabledText = Catalog.GetString ("_Disable"); @@ -51,21 +52,23 @@ if (!string.IsNullOrEmpty (helper.Data.Description)) Description = helper.Data.Description; if (helper.Data.Icon != null) - ForcePixbuf = helper.Data.Icon; + ForcePixbuf = helper.Data.Icon.Copy (); } if (helper.IsUser) { - Gtk.Button uninstall_btn = new Gtk.Button (); - uninstall_btn.Label = Catalog.GetString ("Uninstall"); - uninstall_btn.Clicked += delegate { - DockServices.Helpers.UninstallHelper (helper); - }; - AddUserButton (uninstall_btn); + UninstallButton = new Gtk.Button (Catalog.GetString ("Uninstall")); + UninstallButton.Clicked += HandleUninstallButtonClicked; + AddUserButton (UninstallButton); } SetProps (); } - + + void HandleUninstallButtonClicked (object sender, EventArgs e) + { + DockServices.Helpers.UninstallHelper (Helper); + } + void SetProps () { SubDescriptionText = Helper.IsRunning ? Catalog.GetString ("Running") : Catalog.GetString ("Stopped"); @@ -78,15 +81,21 @@ SetProps (); } - void HandleHelperHelperStatusChanged (object sender, HelperStatusChangedEventArgs e) + void HandleHelperStatusChanged (object sender, HelperStatusChangedEventArgs e) { SetProps (); } public override void Dispose () { - DockServices.Helpers.HelperStatusChanged -= HandleHelperHelperStatusChanged; + DockServices.Helpers.HelperStatusChanged -= HandleHelperStatusChanged; Helper = null; + + if (UninstallButton != null) { + UninstallButton.Clicked -= HandleUninstallButtonClicked; + UninstallButton.Dispose (); + UninstallButton.Destroy (); + } base.Dispose (); } diff -Nru docky-2.0.4/Docky/Docky/Interface/AutohideManager.cs docky-2.0.5/Docky/Docky/Interface/AutohideManager.cs --- docky-2.0.4/Docky/Docky/Interface/AutohideManager.cs 2010-03-31 17:49:09.677534137 +0200 +++ docky-2.0.5/Docky/Docky/Interface/AutohideManager.cs 2010-06-26 15:47:36.543229000 +0200 @@ -41,7 +41,8 @@ Wnck.Screen screen; CursorTracker tracker; int pid; - uint timer; + uint timer_activewindow; + uint timer_geometry; bool WindowIntersectingOther { get; set; } @@ -130,14 +131,14 @@ { if (args.PreviousWindow != null) args.PreviousWindow.GeometryChanged -= HandleGeometryChanged; - - if (timer > 0) - GLib.Source.Remove (timer); - - timer = GLib.Timeout.Add (200, delegate { + + if (timer_activewindow > 0) + return; + + timer_activewindow = GLib.Timeout.Add (200, delegate { SetupActiveWindow (); UpdateWindowIntersect (); - timer = 0; + timer_activewindow = 0; return false; }); } @@ -175,12 +176,12 @@ last_known_geo = geo; - if (timer > 0) - GLib.Source.Remove (timer); + if (timer_geometry > 0) + return; - timer = GLib.Timeout.Add (200, delegate { + timer_geometry = GLib.Timeout.Add (200, delegate { UpdateWindowIntersect (); - timer = 0; + timer_geometry = 0; return false; }); } diff -Nru docky-2.0.4/Docky/Docky/Interface/DockDragTracker.cs docky-2.0.5/Docky/Docky/Interface/DockDragTracker.cs --- docky-2.0.4/Docky/Docky/Interface/DockDragTracker.cs 2010-03-09 12:09:24.000000000 +0100 +++ docky-2.0.5/Docky/Docky/Interface/DockDragTracker.cs 2010-06-26 15:47:36.543229000 +0200 @@ -47,6 +47,7 @@ bool repo_mode = false; bool drag_disabled = false; int marker = 0; + uint drag_hover_timer; AbstractDockItem drag_item; @@ -100,11 +101,10 @@ return; repo_mode = value; - if (repo_mode) { + if (repo_mode) DisableDragTo (); - } else { + else EnableDragTo (); - } } } @@ -193,19 +193,17 @@ if (drag_item is INonPersistedItem || RepositionMode) drag_item = null; - if (drag_item != null) { + if (drag_item != null) pbuf = Owner.HoveredItem.IconSurface (new DockySurface (1, 1), Owner.ZoomedIconSize, Owner.IconSize, 0).LoadToPixbuf (); - } else { + else pbuf = new Gdk.Pixbuf (Gdk.Colorspace.Rgb, true, 8, 1, 1); - } Gtk.Drag.SetIconPixbuf (args.Context, pbuf, pbuf.Width / 2, pbuf.Height / 2); pbuf.Dispose (); // Set up a cursor tracker so we can move the window on the fly - if (RepositionMode) { + if (RepositionMode) Owner.CursorTracker.CursorPositionChanged += HandleCursorPositionChanged; - } } void HandleCursorPositionChanged (object sender, CursorPostionChangedArgs e) @@ -221,18 +219,17 @@ Gdk.Rectangle right = new Gdk.Rectangle (geo.X + geo.Width - activeRegion, geo.Y + activeRegion, activeRegion, geo.Height - activeRegion * 2); Gdk.Rectangle bottom = new Gdk.Rectangle (geo.X + activeRegion, geo.Y + geo.Height - activeRegion, geo.Width - activeRegion * 2, activeRegion); - DockPosition target = DockPosition.Left; - if (top.Contains (cursor)) { + DockPosition target; + if (top.Contains (cursor)) target = DockPosition.Top; - } else if (bottom.Contains (cursor)) { + else if (bottom.Contains (cursor)) target = DockPosition.Bottom; - } else if (left.Contains (cursor)) { + else if (left.Contains (cursor)) target = DockPosition.Left; - } else if (right.Contains (cursor)) { + else if (right.Contains (cursor)) target = DockPosition.Right; - } else { + else return; - } IDockPreferences prefs = Owner.Preferences; if (prefs.Position != target || prefs.MonitorNumber != monitor) { @@ -291,13 +288,11 @@ if (drag_data == null) return false; - foreach (string s in drag_data) { - if (Owner.HoveredProvider != null && Owner.HoveredProvider.CanAcceptDrop (s)) { + foreach (string s in drag_data) + if (Owner.HoveredProvider != null && Owner.HoveredProvider.CanAcceptDrop (s)) return true; - } else if (Owner.Preferences.DefaultProvider.CanAcceptDrop (s)) { + else if (Owner.Preferences.DefaultProvider.CanAcceptDrop (s)) return true; - } - } // cant accept anything! return false; @@ -324,14 +319,13 @@ foreach (string s in drag_data) { AbstractDockItemProvider provider; - if (Owner.HoveredProvider != null && Owner.HoveredProvider.CanAcceptDrop (s)) { + if (Owner.HoveredProvider != null && Owner.HoveredProvider.CanAcceptDrop (s)) provider = Owner.HoveredProvider; - } else if (Owner.Preferences.DefaultProvider.CanAcceptDrop (s)) { + else if (Owner.Preferences.DefaultProvider.CanAcceptDrop (s)) provider = Owner.Preferences.DefaultProvider; - } else { + else // nothing will take it, continue! continue; - } provider.AcceptDrop (s, newPosition); @@ -417,9 +411,7 @@ if (RepositionMode) return; - if (!InternalDragActive) { - ExternalDragActive = true; - } + ExternalDragActive = !InternalDragActive; if (marker != args.Context.GetHashCode ()) { marker = args.Context.GetHashCode (); @@ -470,12 +462,12 @@ // drag right if (drag_item.Position < destPos) { foreach (AbstractDockItem adi in ProviderForItem (drag_item).Items - .Where (i => i.Position > drag_item.Position && i.Position <= destPos)) + .Where (i => i.Position > drag_item.Position && i.Position <= destPos)) adi.Position--; // drag left } else if (drag_item.Position > destPos) { foreach (AbstractDockItem adi in ProviderForItem (drag_item).Items - .Where (i => i.Position < drag_item.Position && i.Position >= destPos)) + .Where (i => i.Position < drag_item.Position && i.Position >= destPos)) adi.Position++; } drag_item.Position = destPos; @@ -483,6 +475,19 @@ Owner.UpdateCollectionBuffer (); Owner.Preferences.SyncPreferences (); } + + if (drag_hover_timer > 0) { + GLib.Source.Remove (drag_hover_timer); + drag_hover_timer = 0; + } + + if (ExternalDragActive && drag_data != null) + drag_hover_timer = GLib.Timeout.Add (1500, delegate { + AbstractDockItem item = Owner.HoveredItem; + if (item != null) + item.Scrolled (ScrollDirection.Down, Gdk.ModifierType.None); + return true; + }); } AbstractDockItemProvider ProviderForItem (AbstractDockItem item) @@ -503,9 +508,8 @@ public void EnsureDragAndDropProxy () { // having a proxy window here is VERY bad ju-ju - if (InternalDragActive) { + if (InternalDragActive) return; - } if (Owner.DockHovered) { if (proxy_window == null) diff -Nru docky-2.0.4/Docky/Docky/Interface/DockPreferences.cs docky-2.0.5/Docky/Docky/Interface/DockPreferences.cs --- docky-2.0.4/Docky/Docky/Interface/DockPreferences.cs 2010-04-11 13:17:19.515355853 +0200 +++ docky-2.0.5/Docky/Docky/Interface/DockPreferences.cs 2010-06-26 15:47:36.543229000 +0200 @@ -330,8 +330,8 @@ window_manager_check.TooltipMarkup = Mono.Unix.Catalog.GetString ( "When set, windows which do not already have launchers on a dock will be added to this dock."); - icon_scale.Adjustment.SetBounds (24, 129, 1, 1, 1); - zoom_scale.Adjustment.SetBounds (1, 4.01, .01, .01, .01); + icon_scale.Adjustment.SetBounds (24, 129, 1, 12, 1); + zoom_scale.Adjustment.SetBounds (1, 4.01, .01, .1, .01); zoom_scale.FormatValue += delegate(object o, FormatValueArgs args) { args.RetVal = string.Format ("{0:#}%", args.Value * 100); diff -Nru docky-2.0.4/Docky/Docky/Interface/DockWindow.cs docky-2.0.5/Docky/Docky/Interface/DockWindow.cs --- docky-2.0.4/Docky/Docky/Interface/DockWindow.cs 2010-05-25 19:03:05.156114234 +0200 +++ docky-2.0.5/Docky/Docky/Interface/DockWindow.cs 2010-06-30 08:08:05.730310992 +0200 @@ -188,7 +188,6 @@ /// double remove_index; int remove_size; - int maxIconSize; uint animation_timer; uint icon_size_timer; @@ -230,6 +229,7 @@ RegisterPreferencesEvents (value); // Initialize value + MaxIconSize = Preferences.IconSize; UpdateMaxIconSize (); } } @@ -259,7 +259,7 @@ DragTracker.RepositionMode = config_mode; if (value) DragTracker.DragDisabled = false; - update_screen_regions = true; + UpdateScreenRegions (); SetTooltipVisibility (); if (background_buffer != null) { @@ -280,7 +280,7 @@ public ReadOnlyCollection Items { get { if (collection_backend.Count == 0) { - update_screen_regions = true; + UpdateScreenRegions (); bool priorItems = false; bool separatorNeeded = false; @@ -364,6 +364,8 @@ Pango.CairoHelper.LayoutPath (surface.Context, layout); surface.Context.Color = HoverTextManager.IsLight ? new Cairo.Color (0.1, 0.1, 0.1) : new Cairo.Color (1, 1, 1); surface.Context.Fill (); + + layout.Context.Dispose (); } return surface; @@ -504,10 +506,7 @@ get { return Math.Min (MaxIconSize, Preferences.IconSize); } } - int MaxIconSize { - get { return Math.Min (Preferences.IconSize, maxIconSize); } - set { maxIconSize = value; } - } + int MaxIconSize { get; set; } int Monitor { get { return Preferences.MonitorNumber; } @@ -593,13 +592,15 @@ DockWidth - PainterBufferSize, DockHeight - 2 * DockWidthBuffer); + int maxWidth = VerticalDock ? monitor_geo.Height : monitor_geo.Width; + if (Painter.Allocation != allocation) { Painter.SetAllocation (allocation); - allocation.Width = Painter.MinimumWidth; + allocation.Width = Math.Min (maxWidth - PainterBufferSize, Painter.MinimumWidth); Painter.SetAllocation (allocation); } - last_painter_width = Painter.MinimumWidth + PainterBufferSize; + last_painter_width = Math.Min (maxWidth, Painter.MinimumWidth + PainterBufferSize); return last_painter_width; } } @@ -664,16 +665,14 @@ // we buffer this value during renders since it will be checked many times and we dont need to // recalculate it each time - if (zoom_in_buffer.HasValue && rendering) { + if (zoom_in_buffer.HasValue && rendering) return zoom_in_buffer.Value; - } double zoom = Math.Min (1, (render_time - dock_hovered_change_time).TotalMilliseconds / BaseAnimationTime.TotalMilliseconds); - if (!DockHovered) { + if (!DockHovered) zoom = 1 - zoom; - } zoom *= 1 - PainterOpacity; @@ -683,13 +682,6 @@ return zoom; } } - - int ZoomSize { - get { - // 330 chosen for its pleasant (to me) look - return (int) (330 * (IconSize / 64.0)); - } - } #endregion @@ -735,6 +727,7 @@ Realized += HandleRealized; Docky.Controller.ThemeChanged += DockyControllerThemeChanged; + Wnck.Screen.Default.WindowOpened += HandleWindowOpened; // fix for nvidia bug if (Docky.CommandLinePreferences.BufferTime > 0) @@ -774,7 +767,11 @@ if (now - adi.StateSetTime (ItemState.Move) < SlideTime) return true; //Bouncing Items - if ((now - adi.LastClick) < BounceTime || (now - adi.StateSetTime (ItemState.Urgent)) < BounceTime) + if ((now - adi.LastClick) < BounceTime) + return true; + if ((adi.State & ItemState.Urgent) != ItemState.Urgent) + continue; + if ((now - adi.StateSetTime (ItemState.Urgent)) < BounceTime) return true; //Glowing Items if ((now - adi.StateSetTime (ItemState.Urgent)) < GlowTime) @@ -785,14 +782,14 @@ void HandleMenuHidden (object sender, EventArgs e) { - update_screen_regions = true; + UpdateScreenRegions (); SetTooltipVisibility (); AnimatedDraw (); } void HandleMenuShown (object sender, EventArgs e) { - update_screen_regions = true; + UpdateScreenRegions (); SetTooltipVisibility (); AnimatedDraw (); } @@ -1203,11 +1200,31 @@ else Painter.ButtonReleased (x, y, evnt.State); } else if (HoveredItem != null && lastClickedItem == HoveredItem) { - double x, y; Gdk.Rectangle region = DrawRegionForItem (HoveredItem); - x = ((Cursor.X + window_position.X) - region.X) / (double) region.Height; - y = ((Cursor.Y + window_position.Y) - region.Y) / (double) region.Width; + double x; + double y = Math.Min (1, Math.Max (0, (Cursor.Y - window_position.Y - region.Y) / (double) region.Height)); + + if (VerticalDock) + x = Math.Min (1, Math.Max (0, (Cursor.X - window_position.X - region.X) / (double) region.Width)); + else + x = Math.Min (1, Math.Max (0, (Cursor.X + window_position.X - region.X) / (double) region.Width)); + + if (HoveredItem.RotateWithDock) { + if (Position == DockPosition.Top) { + x = 1 - x; + y = 1 - y; + } else if (VerticalDock) { + double tmp = x; + x = y; + y = tmp; + + if (Position == DockPosition.Left) + y = 1 - y; + else + x = 1 - x; + } + } HoveredItem.Clicked (evnt.Button, evnt.State, x, y); AnimatedDraw (); @@ -1238,6 +1255,12 @@ #endregion #region Misc. + void HandleWindowOpened (object o, WindowOpenedArgs args) + { + UpdateScreenRegions (); + AnimatedDraw (); + } + void Reconfigure () { SetSizeRequest (); @@ -1273,19 +1296,23 @@ internal void UpdateCollectionBuffer () { if (rendering) { - // resetting a durring a render is bad. Complete the render then reset. + // resetting during a render is bad. Complete the render, then reset. GLib.Idle.Add (delegate { // dispose of our separators as we made them ourselves, // this could be a bit more elegant - foreach (AbstractDockItem item in Items.Where (adi => adi is INonPersistedItem)) + foreach (AbstractDockItem item in Items.Where (adi => adi is INonPersistedItem && adi != DockyItem)) { + DrawValues.Remove (item); item.Dispose (); + } collection_backend.Clear (); return false; }); } else { - foreach (AbstractDockItem item in Items.Where (adi => adi is INonPersistedItem)) + foreach (AbstractDockItem item in Items.Where (adi => adi is INonPersistedItem && adi != DockyItem)) { + DrawValues.Remove (item); item.Dispose (); + } collection_backend.Clear (); } @@ -1367,7 +1394,7 @@ Painter.PaintNeeded += HandlePainterPaintNeeded; repaint_painter = true; - update_screen_regions = true; + UpdateScreenRegions (); DragTracker.DragDisabled = true; SetTooltipVisibility (); @@ -1387,7 +1414,7 @@ Painter.PaintNeeded -= HandlePainterPaintNeeded; DragTracker.DragDisabled = false; - update_screen_regions = true; + UpdateScreenRegions (); Painter.Hidden (); Painter = null; @@ -1536,6 +1563,11 @@ Gdk.Rectangle DrawRegionForItemValue (AbstractDockItem item, DrawValue val) { + return DrawRegionForItemValue (item, val, false); + } + + Gdk.Rectangle DrawRegionForItemValue (AbstractDockItem item, DrawValue val, bool hoverRegion) + { int width = IconSize, height = IconSize; if (!item.Square) { @@ -1551,6 +1583,18 @@ } } + if (hoverRegion) + if (VerticalDock) + return new Gdk.Rectangle ((int) (val.Center.X - (width * val.Zoom / 2)), + (int) (val.StaticCenter.Y - height / 2), + (int) (width * val.Zoom), + height); + else + return new Gdk.Rectangle ((int) (val.StaticCenter.X - width / 2), + (int) (val.Center.Y - (height * val.Zoom / 2)), + width, + (int) (height * val.Zoom)); + return new Gdk.Rectangle ((int) (val.Center.X - (width * val.Zoom / 2)), (int) (val.Center.Y - (height * val.Zoom / 2)), (int) (width * val.Zoom), @@ -1568,52 +1612,40 @@ // first we do the math as if this is a top dock, to do this we need to set // up some "pretend" variables. we pretend we are a top dock because 0,0 is // at the top. - int width; - int height; + int width = surface.Width; + int height = surface.Height; double zoom; - // our width and height switch around if we have a veritcal dock - if (!VerticalDock) { - width = surface.Width; - height = surface.Height; - } else { - width = surface.Height; - height = surface.Width; - } Gdk.Point cursor = LocalCursor; Gdk.Point localCursor = cursor; // "relocate" our cursor to be on the top switch (Position) { - case DockPosition.Top: - ; - break; - case DockPosition.Left: - int tmpY = cursor.Y; - cursor.Y = cursor.X; - cursor.X = width - (width - tmpY); - break; case DockPosition.Right: - tmpY = cursor.Y; cursor.X = (Width - 1) - cursor.X; - cursor.Y = cursor.X; - cursor.X = width - (width - tmpY); break; case DockPosition.Bottom: cursor.Y = (Height - 1) - cursor.Y; break; + default: + break; } - // the line along the dock width about which the center of unzoomed icons sit - int midline = DockHeight / 2; - - // the left most edge of the first dock item - int startX = ((width - DockWidth) / 2) + DockWidthBuffer; + if (VerticalDock) { + int tmpY = cursor.Y; + cursor.Y = cursor.X; + cursor.X = tmpY; + + // our width and height switch around if we have a veritcal dock + width = surface.Height; + height = surface.Width; + } // this offset is used to split the icons into left/right aligned for panel mode - int panel_item_offset = 0; double panelanim = PanelModeToggleProgress; + int panel_item_offset; + if (VerticalDock) panel_item_offset = (monitor_geo.Height - DockWidth) / 2; else @@ -1626,206 +1658,216 @@ if (Preferences.PanelMode) panel_item_offset = (int) (panel_item_offset * panelanim); else - panel_item_offset = panel_item_offset - (int) (panel_item_offset * panelanim); + panel_item_offset -= (int) (panel_item_offset * panelanim); } + // the line along the dock width about which the center of unzoomed icons sit + int midline = DockHeight / 2; + + // the left most edge of the first dock item + int startX = ((width - DockWidth) / 2) + DockWidthBuffer - panel_item_offset; + Gdk.Point center = new Gdk.Point (startX, midline); - int index = 0; + // right align docklets bool rightAlign = (Items [0].Owner != Preferences.DefaultProvider && Items [0] != DockyItem); + if (rightAlign) + center.X += 2 * panel_item_offset; + + int index = 0; foreach (AbstractDockItem adi in Items) { - if (adi is SeparatorItem) - rightAlign = true; + // anything after the first separator is a docklet, and right aligned + if (!rightAlign && adi is SeparatorItem) { + rightAlign = true; + center.X += 2 * panel_item_offset; + } - // used to handle remove animation + // used to handle remove animations if (remove_index != 0 && remove_index < index && remove_index > index - 1) { double removePercent = 1 - Math.Min (1, (DateTime.UtcNow - remove_time).TotalMilliseconds / BaseAnimationTime.TotalMilliseconds); - if (removePercent == 0) { + if (removePercent == 0) remove_index = 0; - } else { + else center.X += (int) ((remove_size + ItemWidthBuffer) * removePercent); - } } DrawValue val = new DrawValue (); int iconSize = IconSize; // div by 2 may result in rounding errors? Will this render OK? Shorts WidthBuffer by 1? - double halfSize; - if (adi.Square) { - halfSize = iconSize / 2.0; - } else { - DockySurface icon = adi.IconSurface (surface, iconSize, IconSize, VisibleDockHeight); - - // yeah I am pretty sure... - if (adi.RotateWithDock || !VerticalDock) { - halfSize = icon.Width / 2.0; - } else { - halfSize = icon.Height / 2.0; - } + double halfSize = iconSize / 2.0; + + if (!adi.Square) { + DockySurface icon = adi.IconSurface (surface, iconSize, iconSize, VisibleDockHeight); + halfSize = ((adi.RotateWithDock || !VerticalDock) ? icon.Width : icon.Height) / 2.0; } + // animate adding new icon halfSize *= Math.Min (1, (DateTime.UtcNow - adi.AddTime).TotalMilliseconds / BaseAnimationTime.TotalMilliseconds); // center now represents our midpoint center.X += (int) Math.Floor (halfSize); val.StaticCenter = new PointD (center.X, center.Y); - if (ZoomPercent > 1) { - // get us some handy doubles with fancy names - double cursorPosition = cursor.X; - double centerPosition = center.X; - - // ZoomPercent is a number greater than 1. It should never be less than one. - // ZoomIn is a range of 0 to 1. we need a number that is 1 when ZoomIn is 0, - // and ZoomPercent when ZoomIn is 1. Then we treat this as - // if it were the ZoomPercent for the rest of the calculation - double zoomInPercent = 1 + (ZoomPercent - 1) * ZoomIn; - - // offset from the center of the true position, ranged between 0 and half of the zoom range - double offset = Math.Min (Math.Abs (cursorPosition - centerPosition), ZoomSize / 2); - - double offsetPercent; - if (ExternalDragActive) { - // Provide space for dropping between items - offset += ZoomedIconSize * (offset / (ZoomSize / 2.0)); - offsetPercent = Math.Min (1, offset / (ZoomSize / 2.0 + ZoomedIconSize)); - } else { - offsetPercent = offset / (ZoomSize / 2.0); - } - - if (offsetPercent > .99) - offsetPercent = 1; + // get us some handy doubles with fancy names + double cursorPosition = cursor.X; + double centerPosition = center.X; + + // ZoomPercent is a number greater than 1. It should never be less than one. + + // zoomInPercent is a range of 1 to ZoomPercent. + // We need a number that is 1 when ZoomIn is 0, and ZoomPercent when ZoomIn is 1. + // Then we treat this as if it were the ZoomPercent for the rest of the calculation. + double zoomInPercent = 1 + (ZoomPercent - 1) * ZoomIn; + + double zoomSize = ZoomEnabled ? ZoomedIconSize : 2.0 * IconSize; + + // offset from the center of the true position, ranged between 0 and the zoom size + double offset = Math.Min (Math.Abs (cursorPosition - centerPosition), zoomSize); + + double offsetPercent; + if (ExternalDragActive) { + // Provide space for dropping between items + offset += offset * zoomSize / IconSize; + offsetPercent = Math.Min (1, offset / (zoomSize + ZoomedIconSize)); + } else { + offsetPercent = offset / zoomSize; + } + + if (offsetPercent > .99) + offsetPercent = 1; + + // pull in our offset to make things less spaced out + // explaination since this is a bit tricky... + // we have three terms, basically offset = f(x) * h(x) * g(x) + // f(x) == offset identity + // h(x) == a number from 0 to DockPreference.ZoomPercent - 1. This is used to get the smooth "zoom in" effect. + // additionally serves to "curve" the offset based on the max zoom + // g(x) == a term used to move the ends of the zoom inward. Precalculated that the edges should be 66% of the current + // value. The center is 100%. (1 - offsetPercent) == 0,1 distance from center + // The .66 value comes from the area under the curve. Dont ask me to explain it too much because it's too clever for me. + + // for external drags with no zoom, we pretend there is actually a zoom of 200% + if (ExternalDragActive && ZoomPercent == 1) + offset *= ZoomIn / 2.0; + else + offset *= zoomInPercent - 1; + offset *= 1 - offsetPercent / 3; + + if (cursorPosition > centerPosition) + centerPosition -= offset; + else + centerPosition += offset; + + if (!adi.Zoom) { + val.Zoom = 1; + val.Center = new Cairo.PointD ((int) centerPosition, center.Y); + } else { // zoom is calculated as 1 through target_zoom (default 2). // The larger your offset, the smaller your zoom - // First we get the point on our curve that defines out current zoom + // First we get the point on our curve that defines our current zoom // offset is always going to fall on a point on the curve >= 0 zoom = 1 - Math.Pow (offsetPercent, 2); - // scale this to match out zoomInPercent + // scale this to match our zoomInPercent zoom = 1 + zoom * (zoomInPercent - 1); - // pull in our offset to make things less spaced out - // explaination since this is a bit tricky... - // we have three terms, basically offset = f(x) * h(x) * g(x) - // f(x) == offset identify - // h(x) == a number from 0 to DockPreference.ZoomPercent - 1. This is used to get the smooth "zoom in" effect. - // additionally serves to "curve" the offset based on the max zoom - // g(x) == a term used to move the ends of the zoom inward. Precalculated that the edges should be 66% of the current - // value. The center is 100%. (1 - offsetPercent) == 0,1 distance from center - // The .66 value comes from the area under the curve. Dont as me to explain it too much because it's too clever for me - offset = offset * (zoomInPercent - 1) * (1 - offsetPercent / 3); - + double zoomedCenterHeight = DockHeightBuffer + (iconSize * zoom / 2.0); - if (cursorPosition > centerPosition) { - centerPosition -= offset; - } else { - centerPosition += offset; - } + if (zoom == 1) + centerPosition = Math.Round (centerPosition); - if (!adi.Zoom) { - val.Zoom = 1; - val.Center = new Cairo.PointD ((int) centerPosition, center.Y); - } else { - double zoomedCenterHeight = DockHeightBuffer + (iconSize * zoom / 2.0); - - if (zoom == 1) - centerPosition = Math.Round (centerPosition); - - val.Center = new Cairo.PointD (centerPosition, zoomedCenterHeight); - val.Zoom = zoom; - } - } else { - val.Zoom = 1; - val.Center = new PointD (center.X, center.Y); + val.Center = new Cairo.PointD (centerPosition, zoomedCenterHeight); + val.Zoom = zoom; } // now we undo our transforms to the point - switch (Position) { - case DockPosition.Top: - ; - break; - case DockPosition.Left: + if (VerticalDock) { double tmpY = val.Center.Y; val.Center.Y = val.Center.X; - val.Center.X = width - (width - tmpY); + val.Center.X = tmpY; tmpY = val.StaticCenter.Y; val.StaticCenter.Y = val.StaticCenter.X; - val.StaticCenter.X = width - (width - tmpY); - break; + val.StaticCenter.X = tmpY; + } + + switch (Position) { case DockPosition.Right: - tmpY = val.Center.Y; - val.Center.Y = val.Center.X; - val.Center.X = width - (width - tmpY); val.Center.X = (height - 1) - val.Center.X; - - tmpY = val.StaticCenter.Y; - val.StaticCenter.Y = val.StaticCenter.X; - val.StaticCenter.X = width - (width - tmpY); val.StaticCenter.X = (height - 1) - val.StaticCenter.X; break; case DockPosition.Bottom: val.Center.Y = (height - 1) - val.Center.Y; val.StaticCenter.Y = (height - 1) - val.StaticCenter.Y; break; - } - - // split the icons into left/right aligned for panel mode - switch (Position) { default: - case DockPosition.Left: - case DockPosition.Top: - val = val.MoveRight (Position, rightAlign ? panel_item_offset : -panel_item_offset); - break; - case DockPosition.Right: - case DockPosition.Bottom: - val = val.MoveRight (Position, rightAlign ? -panel_item_offset : panel_item_offset); break; } - Gdk.Rectangle hoverArea = DrawRegionForItemValue (adi, val); + Gdk.Rectangle hoverArea = DrawRegionForItemValue (adi, val, true); if (VerticalDock) { hoverArea.Inflate ((int) (ZoomedDockHeight * .3), ItemWidthBuffer / 2); + hoverArea.Width += DockHeightBuffer; } else { hoverArea.Inflate (ItemWidthBuffer / 2, (int) (ZoomedDockHeight * .3)); + hoverArea.Height += DockHeightBuffer; + } + + switch (Position) { + case DockPosition.Right: + hoverArea.X -= DockHeightBuffer; + break; + case DockPosition.Bottom: + hoverArea.Y -= DockHeightBuffer; + break; + default: + break; } val.HoverArea = hoverArea; DrawValues[adi] = val; - if (hoverArea.Contains (localCursor) && !AutohideManager.Hidden) { - //keep the hovereditem in mind, but don't change it while rendering + // keep the hovereditem in mind, but don't change it while rendering + if (hoverArea.Contains (localCursor) && !AutohideManager.Hidden) next_hoveredItem = adi; - } if (update_screen_regions) { - Gdk.Rectangle region = hoverArea; - region.X += window_position.X; - region.Y += window_position.Y; - if (Menu.Visible || ConfigurationMode || Painter != null) + if (Menu.Visible || ConfigurationMode || Painter != null) { adi.SetScreenRegion (Screen, new Gdk.Rectangle (0, 0, 0, 0)); - else + } else { + Gdk.Rectangle region = hoverArea; + region.X += window_position.X; + region.Y += window_position.Y; adi.SetScreenRegion (Screen, region); + } } // move past midpoint to end of icon center.X += (int) Math.Ceiling (halfSize) + ItemWidthBuffer; + index++; } update_screen_regions = false; } + void UpdateScreenRegions () + { + GLib.Timeout.Add (10 + (uint) Math.Max (BaseAnimationTime.TotalMilliseconds, SlideTime.TotalMilliseconds), delegate { + update_screen_regions = true; + AnimatedDraw (); + return false; + }); + } + void UpdateMaxIconSize () { if (Painter != null) return; - MaxIconSize = Preferences.IconSize; - if (icon_size_timer > 0) GLib.Source.Remove (icon_size_timer); @@ -1842,11 +1884,12 @@ } } else if (MaxIconSize < Preferences.IconSize) { // Perhaps MaxIconSize is too small, lets find out! - while (dockWidth < maxWidth && MaxIconSize <= Preferences.IconSize) { + while (dockWidth < maxWidth && MaxIconSize < Preferences.IconSize) { MaxIconSize++; dockWidth = DockWidth; } - MaxIconSize--; + } else { + MaxIconSize = Preferences.IconSize; } AnimatedDraw (); icon_size_timer = 0; @@ -2073,9 +2116,9 @@ DrawValue val = DrawValues [adi]; DrawValue glowloc; if (preferences.FadeOnHide) { - glowloc = val.MoveIn (Position, IconSize * val.Zoom / 2 - DockHeight); + glowloc = val.MoveIn (Position, -urgent_glow_buffer.Height / 2 + DockHeightBuffer); } else { - glowloc = val.MoveIn (Position, IconSize * val.Zoom / 2); + glowloc = val.MoveIn (Position, -urgent_glow_buffer.Height / 2 + DockHeightBuffer + ZoomedDockHeight); } double opacity = 0.2 + (0.75 * (Math.Sin ((render_time - adi.StateSetTime (ItemState.Urgent)).TotalMilliseconds / PulseTime.TotalMilliseconds * 2 * Math.PI) + 1) / 2); @@ -2193,12 +2236,11 @@ double slideProgress = (render_time - item.StateSetTime (ItemState.Move)).TotalMilliseconds / SlideTime.TotalMilliseconds; double move = (item.Position - item.LastPosition) * (IconSize * val.Zoom + ItemWidthBuffer) - //draw the anitmation backwards cause item has already moved + //draw the animation backwards cause item has already moved * (1 - slideProgress); - if (Position == DockPosition.Top || Position == DockPosition.Left) { + if (Position == DockPosition.Top || Position == DockPosition.Left) move *= -1; - } val = val.MoveRight (Position, move); } @@ -2226,17 +2268,15 @@ } } - if (HoveredAcceptsDrop && HoveredItem == item && ExternalDragActive) { + if (HoveredAcceptsDrop && HoveredItem == item && ExternalDragActive) lighten += .4; - } else if (!ZoomEnabled && !Menu.Visible && HoveredItem == item && !ExternalDragActive && !InternalDragActive && !ConfigurationMode) { + else if (!ZoomEnabled && !Menu.Visible && HoveredItem == item && !ExternalDragActive && !InternalDragActive && !ConfigurationMode) lighten += .2; - } - if ((item.State & ItemState.Wait) != 0) { + if ((item.State & ItemState.Wait) != 0) darken += .5; - } else if (Menu.Visible && HoveredItem == item) { + else if (Menu.Visible && HoveredItem == item) darken += .4; - } if ((item.State & ItemState.Urgent) == ItemState.Urgent && (render_time - item.StateSetTime (ItemState.Urgent)) < BounceTime) { @@ -2252,23 +2292,22 @@ double renderZoom = 1, renderRotation = 0; - if (item.RotateWithDock) { + if (item.RotateWithDock) switch (Position) { case DockPosition.Top: renderRotation = Math.PI; break; case DockPosition.Left: - renderRotation = Math.PI * 1.5; + renderRotation = Math.PI * .5; break; case DockPosition.Right: - renderRotation = Math.PI * .5; + renderRotation = Math.PI * 1.5; break; default: case DockPosition.Bottom: renderRotation = 0; break; } - } if (item.Zoom && !(item.ScalableRendering && center.Zoom == 1)) { icon = item.IconSurface (surface, ZoomedIconSize, IconSize, VisibleDockHeight); @@ -2349,12 +2388,7 @@ DrawValue loc = val.MoveIn (Position, 1 - IconSize * val.Zoom / 2 - DockHeightBuffer); - DockySurface indicator; - if ((item.State & ItemState.Urgent) == ItemState.Urgent) { - indicator = urgent_indicator_buffer; - } else { - indicator = normal_indicator_buffer; - } + DockySurface indicator = (item.State & ItemState.Urgent) == ItemState.Urgent ? urgent_indicator_buffer : normal_indicator_buffer; if (item.Indicator == ActivityIndicator.Single || !Preferences.IndicateMultipleWindows) { indicator.ShowWithOptions (surface, loc.Center, 1, 0, 1); @@ -2564,7 +2598,7 @@ background.Dispose (); } - double tilt = .6; + double tilt = .6 - (double) DockHeightBuffer / (double) backgroundArea.Height; tilt *= 1 - PainterOpacity; double tiltanim = Math.Min (1, ((rendering ? render_time : DateTime.UtcNow) - threedimensional_change_time).TotalMilliseconds / BaseAnimationTime.TotalMilliseconds); tilt *= ThreeDimensional ? tiltanim : 1 - tiltanim; @@ -2623,6 +2657,9 @@ } cr.Paint (); + + (cr.Target as IDisposable).Dispose (); + rendering = false; //now after rendering we can set the new HoveredItem @@ -2722,10 +2759,13 @@ AutohideManager.DockHoveredChanged -= HandleDockHoveredChanged; Screen.SizeChanged -= ScreenSizeChanged; Docky.Controller.ThemeChanged -= DockyControllerThemeChanged; + Wnck.Screen.Default.WindowOpened -= HandleWindowOpened; // clear out our separators - foreach (AbstractDockItem adi in Items.Where (adi => adi is INonPersistedItem)) + foreach (AbstractDockItem adi in Items.Where (adi => adi is INonPersistedItem && adi != DockyItem)) { + DrawValues.Remove (adi); adi.Dispose (); + } ResetBuffers (); diff -Nru docky-2.0.4/Docky/Docky/Interface/HoverTextManager.cs docky-2.0.5/Docky/Docky/Interface/HoverTextManager.cs --- docky-2.0.4/Docky/Docky/Interface/HoverTextManager.cs 2010-05-25 13:38:51.944864182 +0200 +++ docky-2.0.5/Docky/Docky/Interface/HoverTextManager.cs 2010-06-26 15:47:36.543229000 +0200 @@ -1,5 +1,6 @@ // // Copyright (C) 2009 Jason Smith, Robert Dyer +// Copyright (C) 2010 Robert Dyer, Rico Tzschichholz // // 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 @@ -32,16 +33,17 @@ namespace Docky.Interface { - public class HoverTextManager : IDisposable { public DockPosition Gravity { get; set; } - public bool Visible { get; private set; } + + public bool Visible { + get { return window != null && window.Visible; } + } Gtk.Window window; Gdk.Point currentPoint; DockySurface currentSurface; - uint timer; static DockySurface [] slices; DockySurface background_buffer; @@ -81,9 +83,8 @@ void DockyControllerThemeChanged (object sender, EventArgs e) { if (slices != null) { - foreach (DockySurface s in slices) { + foreach (DockySurface s in slices) s.Dispose (); - } slices = null; } ResetBackgroundBuffer (); @@ -102,7 +103,7 @@ currentPoint = point; if (surface == null) { - window.Hide (); + Hide (); return; } @@ -125,24 +126,13 @@ break; } - if (timer > 0) - GLib.Source.Remove (timer); - Gdk.Rectangle monitor_geo = window.Screen.GetMonitorGeometry (Monitor); center.X = Math.Max (monitor_geo.X, Math.Min (center.X, monitor_geo.X + monitor_geo.Width - surface.Width)); center.Y = Math.Max (monitor_geo.Y, Math.Min (center.Y, monitor_geo.Y + monitor_geo.Height - surface.Height)); - window.QueueDraw (); - window.Move (center.X, center.Y); - timer = GLib.Timeout.Add (100, delegate { - window.QueueDraw (); - window.Move (center.X, center.Y); - timer = 0; - return false; - }); - if (Visible) - window.Show (); + window.QueueDraw (); + window.Move (center.X, center.Y); } void HandleWindowExposeEvent (object o, ExposeEventArgs args) @@ -165,20 +155,20 @@ } cr.Paint (); + + (cr.Target as IDisposable).Dispose (); } } public void Show () { - Visible = true; - if (currentSurface != null) + if (currentSurface != null && window != null && !window.Visible) window.Show (); } public void Hide () { - Visible = false; - if (window != null) + if (Visible) window.Hide (); } @@ -235,9 +225,8 @@ window = null; } if (slices != null) { - foreach (DockySurface s in slices) { + foreach (DockySurface s in slices) s.Dispose (); - } slices = null; } ResetBackgroundBuffer (); diff -Nru docky-2.0.4/Docky/Docky/Menus/DockMenu.cs docky-2.0.5/Docky/Docky/Menus/DockMenu.cs --- docky-2.0.4/Docky/Docky/Menus/DockMenu.cs 2010-05-25 13:36:37.414864120 +0200 +++ docky-2.0.5/Docky/Docky/Menus/DockMenu.cs 2010-06-26 15:47:36.543229000 +0200 @@ -1,5 +1,6 @@ // // Copyright (C) 2009 Jason Smith, Robert Dyer +// Copyright (C) 2010 Rico Tzschichholz // // 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 @@ -527,6 +528,8 @@ cr.Operator = Operator.Source; background_buffer.Internal.Show (cr, 0, 0); + + (cr.Target as IDisposable).Dispose (); } return base.OnExposeEvent (evnt); diff -Nru docky-2.0.4/Docky/Docky/Menus/MenuItemWidget.cs docky-2.0.5/Docky/Docky/Menus/MenuItemWidget.cs --- docky-2.0.4/Docky/Docky/Menus/MenuItemWidget.cs 2010-05-03 07:58:13.467077865 +0200 +++ docky-2.0.5/Docky/Docky/Menus/MenuItemWidget.cs 2010-06-26 15:49:37.676305000 +0200 @@ -1,5 +1,6 @@ // // Copyright (C) 2009 Jason Smith, Robert Dyer +// Copyright (C) 2010 Robert Dyer // // 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 @@ -93,23 +94,27 @@ void CalcTextWidth () { - char accel; - Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout (); - if (item.Mnemonic.HasValue) - layout.SetMarkupWithAccel (item.Text, '_', out accel); - else - layout.SetMarkup (item.Text); - layout.Width = Pango.Units.FromPixels (2 * MaxWidth); - layout.FontDescription = Style.FontDescription; - layout.Ellipsize = Pango.EllipsizeMode.End; - layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels (FontSize); - layout.FontDescription.Weight = Pango.Weight.Bold; - - Pango.Rectangle logical, ink; - layout.GetPixelExtents (out ink, out logical); - - TextWidth = Math.Min (MaxWidth, Math.Max (MinWidth, logical.Width)); - HasTooltip = TextWidth < logical.Width; + using (Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout ()) { + char accel; + + if (item.Mnemonic.HasValue) + layout.SetMarkupWithAccel (item.Text, '_', out accel); + else + layout.SetMarkup (item.Text); + layout.Width = Pango.Units.FromPixels (2 * MaxWidth); + layout.FontDescription = Style.FontDescription; + layout.Ellipsize = Pango.EllipsizeMode.End; + layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels (FontSize); + layout.FontDescription.Weight = Pango.Weight.Bold; + + Pango.Rectangle logical, ink; + layout.GetPixelExtents (out ink, out logical); + + TextWidth = Math.Min (MaxWidth, Math.Max (MinWidth, logical.Width)); + HasTooltip = TextWidth < logical.Width; + + layout.Context.Dispose (); + } SetSize (); } @@ -189,7 +194,7 @@ DockySurface LoadIcon (Pixbuf icon, int size) { DockySurface surface; - using (Gdk.Pixbuf pixbuf = DockServices.Drawing.ARScale (size, size, icon)) { + using (Gdk.Pixbuf pixbuf = icon.Copy ().ARScale (size, size)) { surface = new DockySurface (pixbuf.Width, pixbuf.Height); Gdk.CairoHelper.SetSourcePixbuf (surface.Context, pixbuf, 0, 0); surface.Context.Paint (); @@ -200,9 +205,8 @@ DockySurface LoadIcon (string icon, int size) { bool monochrome = icon.StartsWith ("[monochrome]"); - if (monochrome) { + if (monochrome) icon = icon.Substring ("[monochrome]".Length); - } DockySurface surface = LoadIcon (DockServices.Drawing.LoadIcon (icon, size), size); @@ -265,28 +269,31 @@ } } - Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout (); - char accel; - if (item.Mnemonic.HasValue) - layout.SetMarkupWithAccel (item.Text, '_', out accel); - else - layout.SetMarkup (item.Text); - layout.Width = Pango.Units.FromPixels (TextWidth); - layout.FontDescription = Style.FontDescription; - layout.Ellipsize = Pango.EllipsizeMode.End; - layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels (FontSize); - layout.FontDescription.Weight = Pango.Weight.Bold; - - Pango.Rectangle logical, ink; - layout.GetPixelExtents (out ink, out logical); - - int offset = Padding; - if (MenuShowingIcons) - offset += MenuHeight + Padding; - cr.MoveTo (allocation.X + offset, allocation.Y + (allocation.Height - logical.Height) / 2); - Pango.CairoHelper.LayoutPath (cr, layout); - cr.Color = TextColor.SetAlpha (item.Disabled ? 0.5 : 1); - cr.Fill (); + using (Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout ()) { + char accel; + if (item.Mnemonic.HasValue) + layout.SetMarkupWithAccel (item.Text, '_', out accel); + else + layout.SetMarkup (item.Text); + layout.Width = Pango.Units.FromPixels (TextWidth); + layout.FontDescription = Style.FontDescription; + layout.Ellipsize = Pango.EllipsizeMode.End; + layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels (FontSize); + layout.FontDescription.Weight = Pango.Weight.Bold; + + Pango.Rectangle logical, ink; + layout.GetPixelExtents (out ink, out logical); + + int offset = Padding; + if (MenuShowingIcons) + offset += MenuHeight + Padding; + cr.MoveTo (allocation.X + offset, allocation.Y + (allocation.Height - logical.Height) / 2); + Pango.CairoHelper.LayoutPath (cr, layout); + cr.Color = TextColor.SetAlpha (item.Disabled ? 0.5 : 1); + cr.Fill (); + + layout.Context.Dispose (); + } } return true; @@ -305,7 +312,6 @@ item.IconChanged -= ItemIconChanged; item.TextChanged -= ItemTextChanged; item.DisabledChanged -= ItemDisabledChanged; - item.Dispose (); item = null; base.Dispose (); diff -Nru docky-2.0.4/Docky/Docky/Menus/SeparatorWidget.cs docky-2.0.5/Docky/Docky/Menus/SeparatorWidget.cs --- docky-2.0.4/Docky/Docky/Menus/SeparatorWidget.cs 2010-02-14 19:56:42.000000000 +0100 +++ docky-2.0.5/Docky/Docky/Menus/SeparatorWidget.cs 2010-06-26 15:47:36.543229000 +0200 @@ -1,5 +1,6 @@ // // Copyright (C) 2009 Jason Smith +// Copyright (C) 2010 Robert Dyer // // 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 @@ -29,8 +30,6 @@ namespace Docky.Menus { - - public class SeparatorWidget : EventBox { string title; @@ -68,25 +67,27 @@ int xMiddle = x + width / 2; double yMiddle = Allocation.Y + Allocation.Height / 2.0; - if (!string.IsNullOrEmpty (title)) { - Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout (); - layout.SetText (title); - layout.Width = Pango.Units.FromPixels (Allocation.Width - Allocation.Height); - layout.FontDescription = Style.FontDescription; - layout.Ellipsize = Pango.EllipsizeMode.End; - layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels (8); - layout.FontDescription.Weight = Pango.Weight.Bold; - - Pango.Rectangle logical, ink; - layout.GetPixelExtents (out ink, out logical); - - cr.MoveTo (Allocation.X + 2, Allocation.Y + (Allocation.Height - logical.Height) / 2); - Pango.CairoHelper.LayoutPath (cr, layout); - cr.Color = TextColor.SetAlpha (.6); - cr.Fill (); - - x += logical.Width + 5; - } + if (!string.IsNullOrEmpty (title)) + using (Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout ()) { + layout.SetText (title); + layout.Width = Pango.Units.FromPixels (Allocation.Width - Allocation.Height); + layout.FontDescription = Style.FontDescription; + layout.Ellipsize = Pango.EllipsizeMode.End; + layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels (8); + layout.FontDescription.Weight = Pango.Weight.Bold; + + Pango.Rectangle logical, ink; + layout.GetPixelExtents (out ink, out logical); + + cr.MoveTo (Allocation.X + 2, Allocation.Y + (Allocation.Height - logical.Height) / 2); + Pango.CairoHelper.LayoutPath (cr, layout); + cr.Color = TextColor.SetAlpha (.6); + cr.Fill (); + + x += logical.Width + 5; + + layout.Context.Dispose (); + } if (DrawLine) { cr.MoveTo (x, yMiddle); diff -Nru docky-2.0.4/Docky/docky.in docky-2.0.5/Docky/docky.in --- docky-2.0.4/Docky/docky.in 2010-02-14 19:56:42.000000000 +0100 +++ docky-2.0.5/Docky/docky.in 2010-06-26 15:47:36.543229000 +0200 @@ -12,7 +12,7 @@ fi if [ `pgrep -u $(id -u) -f Docky.exe | wc -l` -lt 1 ]; then - exec mono --debug "$DOCKY_EXE" "$@" + exec mono "$DOCKY_EXE" "$@" else echo "Docky appears to already be running. Exiting..." fi diff -Nru docky-2.0.4/Docky/Makefile.in docky-2.0.5/Docky/Makefile.in --- docky-2.0.4/Docky/Makefile.in 2010-05-31 08:00:10.764658671 +0200 +++ docky-2.0.5/Docky/Makefile.in 2010-07-01 19:05:31.705184001 +0200 @@ -203,6 +203,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/Docky.CairoHelper/Makefile.in docky-2.0.5/Docky.CairoHelper/Makefile.in --- docky-2.0.4/Docky.CairoHelper/Makefile.in 2010-05-31 08:00:10.365621874 +0200 +++ docky-2.0.5/Docky.CairoHelper/Makefile.in 2010-07-01 19:05:31.295184001 +0200 @@ -202,6 +202,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/Docky.DBus/Makefile.in docky-2.0.5/Docky.DBus/Makefile.in --- docky-2.0.4/Docky.DBus/Makefile.in 2010-05-31 08:00:10.425621581 +0200 +++ docky-2.0.5/Docky.DBus/Makefile.in 2010-07-01 19:05:31.345184001 +0200 @@ -202,6 +202,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/Docky.Items/Docky.Items/AbstractDockItem.cs docky-2.0.5/Docky.Items/Docky.Items/AbstractDockItem.cs --- docky-2.0.4/Docky.Items/Docky.Items/AbstractDockItem.cs 2010-05-25 19:03:05.156114234 +0200 +++ docky-2.0.5/Docky.Items/Docky.Items/AbstractDockItem.cs 2010-06-30 08:04:11.820310993 +0200 @@ -707,6 +707,9 @@ surface.Context.StrokePreserve (); surface.Context.Color = new Cairo.Color (1, 1, 1, 1); surface.Context.Fill (); + + layout.FontDescription.Dispose (); + layout.Context.Dispose (); } } @@ -753,6 +756,8 @@ Pango.CairoHelper.LayoutPath (cr, layout); cr.Color = isLight ? new Cairo.Color (0.1, 0.1, 0.1) : new Cairo.Color (1, 1, 1); cr.Fill (); + + layout.Context.Dispose (); } } @@ -896,6 +901,7 @@ AppDomain.CurrentDomain.ProcessExit -= HandleProcessExit; Gtk.IconTheme.Default.Changed -= HandleIconThemeChanged; ResetBuffers (); + RemoteMenuItems.Dispose (); } #endregion diff -Nru docky-2.0.4/Docky.Items/Docky.Items/ApplicationDockItem.cs docky-2.0.5/Docky.Items/Docky.Items/ApplicationDockItem.cs --- docky-2.0.4/Docky.Items/Docky.Items/ApplicationDockItem.cs 2010-05-25 13:12:03.948613925 +0200 +++ docky-2.0.5/Docky.Items/Docky.Items/ApplicationDockItem.cs 2010-07-01 18:34:52.165184001 +0200 @@ -81,6 +81,12 @@ Wnck.Screen.Default.WindowOpened += WnckScreenDefaultWindowOpened; Wnck.Screen.Default.WindowClosed += WnckScreenDefaultWindowClosed; Wnck.Screen.Default.ActiveWindowChanged += WnckScreenDefaultWindowChanged; + if (CurrentDesktopOnly) { + Wnck.Screen.Default.ViewportsChanged += WnckScreenDefaultViewportsChanged; + Wnck.Screen.Default.ActiveWorkspaceChanged += WnckScreenDefaultActiveWorkspaceChanged; + if (Wnck.Screen.Default.ActiveWindow != null) + Wnck.Screen.Default.ActiveWindow.GeometryChanged += HandleActiveWindowGeometryChangedChanged; + } } void HandleDesktopFileChanged (object sender, DesktopFileChangedEventArgs e) { @@ -117,22 +123,34 @@ return OwnedItem.Location; } + void HandleActiveWindowGeometryChangedChanged (object o, EventArgs args) + { + UpdateWindows (); + } + + void WnckScreenDefaultActiveWorkspaceChanged (object o, ActiveWorkspaceChangedArgs args) + { + UpdateWindows (); + } + + void WnckScreenDefaultViewportsChanged (object o, EventArgs args) + { + UpdateWindows (); + } + void WnckScreenDefaultWindowClosed (object o, WindowClosedArgs args) { UpdateWindows (); - OnPaintNeeded (); } void WnckScreenDefaultWindowOpened (object o, WindowOpenedArgs args) { UpdateWindows (); - OnPaintNeeded (); } void WnckScreenDefaultWindowChanged (object o, ActiveWindowChangedArgs args) { UpdateWindows (); - OnPaintNeeded (); } void UpdateWindows () @@ -146,7 +164,6 @@ public void RecollectWindows () { UpdateWindows (); - OnPaintNeeded (); } protected override MenuList OnGetMenuItems () @@ -206,6 +223,13 @@ Wnck.Screen.Default.WindowOpened -= WnckScreenDefaultWindowOpened; Wnck.Screen.Default.WindowClosed -= WnckScreenDefaultWindowClosed; Wnck.Screen.Default.ActiveWindowChanged -= WnckScreenDefaultWindowChanged; + if (CurrentDesktopOnly) { + Wnck.Screen.Default.ViewportsChanged -= WnckScreenDefaultViewportsChanged; + Wnck.Screen.Default.ActiveWorkspaceChanged -= WnckScreenDefaultActiveWorkspaceChanged; + if (Wnck.Screen.Default.ActiveWindow != null) + Wnck.Screen.Default.ActiveWindow.GeometryChanged -= HandleActiveWindowGeometryChangedChanged; + } + base.Dispose (); } } diff -Nru docky-2.0.4/Docky.Items/Docky.Items/ColoredIconDockItem.cs docky-2.0.5/Docky.Items/Docky.Items/ColoredIconDockItem.cs --- docky-2.0.4/Docky.Items/Docky.Items/ColoredIconDockItem.cs 2010-03-31 17:40:13.386291877 +0200 +++ docky-2.0.5/Docky.Items/Docky.Items/ColoredIconDockItem.cs 2010-06-26 15:47:36.543229000 +0200 @@ -60,7 +60,7 @@ protected override Gdk.Pixbuf ProcessPixbuf (Gdk.Pixbuf pbuf) { - return DockServices.Drawing.AddHueShift (pbuf, HueShift >= 0 ? HueShift : -HueShift); + return pbuf.AddHueShift (HueShift >= 0 ? HueShift : -HueShift); } protected override MenuList OnGetMenuItems () diff -Nru docky-2.0.4/Docky.Items/Docky.Items/FileApplicationProvider.cs docky-2.0.5/Docky.Items/Docky.Items/FileApplicationProvider.cs --- docky-2.0.4/Docky.Items/Docky.Items/FileApplicationProvider.cs 2010-05-26 11:04:15.356739321 +0200 +++ docky-2.0.5/Docky.Items/Docky.Items/FileApplicationProvider.cs 2010-06-26 15:49:17.956305000 +0200 @@ -226,11 +226,11 @@ desktopFile = WindowMatcher.Default.DesktopFileForWindow (window); - if (!string.IsNullOrEmpty (desktopFile)) { + if (!string.IsNullOrEmpty (desktopFile) && desktopFile.EndsWith (".desktop")) { //This fixes WindowMatching for OpenOffice which is a bit slow setting up its window title //Check if a existing ApplicationDockItem already uses this DesktopItem ApplicationDockItem appdi; - if ((appdi = transient_items + if ((appdi = InternalItems .Where (adi => (adi is ApplicationDockItem && (adi as ApplicationDockItem).OwnedItem.Location == desktopFile)) .Cast () .FirstOrDefault ()) != null) { @@ -240,7 +240,11 @@ continue; } - item = ApplicationDockItem.NewFromUri (new Uri (desktopFile).AbsoluteUri); + try { + item = ApplicationDockItem.NewFromUri (new Uri (desktopFile).AbsoluteUri); + } catch (System.UriFormatException e) { + item = new WindowDockItem (window); + } } else { item = new WindowDockItem (window); } @@ -343,9 +347,13 @@ public void PinToDock (ApplicationDockItem item) { + Uri uri = new Uri (item.OwnedItem.Location); + if (items.ContainsKey (uri.AbsoluteUri)) + return; + item.WindowsChanged -= HandleTransientWindowsChanged; transient_items.Remove (item); - items.Add (new Uri (item.OwnedItem.Location).AbsoluteUri, item); + items.Add (uri.AbsoluteUri, item); OnItemsChanged (null, null); } diff -Nru docky-2.0.4/Docky.Items/Docky.Items/FileDockItem.cs docky-2.0.5/Docky.Items/Docky.Items/FileDockItem.cs --- docky-2.0.4/Docky.Items/Docky.Items/FileDockItem.cs 2010-05-25 19:03:05.156114234 +0200 +++ docky-2.0.5/Docky.Items/Docky.Items/FileDockItem.cs 2010-07-01 18:28:55.205183998 +0200 @@ -69,6 +69,7 @@ } public File OwnedFile { get; private set; } + Action OnOwnedFileMount; public override string DropText { get { return string.Format (Catalog.GetString ("Drop to move to {0}"), HoverText); } @@ -79,11 +80,14 @@ this.uri = uri; OwnedFile = FileFactory.NewForUri (uri); - // update this file on successful mount - OwnedFile.AddMountAction (() => { + OnOwnedFileMount = new Action (() => { UpdateInfo (); OnPaintNeeded (); }); + + // update this file on successful mount + OwnedFile.AddMountAction (OnOwnedFileMount); + UpdateInfo (); } @@ -127,6 +131,7 @@ int [] emblemPositions = { 2, 1, 0, 3}; int i=0; emblems.Reverse () + .Where (e => !string.IsNullOrEmpty (e)) .Take (4) .ToList () .ForEach (e => { @@ -176,36 +181,46 @@ protected override bool OnAcceptDrop (IEnumerable uris) { - Notification note = null; + // verify there is enough space to move/copy everything + long fileSize = 0; + foreach (File file in uris.Select (uri => FileFactory.NewForUri (uri))) { - try { + if (!file.Exists) + continue; + fileSize += file.GetSize (); + } + + if ((ulong) fileSize > OwnedFile.QueryInfo (FilesystemFreeKey)) { + Docky.Services.Log.Notify (Catalog.GetString ("Error performing drop action"), Gtk.Stock.DialogError, Catalog.GetString ("Not enough free space on destination.")); + return true; + } + + DockServices.System.RunOnThread (()=> { + // do the move/copy + string ownedFSID = OwnedFile.QueryInfo (FilesystemIDKey); + Notification note = null; + bool performing = true; + + foreach (File file in uris.Select (uri => FileFactory.NewForUri (uri))) { if (!file.Exists) continue; - // gather some information first - long fileSize = file.GetSize (); - ulong freeSpace = OwnedFile.QueryInfo (FilesystemFreeKey); - if ((ulong) fileSize > freeSpace) - throw new Exception (Catalog.GetString ("Not enough free space on destination.")); + long cur = 0, tot = 10; - string ownedFSID = OwnedFile.QueryInfo (FilesystemIDKey); - string destFSID = file.QueryInfo (FilesystemIDKey); - - string nameAfterMove = file.NewFileName (OwnedFile); - - DockServices.System.RunOnThread (()=> { - - bool performing = true; - long cur = 0, tot = 10; - + if (note == null) { note = Docky.Services.Log.Notify ("", file.Icon (), "{0}% " + Catalog.GetString ("Complete") + "...", cur / tot); + GLib.Timeout.Add (250, () => { - note.Body = string.Format ("{0}% ", string.Format ("{0:00.0}", ((float) Math.Min (cur, tot) / tot) * 100)) + Catalog.GetString ("Complete") + "..."; + note.Body = string.Format ("{0:00.0}% ", ((float) Math.Min (cur, tot) / tot) * 100) + Catalog.GetString ("Complete") + "..."; return performing; }); - + } + + string nameAfterMove = file.NewFileName (OwnedFile); + + try { // check the filesystem IDs, if they are the same, we move, otherwise we copy. - if (ownedFSID == destFSID) { + if (ownedFSID == file.QueryInfo (FilesystemIDKey)) { note.Summary = Catalog.GetString ("Moving") + string.Format (" {0}...", file.Basename); file.Move (OwnedFile.GetChild (nameAfterMove), FileCopyFlags.NofollowSymlinks | FileCopyFlags.AllMetadata | FileCopyFlags.NoFallbackForMove, null, (current, total) => { cur = current; @@ -218,21 +233,19 @@ tot = total; }); } - - performing = false; - note.Body = string.Format ("100% {0}.", Catalog.GetString ("Complete")); - }); - // until we use a new version of GTK# which supports getting the GLib.Error code - // this is about the best we can do. - } catch (Exception e) { - Docky.Services.Log.Notify (Catalog.GetString ("Error performing drop action"), Gtk.Stock.DialogError, e.Message); - Log.Error ("{0}: {1}", Catalog.GetString ("Error performing drop action"), e.Message); - Log.Debug (e.StackTrace); + } catch (Exception e) { + // until we use a new version of GTK# which supports getting the GLib.Error code + // this is about the best we can do. + Docky.Services.Log.Notify (Catalog.GetString ("Error performing drop action"), Gtk.Stock.DialogError, e.Message); + Log.Error ("Error performing drop action: " + e.Message); + Log.Debug ("Error moving file '" + file.Path + "' to '" + OwnedFile.GetChild (nameAfterMove) + "'"); + Log.Debug (e.StackTrace); + } - if (note != null) - note.Close (); - } - } + performing = false; + note.Body = string.Format ("100% {0}.", Catalog.GetString ("Complete")); + } + }); return true; } @@ -262,5 +275,13 @@ { DockServices.System.Open (OwnedFile.Parent); } + + public override void Dispose () + { + OwnedFile.RemoveAction (OnOwnedFileMount); + OwnedFile = null; + + base.Dispose (); + } } } diff -Nru docky-2.0.4/Docky.Items/Docky.Items/IconDockItem.cs docky-2.0.5/Docky.Items/Docky.Items/IconDockItem.cs --- docky-2.0.4/Docky.Items/Docky.Items/IconDockItem.cs 2010-05-03 07:58:26.415827955 +0200 +++ docky-2.0.5/Docky.Items/Docky.Items/IconDockItem.cs 2010-06-26 15:47:36.543229000 +0200 @@ -1,5 +1,6 @@ // // Copyright (C) 2009 Jason Smith, Robert Dyer, Chris Szikszoy +// Copyright (C) 2010 Robert Dyer // // 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 @@ -42,21 +43,16 @@ public string Icon { get { return string.IsNullOrEmpty (remote_icon) ? icon : remote_icon; } protected set { - // if we set this, clear the forced pixbuf - if (forced_pixbuf != null) - forced_pixbuf = null; if (icon == value) return; icon = value; - using (Gtk.IconInfo info = Gtk.IconTheme.Default.LookupIcon (icon, 48, Gtk.IconLookupFlags.ForceSvg)) { - if (info != null && info.Filename != null && info.Filename.EndsWith (".svg")) { - icon = info.Filename; - ScalableRendering = true; - } else { - ScalableRendering = false; - } - } + // if we set this, clear the forced pixbuf + ForcePixbuf = null; + + if (icon != null) + using (Gtk.IconInfo info = Gtk.IconTheme.Default.LookupIcon (icon, 48, Gtk.IconLookupFlags.ForceSvg)) + ScalableRendering = info != null && info.Filename != null && info.Filename.EndsWith (".svg"); OnIconUpdated (); QueueRedraw (); @@ -69,6 +65,8 @@ set { if (forced_pixbuf == value) return; + if (forced_pixbuf != null) + forced_pixbuf.Dispose (); forced_pixbuf = value; QueueRedraw (); } @@ -83,7 +81,7 @@ protected void SetIconFromPixbuf (Pixbuf pbuf) { - forced_pixbuf = pbuf; + ForcePixbuf = pbuf.Copy (); } public IconDockItem () @@ -95,8 +93,8 @@ public void AddEmblem (IconEmblem emblem) { // remove current emblems at this position - if (Emblems.Any (e => e.Position == emblem.Position)) - Emblems.RemoveAll (e => e.Position == emblem.Position); + foreach (IconEmblem e in Emblems.Where (e => e.Position == emblem.Position).ToList ()) + RemoveEmblem (e); // add the new emblem Emblems.Add (emblem); emblem.Changed += HandleEmblemChanged; @@ -113,6 +111,7 @@ if (Emblems.Contains (emblem)) { emblem.Changed -= HandleEmblemChanged; Emblems.Remove (emblem); + emblem.Dispose (); QueueRedraw (); } } @@ -129,10 +128,12 @@ { Gdk.Pixbuf pbuf; - if (forced_pixbuf == null) + if (ForcePixbuf == null) { pbuf = DockServices.Drawing.LoadIcon (Icon, surface.Width, surface.Height); - else - pbuf = DockServices.Drawing.ARScale (surface.Width, surface.Height, forced_pixbuf.Copy ()); + } else { + pbuf = ForcePixbuf.Copy (); + pbuf = pbuf.ARScale (surface.Width, surface.Height); + } pbuf = ProcessPixbuf (pbuf); @@ -143,30 +144,29 @@ surface.Context.Paint (); // draw the emblems - foreach (IconEmblem emblem in Emblems) { - Pixbuf p = emblem.GetPixbuf (surface.Width, surface.Height); - int x, y; - switch (emblem.Position) { - case 1: - x = surface.Width - p.Width; - y = 0; - break; - case 2: - x = surface.Width - p.Width; - y = surface.Height - p.Height; - break; - case 3: - x = 0; - y = surface.Height - p.Height; - break; - default: - x = y = 0; - break; + foreach (IconEmblem emblem in Emblems) + using (Pixbuf p = emblem.GetPixbuf (surface.Width, surface.Height)) { + int x, y; + switch (emblem.Position) { + case 1: + x = surface.Width - p.Width; + y = 0; + break; + case 2: + x = surface.Width - p.Width; + y = surface.Height - p.Height; + break; + case 3: + x = 0; + y = surface.Height - p.Height; + break; + default: + x = y = 0; + break; + } + Gdk.CairoHelper.SetSourcePixbuf (surface.Context, p, x, y); + surface.Context.Paint (); } - Gdk.CairoHelper.SetSourcePixbuf (surface.Context, p, x, y); - surface.Context.Paint (); - p.Dispose (); - } pbuf.Dispose (); diff -Nru docky-2.0.4/Docky.Items/Docky.Items/IconEmblem.cs docky-2.0.5/Docky.Items/Docky.Items/IconEmblem.cs --- docky-2.0.4/Docky.Items/Docky.Items/IconEmblem.cs 2010-05-03 07:58:13.257077995 +0200 +++ docky-2.0.5/Docky.Items/Docky.Items/IconEmblem.cs 2010-06-26 15:47:36.543229000 +0200 @@ -1,5 +1,5 @@ // -// Copyright (C) 2010 Chris Szikszoy +// Copyright (C) 2010 Chris Szikszoy, Robert Dyer // // 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 @@ -23,22 +23,19 @@ namespace Docky.Items { - public class IconEmblem { - public event EventHandler Changed; string icon; public string Icon { get { return icon; } protected set { - // if we set this, clear the forced pixbuf - if (forced_pixbuf != null) - forced_pixbuf = null; if (icon == value) return; icon = value; + // if we set this, clear the forced pixbuf + ForcePixbuf = null; OnChanged (); } } @@ -49,6 +46,8 @@ set { if (forced_pixbuf == value) return; + if (forced_pixbuf != null) + forced_pixbuf.Dispose (); forced_pixbuf = value; OnChanged (); } @@ -84,7 +83,7 @@ { Position = position; IconSize = size; - ForcePixbuf = icon; + ForcePixbuf = icon.Copy (); } public IconEmblem (int position, GLib.Icon icon, int size) @@ -105,11 +104,8 @@ if (p == null) p = DockServices.Drawing.LoadIcon (Icon, IconSize); // constrain the icon to PercentOfParent if needed, - if (p.Width > (int) (parentWidth * PercentOfParent) || - p.Height > (int) (parentHeight * PercentOfParent)) - p = DockServices.Drawing.ARScale ((int) (parentWidth * PercentOfParent), - (int) (parentHeight * PercentOfParent), - p); + if (p.Width > (int) (parentWidth * PercentOfParent) || p.Height > (int) (parentHeight * PercentOfParent)) + p = p.ARScale ((int) (parentWidth * PercentOfParent), (int) (parentHeight * PercentOfParent)); return p; } diff -Nru docky-2.0.4/Docky.Items/Docky.Items/WnckDockItem.cs docky-2.0.5/Docky.Items/Docky.Items/WnckDockItem.cs --- docky-2.0.4/Docky.Items/Docky.Items/WnckDockItem.cs 2010-05-25 17:05:21.604866094 +0200 +++ docky-2.0.5/Docky.Items/Docky.Items/WnckDockItem.cs 2010-07-01 18:34:16.015184003 +0200 @@ -50,10 +50,15 @@ public IEnumerable Windows { get { return windows; } protected set { - UnregisterWindows (windows.Where (w => !value.Contains (w))); - RegisterWindows (value.Where (w => !windows.Contains (w))); + IEnumerable tmp = value.Where (w => w.WindowType != Wnck.WindowType.Desktop && + w.WindowType != Wnck.WindowType.Dock && + w.WindowType != Wnck.WindowType.Splashscreen && + w.WindowType != Wnck.WindowType.Menu); - windows = value.ToArray (); + UnregisterWindows (windows.Where (w => !tmp.Contains (w))); + RegisterWindows (tmp.Where (w => !windows.Contains (w))); + + windows = tmp.ToArray (); SetIndicator (); SetState (); @@ -154,6 +159,8 @@ } else { Indicator = ActivityIndicator.None; } + + OnPaintNeeded (); } void SetState () @@ -168,6 +175,8 @@ } State = state; + + OnPaintNeeded (); } protected override void OnScrolled (Gdk.ScrollDirection direction, Gdk.ModifierType mod) @@ -281,6 +290,7 @@ public override void Dispose () { Wnck.Screen.Default.ActiveWindowChanged -= WnckScreenDefaultActiveWindowChanged; + Wnck.Screen.Default.WindowClosed -= WnckScreenDefaultWindowClosed; UnregisterWindows (Windows); base.Dispose (); diff -Nru docky-2.0.4/Docky.Items/Docky.Menus/MenuItem.cs docky-2.0.5/Docky.Items/Docky.Menus/MenuItem.cs --- docky-2.0.4/Docky.Items/Docky.Menus/MenuItem.cs 2010-05-03 07:58:13.296741603 +0200 +++ docky-2.0.5/Docky.Items/Docky.Menus/MenuItem.cs 2010-06-26 15:47:36.543229000 +0200 @@ -38,7 +38,8 @@ static bool defaultShowIcons; static MenuItem () { - defaultShowIcons = (bool) new GConf.Client ().Get ("/desktop/gnome/interface/menus_have_icons"); + object o = new GConf.Client ().Get ("/desktop/gnome/interface/menus_have_icons"); + defaultShowIcons = o != null && o is bool && (bool) o; } bool? show_icons; diff -Nru docky-2.0.4/Docky.Items/Docky.Painters/PagingDockPainter.cs docky-2.0.5/Docky.Items/Docky.Painters/PagingDockPainter.cs --- docky-2.0.4/Docky.Items/Docky.Painters/PagingDockPainter.cs 2010-05-03 07:58:13.315826960 +0200 +++ docky-2.0.5/Docky.Items/Docky.Painters/PagingDockPainter.cs 2010-06-26 15:47:36.543229000 +0200 @@ -276,6 +276,7 @@ public override void Dispose () { ResetBuffers (); + ResetButtons (); base.Dispose (); } } diff -Nru docky-2.0.4/Docky.Items/Makefile.in docky-2.0.5/Docky.Items/Makefile.in --- docky-2.0.4/Docky.Items/Makefile.in 2010-05-31 08:00:10.485621671 +0200 +++ docky-2.0.5/Docky.Items/Makefile.in 2010-07-01 19:05:31.415184001 +0200 @@ -202,6 +202,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/Docky.Services/AssemblyInfo.cs docky-2.0.5/Docky.Services/AssemblyInfo.cs --- docky-2.0.4/Docky.Services/AssemblyInfo.cs 2010-05-31 08:00:18.374371776 +0200 +++ docky-2.0.5/Docky.Services/AssemblyInfo.cs 2010-07-01 19:05:38.465184002 +0200 @@ -50,8 +50,8 @@ { internal static class AssemblyInfo { - public const string DisplayVersion = "2.0.4"; - public const string VersionDetails = "bzr docky-2.0 r1266"; + public const string DisplayVersion = "2.0.5"; + public const string VersionDetails = "bzr docky-2.0 r1336"; public const string LocaleDirectory = "/usr/share/locale"; public const string DataDirectory = "/usr/share"; } diff -Nru docky-2.0.4/Docky.Services/Docky.Services/DrawingService.cs docky-2.0.5/Docky.Services/Docky.Services/DrawingService.cs --- docky-2.0.4/Docky.Services/Docky.Services/DrawingService.cs 2010-02-14 19:56:42.000000000 +0100 +++ docky-2.0.5/Docky.Services/Docky.Services/DrawingService.cs 2010-06-26 15:47:36.543229000 +0200 @@ -70,54 +70,6 @@ // http://developer.gimp.org/api/2.0/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf--bits-per-sample /// - /// Applies a color transformation to each pixel in a pixbuf. - /// - /// - /// A - /// - /// - /// A - /// - /// - /// A - /// - public Gdk.Pixbuf PixelColorTransform (Gdk.Pixbuf source, Func colorTransform) - { - try { - int offset = (source.HasAlpha) ? 4 : 3; - Gdk.Pixbuf transform = source.Copy (); - unsafe { - double r, g, b; - byte* pixels = (byte*) transform.Pixels; - for (int i = 0; i < transform.Height * transform.Width; i++) { - r = (double) pixels[0]; - g = (double) pixels[1]; - b = (double) pixels[2]; - - Cairo.Color color = new Cairo.Color (r / byte.MaxValue, - g / byte.MaxValue, - b / byte.MaxValue); - - color = colorTransform.Invoke (color); - - pixels[0] = (byte) (color.R * byte.MaxValue); - pixels[1] = (byte) (color.G * byte.MaxValue); - pixels[2] = (byte) (color.B * byte.MaxValue); - - pixels += offset; - } - } - source = transform.Copy (); - transform.Dispose (); - } catch (Exception e) { - Log.Error ("Error transforming pixbuf: {0}", e.Message); - Log.Debug (e.StackTrace); - } - - return source; - } - - /// /// Determines whether or not the icon is light or dark. /// /// @@ -152,40 +104,8 @@ return light > 0; } - #endregion - - /// - /// Returns a monochrome version of the supplied pixbuf. - /// - /// - /// A - /// - /// - /// A - /// - public Gdk.Pixbuf MonochromePixbuf (Gdk.Pixbuf source) - { - return PixelColorTransform (source, (c) => c.DarkenBySaturation (0.5).SetSaturation (0)); - } - /// - /// Adds a hue shift to the supplpied pixbuf. - /// - /// - /// A - /// - /// - /// A - /// - /// - /// A - /// - public Gdk.Pixbuf AddHueShift (Gdk.Pixbuf source, double shift) - { - if (shift != 0) - return PixelColorTransform (source, (c) => c.AddHue (shift)); - return source; - } + #endregion /// /// Load an icon specifying the width and height. @@ -252,7 +172,7 @@ if (pixbuf != null) { if (width != -1 && height != -1 && (width != pixbuf.Width || height != pixbuf.Height)) - pixbuf = ARScale (width, height, pixbuf); + pixbuf = pixbuf.ARScale (width, height); return pixbuf; } @@ -293,40 +213,6 @@ } /// - /// Scale a pixbuf to the desired width or height maintaining the aspect ratio of the supplied pixbuf. - /// Note that due to maintaining the aspect ratio, the returned pixbuf may not have the exact width AND height as is specified. - /// Though it is guaranteed that one of these measurements will be correct. - /// - /// - /// A - /// - /// - /// A - /// - /// - /// A - /// - /// - /// A - /// - public Pixbuf ARScale (int width, int height, Pixbuf pixbuf) - { - double xScale = (double) width / (double) pixbuf.Width; - double yScale = (double) height / (double) pixbuf.Height; - double scale = Math.Min (xScale, yScale); - - if (scale == 1) return pixbuf; - - Pixbuf temp = pixbuf; - pixbuf = temp.ScaleSimple ((int) (temp.Width * scale), - (int) (temp.Height * scale), - InterpType.Hyper); - temp.Dispose (); - - return pixbuf; - } - - /// /// Returns the string name of the supplied icon. /// /// @@ -419,12 +305,10 @@ if (asm == null) throw new ArgumentNullException ("Could not find assembly '{0}'.", assemblyName); - pixbuf = new Pixbuf (asm, resource); - - // now scale the pixbuf but keep the aspect ratio - if (width > 0 && height > 0) - pixbuf = ARScale (width, height, pixbuf); - + if (width <= 0 || height <= 0) + pixbuf = new Pixbuf (asm, resource); + else + pixbuf = new Pixbuf (asm, resource, width, height); } catch (Exception e) { Log.Warn ("Failed to load icon resource {0} from assembly {1}: {2}", resource, assemblyName, e.Message); diff -Nru docky-2.0.4/Docky.Services/Docky.Services/Extensions/GdkPixbufExtension.cs docky-2.0.5/Docky.Services/Docky.Services/Extensions/GdkPixbufExtension.cs --- docky-2.0.4/Docky.Services/Docky.Services/Extensions/GdkPixbufExtension.cs 1970-01-01 01:00:00.000000000 +0100 +++ docky-2.0.5/Docky.Services/Docky.Services/Extensions/GdkPixbufExtension.cs 2010-06-26 15:47:36.543229000 +0200 @@ -0,0 +1,131 @@ +// +// Copyright (C) 2010 Robert Dyer +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +using System; + +using Cairo; +using Gdk; + +namespace Docky.Services +{ + public static class GdkPixbufExtension + { + // these methods all assume that the BitsPerSample is 8 (byte). Pixbuf documentation + // states that values from 1-16 are allowed, but currently only 8 bit samples are supported. + // http://developer.gimp.org/api/2.0/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf--bits-per-sample + + /// + /// Applies a color transformation to each pixel in a pixbuf. + /// + /// + /// A + /// + /// + /// A reference to the input Pixbuf (the 'this' reference). + /// + public static Pixbuf PixelColorTransform (this Pixbuf source, Func colorTransform) + { + try { + int offset = (source.HasAlpha) ? 4 : 3; + unsafe { + double r, g, b; + byte* pixels = (byte*) source.Pixels; + for (int i = 0; i < source.Height * source.Width; i++) { + r = (double) pixels[0]; + g = (double) pixels[1]; + b = (double) pixels[2]; + + Cairo.Color color = new Cairo.Color (r / byte.MaxValue, + g / byte.MaxValue, + b / byte.MaxValue); + + color = colorTransform.Invoke (color); + + pixels[0] = (byte) (color.R * byte.MaxValue); + pixels[1] = (byte) (color.G * byte.MaxValue); + pixels[2] = (byte) (color.B * byte.MaxValue); + + pixels += offset; + } + } + } catch (Exception e) { + Log.Error ("Error transforming pixbuf: {0}", e.Message); + Log.Debug (e.StackTrace); + } + return source; + } + + /// + /// Returns a monochrome version of the supplied pixbuf. + /// + /// + /// A reference to the input Pixbuf (the 'this' reference). + /// + public static Pixbuf MonochromePixbuf (this Pixbuf source) + { + return source.PixelColorTransform ((c) => c.DarkenBySaturation (0.5).SetSaturation (0)); + } + + /// + /// Adds a hue shift to the supplpied pixbuf. + /// + /// + /// A + /// + /// + /// A reference to the input Pixbuf (the 'this' reference). + /// + public static Pixbuf AddHueShift (this Pixbuf source, double shift) + { + if (shift != 0) + source.PixelColorTransform ((c) => c.AddHue (shift)); + return source; + } + + /// + /// Scale a pixbuf to the desired width or height maintaining the aspect ratio of the supplied pixbuf. + /// Note that due to maintaining the aspect ratio, the returned pixbuf may not have the exact width AND height as is specified. + /// Though it is guaranteed that one of these measurements will be correct. + /// + /// + /// A + /// + /// + /// A + /// + /// + /// A + /// + /// + /// + public static Pixbuf ARScale (this Pixbuf source, int width, int height) + { + double xScale = (double) width / (double) source.Width; + double yScale = (double) height / (double) source.Height; + double scale = Math.Min (xScale, yScale); + + if (scale == 1) + return source; + + Pixbuf tmp = source.ScaleSimple ((int) (source.Width * scale), + (int) (source.Height * scale), + InterpType.Hyper); + source.Dispose (); + + return tmp; + } + } +} diff -Nru docky-2.0.4/Docky.Services/Docky.Services/Extensions/GLibFileExtension.cs docky-2.0.5/Docky.Services/Docky.Services/Extensions/GLibFileExtension.cs --- docky-2.0.4/Docky.Services/Docky.Services/Extensions/GLibFileExtension.cs 2010-04-11 08:05:20.946606426 +0200 +++ docky-2.0.5/Docky.Services/Docky.Services/Extensions/GLibFileExtension.cs 2010-06-26 15:47:36.543229000 +0200 @@ -199,6 +199,8 @@ if (info.GetAttributeBoolean ("access::can-delete")) child.Delete (null); + + info.Dispose (); } if (info != null) diff -Nru docky-2.0.4/Docky.Services/Docky.Services/Helper.cs docky-2.0.5/Docky.Services/Docky.Services/Helper.cs --- docky-2.0.4/Docky.Services/Docky.Services/Helper.cs 2010-05-25 13:22:35.008613981 +0200 +++ docky-2.0.5/Docky.Services/Docky.Services/Helper.cs 2010-06-26 15:47:36.543229000 +0200 @@ -1,5 +1,6 @@ // // Copyright (C) 2009 Chris Szikszoy, Robert Dyer +// Copyright (C) 2010 Robert Dyer // // 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 @@ -185,6 +186,8 @@ public void Dispose () { Stop (); + if (Data != null) + Data.Dispose (); } } } diff -Nru docky-2.0.4/Docky.Services/Docky.Services/HelperMetadata.cs docky-2.0.5/Docky.Services/Docky.Services/HelperMetadata.cs --- docky-2.0.4/Docky.Services/Docky.Services/HelperMetadata.cs 2010-02-14 19:56:42.000000000 +0100 +++ docky-2.0.5/Docky.Services/Docky.Services/HelperMetadata.cs 2010-06-26 15:47:36.543229000 +0200 @@ -1,5 +1,6 @@ // // Copyright (C) 2009 Chris Szikszoy, Robert Dyer +// Copyright (C) 2010 Robert Dyer // // 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 @@ -66,7 +67,7 @@ } else if (line.StartsWith (DescTag)) { Description = data; } else if (line.StartsWith (IconTag)) { - if (data.StartsWith ("./")) { + if (data.StartsWith ("./") && data.Length > 2) { IconFile = file.Parent.GetChild (data.Substring (2)); if (IconFile.Exists) Icon = DockServices.Drawing.LoadIcon (IconFile.Path + ";;extension"); @@ -78,5 +79,11 @@ } OnDataReady (); } + + public void Dispose () + { + if (Icon != null) + Icon.Dispose (); + } } } diff -Nru docky-2.0.4/Docky.Services/Docky.Services/HelperService.cs docky-2.0.5/Docky.Services/Docky.Services/HelperService.cs --- docky-2.0.4/Docky.Services/Docky.Services/HelperService.cs 2010-05-25 13:12:33.844863402 +0200 +++ docky-2.0.5/Docky.Services/Docky.Services/HelperService.cs 2010-06-26 15:47:36.543229000 +0200 @@ -27,19 +27,6 @@ namespace Docky.Services { - class HelperComparer : IEqualityComparer - { - public bool Equals (Helper x, Helper y) - { - return x.File.Basename == y.File.Basename; - } - - public int GetHashCode (Helper h) - { - return h.File.Basename.GetHashCode (); - } - } - public class HelperService { public static File UserScriptsDir = DockServices.Paths.UserDataFolder.GetChild ("helpers"); @@ -69,19 +56,45 @@ static IPreferences prefs = DockServices.Preferences.Get (); - public List Helpers { get; private set; } + List helpers; + public List Helpers { + get { return helpers; } + private set { + IEnumerable added = value.Where (h => !helpers.Contains (h)); + IEnumerable removed = helpers.Where (h => !value.Contains (h)); + + if (!added.Any () && !removed.Any ()) + return; + + foreach (Helper h in removed) { + Log.Info ("Helper removed: {0}", h.File.Path); + h.HelperStatusChanged -= OnHelperStatusChanged; + h.Dispose (); + } + + foreach (Helper h in added) { + Log.Info ("Helper added: {0}", h.File.Path); + h.HelperStatusChanged += OnHelperStatusChanged; + } + + helpers = value; + + OnHelpersChanged (added, removed); + } + } + + List monitors = new List (); public HelperService () { - Helpers = new List (); + helpers = new List (); // set up the file monitors to watch our script directories foreach (File dir in HelperDirs) { FileMonitor mon = dir.Monitor (0, null); + monitors.Add (mon); mon.RateLimit = 5000; - mon.Changed += delegate(object o, ChangedArgs args) { - UpdateHelpers (); - }; + mon.Changed += HandleMonitorChanged; } GLib.Timeout.Add (2000, delegate { @@ -89,37 +102,42 @@ return false; }); } + + void HandleMonitorChanged (object o, ChangedArgs args) + { + if (args.EventType == FileMonitorEvent.Created || args.EventType == FileMonitorEvent.Deleted) + UpdateHelpers (); + } void UpdateHelpers () { - List old_helpers = Helpers.ToList (); - Helpers = Helpers.Where (h => h.File.Exists).ToList (); + List helpers = Helpers.ToList (); + + //Remove deleted helpers + helpers.RemoveAll (h => !h.File.Exists); - Helpers = HelperDirs + //Find new helper files and filter them: + // get all files in helpers directories + // remove all files which already have a helper and don't overrule their files + // remove all files which are overruled by other files + List new_files = HelperDirs .SelectMany (d => d.GetFiles ("")) .Where (file => !file.Basename.EndsWith ("~")) - .Select (hf => LookupHelper (hf)) - .Distinct (new HelperComparer ()) .ToList (); + new_files.RemoveAll (file => helpers.Exists (h => h.File.Path == file.Path || (h.File.Basename == file.Basename + && h.File.Path != file.Path && h.File.Path.StartsWith (UserScriptsDir.Path)))); + new_files.RemoveAll (file => new_files.Exists (f => f.Basename == file.Basename + && f.Path != file.Path && !file.Path.StartsWith (UserScriptsDir.Path))); + + //Remove system-helpers which are overruled by new user-helpers + helpers.RemoveAll (helper => new_files.Exists (f => f.Basename == helper.File.Basename)); + + //Create and Add new helpers + helpers.AddRange (new_files.Select (f => new Helper (f)).ToList ()); + + new_files.Clear (); - if (old_helpers.Count > 0) { - List removed_helpers = old_helpers.Where (h => !Helpers.Contains (h)).ToList (); - if (removed_helpers.Count > 0) { - foreach (Helper h in removed_helpers) { - Log.Info ("Helper was removed: {0}", h.File.Path); - h.HelperStatusChanged -= OnHelperStatusChanged; - h.Dispose (); - } - OnHelperDeleted (); - } - - List added_helpers = Helpers.Where (h => !old_helpers.Contains (h)).ToList (); - if (added_helpers.Count > 0) { - foreach (Helper h in added_helpers) - Log.Info ("New helper found: {0}", h.File.Path); - OnHelperAdded (); - } - } + Helpers = helpers; } void OnHelperStatusChanged (object o, HelperStatusChangedEventArgs args) @@ -128,28 +146,13 @@ HelperStatusChanged (o, args); } - void OnHelperAdded () + void OnHelpersChanged (IEnumerable added, IEnumerable removed) { - if (HelperInstalled != null) + if (added.Any () && HelperInstalled != null) HelperInstalled (this, EventArgs.Empty); - } - - void OnHelperDeleted () - { - if (HelperUninstalled != null) - HelperUninstalled (this, EventArgs.Empty); - } - - Helper LookupHelper (File helperFile) - { - if (!Helpers.Any (h => h.File.Path == helperFile.Path)) { - Helper h = new Helper (helperFile); - h.HelperStatusChanged += OnHelperStatusChanged; - Helpers.Add (h); - return h; - } - return Helpers.First (h => h.File.Path == helperFile.Path); + if (removed.Any () && HelperUninstalled != null) + HelperUninstalled (this, EventArgs.Empty); } public bool InstallHelper (string path, out Helper installedHelper) @@ -212,6 +215,12 @@ public void Dispose () { + foreach (FileMonitor mon in monitors) { + mon.Cancel (); + mon.Changed -= HandleMonitorChanged; + mon.Dispose (); + } + foreach (Helper h in Helpers) { h.HelperStatusChanged -= OnHelperStatusChanged; h.Dispose (); diff -Nru docky-2.0.4/Docky.Services/Docky.Services/SystemService.cs docky-2.0.5/Docky.Services/Docky.Services/SystemService.cs --- docky-2.0.4/Docky.Services/Docky.Services/SystemService.cs 2010-05-25 13:12:03.948613925 +0200 +++ docky-2.0.5/Docky.Services/Docky.Services/SystemService.cs 2010-06-26 15:47:36.543229000 +0200 @@ -416,26 +416,28 @@ public void Execute (string executable) { try { + System.Diagnostics.Process proc; if (System.IO.File.Exists (executable)) { - System.Diagnostics.Process proc = new System.Diagnostics.Process (); + proc = new System.Diagnostics.Process (); proc.StartInfo.FileName = executable; proc.StartInfo.UseShellExecute = false; proc.Start (); + proc.Dispose (); } else { - System.Diagnostics.Process proc; - if (executable.Contains (" ")) { - string[] args = executable.Split (' '); - - Log.Debug ("Calling: " + args[0] + " \"" + executable.Substring (args[0].Length + 1) + "\""); - proc = System.Diagnostics.Process.Start (args[0], "\"" + executable.Substring (args[0].Length + 1) + "\""); + int pos = -1; + executable = executable.Trim (); + if ((pos = executable.IndexOf (' ')) >= 0) { + string command = executable.Substring (0, pos); + string arguments = executable.Substring (pos + 1); + proc = System.Diagnostics.Process.Start (command, arguments); } else { - Log.Debug ("Calling: " + executable); proc = System.Diagnostics.Process.Start (executable); } + Log.Debug ("Calling: '{0}'", executable); proc.Dispose (); } } catch { - Log.Error ("Error executing '" + executable + "'"); + Log.Error ("Error executing '{0}'", executable); } } diff -Nru docky-2.0.4/Docky.Services/Makefile.am docky-2.0.5/Docky.Services/Makefile.am --- docky-2.0.4/Docky.Services/Makefile.am 2010-02-14 19:56:42.000000000 +0100 +++ docky-2.0.5/Docky.Services/Makefile.am 2010-06-26 15:47:36.543229000 +0200 @@ -10,6 +10,7 @@ AssemblyInfo.cs \ Docky.Services/Extensions/GLibFileExtension.cs \ Docky.Services/Extensions/GLibMountExtension.cs \ + Docky.Services/Extensions/GdkPixbufExtension.cs \ Docky.Services/Extensions/GtkIconThemeExtension.cs \ Docky.Services/Logging/ConsoleCrayon.cs \ Docky.Services/Logging/LogBase.cs \ diff -Nru docky-2.0.4/Docky.Services/Makefile.in docky-2.0.5/Docky.Services/Makefile.in --- docky-2.0.4/Docky.Services/Makefile.in 2010-05-31 08:00:10.555621678 +0200 +++ docky-2.0.5/Docky.Services/Makefile.in 2010-07-01 19:05:31.485184001 +0200 @@ -202,6 +202,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ @@ -320,6 +322,7 @@ AssemblyInfo.cs \ Docky.Services/Extensions/GLibFileExtension.cs \ Docky.Services/Extensions/GLibMountExtension.cs \ + Docky.Services/Extensions/GdkPixbufExtension.cs \ Docky.Services/Extensions/GtkIconThemeExtension.cs \ Docky.Services/Logging/ConsoleCrayon.cs \ Docky.Services/Logging/LogBase.cs \ diff -Nru docky-2.0.4/Docky.Widgets/Docky.Widgets/AbstractTileObject.cs docky-2.0.5/Docky.Widgets/Docky.Widgets/AbstractTileObject.cs --- docky-2.0.4/Docky.Widgets/Docky.Widgets/AbstractTileObject.cs 2010-05-03 07:58:13.336304374 +0200 +++ docky-2.0.5/Docky.Widgets/Docky.Widgets/AbstractTileObject.cs 2010-06-26 15:47:36.543229000 +0200 @@ -112,6 +112,8 @@ protected set { if (force_pbuf == value) return; + if (force_pbuf != null) + force_pbuf.Dispose (); force_pbuf = value; OnIconUpdated (); } diff -Nru docky-2.0.4/Docky.Widgets/Docky.Widgets/SearchEntry.cs docky-2.0.5/Docky.Widgets/Docky.Widgets/SearchEntry.cs --- docky-2.0.4/Docky.Widgets/Docky.Widgets/SearchEntry.cs 2010-02-14 19:56:42.000000000 +0100 +++ docky-2.0.5/Docky.Widgets/Docky.Widgets/SearchEntry.cs 2010-06-30 09:46:14.670310997 +0200 @@ -185,6 +185,7 @@ if(changed_timeout_id > 0) { GLib.Source.Remove (changed_timeout_id); + changed_timeout_id = 0; } if (Ready) @@ -484,8 +485,6 @@ Gdk.Color color_b = parent.Style.Text(StateType.Normal); text_gc.RgbFgColor = DockServices.Drawing.ColorBlend(color_a, color_b); } - - protected override bool OnExposeEvent(Gdk.EventExpose evnt) { @@ -516,6 +515,19 @@ return ret; } + + public override void Dispose () + { + parent.StyleSet -= OnParentStyleSet; + + if (layout != null) { + if (layout.FontDescription != null) + layout.FontDescription.Dispose (); + layout.Dispose (); + } + + base.Dispose (); + } } } } diff -Nru docky-2.0.4/Docky.Widgets/Docky.Widgets/Tile.cs docky-2.0.5/Docky.Widgets/Docky.Widgets/Tile.cs --- docky-2.0.4/Docky.Widgets/Docky.Widgets/Tile.cs 2010-05-03 07:58:13.377077445 +0200 +++ docky-2.0.5/Docky.Widgets/Docky.Widgets/Tile.cs 2010-06-30 11:40:12.507401000 +0200 @@ -108,14 +108,14 @@ if (OwnedObject.ForcePixbuf != null) { pbuf = OwnedObject.ForcePixbuf.Copy (); if (pbuf.Width != IconSize || pbuf.Height != IconSize) - pbuf = DockServices.Drawing.ARScale (IconSize, IconSize, pbuf); + pbuf = pbuf.ARScale (IconSize, IconSize); } else { pbuf = DockServices.Drawing.LoadIcon (OwnedObject.Icon, IconSize); } - pbuf = DockServices.Drawing.AddHueShift (pbuf, OwnedObject.HueShift); + pbuf.AddHueShift (OwnedObject.HueShift); if (!OwnedObject.Enabled) - pbuf = DockServices.Drawing.MonochromePixbuf (pbuf); + pbuf.MonochromePixbuf (); } catch (Exception e) { Log.Error ("Error loading pixbuf for {0} tile: {1}", OwnedObject.Name, e.Message); Log.Debug (e.StackTrace); @@ -273,10 +273,33 @@ public override void Dispose () { + foreach (Gtk.Widget widget in button_box.Children) + button_box.Remove (widget); + button_box.Dispose (); + button_box.Destroy (); + + add_remove_button.Clicked -= OnAddRemoveClicked; + add_remove_button.Dispose (); + add_remove_button.Destroy (); + + Remove (title); + title.Dispose (); + title.Destroy (); + Remove (tileImage); + tileImage.Dispose (); + tileImage.Destroy (); + Remove (description); + description.Dispose (); + description.Destroy (); + Remove (subDesc); + subDesc.Dispose (); + subDesc.Destroy (); + OwnedObject.IconUpdated -= HandleOwnedObjectIconUpdated; OwnedObject.TextUpdated -= HandleOwnedObjectTextUpdated; OwnedObject.ButtonsUpdated -= HandleOwnedObjectButtonsUpdated; + Owner = null; OwnedObject = null; base.Dispose (); diff -Nru docky-2.0.4/Docky.Widgets/Docky.Widgets/TileView.cs docky-2.0.5/Docky.Widgets/Docky.Widgets/TileView.cs --- docky-2.0.4/Docky.Widgets/Docky.Widgets/TileView.cs 2010-05-07 12:28:35.688230412 +0200 +++ docky-2.0.5/Docky.Widgets/Docky.Widgets/TileView.cs 2010-06-30 10:18:47.160310995 +0200 @@ -89,6 +89,9 @@ tile.ActiveChanged -= OnTileActiveChanged; tile.SizeAllocated -= OnTileSizeAllocated; tile.Owner = null; + box.Remove (tile); + tile.Dispose (); + tile.Destroy (); }); tiles.Clear (); @@ -99,6 +102,13 @@ } } + public virtual AbstractTileObject CurrentTile () + { + if (selected_index >= 0 && selected_index < tiles.Count) + return tiles[selected_index].OwnedObject; + return null; + } + public virtual void AppendTile (AbstractTileObject tileObject) { Tile tile = new Tile (tileObject, IconSize); @@ -246,7 +256,7 @@ return base.OnKeyPressEvent (evnt); } - private void Select (int index) + public void Select (int index) { if (index >= 0 && index < tiles.Count) { selected_index = index; diff -Nru docky-2.0.4/Docky.Widgets/Docky.Widgets/WrapLabel.cs docky-2.0.5/Docky.Widgets/Docky.Widgets/WrapLabel.cs --- docky-2.0.4/Docky.Widgets/Docky.Widgets/WrapLabel.cs 2010-02-14 19:56:42.000000000 +0100 +++ docky-2.0.5/Docky.Widgets/Docky.Widgets/WrapLabel.cs 2010-06-26 15:47:36.543229000 +0200 @@ -34,7 +34,7 @@ namespace Docky.Widgets { - [System.ComponentModel.ToolboxItem(true)] + [System.ComponentModel.ToolboxItem(true)] public class WrapLabel : Widget { private string text; @@ -153,6 +153,15 @@ text = value; UpdateLayout (); } - } + } + + public override void Dispose() + { + if (layout != null) { + layout.Dispose (); + } + + base.Dispose (); + } } } diff -Nru docky-2.0.4/Docky.Widgets/Makefile.in docky-2.0.5/Docky.Widgets/Makefile.in --- docky-2.0.4/Docky.Widgets/Makefile.in 2010-05-31 08:00:10.625621694 +0200 +++ docky-2.0.5/Docky.Widgets/Makefile.in 2010-07-01 19:05:31.555184001 +0200 @@ -202,6 +202,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/Docky.Windowing/Makefile.in docky-2.0.5/Docky.Windowing/Makefile.in --- docky-2.0.4/Docky.Windowing/Makefile.in 2010-05-31 08:00:10.695621398 +0200 +++ docky-2.0.5/Docky.Windowing/Makefile.in 2010-07-01 19:05:31.625184001 +0200 @@ -202,6 +202,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/Docky.Windowing/Windowing/WindowMatcher.cs docky-2.0.5/Docky.Windowing/Windowing/WindowMatcher.cs --- docky-2.0.4/Docky.Windowing/Windowing/WindowMatcher.cs 2010-05-25 16:54:56.114876079 +0200 +++ docky-2.0.5/Docky.Windowing/Windowing/WindowMatcher.cs 2010-06-26 15:47:36.543229000 +0200 @@ -106,7 +106,7 @@ static IEnumerable PrefixStrings { get { - yield return "gksu"; + yield return "gksu(do)?"; yield return "sudo"; yield return "java"; yield return "mono"; @@ -125,11 +125,11 @@ static IEnumerable SuffixStrings { get { // some wine apps are launched via a shell script that sets the proc name to "app.exe" - yield return ".exe"; - // some apps have a script 'foo' which does 'exec foo-bin' - yield return "-bin"; + yield return "\\.exe"; + // some apps have a script 'foo' which does 'exec foo-bin' or 'exec foo.bin' + yield return "[.-]bin"; // some python apps have a script 'foo' for 'python foo.py' - yield return ".py"; + yield return "\\.py"; // some apps append versions, such as '-1' or '-3.0' yield return "(-)?\\d+(\\.\\d+)?"; } @@ -297,14 +297,17 @@ if (WindowIsOpenOffice (window)) SetupWindow (window); - - string file = window_to_desktop_files[window].FirstOrDefault (); - if (file == null) - file = ""; - file = file.EndsWith (".desktop") ? file : null; + string homedir = Environment.GetFolderPath (Environment.SpecialFolder.Personal); + List matches; + if (window_to_desktop_files.TryGetValue (window, out matches)) { + string useritem = matches.Find (item => item.StartsWith (homedir)); + if (useritem != null) + return useritem; + return matches.FirstOrDefault (); + } - return file; + return null; } public bool WindowIsReadyForMatch (Wnck.Window window) @@ -428,6 +431,8 @@ matched = true; } } + if (matched) + break; } // if we found a match, bail. if (matched) @@ -580,7 +585,10 @@ continue; string cls = item.GetString ("StartupWMClass").Trim (); - result [cls] = file; + // we only want exactly 1 launcher, and so if we already have one we use that + // otherwise it will prefer global over local launchers + if (!result.ContainsKey (cls)) + result [cls] = file; } } @@ -606,8 +614,8 @@ (exec.StartsWith ("ooffice") || exec.StartsWith ("openoffice") || exec.StartsWith ("soffice"))) { vexec = "ooffice" + exec.Split (' ') [1]; // for wine apps - } else if ((exec.StartsWith ("env WINEPREFIX=") && exec.Contains (" wine ")) || - exec.StartsWith ("wine ")) { + } else if ((exec.Contains ("env WINEPREFIX=") && exec.Contains (" wine ")) || + exec.Contains ("wine ")) { int startIndex = exec.IndexOf ("wine ") + 5; // length of 'wine ' // CommandLineForPid already splits based on \\ and takes the last entry, so do the same here vexec = exec.Substring (startIndex).Split (new [] {@"\\"}, StringSplitOptions.RemoveEmptyEntries).Last (); diff -Nru docky-2.0.4/lib/gio-sharp/generator/Makefile.in docky-2.0.5/lib/gio-sharp/generator/Makefile.in --- docky-2.0.4/lib/gio-sharp/generator/Makefile.in 2010-05-31 08:00:12.725621294 +0200 +++ docky-2.0.5/lib/gio-sharp/generator/Makefile.in 2010-07-01 19:05:34.225184001 +0200 @@ -202,6 +202,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/lib/gio-sharp/gio/Makefile.in docky-2.0.5/lib/gio-sharp/gio/Makefile.in --- docky-2.0.4/lib/gio-sharp/gio/Makefile.in 2010-05-31 08:00:12.785621362 +0200 +++ docky-2.0.5/lib/gio-sharp/gio/Makefile.in 2010-07-01 19:05:34.285184001 +0200 @@ -188,6 +188,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/lib/gio-sharp/Makefile.in docky-2.0.5/lib/gio-sharp/Makefile.in --- docky-2.0.4/lib/gio-sharp/Makefile.in 2010-05-31 08:00:12.665621417 +0200 +++ docky-2.0.5/lib/gio-sharp/Makefile.in 2010-07-01 19:05:34.155184001 +0200 @@ -204,6 +204,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/lib/Makefile.in docky-2.0.5/lib/Makefile.in --- docky-2.0.4/lib/Makefile.in 2010-05-31 08:00:12.615621384 +0200 +++ docky-2.0.5/lib/Makefile.in 2010-07-01 19:05:34.115184001 +0200 @@ -203,6 +203,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/m4/Makefile.in docky-2.0.5/m4/Makefile.in --- docky-2.0.4/m4/Makefile.in 2010-05-31 08:00:12.825621362 +0200 +++ docky-2.0.5/m4/Makefile.in 2010-07-01 19:05:34.335184001 +0200 @@ -164,6 +164,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/Makefile.in docky-2.0.5/Makefile.in --- docky-2.0.4/Makefile.in 2010-05-31 08:00:13.035620638 +0200 +++ docky-2.0.5/Makefile.in 2010-07-01 19:05:34.545184001 +0200 @@ -240,6 +240,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/NEWS docky-2.0.5/NEWS --- docky-2.0.4/NEWS 2010-05-31 07:54:32.944372006 +0200 +++ docky-2.0.5/NEWS 2010-07-01 18:42:43.535184000 +0200 @@ -1,5 +1,87 @@ Docky: The finest dock no money can buy! + +2.0.5 "Be proud of your dock" (2010-07-01) +=============================================================================== + * Bug-fix and Maintenance Release + * update translations + * update COPYRIGHT and AUTHORS files + + CORE: + * remove --debug flag from launcher for lower memory usage + * update the about dialog credits to list documenters and make translation + tab easier to read + * change url in about dialog to the launchpad project page + * Window-Matching + - fix for applications commandline + - properly match qt creator (LP: #594814) + - prefer local over global launchers (LP: #588073) (LP: #592841) + - match prefix for gksudo (LP: #516433) + - fix nautilus items showing active indicator when desktop + is focused (LP: #487113) + - fix matching wine apps that use a prefixed launcher (LP: #596092) + * Memory Leaks + - dispose of calendar painter when the clock item is disposed + - fix leak in AutoHideManager + - several fixes using Cairo.Context.Target and Pango.Layout + - fix leak in PagingPainters + - fix leak in recursive file-deletion + - fix leaking SeparatorItems, WnckDockItems + - fix leaks with FileEmblems + - fix Pixbuf related leaks + - fix some leaks regarding FileMonitors + - fix leaks regarding Tiles and AbtractTileObjects + - fix leaking Glib.FileAdapter caused by unreferenced Action in FileDockItem + * Handle invalid desktopfile entry and UriFormatException in + FileApplicationProvider (LP: #595921) + * fix potential crash for invalid HelperMetadata + * handle drops correctly + * fix handling of Helpers in HelperService + * make the sliders in preferences behave better + * fix drawing of rotated items + * fix HoveredItem click-position + * avoids fatal errors on console when loading embedded icons when no + height or width is specified and when dock items have a null Icon + * fix icon theme change not refreshing the dock icons (LP: #590205) + * fix SVG rendering bug + * fix iconsize temporarily getting large when adding to full dock (LP: #579576) + * fix the 'crash in PinToDock' (LP: #588073) + * make 3d background height more consistent and a tad larger (LP: #503038) + * fix dragging multiple files to a folder on the dock, which caused + a crash and data corruption (LP: #579049) + * don't request animations if urgent state is removed from a window and + fix glow location (LP: #596422) + * fix window previews being offset (LP: #495065) + * fix broken zoom after shrinking icon size (LP: #598924) + * fix problem with hovers still visible when painters show + * fix displaying default icon in place of missing file emblem (LP: #534651) + * fix crash when gconf key for menus_have_icons is not set (LP: #573751) + * make sure painters fit on screen (LP: #589978) + * fix icon minimize animations not working immediately for some newly + opened windows + * don't dispose our static DockyItem + * fix CurrentDesktopOnly not working when dragging a window across desktops + (LP: #600290) + + DOCKLETS: + * GMail: + - fix thread-guards and remove deprecated code + - fix problem with feeds that dont have an author entry (LP: #595530) + * NPR: fix bug where removing your last NPR station unloaded the docklet + and fix station icon + * NetworkManager: fix crash caused when NM goes away + and fix icons and add another fallback icon (LP: #588581) + * Mounter: + - fixed some leaks + - only remove mounted items if they were successfully unmounted (LP: #597637) + - fix duplicate icons showing in mounter (LP: #525306) + * Weather: fix feels like temp showing incorrect for metric (LP: #597670) + * RecentDocuments: + - fixed some leaks + - fix sensitivity of recent docs clear menu item - even if docky shows + the list as empty does not mean it cant be cleared + + 2.0.4 "Do you think you're better off alone?" (2010-05-31) =============================================================================== * Bug-fix and Maintenance Release diff -Nru docky-2.0.4/po/ast.po docky-2.0.5/po/ast.po --- docky-2.0.4/po/ast.po 2010-05-31 07:48:25.000000000 +0200 +++ docky-2.0.5/po/ast.po 2010-07-01 18:56:43.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" "PO-Revision-Date: 2010-04-12 08:57+0000\n" "Last-Translator: Xuacu Saturio \n" "Language-Team: Asturian \n" @@ -15,30 +15,30 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Guetar Docklets..." -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "Guetar aidantes..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "Calque nun dock pa configuralu." -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "Arrastre cualisquier dock para reposicionalu." -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "¿Desaniciar el dock que ta seleicionáu?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -46,40 +46,39 @@ "Si escueye desaniciar el dock, toles configuraciones\n" "del dock desaniciáu perderánse permanentemente." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "_Desaniciar dock" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_Esbillar" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr "Archivos .tar" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "_Amestar" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "_Desaniciar" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Autor" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Preferencies" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." @@ -87,27 +86,27 @@ "Docky requier composición pa funcionar correutamente. Active la composición " "y reanicie Docky." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_Activar" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "_Desactivar" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Estáu" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Desinstalar" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "N'execución" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Paráu" @@ -119,7 +118,7 @@ "Fai que los llanzadores qu'actualmente xestionen más d'una ventana tengan un " "indicador extra debaxo." -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." @@ -127,42 +126,42 @@ "Cuando ta activáu, les ventanes que nun tengan yá llanzadores nun dock van " "amestase a esti dock." -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "Nunca s'anubre; les ventanes maximizaes nun tapen el dock." -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "Anúbrese cuando el mur nun ta enriba." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "Anúbrese cuando el dock tapez la aplicación activa." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "Anúbrese cuando el dock tapez cualisquier ventana." -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "Arrastrar pa reposicionar" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "Soltar p'amestar al dock" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "Axu_stes" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "Tocante _a" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "_Colar de Docky" @@ -170,83 +169,82 @@ msgid "Docky Configuration" msgstr "Configuración de Docky" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "_Aniciar cuando s'anicie l'ordenador" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Tema:" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Opciones xenerales" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Configuración del Dock" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Docks" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "Too" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "Activáu" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "Desactiváu" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Docklets" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Instalar" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "Aidantes" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "_Nuevu Dock" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "Dengún" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Autoanubrir" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Anubrimientu intelixente" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "Esquitar ventanes" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "A_matagar al anubrir" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "_Tamañu del iconu:" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_Anubrimientu:" @@ -254,19 +252,19 @@ msgid "Indicat_e Multiple Windows" msgstr "Indicar ventan_es múltiples" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "Mou _panel" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "Fondu _3D" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "_Xestionar ventanes ensin llanzador" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "_Zoom:" @@ -275,12 +273,12 @@ msgid "Drop to open with {0}" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "_Ventana nueva" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "_Abrir" @@ -288,63 +286,65 @@ msgid "Reset Color" msgstr "Reaniciar Color" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "_Pinchar nel dock" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "Error al executar l'aición de soltar" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "Nun hai espaciu bastante nel destín." -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "Completáu" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "Moviendo" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "Copiando" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "Error al executar l'aición de soltar" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "Abrir" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "Abrir carpeta contenedora" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "Desma_ximizar" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "Ma_ximizar" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "_Restaurar" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "Mi_nimizar" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "_Zarrar Too" @@ -416,23 +416,23 @@ msgid "remaining " msgstr "queden " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "Ordenador" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "Reló di_xital" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "_Reló de 24 hores" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "Amosar _data" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "Seleicionar _tema" @@ -440,7 +440,7 @@ msgid "Themes" msgstr "Temes" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "Tema" @@ -457,39 +457,39 @@ msgid "minutes" msgstr "minutos" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "El nome d'usuariu o contraseña nun tan configuraos" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(ensin asuntu)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "De: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "Error de canal" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "Nome d'usuariu non válidu" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "Error de rede" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "Error xeneral" @@ -512,19 +512,19 @@ msgid "Checking mail..." msgstr "Comprobando corréu..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "_Ver " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "_Componer corréu" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "Corréu nuevu" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "Co_mprobar corréu" @@ -544,11 +544,11 @@ msgid "From: " msgstr "De: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "_Espulsar" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "_Desmontar" @@ -587,39 +587,39 @@ msgid "Please try your search again." msgstr "Intente la gueta otra vuelta." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "Trayendo información..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "Calque p'amestar emisores NPR." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "Páxina d'aniciu" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "Horariu de programes" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "Donar" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "Emisiones en direutu" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "¿Llimpiar la llista de documentos recientes?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "Llimpiar los Documentos Recientes" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -629,7 +629,7 @@ "• Tolos elementos del menú Llugares → Documentos recientes.\n" "• Tolos elementos de la llista de documentos recientes en toles aplicaciones." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "_Llimpiar documentos recientes..." @@ -653,7 +653,7 @@ msgstr "Abrir Bas_oria" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "Vaciar _Basoria" @@ -691,11 +691,13 @@ msgid "Use _Metric Units" msgstr "Usar unidaes _métriques" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "Estación meteorolóxica non válida" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "Error de rede: " @@ -737,55 +739,56 @@ msgid "Weather Configuration" msgstr "Configuración de meteoroloxía" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "Recibiendo datos..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "_Mapa de radar" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "Pronósticu" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "Consultar la _meteoroloxía" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "Güe_i" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "M_añana" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "Humedanza" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "Temp" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "Sensación térmica" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "Aire" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "Direición" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "Alborecer" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "Aséu del sol" diff -Nru docky-2.0.4/po/bg.po docky-2.0.5/po/bg.po --- docky-2.0.4/po/bg.po 2010-05-31 07:48:20.000000000 +0200 +++ docky-2.0.5/po/bg.po 2010-07-01 18:56:40.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" "PO-Revision-Date: 2010-03-31 18:04+0000\n" "Last-Translator: Boyan Sotirov \n" "Language-Team: Bulgarian \n" @@ -15,30 +15,30 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Търсене на доклети..." -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "Търсене на помощници..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "Шракнете върху някой док за конфигуриране." -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "Влачете дока за да го позиционирате." -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "Изтриване на текущо изпрания док?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -46,40 +46,39 @@ "Ако изберете да изтриете дока, всички настройки\n" "за него ще бъдат завинаги изгубени." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "_Изтриване" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_Избор" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr ".tar архиви" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "_Добавяне" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "_Премахване" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Автор" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Настройки" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." @@ -87,27 +86,27 @@ "Доки изисква композитирането да работи. Моля разрешете композитирането и " "рестартирайте Доки." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_Разрешаване" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "_Забраняване" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Състояние" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Деинсталиране" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "Изпълнява се" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Спрян" @@ -119,7 +118,7 @@ "Предизвиква стартерите на прогками, които в момента управляват повече от " "един прозорец да имат допълнителен индикатор под него." -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." @@ -127,43 +126,43 @@ "Когато е настроено, прозорци, които все още нямат стартер на програма на " "дока ще бъдат добавени към него." -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "" "Не се скрива никога; максимизираните прозорци не препокриват дока." -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "Скрива се когато мишката не е върху него." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "Скрива се когато дока пречи на активно приложение." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "Скрива се, когато дока пречи на някой прозорец." -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "Влачете за позициониране" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "Отпуснете за да добавите към док" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_Настройки" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "_За програмата" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "_Затвори Доки" @@ -171,83 +170,82 @@ msgid "Docky Configuration" msgstr "Конфигурация на Доки" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "_Стартиране когато компютъра стартира" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Тема:" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Общи настройки" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Конфигурация на док" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Докове" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "Всички" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "Разрешен" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "Забранен" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Доклети" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Инсталиране" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "Помощници" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "_Нов док" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "Никакво" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Автоматично скриване" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Интелигентно скриване" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "Скриване на прозорец" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "_Избледняване при скриване" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "Размер на _иконите:" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_Скриване:" @@ -255,19 +253,19 @@ msgid "Indicat_e Multiple Windows" msgstr "Показва_не на много прозорци" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "_Панелен режим" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "3D _Фон" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "_Управление на прозорци без стартираща програма" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "_Увеличение:" @@ -276,12 +274,12 @@ msgid "Drop to open with {0}" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "Нов _прозорец" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "_Отваряне" @@ -289,63 +287,65 @@ msgid "Reset Color" msgstr "Промяна на цвета" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "_Закрепване за док" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "Грешка при осъществяване на пускащото действие" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "Недостатъчно свободно място на дестинацията." -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "Завършен" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "Преместване" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "Копиране" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "Грешка при осъществяване на пускащото действие" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "Отваряне" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "Отваряне на съдържащата папка" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "Дема_ксимизиране" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "Ма_ксимизиране" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "_Възстановяване" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "Ми_нимизиране" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "_Затваряне на всички" @@ -417,23 +417,23 @@ msgid "remaining " msgstr "оставащи " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "Компютър" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "Ци_фров часовник" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "24-Часов _Часовник" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "Показване на _дата" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "Избиране на _Тема" @@ -441,7 +441,7 @@ msgid "Themes" msgstr "Теми" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "Тема" @@ -458,39 +458,39 @@ msgid "minutes" msgstr "минути" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "Потребителско име и парола не са зададени" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(няма тема)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "От: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "Грешка на фийда" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "Невалидно потребителско име" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "Мрежова грешка" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "Обща грешка" @@ -513,19 +513,19 @@ msgid "Checking mail..." msgstr "Проверка на поща..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "_Изглед " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "_Нов мейл" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "Ново писмо" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "Проверка на _поща" @@ -545,11 +545,11 @@ msgid "From: " msgstr "От: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "_Изваждане" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "_Демонтиране" @@ -588,39 +588,39 @@ msgid "Please try your search again." msgstr "Опитайте търсенето отново." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "Извличане на информация..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "Щракнете за да добавите NPR станции." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "Домашна страница" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "График на програмата" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "Направи дарение" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "Потоци на живи предавания" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "Да бъде ли изчистен списъка със скоро отваряните документи?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "Изчистване на \"скорошни документи\"" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -631,7 +631,7 @@ "• Всички обекти в менюто „Места“ → „Скоро отваряни документи“.\n" "• Всички записи за последните отваряни документи в програмите." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "_Изчистване на скоро отваряни документи..." @@ -655,7 +655,7 @@ msgstr "_Отваряне на кошче" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "Изпразване на _кошче" @@ -693,11 +693,13 @@ msgid "Use _Metric Units" msgstr "Да се използват _метрични мерни единици" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "Невалидна локация за метеорологична информация" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "Мрежова грешка: " @@ -739,55 +741,56 @@ msgid "Weather Configuration" msgstr "Настройки за времето" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "Получаване на данни..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "Радарна _Карта" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "Прогнози" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "Проверка на _Времето" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "_Днес" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "У_тре" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "Влажност" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "Температура" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "Усеща се като" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "Вятър" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "Посока" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "Изгрев" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "Залез" diff -Nru docky-2.0.4/po/bn.po docky-2.0.5/po/bn.po --- docky-2.0.4/po/bn.po 2010-05-31 07:48:21.000000000 +0200 +++ docky-2.0.5/po/bn.po 2010-07-01 18:56:41.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" "PO-Revision-Date: 2010-03-09 16:37+0000\n" "Last-Translator: Scio \n" "Language-Team: Bengali \n" @@ -15,95 +15,94 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr "" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "যোগ (_A)" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "মুছে ফেল (_R)" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "সেটিংসমূহ" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." msgstr "" -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "" @@ -113,48 +112,48 @@ "extra indicator under it." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "" -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "" @@ -162,83 +161,82 @@ msgid "Docky Configuration" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "" @@ -246,19 +244,19 @@ msgid "Indicat_e Multiple Windows" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "" @@ -267,12 +265,12 @@ msgid "Drop to open with {0}" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "" @@ -280,63 +278,65 @@ msgid "Reset Color" msgstr "" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "" @@ -408,23 +408,23 @@ msgid "remaining " msgstr "" -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "" @@ -432,7 +432,7 @@ msgid "Themes" msgstr "" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "" @@ -449,39 +449,39 @@ msgid "minutes" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "" @@ -504,19 +504,19 @@ msgid "Checking mail..." msgstr "" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "" @@ -536,11 +536,11 @@ msgid "From: " msgstr "" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "" @@ -579,46 +579,46 @@ msgid "Please try your search again." msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" "• All items from the recent documents list in all applications." msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "" @@ -642,7 +642,7 @@ msgstr "" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "" @@ -677,11 +677,13 @@ msgid "Use _Metric Units" msgstr "মেট্রিক একক ব্যবহার কর (_M)" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "" @@ -713,54 +715,55 @@ msgid "Weather Configuration" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "তথ্য সংগ্রহ..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "" diff -Nru docky-2.0.4/po/ca.po docky-2.0.5/po/ca.po --- docky-2.0.4/po/ca.po 2010-05-31 07:48:22.000000000 +0200 +++ docky-2.0.5/po/ca.po 2010-07-01 18:56:41.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" "PO-Revision-Date: 2010-03-09 15:57+0000\n" "Last-Translator: Siegfried Gevatter \n" "Language-Team: Catalan \n" @@ -15,30 +15,30 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Cerca miniaplicacions..." -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "Cerca ajudants..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "Feu clic sobre qualsevol plafó per a configurar-lo." -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "Esteu segur que voleu eliminar el plafó seŀlecionat?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -46,40 +46,39 @@ "Si trieu eliminar el plafó, tota la configuració\n" "per al plafó eliminat es perdrà de forma permanent." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "_Esborra el plafó" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_Selecciona" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr "Fitxers .tar" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "_Afegeix" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "_Elimina" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Autor" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Configuració" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." @@ -87,27 +86,27 @@ "El Docky necessita per a funcionar correctament. Habiliteu la composició i " "torneu a iniciar el Docky." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_Activa" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "_Desactiva" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Estat" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Desinstaŀla" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "Executant-se" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Aturat" @@ -117,48 +116,48 @@ "extra indicator under it." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "Oculta quan el ratolí no esta per sobre." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "" -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_Paràmetres" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "_Quant a" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "_Surt del Docky" @@ -166,83 +165,82 @@ msgid "Docky Configuration" msgstr "Configuració del Docky" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "_Inicia automàticament amb l'inici de sessió" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Tema:" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Opcions generals" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Configuració del Docky" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Plafons" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "Tots" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "Activat" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "Desactivat" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Miniaplicacions" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Instaŀla" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "Ajudants" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "_Afegeix un plafó" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "Cap" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Ocultació automàtica" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Ocultació inteŀligent" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "Esquiva les finestres" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "_Esvaeix al amagar" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "_Mida de les icones:" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_Ocultació:" @@ -250,19 +248,19 @@ msgid "Indicat_e Multiple Windows" msgstr "_Indica múltiples finestres" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "Mode _taulell" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "_Gestiona finestres sense llançadora" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "_Ampliació:" @@ -271,12 +269,12 @@ msgid "Drop to open with {0}" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "_Finestra nova" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "_Obre" @@ -284,63 +282,65 @@ msgid "Reset Color" msgstr "Reinicialitza el color" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "_Fixa al plafó" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "No queda prou espai lliure al destí." -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "Complet" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "S'està movent" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "S'està copiant" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "Obre" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "Obre la carpeta contenidora" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "Desma_ximitza" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "Ma_ximitza" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "_Restaura" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "Mi_nimitza" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "_Tanca-ho tot" @@ -412,23 +412,23 @@ msgid "remaining " msgstr "" -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "Ordinador" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "Rellotge Di_gital" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "_Rellotge de 24 Hores" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "Mostra la _Data" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "Selecciona un _Tema" @@ -436,7 +436,7 @@ msgid "Themes" msgstr "Temes" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "Tema" @@ -453,39 +453,39 @@ msgid "minutes" msgstr "minuts" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "Nom d'usuari o paraula de pas no definits" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(sense assumpte)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "Desde: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "El nom d'usuari no és vàlid" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "Error de connexió" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "Error general" @@ -508,19 +508,19 @@ msgid "Checking mail..." msgstr "Comprovant el correu..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "_Veure " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "_Redactar un correu" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "Nou correu" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "Comprovar el _Correu" @@ -540,11 +540,11 @@ msgid "From: " msgstr "De: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "_Expulsa" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "_Desmunta" @@ -583,39 +583,39 @@ msgid "Please try your search again." msgstr "Torneu a intentar la cerca." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "S'està recollint informació..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "Pàgina d'inici" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "Donació" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "Voleu netejar la llista de documents recents?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "Neteja la llista de documents recents" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -626,7 +626,7 @@ "• Tots els elements de la llista de documents recents de totes les " "aplicacions." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "_Neteja la llista de documents recents..." @@ -650,7 +650,7 @@ msgstr "_Obre la paperera" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "Buida la _paperera" @@ -685,11 +685,13 @@ msgid "Use _Metric Units" msgstr "Utilitzar les unitats _Metriques" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "Error de Xarxa " @@ -721,55 +723,56 @@ msgid "Weather Configuration" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "Obtenint dades..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "Previsions" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "Comprova el _temps" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "_Avui" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "_Demà" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "Humitat" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "Temp." -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "Sembla igual a" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "Vent" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "Direcció" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "Sortida del Sol" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "Posta del Sol" diff -Nru docky-2.0.4/po/de.po docky-2.0.5/po/de.po --- docky-2.0.4/po/de.po 2010-05-31 07:48:21.000000000 +0200 +++ docky-2.0.5/po/de.po 2010-07-01 18:56:40.000000000 +0200 @@ -7,38 +7,38 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: Rico Tzschichholz \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" -"PO-Revision-Date: 2010-04-12 08:55+0000\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" +"PO-Revision-Date: 2010-05-31 06:48+0000\n" "Last-Translator: Rico Tzschichholz \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Docklets durchsuchen …" -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "Erweiterungen durchsuchen …" -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "Klicken Sie auf ein Dock um dessen Einstellungen zu ändern." -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "Ziehen Sie ein Dock um es neu zu positionieren." -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "Das ausgewählte Dock löschen?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -46,40 +46,39 @@ "Wenn Sie das gewählte Dock löschen,\n" "werden alle Einstellungen dieses Docks verloren gehen." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "Dock _löschen" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_Auswählen" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr ".tar Archiv" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "_Hinzufügen" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "_Entfernen" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Autor" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Einstellungen" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." @@ -87,27 +86,27 @@ "Docky benötigt einen Composition-Manager um korrekt zu arbeiten. Bitte " "aktivieren Sie einen Composition-Manager und starten Sie Docky neu." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_Aktivieren" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "_Deaktivieren" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Status" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Deinstallieren" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "Läuft" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Gestoppt" @@ -119,7 +118,7 @@ "Unter Startern, die mehr als ein Fenster verwalten, erscheint ein " "zusätzlicher Hinweis." -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." @@ -127,43 +126,43 @@ "Fenster, die keinem bestehenden Starter zugeordnet werden können, werden " "diesem Dock hinzugefügt." -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "" "Niemals verbergen, maximierte Fenster überdecken das Dock nicht." -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "Verbergen, wenn sich kein Mauszeiger darüber befindet." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "Verbergen, wenn es das aktive Anwendungsfenster behindert." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "Verbergen, wenn es ein Anwendungsfenster behindert." -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "Ziehen um neu zu positionieren" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "Loslassen um zum Dock hinzuzufügen" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_Einstellungen" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "_Info" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "Docky _beenden" @@ -171,83 +170,82 @@ msgid "Docky Configuration" msgstr "Docky Einstellungen" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "_Automatisch beim Systemstart starten" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Erscheinungsbild:" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Allgemeine Einstellungen" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Dock Einstellungen" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Docks" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "Alle" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "Aktiviert" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "Deaktiviert" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Docklets" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Installieren" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "Erweiterungen" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "_Neues Dock" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "Nie verbergen" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Automatisch verbergen" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Aktivem Fenster ausweichen" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "Allen Fenstern ausweichen" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "Aus_blenden" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "_Symbolgröße" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_Verbergen:" @@ -255,19 +253,19 @@ msgid "Indicat_e Multiple Windows" msgstr "Hinweis bei _mehreren Fenstern" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "_Panel-Modus" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "3D Hinter_grund" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "_Fenster ohne Starter verwalten" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "Ver_größerung:" @@ -276,12 +274,12 @@ msgid "Drop to open with {0}" msgstr "Loslassen um mit {0} zu öffnen" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "_Neues Fenster" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "_Öffnen" @@ -289,64 +287,66 @@ msgid "Reset Color" msgstr "Farbe zurücksetzen" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "An Dock _anheften" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "Loslassen um nach {0} zu verschieben" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "Fehler beim Ausführen der Auslass-Aktion" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "" "Auf dem Zieldatenträger ist nicht genügend freier Speicherplatz vorhanden." -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "Abgeschlossen" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "Verschieben …" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "Kopieren …" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "Fehler beim Ausführen der Auslass-Aktion" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "Öffnen" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "Beinhaltenden Ordner öffnen" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "Ma_ximierung aufheben" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "Ma_ximieren" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "_Wiederherstellen" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "Mi_nimieren" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "_Alle schließen" @@ -418,23 +418,23 @@ msgid "remaining " msgstr "verbleibend " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "Rechner" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "Di_gitale Uhr" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "24-Stunden _Uhr" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "_Datum anzeigen" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "_Thema wählen" @@ -442,7 +442,7 @@ msgid "Themes" msgstr "Themen" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "Thema" @@ -459,39 +459,39 @@ msgid "minutes" msgstr "Minuten" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "Benutzer oder Passwort nicht gesetzt" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(kein Betreff)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "Sie haben {0} neue ungelesen Nachrichten" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "Von: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "Feed-Fehler" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "Ungültiger Benutzername" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "Netzwerkfehler" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "Allgemeiner Fehler" @@ -514,19 +514,19 @@ msgid "Checking mail..." msgstr "Auf neue Nachrichten prüfen …" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "_Zeige " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "E-Mail _verfassen" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "Neue E-Mail" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "Auf neue Nachrichten _prüfen" @@ -546,11 +546,11 @@ msgid "From: " msgstr "Von: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "Aus_werfen" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "_Aushängen" @@ -589,39 +589,39 @@ msgid "Please try your search again." msgstr "Bitte versuchen Sie Ihre Suche erneut." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "Informationen werden geladen …" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "Klicken um NPR Sender hinzuzufügen." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "Webseite" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "Programmverzeichnis" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "Spenden" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "Live-Streams" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "Liste der zuletzt geöffneten Dokumente löschen?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "Liste der zuletzt geöffneten Dokumente löschen" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -631,7 +631,7 @@ "• Alle Einträge im Menü Orte → Zuletzt geöffnete Dokumente.\n" "• Die Liste der zuletzt geöffneten Dokumente in allen Anwendungen." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "_Liste der zuletzt geöffneten Dokumente löschen …" @@ -655,7 +655,7 @@ msgstr "Müll _öffnen" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "_Müll leeren" @@ -696,11 +696,13 @@ msgid "Use _Metric Units" msgstr "Metrische Einheiten verwenden" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "Ungültiger Standort" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "Netzwerkfehler: " @@ -741,55 +743,56 @@ msgid "Weather Configuration" msgstr "Wetter-Konfiguration" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "Aktualisieren …" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "_Radarkarte" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "Vorhersagen" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "Wetterinformationen aktualisieren" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "_Heute" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "_Morgen" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "Luftfeuchtigkeit" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "Temperatur" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "gefühlte" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "Wind" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "Richtung" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "Sonnenaufgang" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "Sonnenuntergang" diff -Nru docky-2.0.4/po/en_GB.po docky-2.0.5/po/en_GB.po --- docky-2.0.4/po/en_GB.po 2010-05-31 07:48:22.000000000 +0200 +++ docky-2.0.5/po/en_GB.po 2010-07-01 18:56:42.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" "PO-Revision-Date: 2010-03-29 23:28+0000\n" "Last-Translator: Daniel Bell \n" "Language-Team: English (United Kingdom) \n" @@ -15,30 +15,30 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Search Docklets..." -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "Search Helpers..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "Click on any dock to configure." -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "Drag any dock to reposition." -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "Delete the currently selected dock?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -46,40 +46,39 @@ "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "_Delete Dock" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_Select" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr ".tar Archives" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "_Add" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "_Remove" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Author" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Settings" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." @@ -87,27 +86,27 @@ "Docky requires compositing to work properly. Please enable compositing and " "restart docky." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_Enable" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "_Disable" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Status" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Uninstall" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "Running" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Stopped" @@ -119,7 +118,7 @@ "Causes launchers which currently manage more than one window to have an " "extra indicator under them." -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." @@ -127,42 +126,42 @@ "When set, windows which do not already have launchers on a dock will be " "added to this dock." -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "Never hides; maximized windows do not overlap the dock." -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "Hides whenever the mouse is not over it." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "Hides when dock obstructs the active application." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "Hides when dock obstructs any window." -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "Drag to reposition" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "Drop to add to dock" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_Settings" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "_About" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "_Quit Docky" @@ -170,83 +169,82 @@ msgid "Docky Configuration" msgstr "Docky Configuration" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "_Start When Computer Starts" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Theme:" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "General Options" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Dock Configuration" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Docks" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "All" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "Enabled" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "Disabled" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Docklets" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Install" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "Helpers" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "_New Dock" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "None" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Autohide" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Intellihide" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "Window Dodge" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "_Fade On Hide" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "_Icon Size:" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_Hiding:" @@ -254,19 +252,19 @@ msgid "Indicat_e Multiple Windows" msgstr "Indicat_e Multiple Windows" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "_Panel Mode" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "3D Back_ground" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "_Manage Windows Without Launcher" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "_Zoom:" @@ -275,12 +273,12 @@ msgid "Drop to open with {0}" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "New _Window" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "_Open" @@ -288,63 +286,65 @@ msgid "Reset Color" msgstr "Reset Colour" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "_Pin to Dock" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "Error performing drop action" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "Not enough free space on destination." -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "Complete" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "Moving" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "Copying" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "Error performing drop action" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "Open" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "Open Containing Folder" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "Unma_ximise" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "Ma_ximise" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "_Restore" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "Mi_nimise" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "_Close All" @@ -416,23 +416,23 @@ msgid "remaining " msgstr "remaining " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "Computer" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "Di_gital Clock" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "24-Hour_Clock" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "Show _Date" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "Select _Theme" @@ -440,7 +440,7 @@ msgid "Themes" msgstr "Themes" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "Theme" @@ -457,39 +457,39 @@ msgid "minutes" msgstr "minutes" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "Username or Password not set" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(no subject)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "From: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "Feed Error" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "Invalid Username" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "Network Error" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "General Error" @@ -512,19 +512,19 @@ msgid "Checking mail..." msgstr "Checking mail..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "_View " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "_Compose Mail" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "New Mail" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "Check _Mail" @@ -544,11 +544,11 @@ msgid "From: " msgstr "From: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "_Eject" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "_Unmount" @@ -587,39 +587,39 @@ msgid "Please try your search again." msgstr "Please try your search again." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "Fetching Information..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "Click to add NPR stations." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "Home Page" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "Programme Schedule" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "Donate" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "Live Streams" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "Clear the Recent Documents list?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "Clear Recent Documents" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -629,7 +629,7 @@ "• All items from the Places → Recent Documents menu item.\n" "• All items from the recent documents list in all applications." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "_Clear Recent Documents..." @@ -653,7 +653,7 @@ msgstr "_Open the Deleted Items folder" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "Empty _Deleted Items" @@ -691,11 +691,13 @@ msgid "Use _Metric Units" msgstr "Use _Metric Units" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "Invalid Weather Location" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "Network Error: " @@ -735,55 +737,56 @@ msgid "Weather Configuration" msgstr "Weather Configuration" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "Fetching data..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "Radar _Map" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "Forecasts" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "Check _Weather" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "_Today" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "T_omorrow" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "Humidity" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "Temp" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "Feels Like" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "Wind" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "Direction" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "Sunrise" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "Sunset" diff -Nru docky-2.0.4/po/es.po docky-2.0.5/po/es.po --- docky-2.0.4/po/es.po 2010-05-31 07:48:20.000000000 +0200 +++ docky-2.0.5/po/es.po 2010-07-01 18:56:40.000000000 +0200 @@ -7,38 +7,38 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" -"PO-Revision-Date: 2010-05-29 08:05+0000\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" +"PO-Revision-Date: 2010-05-31 06:47+0000\n" "Last-Translator: Rico Tzschichholz \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Buscar Docklets..." -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "Buscar ayudantes..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "Seleccionar cualquier dock para configurar." -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "Arrastrar cualquier dock para reposicionarlo." -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "¿Borrar el dock actualmente seleccionado?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -46,40 +46,39 @@ "Si decide borrar el dock, todas las configuraciones\n" "para el dock eliminado se perderán permanentemente." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "_Eliminar Dock" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_Seleccionar" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr "Archivadores .tar" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "_Añadir" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "Elimina_r" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Autor" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Configuración" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." @@ -87,27 +86,27 @@ "Docky requiere composición para funcionar correctamente. Active la " "composición y reinicie Docky." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_Activar" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "_Desactivar" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Estado" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Desinstalar" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "En ejecución" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Detenido" @@ -119,7 +118,7 @@ "Hace que los lanzadores que actualmente gestionen más de una ventana tengan " "un indicador extra debajo." -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." @@ -127,42 +126,42 @@ "Cuando está activado, las ventanas que no tienen lanzadores se añadirán a " "ese dock." -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "Nunca se esconde; las ventanas maximizadas no cubren el dock." -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "Se esconde cuando el ratón no está sobre él." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "Se esconde cuando el dock obstruye la aplicación activa." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "Se esconde cuando el dock obstruye cualquier ventana." -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "Arrastrar para reposicionar" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "Soltar para añadir al dock" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_Configuración" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "Acerca _de" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "_Salir de Docky" @@ -170,83 +169,82 @@ msgid "Docky Configuration" msgstr "Configuración de Docky" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "_Iniciar al arrancar el equipo" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Tema:" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Opciones generales" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Configuración del dock" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Docks" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "Todas" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "Activado" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "Desactivado" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Docklets" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Instalar" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "Ayudantes" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "Dock _nuevo" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "Ninguno" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Ocultar automáticamente" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Ocultamiento inteligente" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "Esquivar ventanas" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "_Desvanecer al ocultar" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "_Tamaño del icono:" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_Ocultación:" @@ -254,19 +252,19 @@ msgid "Indicat_e Multiple Windows" msgstr "Indic_ar varias ventanas" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "_Modo panel" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "Fondo _3D" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "_Gestionar ventanas sin lanzador" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "_Zoom:" @@ -275,12 +273,12 @@ msgid "Drop to open with {0}" msgstr "Soltar para abrir con {0}" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "_Ventana nueva" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "_Abrir" @@ -288,63 +286,65 @@ msgid "Reset Color" msgstr "Reiniciar color" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "_Anclar al dock" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "Soltar para mover a {0}" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "Error al soltar" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "No hay suficiente espacio en el destino." -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "Completado" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "Moviendo" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "Copiando" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "Error al soltar" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "Abrir" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "Abrir carpeta contenedora" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "Desma_ximizar" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "Ma_ximizar" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "_Restaurar" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "Mi_nimizar" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "Cerrar _todo" @@ -416,23 +416,23 @@ msgid "remaining " msgstr "restantes " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "Equipo" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "Reloj d_igital" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "_Reloj de 24 horas" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "Mostrar _fecha" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "Seleccionar _tema" @@ -440,7 +440,7 @@ msgid "Themes" msgstr "Temas" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "Tema" @@ -457,39 +457,39 @@ msgid "minutes" msgstr "minutos" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "El nombre de usuario o contraseña no están configurados" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(sin asunto)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "Tienes {0} mensajes nuevos o sin leer" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "De: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "Error de suministro" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "Nombre de usuario no válido" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "Error de red" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "Error general" @@ -512,19 +512,19 @@ msgid "Checking mail..." msgstr "Comprobando correo..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "_Ver " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "_Redactar correo" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "Correo nuevo" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "C_omprobar correo" @@ -544,11 +544,11 @@ msgid "From: " msgstr "De: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "_Expulsar" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "_Desmontar" @@ -587,39 +587,39 @@ msgid "Please try your search again." msgstr "Intente de nuevo la búsqueda." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "Obteniendo información..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "Pulse para añadir emisoras NPR." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "Página de inicio" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "Planificación" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "Donar" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "Emisiones en directo" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "¿Desea vaciar la lista de documentos recientes?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "Vaciar documentos recientes" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -630,7 +630,7 @@ "• Todos los elementos de la lista de documentos recientes en todas las " "aplicaciones." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "_Vaciar documentos recientes..." @@ -654,7 +654,7 @@ msgstr "_Abrir la papelera" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "_Vaciar papelera" @@ -692,11 +692,13 @@ msgid "Use _Metric Units" msgstr "Usar unidades _métricas" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "Área meteorológica incorrecta" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "Error de red: " @@ -738,55 +740,56 @@ msgid "Weather Configuration" msgstr "Configuración de meteorología" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "Obteniendo datos..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "_Mapa del radar" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "Pronóstico" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "Consultar la _meteorología" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "_Hoy" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "M_añana" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "Humedad" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "Temperatura" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "Sensación térmica" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "Viento" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "Dirección" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "Amanecer" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "Ocaso" diff -Nru docky-2.0.4/po/eu.po docky-2.0.5/po/eu.po --- docky-2.0.4/po/eu.po 2010-05-31 07:48:21.000000000 +0200 +++ docky-2.0.5/po/eu.po 2010-07-01 18:56:41.000000000 +0200 @@ -7,38 +7,38 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" -"PO-Revision-Date: 2010-03-16 09:54+0000\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" +"PO-Revision-Date: 2010-05-31 06:46+0000\n" "Last-Translator: Rico Tzschichholz \n" "Language-Team: Basque \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Bilatu docklet-ak..." -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "Bilatu hedapenak..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "Klikatu edozein dock konfiguratzeko." -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "Arrastatu edozein dock birkokatzeko." -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "Hautatutako dock-a ezabatu?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -46,40 +46,39 @@ "Dock-a ezabatzea aukeratzen baduzu, dock horrekin\n" "lotutako ezarpen guztiak betiko galduko dira." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "E_zabatu dock-a" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_Hautatu" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr ".tar artxiboak" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "_Gehitu" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "_Kendu" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Egilea" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Ezarpenak" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." @@ -87,27 +86,27 @@ "Docky-k compositing behar du egoki funtzionatzeko. Aktibatu compositing eta " "berrabiarazi Docky." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_Aktibatu" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "_Desaktibatu" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Egoera" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Desinstalatu" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "Martxan" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Geldituta" @@ -118,7 +117,7 @@ msgstr "" "Leiho bat baino gehiagodun abiarazleen azpian adierazle bat bistaratu." -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." @@ -126,43 +125,43 @@ "Aukera hau aktibatzean, abiarazlerik ez duten leihoak dock honetan " "bistaratuko dira." -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "" "Beti ikusgai; maximizatutako leihoek ez dute dock-a ezkutatzen." -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "Sagua gainean ez duenero ezkutatzen da." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "Aplikazio aktibo bat eragozten duenean ezkutatzen da." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "Edozein leiho eragozten duenean ezkutatzen da." -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "Arrastatu lekuz aldatzeko" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "Jaregin dock-era itsasteko" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_Ezarpenak" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "_Honi buruz" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "_Itxi Docky" @@ -170,83 +169,82 @@ msgid "Docky Configuration" msgstr "Dockyren konfigurazioa" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "_Abiarazi ordenagailua pizterakoan" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Gaia:" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Aukera orokorrak" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Dock-aren konfigurazioa" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Dock-ak" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "Guztiak" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "Aktiboak" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "Ez-aktiboak" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Docklet-ak" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Instalatu" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "Hedapenak" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "Dock _berria" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "Inoiz ez" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Automatikoki ezkutatu" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Adimentsuki ezkutatu" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "Leihoak ekidin" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "_Pixkanaka desagertu" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "_Ikonoen tamaina" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_Ezkutatu:" @@ -254,19 +252,19 @@ msgid "Indicat_e Multiple Windows" msgstr "A_dierazi leiho bat baino gehiago daudenean" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "Panel _modua" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "3D atzeko p_lanoa" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "Abiarazle gabeko leihoak _kudeatu" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "Z_oom-a" @@ -275,12 +273,12 @@ msgid "Drop to open with {0}" msgstr "Jaregin {0}(r)ekin irekitzeko" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "Leiho _berria" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "_Ireki" @@ -288,63 +286,65 @@ msgid "Reset Color" msgstr "Berrezarri kolorea" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "I_tsatsi dock-era" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "Jaregin hona eramateko: {0}" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "Errorea jaregiten saiatzean" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "Ez dago nahikoa leku libre helburuan." -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "Osatuta" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "Mugitzen" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "Kopiatzen" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "Errorea jaregiten saiatzean" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "Ireki" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "Ireki karpeta" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "Desmaximi_zatu" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "_Maximizatu" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "_Leheneratu" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "I_konotu" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "Itxi _dena" @@ -416,23 +416,23 @@ msgid "remaining " msgstr "faltan " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "Ordenagailua" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "Erlo_ju digitala" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "24 _orduko modua" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "Erakutsi _data" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "Aukeratu _gaia" @@ -440,7 +440,7 @@ msgid "Themes" msgstr "Gaiak" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "Gaia" @@ -457,39 +457,39 @@ msgid "minutes" msgstr "minuturo" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "Erabiltzaile-izena edo pasahitza falta da" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(gairik gabea)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "Irakurri gabeko {0} mezu berri dituzu" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "Nork: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "Jario errorea" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "Okerreko erabiltzaile-izena" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "Sareko errorea" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "Errore orokorra" @@ -512,19 +512,19 @@ msgid "Checking mail..." msgstr "Mezuak begiratzen..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "_Ikusi " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "_Sortu mezua" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "Mezu berriak" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "_Begiratu posta" @@ -544,11 +544,11 @@ msgid "From: " msgstr "Nork: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "_Egotzi" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "_Desmuntatu" @@ -587,39 +587,39 @@ msgid "Please try your search again." msgstr "Saiatu berriro bilaketa egiten." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "Informazioa eskuratzen..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "Klikatu NPR irrati-estazioak gehitzeko." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "Webgunea" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "Programazioa" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "Dohaintza egin" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "Zuzeneko seinaleak" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "Garbitu azken dokumentuen zerrenda?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "Garbitu azken dokumentuak" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -629,7 +629,7 @@ " • 'Lekuak → Azken dokumentuak' menuko elementu guztiak.\n" " • Aplikazio guztietako azken dokumentuen zerrendako elementu guztiak." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "_Garbitu azken dokumentuak..." @@ -653,7 +653,7 @@ msgstr "_Ireki zakarrontzia" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "_Hustu zakarrontzia" @@ -691,11 +691,13 @@ msgid "Use _Metric Units" msgstr "_Erabili unitate metrikoak" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "Kokaleku baliogabea" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "Sareko errorea: " @@ -737,55 +739,56 @@ msgid "Weather Configuration" msgstr "Eguraldiaren konfigurazioa" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "Datuak eskuratzen..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "Radar-_mapa" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "Aurrikuspenak" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "_Begiratu eguraldia" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "_Gaur" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "_Bihar" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "Hezetasuna" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "Tenperatura" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "Sentsazioa" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "Haizea" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "Norantza" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "Egunsentia" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "Ilunsentia" diff -Nru docky-2.0.4/po/fi.po docky-2.0.5/po/fi.po --- docky-2.0.4/po/fi.po 2010-05-31 07:48:26.000000000 +0200 +++ docky-2.0.5/po/fi.po 2010-07-01 18:56:45.000000000 +0200 @@ -7,38 +7,38 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" -"PO-Revision-Date: 2010-04-06 10:12+0000\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" +"PO-Revision-Date: 2010-05-31 06:38+0000\n" "Last-Translator: Rico Tzschichholz \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Etsi telakkasovelmia..." -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "Etsi apuohjelmia..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "Napsauta haluamaasi telakkaa määritelläksesi sen asetukset." -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "Siirrä haluamaasi telakkaa napsauttamalla ja raahaamalla." -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "Poistetaanko valittu telakka?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -46,40 +46,39 @@ "Jos päätät poistaa telakan, kaikki\n" "kyseisen telakan asetukset menetetään." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "_Poista telakka" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_Valitse" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr ".tar-arkistot" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "_Lisää" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "Poi_sta" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Tekijä" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Asetukset" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." @@ -87,27 +86,27 @@ "Docky vaatii toimiakseen näytönohjainkiihdytyksen. Ota kiihdytys käyttöön ja " "käynnistä sitten Docky uudelleen." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "Ota _käyttöön" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "Poista kä_ytöstä" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Tila" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Poista" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "Käynnissä" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Pysäytetty" @@ -119,7 +118,7 @@ "Lisää graafisen elementin niiden käynnistimien alle, joista on useampi " "ikkuna avoinna samanaikaisesti." -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." @@ -127,43 +126,43 @@ "Jos tämä on käytössä, lisätään myös niiden avoinna olevien ohjelmien kuvake " "telakkaan, joiden käynnistintä ei ole vielä lisätty." -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "Ei piilotusta - suurennetut ikkunat eivät ole telakan päällä." -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "" "Piilottaa telakan, jos hiiren kursori ei ole kohdistettuna siihen." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "Piilottaa telakan, jos aktiivinen ikkuna on telakan alueella." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "Piilottaa telakan, jos jokin ikkunoista on telakan alueella." -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "Siirrä telakka toiseen kohtaan napsauttamalla ja raahaamalla" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "Tiputa lisätäksesi telakkaan" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_Asetukset" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "_Tietoja" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "_Lopeta Docky" @@ -171,83 +170,82 @@ msgid "Docky Configuration" msgstr "Dockyn asetukset" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "_Käynnistä Docky tietokoneen käynnistyessä" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Teema:" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Yleiset asetukset" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Telakan asetukset" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Telakat" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "Kaikki" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "Käytössä" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "Ei käytössä" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Telakkasovelmat" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Asenna" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "Apuohjelmat" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "_Uusi telakka" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "Älä piilota" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Piilota automaattisesti" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Piilota aktiivisen ikkunan edestä" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "Väistä ikkunoita" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "_Häivytä piilottaessa" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "K_uvakkeiden koko:" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_Piilotus:" @@ -255,19 +253,19 @@ msgid "Indicat_e Multiple Windows" msgstr "Ha_vainnollista, jos kuvake esittää useampaa ikkunaa" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "Paneel_itila" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "3D-tau_stakuva" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "Huomioi ikkunat, _joilla ei ole kuvaketta telakassa" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "Suu_rennus:" @@ -276,12 +274,12 @@ msgid "Drop to open with {0}" msgstr "Pudota avataksesi sovelluksella {0}" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "_Uusi ikkuna" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "_Avaa" @@ -289,63 +287,65 @@ msgid "Reset Color" msgstr "Poista asetettu väri" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "_Kiinnitä telakkaan" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "Pudota siirtääksesi kohteeseen {0}" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "Virhe pudotustoimintoa suorittaessa" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "Kohteessa ei ole riittävästi vapaata levytilaa." -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "Valmis" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "Siirretään" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "Kopioidaan" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "Virhe pudotustoimintoa suorittaessa" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "Avaa" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "Avaa kohteen sisältävä kansio" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "_Palauta koko" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "S_uurenna" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "Pa_lauta" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "Pie_nennä" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "Sulje _kaikki" @@ -417,23 +417,23 @@ msgid "remaining " msgstr "jäljellä " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "Tietokone" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "_Digitaalikello" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "24-tuntinen ke_llo" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "Nä_ytä päiväys" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "Valitse _teema" @@ -441,7 +441,7 @@ msgid "Themes" msgstr "Teemat" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "Teema" @@ -458,39 +458,39 @@ msgid "minutes" msgstr "minuutti" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "Tunnusta ja salasanaa ei ole asetettu" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(ei otsikkoa)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "{0} uutta, lukematonta viestiä" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "Lähettäjä: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "Syötevirhe" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "Virhe käyttäjätunnuksessa" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "Verkkovirhe" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "Yleinen virhe" @@ -513,19 +513,19 @@ msgid "Checking mail..." msgstr "Tarkistetaan viestejä..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "_Näkymä " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "_Lähetä viesti" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "Uusi sähköpostiviesti" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "Tarkista sä_hköpostiviestit" @@ -545,11 +545,11 @@ msgid "From: " msgstr "Lähettäjä: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "Poista _asemasta" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "_Irrota" @@ -588,39 +588,39 @@ msgid "Please try your search again." msgstr "Koeta etsiä uudelleen." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "Haetaan tietoja..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "Napsauta lisätäksesi National Public Radio -kanavan." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "Kotisivu" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "Ohjelma-aikataulu" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "Lahjoita" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "Suoratoistokanavat" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "Tyhjennetäänkö viimeisimpien asiakirjojen luettelo?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "Unohda viimeisimmät asiakirjat" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -630,7 +630,7 @@ "• Kaikki kohdat valikosta Sijainnit → Viimeisimmät asiakirjat.\n" "• Kaikki kohdat sovellusten viimeisimmät asiakirjat -luetteloista." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "T_yhjennä viimeisimmät asiakirjat..." @@ -654,7 +654,7 @@ msgstr "_Avaa roskakori" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "Tyhjennä _roskakori" @@ -692,11 +692,13 @@ msgid "Use _Metric Units" msgstr "Käytä _metrisiä yksiköitä" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "Virheellinen paikkakunta" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "Verkkovirhe: " @@ -738,55 +740,56 @@ msgid "Weather Configuration" msgstr "Sääasetukset" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "Haetaan tietoja..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "Tut_kakartta" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "Sääennuste" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "Tarkista _sää" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "_Tänään" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "_Huomenna" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "Ilmankosteus" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "Lämpötila" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "Tuntuu" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "Tuuli" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "Suunta" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "Auringonnousu" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "Auringonlasku" diff -Nru docky-2.0.4/po/fr.po docky-2.0.5/po/fr.po --- docky-2.0.4/po/fr.po 2010-05-31 07:48:21.000000000 +0200 +++ docky-2.0.5/po/fr.po 2010-07-01 18:56:41.000000000 +0200 @@ -7,38 +7,38 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" -"PO-Revision-Date: 2010-04-06 10:12+0000\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" +"PO-Revision-Date: 2010-06-17 13:39+0000\n" "Last-Translator: Pierre Slamich \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Chercher un docklet..." -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "Rechercher un Greffon" -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "Cliquez sur un dock pour le configurer." -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "Faites glisser un dock pour le repositionner." -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "Supprimer le dock sélectionné ?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -46,40 +46,39 @@ "Si vous supprimez ce dock, tous ses \n" "réglages seront supprimés définitivement." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "_Supprimer le dock" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_Sélectionner" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr "Fichiers compressés .tar" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "A_jouter" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "_Supprimer" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Auteur" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Préférences" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." @@ -87,27 +86,27 @@ "Docky exige les effets de bureau pour fonctionner correctement. Veuillez " "activer les effets de bureau et redémarrer Docky." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_Activer" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "_Désactiver" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "État" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Désinstaller" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "Actif" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Arrêté" @@ -119,7 +118,7 @@ "Affiche un indicateur supplémentaire en dessous des lanceurs qui gèrent " "plusieurs fenêtres." -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." @@ -127,44 +126,44 @@ "Lorsque cette option est activée, les fenêtres qui ne disposent pas déjà de " "lanceurs sur un dock seront ajoutées à ce dock." -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "" "Ne jamais masquer; les fenetres maximisées restent au dessous du dock." -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "Masque le Dock lorsque la souris n'est pas placée dessus." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "Masque le Dock lorsque celui-ci masque l'application active." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "" "Masque le Dock lorsque celui-ci masque une fenêtre quelconque." -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "Faites glisser pour repositionner" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "Relâchez pour ajouter au dock" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_Préférences" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "_À propos" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "_Quitter Docky" @@ -172,83 +171,82 @@ msgid "Docky Configuration" msgstr "Configuration de Docky" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "_Lancer au démarrage du système" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Thème :" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Options générales" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Configuration du dock" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Docks" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "Tous" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "Activés" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "Désactivés" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Docklets" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Installer" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "Greffons" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "_Nouveau dock" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "Aucun" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Masquer automatiquement" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Masquage intelligent" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "Esquiver les fenêtres" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "Masquage _progressif" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "_Taille d'icône :" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_Masquage" @@ -256,19 +254,19 @@ msgid "Indicat_e Multiple Windows" msgstr "Indiquer les fenêtres multiples" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "Mode Tableau de _bord" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "Arrière plan 3D" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "_Gérer les fenêtres sans lanceur" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "_Zoom :" @@ -277,12 +275,12 @@ msgid "Drop to open with {0}" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "_Nouvelle fenêtre" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "_Ouvrir" @@ -290,63 +288,65 @@ msgid "Reset Color" msgstr "Réinitialiser la couleur" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "_Epingler au dock" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "Erreur lors du relâchement du clic" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "La cible n'a pas assez de place disponible." -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "Terminé" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "Déplacement en cours" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "Copie en cours" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "Erreur lors du relâchement du clic" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "Ouvrir" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "Ouvrir le dossier parent" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "Déma_ximiser" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "A_grandir" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "Re_staurer" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "Réd_uire" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "_Fermer tout" @@ -418,23 +418,23 @@ msgid "remaining " msgstr "restant " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "Ordinateur" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "Horloge Di_gitale" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "_Horloge sur 24 heures" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "Afficher la _Date" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "Choisir le _Thème" @@ -442,7 +442,7 @@ msgid "Themes" msgstr "Thèmes" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "Thème" @@ -459,39 +459,39 @@ msgid "minutes" msgstr "minutes" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "Nom d'utilisateur ou mot de passe non spécifié" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(pas de sujet)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" -msgstr "" +msgstr "Vous avez {0} messages non lus" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "De : {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "Erreur de flux" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "Nom d'utilisateur non valide" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "Erreur Réseau" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "Erreur générale" @@ -514,19 +514,19 @@ msgid "Checking mail..." msgstr "Vérification des courriels ..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "_Ouvrir " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "_Ecrire un Courriel" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "Nouveau courriel" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "Vérifier les Courriels" @@ -546,11 +546,11 @@ msgid "From: " msgstr "De : " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "_Éjecter" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "_Démonter" @@ -589,39 +589,39 @@ msgid "Please try your search again." msgstr "Veuillez recommencer votre recherche." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "Récupération des informations ..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "Cliquez pour ajouter des stations NPR." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "Page d'accueil" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "Programme" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "Faites un Don" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "Flux en direct" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "Voulez-vous effacer la liste des documents récents ?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "Videz les documents récents" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -632,7 +632,7 @@ "• Tous les éléments de la liste des documents récents de toutes les " "applications." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "_Effacer la liste des documents récents..." @@ -656,7 +656,7 @@ msgstr "_Ouvrir la Corbeille" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "_Vider la corbeille" @@ -694,11 +694,13 @@ msgid "Use _Metric Units" msgstr "_Utiliser l'unité métrique" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "Lieu invalide pour la météo" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "Erreur réseau : " @@ -740,55 +742,56 @@ msgid "Weather Configuration" msgstr "Configuration de la météo" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "Récupération des données ..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "_Carte Radar" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "Prévisions" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "Vérifier la _météo" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "_Aujourd'hui" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "_Demain" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "Humidité" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "Température" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "Ressenti" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "Vent" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "Orientation" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "Lever du soleil" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "Coucher de soleil" diff -Nru docky-2.0.4/po/gl.po docky-2.0.5/po/gl.po --- docky-2.0.4/po/gl.po 2010-05-31 07:48:20.000000000 +0200 +++ docky-2.0.5/po/gl.po 2010-07-01 18:56:40.000000000 +0200 @@ -7,38 +7,38 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" -"PO-Revision-Date: 2010-03-16 09:54+0000\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" +"PO-Revision-Date: 2010-06-17 13:37+0000\n" "Last-Translator: Rico Tzschichholz \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Buscar engadidos de doca..." -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "Buscar axudantes..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "Prema en calquera doca para configurala" -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "Arrastre calquera doca para reposicionala." -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "Desexa eliminar a doca seleccionada actualmente?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -46,40 +46,39 @@ "Se selecciona eliminar a doca, todas as configuracións\n" "para a doca eliminada perderanse permanentemente." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "_Eliminar a doca" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_Seleccionar" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr "Arquivos .tar" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "_Engadir" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "_Eliminar" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Autor" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Configuración" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." @@ -87,27 +86,27 @@ "Docky require a composición para funcionar correctamente. Active a " "composición e reinicie Docky." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_Activar" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "_Desactivar" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Estado" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Desinstalar" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "En execución" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Detido" @@ -119,7 +118,7 @@ "Causa que os iniciadores que actualmente xestionan máis dunha xanela teñan " "un indicador adicional debaixo deles." -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." @@ -127,43 +126,43 @@ "Cando está estabelecido, as xanelas que non teñen xa iniciadores nunha doca " "engadiránse a esta doca." -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "" "Non ocultar nunca; as xanelas maximizadas non se sobrepoñen á doca." -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "Agóchase cando o rato non está sobre ela." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "Agóchase cando a doca obstrúe o aplicativo activo." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "Agóchase cando a doca obstrúe calquera xanela." -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "Arrastrar para reposicionar" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "Soltar para engadir á doca" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_Configuracións" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "_Sobre" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "_Saír de Docky" @@ -171,83 +170,82 @@ msgid "Docky Configuration" msgstr "Configuración de Docky" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "_Iniciar cando arranque o computador" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Tema:" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Opcións xerais" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Configuración da doca" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Docas" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "Todo" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "Activado" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "Desactivado" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Engadidos de doca" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Instalar" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "Axudantes" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "_Nova doca" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "Ningunha" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Ocultar automaticamente" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Ocultar de xeito intelixente" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "Esquivar xanela" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "_Fundir ao ocultar" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "Tamaño das _iconas" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_Ocultación:" @@ -255,33 +253,33 @@ msgid "Indicat_e Multiple Windows" msgstr "Indic_a múltiples xanelas" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "Modo _panel" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "Fo_ndo en 3D" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "_Xestionar as xanelas sen o iniciador" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "_Ampliación:" #: ../Docky.Items/Docky.Items/AbstractDockItem.cs:119 #, csharp-format msgid "Drop to open with {0}" -msgstr "" +msgstr "Soltar para abrir con {0}" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "Nova _xanela" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "_Abrir" @@ -289,63 +287,65 @@ msgid "Reset Color" msgstr "Restabelecer a cor" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "_Ancorar á doca" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" -msgstr "" +msgstr "Soltar para mover a {0}" + +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "Produciuse un erro na acción de soltar" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "Non hai suficiente espazo no destino." -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "Completada" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "Movendo" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "Copiando" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "Produciuse un erro na acción de soltar" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "Abrir" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "Abrir o cartafol contedor" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "Res_taurar" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "Ma_ximizar" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "_Restaurar" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "Mi_nimizar" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "_Pechar todas" @@ -417,23 +417,23 @@ msgid "remaining " msgstr "falta " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "Computador" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "Reloxo di_xital" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "_Reloxo de 24 horas" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "Mostrar _data" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "Seleccionar _tema" @@ -441,7 +441,7 @@ msgid "Themes" msgstr "Temas" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "Tema" @@ -458,39 +458,39 @@ msgid "minutes" msgstr "minutos" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "Nome de usuario ou contrasinal non configurados" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(sen asunto)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" -msgstr "" +msgstr "Ten {0} mensaxes nuevas ou sn ler" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "De: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "Produciuse un erro na fonte" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "Nome de usuario incorrecto" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "Erro de rede" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "Erro xeral" @@ -513,19 +513,19 @@ msgid "Checking mail..." msgstr "Comprobando o correo..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "_Ver " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "_Redarctar mail" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "Correo novo" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "Comprobar _correo" @@ -545,11 +545,11 @@ msgid "From: " msgstr "De: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "E_xpulsar" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "_Desmontar" @@ -588,39 +588,39 @@ msgid "Please try your search again." msgstr "Tente a buscar de novo." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "Obtendo a información..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "Prema para engadir estacións NPR." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "Páxina de inicio" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "Planificación do programa" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "Doar" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "Fluxos en vivo" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "Quere limpar a lista de documentos recentes?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "Limpar a lista de documentos recentes" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -630,13 +630,13 @@ "• Todos os elementos da opción do menú Lugares → Documentos recentes.\n" "• Todos os elementos da lista de documentos recentes de todos os aplicativos." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "_Limpar os documentos recentes..." #: ../StandardPlugins/Trash/src/TrashDockItem.cs:50 msgid "Drop to move to Trash" -msgstr "" +msgstr "Soltar para mover ao lixo" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:77 msgid "No items in Trash" @@ -654,7 +654,7 @@ msgstr "_Abrir o lixo" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "Baleirar o _lixo" @@ -692,11 +692,13 @@ msgid "Use _Metric Units" msgstr "Usar unidades _métricas" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "Lugar invalido do clima" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "Erro de rede: " @@ -739,55 +741,56 @@ msgid "Weather Configuration" msgstr "Configuración do tempo" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "Recibindo datos..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "_Mada de radar" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "Pronóstico" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "Comprobar o _tempo" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "_Hoxe" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "_Mañán" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "Humidade" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "Temperatura" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "Sensación térmica" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "Vento" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "Dirección" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "Amencer" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "Entre lusco e fusco" diff -Nru docky-2.0.4/po/he.po docky-2.0.5/po/he.po --- docky-2.0.4/po/he.po 2010-05-31 07:48:20.000000000 +0200 +++ docky-2.0.5/po/he.po 2010-07-01 18:56:40.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" "PO-Revision-Date: 2010-03-09 11:10+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hebrew \n" @@ -15,30 +15,30 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "חפש" -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "חפש עזרים..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "בחר אחד מסרגלי הדוק בכדי להגדירו" -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "גרור אחד מסרגלי הדוק למיקום הרצוי" -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "למחוק את סרגל הכלים המסומן?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -46,67 +46,66 @@ "אם ברצונך למחוק את סרגל הדוק, כלל ההגדרות\n" "לסרגל זה ימחקו לחלוטין." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "_מחק סרגל" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_בחר" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr "ארכיוני tar." -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "_הוסף" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "_הסר" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "יוצר" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "הגדרות" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." msgstr "" "Docky דורש compositing בכדי לעבוד כהלכה. אנא הפעל compositing ואתחל את Docky." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_אפשר" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "_נטרל" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "סטטוס" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "הסר" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "פועל" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "מופסק" @@ -116,48 +115,48 @@ "extra indicator under it." msgstr "גורם למשגרים שכרגע מריצים יותר מחלון אחד להיות עם מחוון נוסף תחתיהם." -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." msgstr "כאשר מופעל, חלונות שאין להם משגרים בדוק מסוים יוספו לדוק זה." -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "לעולם לא מוסתר; חלונות מוגדלים לא מכסים את הדוק." -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "מוסתר כל עוד העכבר לא מעליו." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "מוסתר כאשר הדוק מסתיר יישום פעיל." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "מוסתר כאשר הדוק מסתיר כל חלון." -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "גרור למיקום הרצוי" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "שחרר בכדי להוסיף לסרגל הדוק" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_הגדרות" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "_אודות" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "_צא מדוקי" @@ -165,83 +164,82 @@ msgid "Docky Configuration" msgstr "הגדרות דוקי" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "התחל בעת הפעלת המחשב" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_ערכת נושא:" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "אפשרויות כלליות" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "הגדרות דוקי" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "סרגלי דוק" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "הכול" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "מופעל" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "כבוי" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Docklets" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_התקן" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "עזרים" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "_סרגל דוק חדש" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "ללא" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "הסתרה אוטומטית" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "הסתרה חכמה" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "התחמקות מחלונות" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "_עמעם בהסתרה" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "_גודל הסמן:" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_הסתרה:" @@ -249,19 +247,19 @@ msgid "Indicat_e Multiple Windows" msgstr "ציין כאשר יש מספר חלונות" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "_מצב רצועה" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "רקע תלת_מימדי" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "_נהל חלונות ללא משגר" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "_זום:" @@ -270,12 +268,12 @@ msgid "Drop to open with {0}" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "חלון _חדש" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "_פתח" @@ -283,63 +281,65 @@ msgid "Reset Color" msgstr "איפוס הצבעים" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "_הדק אל הדוק" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "שגיאה בביצוע פעולת גרירה" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "אין מספיק שטח פנוי ביעד" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "הושלם" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "מעביר" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "מעתיק" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "שגיאה בביצוע פעולת גרירה" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "פתח" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "פתח תיקייה מכילה" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "_שחזר" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "_הגדל" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "_שחזר" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "_מזער" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "_סגור הכל" @@ -411,23 +411,23 @@ msgid "remaining " msgstr "נותר " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "מחשב" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "שעון_דיגיטלי" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "שעון-24_ שעות" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "הצג_ תאריך" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "בחר_ ערכת נושא" @@ -435,7 +435,7 @@ msgid "Themes" msgstr "ערכות נושא" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "ערכת נושא" @@ -452,39 +452,39 @@ msgid "minutes" msgstr "דקות" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "שם משתמש או סיסמה אינם מוגדרים" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(ללא נושא)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "מ: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "שגיאת הזנה" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "שם המשתמש שגוי" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "שגיאת רשת" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "שגיאה כללית" @@ -507,19 +507,19 @@ msgid "Checking mail..." msgstr "בודק דואר..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "_צפה " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "_כתוב הודעה חדשה" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "דואר חדש" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "בדוק_דואר" @@ -539,11 +539,11 @@ msgid "From: " msgstr "מ: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "_הוצא" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "_נתק" @@ -582,39 +582,39 @@ msgid "Please try your search again." msgstr "אנא נסו לחפש שוב." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "מושך מידע..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "דף הבית" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "לוח זמני התכנית" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "תרום" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "שידורים חיים" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "האם לנקות את רשימת המסמכים אחרונים?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "נקה מסמכים אחרונים" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -624,7 +624,7 @@ "• כל הפריטים מתפריט מקומות <-- מסמכים אחרונים.\n" "• כל הפריטים מרשימת מסמכים אחרונים של כל הישומים." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "_נקה מסמכים אחרונים..." @@ -648,7 +648,7 @@ msgstr "_פתיחת האשפה" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "רוקן _אשפה" @@ -683,11 +683,13 @@ msgid "Use _Metric Units" msgstr "השתמש _ביחידות השיטה העשרונית" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "מיקום מזג אוויר שגוי" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "שגיאת רשת " @@ -719,55 +721,56 @@ msgid "Weather Configuration" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "" diff -Nru docky-2.0.4/po/hi.po docky-2.0.5/po/hi.po --- docky-2.0.4/po/hi.po 2010-05-31 07:48:22.000000000 +0200 +++ docky-2.0.5/po/hi.po 2010-07-01 18:56:42.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" "PO-Revision-Date: 2010-03-09 11:10+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hindi \n" @@ -15,95 +15,94 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "डॉकलेट्स की खोज..." -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "सहायकों की खोज..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "डॉक को विन्यस्त करने के लिए उसे दबाएँ." -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "चुनें (_S)" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr "" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "जोड़ें (_A)" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "हटाएँ (_R)" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "सेटिंगस" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." msgstr "" -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "समर्थ करें (_E)" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "असमर्थ करें (_D)" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "स्थिति" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "कार्यशील" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "रुका हुआ" @@ -113,48 +112,48 @@ "extra indicator under it." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "" -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "सेटिंग (_S)" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "_के बारे में" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "" @@ -162,83 +161,82 @@ msgid "Docky Configuration" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "डाकलेट्स" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "" @@ -246,19 +244,19 @@ msgid "Indicat_e Multiple Windows" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "" @@ -267,12 +265,12 @@ msgid "Drop to open with {0}" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "" @@ -280,63 +278,65 @@ msgid "Reset Color" msgstr "" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "" @@ -408,23 +408,23 @@ msgid "remaining " msgstr "" -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "" @@ -432,7 +432,7 @@ msgid "Themes" msgstr "" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "" @@ -449,39 +449,39 @@ msgid "minutes" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "" @@ -504,19 +504,19 @@ msgid "Checking mail..." msgstr "" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "" @@ -536,11 +536,11 @@ msgid "From: " msgstr "" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "" @@ -579,46 +579,46 @@ msgid "Please try your search again." msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" "• All items from the recent documents list in all applications." msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "" @@ -642,7 +642,7 @@ msgstr "" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "" @@ -677,11 +677,13 @@ msgid "Use _Metric Units" msgstr "" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "" @@ -713,54 +715,55 @@ msgid "Weather Configuration" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "" diff -Nru docky-2.0.4/po/hr.po docky-2.0.5/po/hr.po --- docky-2.0.4/po/hr.po 2010-05-31 07:48:21.000000000 +0200 +++ docky-2.0.5/po/hr.po 2010-07-01 18:56:41.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" "PO-Revision-Date: 2010-03-09 16:42+0000\n" "Last-Translator: Rico Tzschichholz \n" "Language-Team: Croatian \n" @@ -16,30 +16,30 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Pretraži docklete..." -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "Pretraži pomagače..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "Kliknite na bilo koji dok kako biste ga podesili." -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "Povucite bilo koji dok da biste ga premjestili." -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "Želite li obrisati trenutno odabrani dok?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -47,40 +47,39 @@ "Ako obrišete dok, sve njegove postavke\n" " bit će trajno izgubljene." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "_Obriši dok" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_Odaberi" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr ".tar arhive" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "_Dodaj" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "_Ukloni" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Autor" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Postavke" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." @@ -88,27 +87,27 @@ "Za ispravan rad, Docky zahtijeva vizualne efekte. Molim omogućite vizualne " "efekte i ponovno pokrenite docky." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_Omogući" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "O_nemogući" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Status" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Ukloni" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "Izvršavanje" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Zaustavljeno" @@ -120,7 +119,7 @@ "Starteri koji imaju više od jednog prozora imati će dodatni indikator ispod " "prateće sličice." -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." @@ -128,43 +127,43 @@ "Ako je aktivirano, prozori koji već nemaju pokretače na doku bit će dodani " "istome." -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "" "Nikad se ne skriva; povećani prozori se ne preklapaju s dokom." -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "Skriva se kad god pokazivač nije iznad doka." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "Skriva se kada dok zakloni aktivnu aplikaciju." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "Skriva se kada dok zaklanja bilo koji prozor." -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "Povucite za premještanje" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "Ispustite da biste dodali na dok" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_Postavke" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "_O programu" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "_Zatvori Docky" @@ -172,83 +171,82 @@ msgid "Docky Configuration" msgstr "Postavke Dockyja" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "_Pokreni kada se računalo pokrene" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Tema:" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Opće postavke" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Postavke doka" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Dokovi" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "Svi" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "Omogućeno" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "Isključeno" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Dockleti" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Instaliraj" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "Pomagači" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "_Novi dok" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "Niti jedan" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Automatsko skrivanje" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Pametno skrivanje" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "Izbjegavanje Prozora" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "_Iščezni kada se sakriješ" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "_Veličina Ikona" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_Skrivanje" @@ -256,19 +254,19 @@ msgid "Indicat_e Multiple Windows" msgstr "Prikaž_i Višestruke Prozore" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "_Mode ploče" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "3D po_zadina" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "_Upravljaj Prozorima koji nemaju startere." -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "_Uvećaj" @@ -277,12 +275,12 @@ msgid "Drop to open with {0}" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "Novi _prozor" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "_Otvori" @@ -290,63 +288,65 @@ msgid "Reset Color" msgstr "Vrati izvornu boju" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "_Pričvrsti na dok" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "Pogreška pri operaciji otpuštanja" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "Nedovoljno prostora na destinaciji." -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "Završeno" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "Premještanje" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "Dupliciranje" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "Pogreška pri operaciji otpuštanja" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "Otvoreno" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "Otvori mapu koja sadrži" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "Vrati sa _maksimiziranoga" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "Po_većaj" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "Vrati u izvorno stanje" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "Mi_nimiziraj" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "_Zatvori sve" @@ -420,23 +420,23 @@ msgid "remaining " msgstr "preostalo " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "Računalo" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "Di_gitalni Sat" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "24-satni sat" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "Prikaži _Datum" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "Izaberi _Temu" @@ -444,7 +444,7 @@ msgid "Themes" msgstr "Teme" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "Tema" @@ -461,39 +461,39 @@ msgid "minutes" msgstr "minute" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "Korisničko ime ili Lozinka nisu podešeni" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(bez naslova)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "Od: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "Pogreška" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "Neispravno korisničko ime" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "Mrežna Pogeška" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "Opća pogreška" @@ -517,19 +517,19 @@ msgid "Checking mail..." msgstr "Provjeravam poštanski pretinac..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "_Pogled " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "_Sastavi poštu" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "Nova pošta" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "Provjeri _poštanski pretinac" @@ -549,11 +549,11 @@ msgid "From: " msgstr "Od: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "_Izbaci" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "_Odmontiraj" @@ -592,39 +592,39 @@ msgid "Please try your search again." msgstr "Molimo ponovite svoju potragu" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "Dohvaćam Informacije..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "Kliknite da dodate NPR radio stanice" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "Početna stranica" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "Programski Raspored" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "Donirajte" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "Prijenosi" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "Očistiti popis skorašnjih dokumenata?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "Očisti skorašnje dokumente" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -634,7 +634,7 @@ "• Sve iz Mjesta → Nedavni Dokumenti izbornika.\n" "• Sve stavke iz popisa skorašnjih dokumenata u svim programima." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "_Očisti skorašnje dokumente..." @@ -659,7 +659,7 @@ msgstr "_Otvori smeće" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "Isprazni _smeće" @@ -696,11 +696,13 @@ msgid "Use _Metric Units" msgstr "Koristi _Metričke Jedinice?" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "Neispravna Vremenska Lokacija" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "Mrežna pogrješka: " @@ -742,55 +744,56 @@ msgid "Weather Configuration" msgstr "Postavke Vremena" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "Dohvaćam podatke..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "Radarska _Karta" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "Prognoze" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "Provjeri _Vrijeme" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "_Danas" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "S_utra" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "Vlažnost" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "Temp" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "Osjeća se kao" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "Vjetar" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "Smjer" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "Izlazak sunca" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "Zalazak sunca" diff -Nru docky-2.0.4/po/hu.po docky-2.0.5/po/hu.po --- docky-2.0.4/po/hu.po 2010-05-31 07:48:23.000000000 +0200 +++ docky-2.0.5/po/hu.po 2010-07-01 18:56:43.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" "PO-Revision-Date: 2010-05-03 17:14+0000\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -15,30 +15,30 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Dockletek keresése…" -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "Segédek keresése…" -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "A beállításokhoz kattintson valamelyik dokkra." -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "Ragadja meg bármelyik dokkot az áthelyezéshez" -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "Törli a jelenleg kijelőlt dokkot?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -46,40 +46,39 @@ "Ha a dokk törlését választja, minden rá\n" "vonatkozó beállítás el fog veszni." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "_Dokk törlése" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_Kiválasztás" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr ".tar archívumok" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "_Hozzáadás" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "_Eltávolítás" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Szerző" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Beállítások" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." @@ -87,27 +86,27 @@ "A docky megfelelő működéséhez engedélyezze a vizuális effektusokat " "(compositing), majd indítsa újra a dockyt." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_Engedélyezés" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "_Letiltás" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Állapot" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Eltávolítás" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "Fut" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Leállítva" @@ -119,7 +118,7 @@ "Azok az indítóikonok, amelyek jelenleg több mint egy ablakot kezelnek, egy " "extra jelet kapnak." -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." @@ -127,43 +126,43 @@ "Ha beállítja, az ablakok, amelyek még nem rendelkeznek indítóikonnal a " "dokkon, hozzáadódnak a dokkhoz." -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "" "Soha nem rejti el; a teljes méretű ablakok nem fedik el a dokkot." -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "Elrejti, amikor az egér nincs fölötte." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "Elrejti, amint a dokk elfedi az aktív alkalmazást." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "Elrejti, amint a dokk elfedi bármely ablakot." -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "Fogja meg az áthelyezéshez" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "Ragadja meg a dokkon való elhelyezéshez" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_Beállítások" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "_Névjegy" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "_Kilépés a Docky-ból" @@ -171,83 +170,82 @@ msgid "Docky Configuration" msgstr "Docky beállításai" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "_Indítás a számítógép indulásakor" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Téma:" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Általános beállítások" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Dokkbeállítások" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Dokkok" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "Összes" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "Engedélyezett" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "Kikapcsolt" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Dockletek" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Telepítés" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "Segédek" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "_Új dokk" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "Nincs" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Automatikus elrejtés" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Intelligens elrejtés" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "Ablak dokkolása" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "Áttűnés _elrejtéskor" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "_Ikonméret:" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_Elrejtés:" @@ -255,19 +253,19 @@ msgid "Indicat_e Multiple Windows" msgstr "_Több azonos ablak jelzése" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "_Panel mód" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "3D Háttér" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "_Ablakok kezelése indítóikon nélkül" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "_Nagyítás:" @@ -276,12 +274,12 @@ msgid "Drop to open with {0}" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "Új _ablak" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "_Megnyitás" @@ -289,63 +287,65 @@ msgid "Reset Color" msgstr "Színek visszaállítása" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "Zárolás dokkhoz" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "Hiba az elhelyező művelet végrehajtása közben" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "Nincs elég szabad hely a cél helyen." -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "Befejezve" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "Mozgatás" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "Másolás" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "Hiba az elhelyező művelet végrehajtása közben" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "Megnyitás" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "Tartalmazó mappa megnyitása" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "_Eredeti méret" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "Ma_ximalizálás" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "_Helyreállítás" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "Mi_nimalizálás" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "Összes bezárása" @@ -417,23 +417,23 @@ msgid "remaining " msgstr "maradékok " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "Számítógép" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "Di_gitális óra" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "2_4-órás óra" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "Dátum _megjelenítése" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "_Téma kiválasztása" @@ -441,7 +441,7 @@ msgid "Themes" msgstr "Témák" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "Téma" @@ -458,39 +458,39 @@ msgid "minutes" msgstr "percben" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "A felhasználónév vagy jelszó nincs megadva" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(nincs tárgy)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "Feladó: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "Hírforráshiba" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "Érvénytelen felhasználónév" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "Hálózati hiba" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "Általános hiba" @@ -513,19 +513,19 @@ msgid "Checking mail..." msgstr "E-mailek ellenőrzése…" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "_Nézet " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "_Levélírás" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "Új e-mail" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "E-_mail ellenőrzése" @@ -545,11 +545,11 @@ msgid "From: " msgstr "Feladó: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "_Kiadás" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "_Leválasztás" @@ -588,39 +588,39 @@ msgid "Please try your search again." msgstr "Ismételje meg a keresést." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "Információk lekérése…" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "NPR állomás hozzáadása" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "Honlap" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "Munkarend" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "Támogatás" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "Élő Adások" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "Törli a Legutóbbi dokumentumok listáját?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "Legutóbbi dokumentumok törlése" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -630,7 +630,7 @@ "• Minden elemet a Helyek → Legutóbbi dokumentumok menüelemből.\n" "• Minden elemet az összes alkalmazás legutóbbi dokumentumainak listájából." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "_Legutóbbi dokumentumok törlése…" @@ -654,7 +654,7 @@ msgstr "K_uka megnyitása" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "_Kuka ürítése" @@ -692,11 +692,13 @@ msgid "Use _Metric Units" msgstr "_Metrikus mértékegység használata" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "Érvénytelen hely" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "Hálózati hiba: " @@ -736,55 +738,56 @@ msgid "Weather Configuration" msgstr "Időjárás beállításai" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "Adatok lekérése…" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "Ra_dartérkép" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "Előrejelzés" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "Időjárás _ellenőrzése" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "_Ma" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "H_olnap" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "Páratartalom" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "Hőm." -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "Hőérzet" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "Szél" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "Irány" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "Napkelte" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "Naplemente" diff -Nru docky-2.0.4/po/id.po docky-2.0.5/po/id.po --- docky-2.0.4/po/id.po 2010-05-31 07:48:23.000000000 +0200 +++ docky-2.0.5/po/id.po 2010-07-01 18:56:43.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" "PO-Revision-Date: 2010-04-12 08:58+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian \n" @@ -15,30 +15,30 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Cari di Docklets..." -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "Cari Penolong..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "Klik pada sebarang dok untuk mengatur." -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "Seret sebarang dok untuk menggeser." -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "Hapus dok yang sedang dipilih?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -46,40 +46,39 @@ "Jika memilih untuk menghapus dock, semua setelan\n" "untuk dok tersebut akan ikut terhapus." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "_Hapus Dock" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_Pilih" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr "Arsip .tar" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "Tamb_ah" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "_Hapus" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Pembuat" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Pengaturan" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." @@ -87,27 +86,27 @@ "Docky membutuhkan efek agar bisa sempurna. Silakan aktifkan efek dan " "hidupkan kembali docky." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_Aktif" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "_Tidak Aktif" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Status" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Hilangkan" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "Berjalan" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Berhenti" @@ -119,7 +118,7 @@ "Menyebabkan peluncur yang kini mengelola lebih dari satu jendela akan " "memiliki indikator ekstra di bawahnya." -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." @@ -127,44 +126,44 @@ "Bila di-set, jendela yang belum memiliki peluncur pada suatu dok akan " "ditambahkan pada dok ini." -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "" "Jangan pernah sembunyikan; jendela yang dimaksimalkan tidak menumpuk " "dok." -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "Tersembunyi ketika tetikus tak berada di atasnya." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "Tersembunyi ketika dok menghalangi aplikasi aktif." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "Tersembunyi ketika dok menghalangi jendela manapun." -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "Seret untuk menggeser" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "Jatuhkan untuk menambah dok" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_Pengaturan" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "Tent_ang" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "_Keluar Docky" @@ -172,83 +171,82 @@ msgid "Docky Configuration" msgstr "Konfigurasi Docky" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "_Mulai Ketika Komputer Menyala" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Tema:" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Opsi-opsi Umum" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Konfigurasi Dok" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Dok" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "Semua" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "Diaktifkan" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "Dinonaktifkan" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Pasang" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "Bantuan" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "Dok _Baru" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "Tak ada" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Tersembunyi" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Menghilang" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_Sembunyi" @@ -256,19 +254,19 @@ msgid "Indicat_e Multiple Windows" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "Mode _Panel" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "Latar Belakan_g 3D" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "_Mengatur Jendela Tanpa Peluncur" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "_Zoom" @@ -277,12 +275,12 @@ msgid "Drop to open with {0}" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "" @@ -290,63 +288,65 @@ msgid "Reset Color" msgstr "Reset Warna" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "_Tempelkan ke Dock" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "Gagal melakukan tindakan peletakan" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "Tidak cukup ruang kosong pada tujuannya" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "Berpindah" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "Gagal melakukan tindakan peletakan" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "Membuka Isi Folder" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "" @@ -418,23 +418,23 @@ msgid "remaining " msgstr "" -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "Jam Di_gital" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "Pilih _Tema" @@ -442,7 +442,7 @@ msgid "Themes" msgstr "" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "" @@ -459,39 +459,39 @@ msgid "minutes" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "" @@ -514,19 +514,19 @@ msgid "Checking mail..." msgstr "" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "" @@ -546,11 +546,11 @@ msgid "From: " msgstr "" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "" @@ -589,46 +589,46 @@ msgid "Please try your search again." msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" "• All items from the recent documents list in all applications." msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "" @@ -652,7 +652,7 @@ msgstr "" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "" @@ -687,11 +687,13 @@ msgid "Use _Metric Units" msgstr "" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "" @@ -723,55 +725,56 @@ msgid "Weather Configuration" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "" diff -Nru docky-2.0.4/po/is.po docky-2.0.5/po/is.po --- docky-2.0.4/po/is.po 2010-05-31 07:48:23.000000000 +0200 +++ docky-2.0.5/po/is.po 2010-07-01 18:56:44.000000000 +0200 @@ -8,103 +8,102 @@ msgstr "" "Project-Id-Version: po_docky-is\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" -"PO-Revision-Date: 2010-05-03 17:14+0000\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" +"PO-Revision-Date: 2010-06-17 13:36+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_Velja" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr ".tar safnskrár" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "_Bæta við" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "_Fjarlægja" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Höfundur" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Stillingar" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." msgstr "" -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_Virkja" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "_Afvirkja" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Staða" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Henda út" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "Keyrandi" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Stöðvað" @@ -114,48 +113,48 @@ "extra indicator under it." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "" -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "Haltu inni til að endurstaðsetja" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_Stillingar" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "_Um" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "_Hætta í Docky" @@ -163,83 +162,82 @@ msgid "Docky Configuration" msgstr "Stillingar Docky" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "Þegar _tölvan er ræst" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Þema" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Valmöguleikar" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Stillingar á stiku" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "Allt" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "Virkt" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "Óvirkt" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Setja upp" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "Ekkert" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Fela sjálfkrafa" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Fela gáfulega" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "Stærð tá_knmynda:" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_Felun:" @@ -247,19 +245,19 @@ msgid "Indicat_e Multiple Windows" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "3D bak_grunnur" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "Að_dráttur:" @@ -268,12 +266,12 @@ msgid "Drop to open with {0}" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "Nýr _gluggi" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "_Opna" @@ -281,63 +279,65 @@ msgid "Reset Color" msgstr "Frumstilla lit" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "Ekki nægilegt pláss á áfangastaðnum." -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "Lokið" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "Færi" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "Afrita" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "Opna" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "Opna geymslumöppu" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "Minn_ka glugga" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "_Hámarka" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "Endu_rheimta" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "Lág_marka" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "Loka _öllu" @@ -409,23 +409,23 @@ msgid "remaining " msgstr "eftir " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "Tölva" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "Sta_fræn klukka" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "24 klst. k_lukka" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "Sýna _dagsetningu" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "Velja _þema" @@ -433,7 +433,7 @@ msgid "Themes" msgstr "Þemur" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "Þema" @@ -450,39 +450,39 @@ msgid "minutes" msgstr "mínútur" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "Notandanafn eða lykilorð eru ekki stillt" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(ekkert viðfangsefni)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "Frá: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "Villa í straumi." -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "Ógilt notandanafn" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "Netvilla" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "Almenn villa" @@ -505,19 +505,19 @@ msgid "Checking mail..." msgstr "Athuga póstinn..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "Sk_oða " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "Skrifa _póst" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "Nýr póstur" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "Athuga _með póst" @@ -537,11 +537,11 @@ msgid "From: " msgstr "Frá: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "_Spýta út" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "_Aftengja" @@ -580,39 +580,39 @@ msgid "Please try your search again." msgstr "Reyndu að leita aftur." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "Næ í upplýsingar..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "Smelltu til að bæta við NPR stöðvum." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "Heimasíða" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "Dagskrá" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "Gefa" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "Lifandi straumar" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "Hreinsa lista nýlegra skjala?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "Hreinsa nýleg skjöl" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -622,7 +622,7 @@ "• Alla hluti úr Staðir → Nýleg skjöl valmyndaratriðinu.\n" "• Alla hluti úr listanum yfir nýleg skjöl í öllum forritum." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "_Hreinsa nýleg skjöl..." @@ -646,7 +646,7 @@ msgstr "_Opna ruslið" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "_Tæma ruslið" @@ -681,11 +681,13 @@ msgid "Use _Metric Units" msgstr "Nota _einingar metrakerfisins" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "Ógild staðsetning" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "Netvilla: " @@ -717,55 +719,56 @@ msgid "Weather Configuration" msgstr "Stillingar veðurupplýsinga" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "Sæki gögnin..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "Ratsjár_mynd" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "Veðurspár" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "Athuga _veðrið" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "Í _dag" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "Á m_orgun" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "Raki" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "Hitastig" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "Vindkæling" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "Vindur" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "Átt" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "Sólarupprás" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "Sólsetur" diff -Nru docky-2.0.4/po/it.po docky-2.0.5/po/it.po --- docky-2.0.4/po/it.po 2010-05-31 07:48:23.000000000 +0200 +++ docky-2.0.5/po/it.po 2010-07-01 18:56:43.000000000 +0200 @@ -7,38 +7,38 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" -"PO-Revision-Date: 2010-04-12 08:58+0000\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" +"PO-Revision-Date: 2010-06-17 13:46+0000\n" "Last-Translator: Rico Tzschichholz \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Cerca docklet..." -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "Cerca assistenti..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "Clicca su una dock per configurarla." -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "Trascina una dock per posizionarla." -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "Eliminare la dock selezionata?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -47,40 +47,39 @@ "impostazioni per la dock eliminata verranno\n" "definitivamente perse." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "_Elimina dock" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_Seleziona" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr "Archivi .tar" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "A_ggiungi" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "_Rimuovi" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Autore" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Impostazioni" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." @@ -88,27 +87,27 @@ "Docky richiede il compositing per funzionare correttamente. Per favore " "abilitare il compositing e riavviare docky." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_Abilita" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "_Disabilita" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Stato" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Disinstalla" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "In esecuzione" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Fermato" @@ -120,7 +119,7 @@ "Consente ai lanciatori che gestiscono più di una finestra di avere un " "indicatore aggiuntivo al di sotto di essi." -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." @@ -128,44 +127,44 @@ "Quando impostato, le finestre che non hanno ancora un lanciatore su una dock " "verranno aggiunte a questa dock." -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "" "Non si nasconde mai; le finestre massimizzate non si sovrappongono alla " "dock." -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "Si nasconde quando il cursore del mouse si allontana." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "Si nasconde quando la dock ostruisce l'applicazione attiva." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "Si nasconde quando la dock ostruisce qualsiasi finestra." -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "Trascina per riposizionare" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "Rilascia per aggiungere alla dock" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_Impostazioni" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "I_nformazioni" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "_Esci da Docky" @@ -173,83 +172,82 @@ msgid "Docky Configuration" msgstr "Configurazione di Docky" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "_Esegui all'avvio del computer" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Tema:" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Opzioni generali" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Configurazione dock" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Dock" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "Tutti" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "Abilitati" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "Disabilitato" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Docklet" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Installa" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "Assistenti" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "_Nuova dock" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "Nessuna" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Scomparsa automatica" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Scomparsa intelligente" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "Evita finestre" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "_Dissolvenza alla scomparsa" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "Dimensione _icone:" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_Scomparsa:" @@ -257,19 +255,19 @@ msgid "Indicat_e Multiple Windows" msgstr "Indica _finestre multiple" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "Modalità _pannello" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "S_fondo 3D" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "Gestione finestre senza _lanciatore" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "_Ingrandimento:" @@ -278,12 +276,12 @@ msgid "Drop to open with {0}" msgstr "Rilascia per aprire con {0}" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "Nuova _finestra" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "_Apri" @@ -291,63 +289,65 @@ msgid "Reset Color" msgstr "Ripristina colore" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "_Fissa sulla dock" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "Rilascia per spostarla su {0}" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "Errore durante il rilascio" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "Spazio insufficiente nella destinazione." -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "Completato" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "Spostamento in corso" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "Copia in corso" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "Errore durante il rilascio" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "Apri" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "Apri cartella che lo contiene" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "_Demassimizza" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "_Massimizza" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "_Ripristina" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "_Minimizza" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "_Chiudi tutto" @@ -419,23 +419,23 @@ msgid "remaining " msgstr "rimanenti " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "Computer" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "_Orologio Digitale" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "Orologio _24 Ore" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "Mostra _data" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "Seleziona _tema" @@ -443,7 +443,7 @@ msgid "Themes" msgstr "Temi" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "Tema" @@ -460,39 +460,39 @@ msgid "minutes" msgstr "minuti" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "Nome utente o password non impostati" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(nessun oggetto)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" -msgstr "" +msgstr "Ci sono {0} nuovi messaggi non letti" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "Da: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "Errore feed" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "Nome utente non valido" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "Errore di rete" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "Errore generale" @@ -515,19 +515,19 @@ msgid "Checking mail..." msgstr "Controllo messaggi..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "_Mostra " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "_Scrivi messaggio" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "Nuovo messaggio" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "Controlla _messaggi" @@ -547,11 +547,11 @@ msgid "From: " msgstr "Da: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "_Espelli" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "_Smonta" @@ -590,39 +590,39 @@ msgid "Please try your search again." msgstr "Per favore prova ancora la tua ricerca." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "Prelevamento informazioni..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "Clicca per aggiungere stazioni NPR." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "Sito Web" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "Pianificazione programma" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "Fai una donazione" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "Stream Live" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "Cancellare l'elenco dei documenti recenti?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "Cancella documenti recenti" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -633,7 +633,7 @@ "• tutte le voci negli elenchi dei documenti recenti delle singole " "applicazioni." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "_Elimina documenti recenti..." @@ -657,7 +657,7 @@ msgstr "_Apri cestino" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "_Svuota cestino" @@ -695,11 +695,13 @@ msgid "Use _Metric Units" msgstr "Utilizza _unità metriche" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "Località meteo non valida" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "Errore rete: " @@ -739,55 +741,56 @@ msgid "Weather Configuration" msgstr "Configurazione meteo" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "Prelevamento dati..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "_Mappa radar" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "Previsioni" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "Controlla _meteo" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "_oggi" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "_domani" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "Umidità" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "Temperatura" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "Sembrano quasi" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "Vento" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "Direzione" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "Alba" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "Tramonto" diff -Nru docky-2.0.4/po/ja.po docky-2.0.5/po/ja.po --- docky-2.0.4/po/ja.po 2010-05-31 07:48:22.000000000 +0200 +++ docky-2.0.5/po/ja.po 2010-07-01 18:56:42.000000000 +0200 @@ -7,38 +7,38 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" -"PO-Revision-Date: 2010-03-29 23:54+0000\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" +"PO-Revision-Date: 2010-05-31 06:47+0000\n" "Last-Translator: kawaji \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "ドックレットの検索..." -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "ヘルパーの検索..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." -msgstr "設定変更したいドックをクリック。" +msgstr "設定変更したいドックをクリックしてください。" -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." -msgstr "ドックを移動させるにはドラッグ。" +msgstr "ドックを移動させるにはドラッグします。" -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "現在選択中のドックを削除しますか?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -46,66 +46,65 @@ "ドックの削除を選択すると、\n" "削除するドックに関わる全ての設定が完全に失われます。" -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "ドック削除(_D)" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "選択(_S)" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr ".tar 書庫" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "追加(_A)" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "削除(_R)" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "作成者" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "設定" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." msgstr "Docky の正常動作にはコンポジットが必要です。コンポジットを有効にして Docky を再起動してください。" -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "有効化(_E)" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "無効化(_D)" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "状態" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "アンインストール" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "稼動中" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "停止" @@ -115,48 +114,48 @@ "extra indicator under it." msgstr "現在複数のウィンドウを管理しているランチャー下に、追加のインジケータを表示します。" -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." msgstr "有効にすると、いずれのドックにもランチャーを有していないウィンドウは、このドックに追加されるようになります。" -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "常時表示: ウィンドウを最大化してもドックには重なりません。" -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "マウスが置かれない間は常に隠れた状態になります。" -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "ドックがアクティブなアプリケーションを邪魔する時に隠します。" -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "ドックがウィンドウ全般を邪魔する時に隠します。" -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "ドラッグして再配置" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "ドロップしてドックに追加" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "設定(_S)" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "情報(_A)" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "Docky 終了(_Q)" @@ -164,83 +163,82 @@ msgid "Docky Configuration" msgstr "Docky の設定" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "コンピュータ起動時に起動(_S)" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "テーマ(_T):" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "全般オプション" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "ドック設定" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "ドック" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "全て" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "有効状態" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "無効状態" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "ドックレット" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "インストール(_I)" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "ヘルパー" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "新規ドック(_N)" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "なし" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "自動的に隠す" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "賢く隠す" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "ウィンドウ回避" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "隠す時にフェード(_F)" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "アイコンの大きさ(_I):" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "隠す方法(_H):" @@ -248,19 +246,19 @@ msgid "Indicat_e Multiple Windows" msgstr "複数ウィンドウを示す目印(_E)" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "パネルモード(_P)" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "3D背景(_G)" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "ランチャーを有していないウィンドウを管理(_M)" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "ズーム(_Z):" @@ -269,12 +267,12 @@ msgid "Drop to open with {0}" msgstr "ドロップして {0} で開く" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "新規ウィンドウ(_W)" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "開く(_O)" @@ -282,63 +280,65 @@ msgid "Reset Color" msgstr "色を元に戻す" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "ドックに作成配置(_P)" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "ドロッップして {0} へ移動" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "ドロップ・アクション実行にエラー" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "目的の場所に十分な空きスペースがありません。" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "完了" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "移動中" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "コピー中" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "ドロップ・アクション実行でエラー" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "開く" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "親フォルダを開く" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "最大化解除(_X)" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "最大化(_X)" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "元に戻す(_R)" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "最小化(_N)" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "全て閉じる(_C)" @@ -408,23 +408,23 @@ msgid "remaining " msgstr "残り " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "コンピュータ" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "デジタル時計(_G)" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "24時間時計(_C)" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "日付表示(_D)" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "テーマ選択(_T)" @@ -432,7 +432,7 @@ msgid "Themes" msgstr "テーマ" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "テーマ" @@ -449,39 +449,39 @@ msgid "minutes" msgstr "分" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "ユーザー名またはパスワードの設定なし" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(件名なし)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" -msgstr "" +msgstr "未読の新着メッセージが {0} 通あります" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "差出人: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "フィードエラー" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "無効なユーザー名" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "ネットワークエラー" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "一般エラー" @@ -503,19 +503,19 @@ msgid "Checking mail..." msgstr "メールチェック中..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "表示(_V) " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "メール作成(_C)" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "新着メール" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "メールチェック(_M)" @@ -535,11 +535,11 @@ msgid "From: " msgstr "差出人: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "取り出す(_E)" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "アンマウント(_U)" @@ -578,39 +578,39 @@ msgid "Please try your search again." msgstr "再検索してみてください。" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "情報取得中..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." -msgstr "クリックしてNPR局を追加します。" +msgstr "NPR局を追加するにはクリックします。" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "ホームページ" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "番組スケジュール" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "寄付" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "ライブ・ストリーム" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "最近開いたドキュメントの一覧をクリアしますか?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "最近開いたドキュメントのクリア" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -620,7 +620,7 @@ "•「場所」→「最近開いたドキュメント」メニューにある全てのエントリ\n" "• アプリケーションで記録した「最近開いた…」の全てのエントリ" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "最近開いたドキュメントのクリア(C)..." @@ -643,7 +643,7 @@ msgstr "ゴミ箱を開く(_O)" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "ゴミ箱を空にする(_T)" @@ -681,11 +681,13 @@ msgid "Use _Metric Units" msgstr "メートル単位を使用(_M)" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "無効な天気予報場所の指定" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "ネットワークエラー: " @@ -721,55 +723,56 @@ msgid "Weather Configuration" msgstr "天気予報の設定" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "データ取得中..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "レーダーマップ(_M)" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "予報" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "予報更新(_W)" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "今日(_T)" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "明日(_O)" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "湿度" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "気温" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "体感温度" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "風速" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "風向き" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "日の出" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "日の入り" diff -Nru docky-2.0.4/po/ko.po docky-2.0.5/po/ko.po --- docky-2.0.4/po/ko.po 2010-05-31 07:48:20.000000000 +0200 +++ docky-2.0.5/po/ko.po 2010-07-01 18:56:40.000000000 +0200 @@ -7,103 +7,102 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" -"PO-Revision-Date: 2010-04-12 08:57+0000\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" +"PO-Revision-Date: 2010-06-17 13:48+0000\n" "Last-Translator: Rico Tzschichholz \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Docklets 찾기..." -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "도우미 찾기..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "설정하고 싶은 dock을 클릭해주세요." -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "위치를 변경할 dock을 드래그해주세요." -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "현재 선택된 dock를 삭제 하시겠습니까?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." msgstr "만약 삭제를 선택 한다면, 해당되는 삭제할 dock의 모든 설정을 잃게 될 것 입니다." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "삭제 (_D)" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "선택 (_S)" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr ".tar 압축 파일" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "더하기 (_A)" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "제거 (_R)" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "만든이" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "설정" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." msgstr "Docky를 실행하려면 창 합성(compositing)이 필요합니다. 창 합성을 활성화하고 Docky를 재시작해주십시오." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "활성화 (_E)" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "비 활성화 (_D)" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "상태" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "제거" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "실행 중" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "정지됨" @@ -113,48 +112,48 @@ "extra indicator under it." msgstr "현재 런처가 관리하고 있는 창이 한 개 이상일 경우 런처 아래에 별도의 표시를 나타냅니다." -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." msgstr "설정하면, Dock에 런처를 갖고 있지 않은 창도 이 Dock에 추가됩니다." -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "최대화된 창이 dock를 덮어도 숨기지 않습니다" -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "마우스가 dock위에 위치해 있지 않을때 숨깁니다." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "활성화된 어플리케이션의 창이 dock를 일부라도 덮을때 숨깁니다." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "활성화 관계 없이 어느 창이든 dock를 일부라도 덮는다면 숨깁니다." -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "드래그하여 옮기기" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "드래그하여 Dock에 추가" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "설정 (_S)" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "Docky 정보 (_A)" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "Docky 종료 (_Q)" @@ -162,83 +161,82 @@ msgid "Docky Configuration" msgstr "Docky 설정" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "부팅 시 Docky 자동 실행 (_S)" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "테마 (_T):" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "일반 설정" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Dock 설정" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Docks" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "전체" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "사용함" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "사용 안 함" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Docklets" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "설치 (_I)" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "도우미" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "새 Dock (_N)" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "사용 안함" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "자동 숨기기" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "똑똑하게 숨기기" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "창은 무조건 피하기" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "숨길때 페이드 효과 사용 (_F)" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "아이콘 크기 (_I)" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "숨기기 (_H):" @@ -246,19 +244,19 @@ msgid "Indicat_e Multiple Windows" msgstr "여러 개의 창을 표시하기(_E)" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "패널 모드 (_P)" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "3D 배경(_G)" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "바로가기 없는 창도 관리하기(_M)" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "확대 (_Z):" @@ -267,12 +265,12 @@ msgid "Drop to open with {0}" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "새 창으로 열기 (_W)" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "열기 (_O)" @@ -280,63 +278,65 @@ msgid "Reset Color" msgstr "색깔 초기화" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "Dock에 고정(_P)" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "드래그하는 중 에러 발생" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "대상 공간에 빈공간이 충분하지 않습니다." -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "완료" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "이동 중" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "복사 중" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "드래그하는 중 에러 발생" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "열기" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "저장 폴더 열기" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "최대화 취소(_X)" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "최대화 (_X)" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "복구(_R)" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "최소화 (_N)" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "모두 닫기 (_C)" @@ -406,23 +406,23 @@ msgid "remaining " msgstr "남음 " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "컴퓨터" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "디지털 시계 (_G)" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "24 시간 시계(_C)" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "날짜 표시 (_D)" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "테마 선택 (_T)" @@ -430,7 +430,7 @@ msgid "Themes" msgstr "테마" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "테마" @@ -447,39 +447,39 @@ msgid "minutes" msgstr "분" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "사용자 이름과 비밀번호가 없음" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(제목 없음)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" -msgstr "" +msgstr "{0} 개의 새로운 메세지가 있습니다." -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "보낸이: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "피드 에러" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "잘못된 사용자 이름" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "네트워크 오류" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "일반 에러" @@ -501,19 +501,19 @@ msgid "Checking mail..." msgstr "메일 확인 중..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "보기(_V) " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "메일 작성하기(_C)" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "새 메일" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "메일 확인하기(_M)" @@ -533,11 +533,11 @@ msgid "From: " msgstr "보낸이: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "꺼내기(_E)" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "마운트 해제 (_U)" @@ -576,39 +576,39 @@ msgid "Please try your search again." msgstr "다시 검색을 해보시기 바랍니다." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "정보를 가져오는 중..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "NPR 방송국을 추가하려면 클릭하십시오." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "홈페이지" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "프로그램 스케쥴" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "기부하기" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "라이브 스트림" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "최근 문서 목록을 지우시겠습니까?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "최근 문서 지우기" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -618,7 +618,7 @@ "• 위치 → 최근 문서에 있는 모든 항목.\n" "• 모든 프로그램의 최근 문서 목록에 들어 있는 모든 항목." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "최근 문서 지우기(_C)..." @@ -641,7 +641,7 @@ msgstr "휴지통 열기 (_O)" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "휴지통 비우기 (_T)" @@ -679,11 +679,13 @@ msgid "Use _Metric Units" msgstr "미터법 표기 사용(_M)" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "잘못된 날씨 위치" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "네트워크 에러: " @@ -720,55 +722,56 @@ msgid "Weather Configuration" msgstr "날씨 설정" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "데이터를 불러오는 중..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "레이더 지도(_M)" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "일기예보" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "날씨 확인(_W)" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "오늘(_T)" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "내일(_O)" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "습도" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "온도" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "체감 온도" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "바람" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "방향" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "일출" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "일몰" diff -Nru docky-2.0.4/po/pl.po docky-2.0.5/po/pl.po --- docky-2.0.4/po/pl.po 2010-05-31 07:48:20.000000000 +0200 +++ docky-2.0.5/po/pl.po 2010-07-01 18:56:40.000000000 +0200 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" -"PO-Revision-Date: 2010-05-03 17:15+0000\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" +"PO-Revision-Date: 2010-06-17 13:38+0000\n" "Last-Translator: Rico Tzschichholz \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -16,70 +16,69 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Szukaj Dockletu" -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "Wyszukaj Dodatki" -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "Kliknij na panel, aby go skonfigurować" -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "Złap dowolny Dock aby zmienić jego położenie." -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "Usunąć aktualnie wybrany Dock?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." msgstr "" "Jeśli usuniesz Dock, wszystkie jego ustawienia zostaną bezpowrotnie utracone." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "Usuń Dock" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_Wybierz" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr "Archiwum .tar" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "Dodaj" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "Usuń" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "O Autorze" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Ustawienia" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." @@ -87,27 +86,27 @@ "Aby działać poprawnie, Docky wymaga sprzętowej akceleracji obrazu. Włącz " "akcelerację i zrestartuj Docky." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "Włącz" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "Wyłącz" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Stan" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Odinstaluj" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "Uruchomione" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Zatrzymany" @@ -119,7 +118,7 @@ "Powoduje, że aktywatory, które zarządzają więcej niż jednym oknem, posiadają " "pod sobą dodatkowe oznaczenie." -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." @@ -127,44 +126,44 @@ "Aktywacja tej opcji powoduje, że okno, które nie ma aktywatora na panelu " "zostanie automatycznie dodane." -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "" "Nigdy nie zostanie ukryte; zmaksymalizowane okna nigdy nie przykryją " "Dock'a." -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "Zostanie ukryte, jeśli kursor myszy nie znajduje się nad nim." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "Ukryje się, jeśli Dock przesłania aktywną aplikację." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "Ukryje się, jeśli Dock przesłania jakiekolwiek okno." -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "Przenieś, aby zmienić pozycję." -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "Upuść, aby dodać do Dock'a" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_Ustawienia" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "_O programie" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "Zamknij" @@ -172,83 +171,82 @@ msgid "Docky Configuration" msgstr "Konfiguracja Docky" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "Uruchom wraz ze startem komputera." -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Motyw" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Opcje ogólne" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Konfiguracja Panela" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Dock'i" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "Wszystko" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "Włączone" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "Wyłączone" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Docklety" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Instaluj" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "Wspomagacze" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "Nowy Dock" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "Brak" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Ukryj automatycznie" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Ukrywanie inteligentne" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "Unikanie Okna" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "Wygaś przy ukrywaniu." -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "Rozmiar _ikon:" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "Ukrywanie" @@ -256,19 +254,19 @@ msgid "Indicat_e Multiple Windows" msgstr "Wyróżnij wielookienkowe aplikacje" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "Wyświetlanie jako panel" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "Tło 3D" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "Zarządzaj oknami bez aktywatora" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "Powiększenie" @@ -277,12 +275,12 @@ msgid "Drop to open with {0}" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "Nowe okno" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "Otwórz" @@ -290,63 +288,65 @@ msgid "Reset Color" msgstr "Resetuj kolor" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "Przypnij do panelu" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "Błąd przy upuszczaniu" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "Za mało wolnego miejsca w miejscu docelowym." -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "Gotowe" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "Przenoszenie" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "Kopiowanie" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "Błąd przy upuszczaniu" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "Otwórz" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "Otwórz folder zawierający" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "Cofnij maksymalizację" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "Maksymalizuj" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "Przywróć" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "Minimalizuj" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "Zamknij wszystko" @@ -420,23 +420,23 @@ msgid "remaining " msgstr "pozostało " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "Komputer" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "Zegar cyfrowy" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "Zegar 24-godzinny" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "Pokaż datę" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "Wybierz motyw" @@ -444,7 +444,7 @@ msgid "Themes" msgstr "Style" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "Styl" @@ -461,39 +461,39 @@ msgid "minutes" msgstr "minut(a/y)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "Login lub hasło nie ustawione" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(brak tematu)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "Od: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "Nagłówek" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "Niepoprawny Login" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "Błąd sieci" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "Błąd ogólny" @@ -516,19 +516,19 @@ msgid "Checking mail..." msgstr "Sprawdzanie poczty..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "Widok " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "Utwórz wiadomość" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "Nowa wiadomość" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "Sprawdź pocztę" @@ -548,11 +548,11 @@ msgid "From: " msgstr "Od: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "Wysuń" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "Odmontuj" @@ -591,46 +591,46 @@ msgid "Please try your search again." msgstr "Spróbuj wyszukać ponownie." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "Zbieranie informacji..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "Nacijnij, aby dodać stacje NPR" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" "• All items from the recent documents list in all applications." msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "" @@ -654,7 +654,7 @@ msgstr "" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "" @@ -689,11 +689,13 @@ msgid "Use _Metric Units" msgstr "Używaj jednostek metrycznych" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "Błędna lokacja" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "Błąd sieci. " @@ -725,55 +727,56 @@ msgid "Weather Configuration" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "Przekazywanie danych..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "" diff -Nru docky-2.0.4/po/pt_BR.po docky-2.0.5/po/pt_BR.po --- docky-2.0.4/po/pt_BR.po 2010-05-31 07:48:26.000000000 +0200 +++ docky-2.0.5/po/pt_BR.po 2010-07-01 18:56:44.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" "PO-Revision-Date: 2010-03-16 09:54+0000\n" "Last-Translator: André Gondim \n" "Language-Team: Brazilian Portuguese \n" @@ -15,30 +15,30 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Procurar Docklets..." -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "Procurar Ajudantes..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "Clique em algum dock para configura-lo." -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "Arraste qualquer dock para reposiciona-lo." -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "Deletar o dock atualmente selecionado?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -46,40 +46,39 @@ "Se você escolher em deletar o dock selecionado, todas as configurações\n" "pertencentes ao mesmo serão permanentemente perdidas." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "_Deletar Dock" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_Selecionar" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr "Arquivos .tar" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "_Adicionar" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "_Remover" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Autor" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Configurações" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." @@ -87,27 +86,27 @@ "Docky precisa dos efeitos visuais para funcionar perfeitamente. Por favor, " "habilite os efeitos visuais e reinicie o docky." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_Habilitar" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "_Desabilitar" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Status" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Desinstalar" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "Executando" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Parado" @@ -119,7 +118,7 @@ "Faz os lançadores que possuem no momento mais de uma janela exibir um " "indicador extra a baixo do mesmo." -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." @@ -127,42 +126,42 @@ "Quando marcado, janelas que no momento não possuem lançadores no dock serão " "adicionadas ao mesmo." -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "Nunca esconde; Janelas maximizadas não sobrepõem o dock" -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "Esconde sempre que o mouse não estiver sobre ele." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "Esconde quando o dock obstrui a aplicação ativa." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "Esconde quando o dock obstrui qualquer janela." -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "Arraste para reposicionar" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "Solte para adicionar ao dock" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_Configurações" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "_Sobre" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "_Fechar o Docky" @@ -170,83 +169,82 @@ msgid "Docky Configuration" msgstr "Configuração do Docky" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "Iniciar no Início da _Sessão" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Tema:" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Opções gerais" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Configurações do Dock" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Docks" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "Todos" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "Habilitado" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "Desabilitado" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Docklets" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Instalar" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "Ajudantes" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "_Novo Dock" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "Nenhum" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Ocultar automaticamente" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Ocultar Inteligentemente" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "Desviar das Janelas" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "_Desvanecer ao Ocultar" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "Tamanho dos _Ícones:" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_Ocultando:" @@ -254,19 +252,19 @@ msgid "Indicat_e Multiple Windows" msgstr "Indicar Múltiplas Jan_elas" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "Modo _Painel" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "_Fundo 3D" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "_Gerenciar Janelas sem Lançador" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "_Zoom:" @@ -275,12 +273,12 @@ msgid "Drop to open with {0}" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "Nova _janela" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "_Abrir" @@ -288,63 +286,65 @@ msgid "Reset Color" msgstr "Resetar a Cor" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "F_ixar no Dock" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "Erro ao realizar a ação de soltar" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "Não há espaço suficiente no destino." -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "Completo" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "Movendo" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "Copiando" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "Erro ao realizar a ação de soltar" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "Abrir" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "Abrir a Pasta que o Contém" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "Desfazer Ma_ximizar" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "Ma_ximizar" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "_Restaurar" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "Mi_nimizar" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "Fe_char Todos" @@ -416,23 +416,23 @@ msgid "remaining " msgstr "restante " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "Computador" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "Relógio Di_gital" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "Relógio 24-horas" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "Mostrar _Data" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "Selecionar _Tema" @@ -440,7 +440,7 @@ msgid "Themes" msgstr "Temas" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "Tema" @@ -457,39 +457,39 @@ msgid "minutes" msgstr "minutos" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "Nome de Usuário e Senha não informados" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(sem assunto)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "De: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "Erro na Fonte" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "Usuário Inválido" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "Erro de Rede" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "Erro geral" @@ -512,19 +512,19 @@ msgid "Checking mail..." msgstr "Verificando e-mail..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "_Ver " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "_Compor E-mail" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "Novo e-mail" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "Checar e-_mail" @@ -544,11 +544,11 @@ msgid "From: " msgstr "De: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "_Ejetar" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "_Desmontar" @@ -587,39 +587,39 @@ msgid "Please try your search again." msgstr "Por favor, tente a sua busca de novo." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "Obtendo a Informação..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "Clique para adicionar estações NPR." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "Página Inicial" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "Efetuar agendamento" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "Doar" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "Transmissão ao Vivo" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "Limpar a lista de documentos recentes?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "Limpar documentos recentes" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -629,7 +629,7 @@ "• Todos os itens do menu Locais → Documentos recentes.\n" "• Todos os itens da lista de documentos recentes em todas as aplicações." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "Limpar Documentos Re_centes..." @@ -653,7 +653,7 @@ msgstr "_Abrir a lixeira" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "Esvaziar _lixeira" @@ -691,11 +691,13 @@ msgid "Use _Metric Units" msgstr "Usar Sistema _Métrico" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "Localização de Metereologia Inválida" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "Erro de Conexão: " @@ -735,55 +737,56 @@ msgid "Weather Configuration" msgstr "Configuração do Clima" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "Obtendo dados..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "_Mapa do Radar" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "Previsões de Clima" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "_Checar Clima" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "_Hoje" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "_Amanhã" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "Umidade" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "Temp" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "Parece que" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "Vento" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "Direção" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "Nascer-do-sol" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "Pôr-do-sol" diff -Nru docky-2.0.4/po/ro.po docky-2.0.5/po/ro.po --- docky-2.0.4/po/ro.po 2010-05-31 07:48:22.000000000 +0200 +++ docky-2.0.5/po/ro.po 2010-07-01 18:56:42.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" "PO-Revision-Date: 2010-03-29 21:45+0000\n" "Last-Translator: Adi Roiban \n" "Language-Team: Romanian \n" @@ -16,95 +16,94 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1 ? 0: (((n % 100 > 19) || ((n % 100 " "== 0) && (n != 0))) ? 2: 1));\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr "Arhive .tar" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "_Adaugă" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "_Elimină" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Autor" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Configurări" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." msgstr "" -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_Activează" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "_Dezactivează" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Stare" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Dezinstalează" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "Pornit" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Oprit" @@ -114,48 +113,48 @@ "extra indicator under it." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "" -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_Configurări" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "_Despre" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "" @@ -163,83 +162,82 @@ msgid "Docky Configuration" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Temă:" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Opțiuni generale" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "Toate" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "Activat" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "Dezactivat" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Docklets" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Instalează" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "Niciunul" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Ascundere automată" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Ascundere inteligentă" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "Mărime _iconiță:" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_Ascundere:" @@ -247,19 +245,19 @@ msgid "Indicat_e Multiple Windows" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "Mod _panou" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "_Fundal 3D" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "_Zoom:" @@ -268,12 +266,12 @@ msgid "Drop to open with {0}" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "_Fereastră nouă" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "_Deschide" @@ -281,63 +279,65 @@ msgid "Reset Color" msgstr "Resetare culoare" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "Terminat" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "Deschide" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "Ma_ximizează" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "_Restaurează" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "Mi_nimizează" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "" @@ -411,23 +411,23 @@ msgid "remaining " msgstr "mai rămân " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "Calculator" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "Ceas di_gital" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "" @@ -435,7 +435,7 @@ msgid "Themes" msgstr "Teme" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "Temă" @@ -452,39 +452,39 @@ msgid "minutes" msgstr "minute" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(fără subiect)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "De la: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "Eroare flux" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "Eroare generală" @@ -508,19 +508,19 @@ msgid "Checking mail..." msgstr "" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "Email nou" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "" @@ -540,11 +540,11 @@ msgid "From: " msgstr "De la: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "Scoat_e" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "_Demontează" @@ -583,39 +583,39 @@ msgid "Please try your search again." msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "Pagină web" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "Donează" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "Fluxuri în direct" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "Curăță lista documentelor recente?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "Curăță documentele recente" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -625,7 +625,7 @@ "• Toate elementele din „Locuri” → „Documente recente”.\n" "• Toate elementele din documente recente ale tuturor aplicațiilor." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "" @@ -650,7 +650,7 @@ msgstr "Deschide gun_oiul" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "Goleș_te gunoiul" @@ -685,11 +685,13 @@ msgid "Use _Metric Units" msgstr "" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "" @@ -721,54 +723,55 @@ msgid "Weather Configuration" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "_Hartă radar" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "Previziuni" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "_Verifică vremea" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "_Astăzi" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "_Mâine" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "Umiditate" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "Se simte ca" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "Vânt" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "Direcție" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "Răsărit" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "" diff -Nru docky-2.0.4/po/ru.po docky-2.0.5/po/ru.po --- docky-2.0.4/po/ru.po 2010-05-31 07:48:21.000000000 +0200 +++ docky-2.0.5/po/ru.po 2010-07-01 18:56:41.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" "PO-Revision-Date: 2010-03-16 09:55+0000\n" "Last-Translator: Rico Tzschichholz \n" "Language-Team: Russian \n" @@ -16,71 +16,70 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Поиск доклетов" -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "Поиск дополнений..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "Нажмите на панель для её настройки" -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." -msgstr "" +msgstr "Перетащите панель для изменения положения." -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "Удалить выбранную панель?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." msgstr "" -"Если вы удалите панель, \n" -"все ей настройки исчезнут." +"Если вы удалите панель, то\n" +"все ее настройки будут навсегда утеряны." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" -msgstr "_Удалить панель" +msgstr "Удалить панель" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" -msgstr "" +msgstr "Выбрать" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr "архивы .tar" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "_Добавить" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "_Удалить" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Автор" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Настройки" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." @@ -88,27 +87,27 @@ "Для корректной работы Docky требуется композитный режим. Пожалуйста, " "включите композитный режим и перезапустите Docky." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_Включить" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "_Отключить" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Состояние" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Удалить" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "Выполняется" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Остановлено" @@ -120,7 +119,7 @@ "На значках для запуска, которые имеют более одного активного окна есть " "специальный индикатор." -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." @@ -128,42 +127,42 @@ "При выборе этого, окна, у которых еще нет значков запуска на панели, будут " "добавлены к текущей активной панели." -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "Видна все время, развернутые окна не перекрывают панель." -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "Исчезает, если курсор не над ним." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "Исчезает, если панель перекрывает активное приложение." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." -msgstr "Исчезает, если панель перекрывает любое окно." +msgstr "" -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" -msgstr "Перетащите для изменения местоположения" +msgstr "Тащите для перемещения" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "Перетащите, чтобы добавить на панель" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" -msgstr "_Параметры" +msgstr "Параметры" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "_О программе" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "_Закрыть Docky" @@ -171,103 +170,102 @@ msgid "Docky Configuration" msgstr "Настройка Docky" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "_Запустить вместе с системой" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" -msgstr "_Тема:" +msgstr "Тема:" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Основные настройки" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Настройки панели" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Панели" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "Все" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "Включённые" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "Выключенные" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Доклеты" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" -msgstr "_Установить" +msgstr "Установить" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "Дополнения" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" -msgstr "_Новая панель" +msgstr "Новая панель" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Автоматически скрывать" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Интеллектуальное скрытие" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" -msgstr "" +msgstr "Прятаться за окна" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" -msgstr "" +msgstr "Постепенно скрывать" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "_Размер значков:" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" -msgstr "_Скрытие:" +msgstr "Скрытие:" #: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:144 msgid "Indicat_e Multiple Windows" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" -msgstr "_Режим панели" +msgstr "Режим панели" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" -msgstr "" +msgstr "Трёхмерный фон" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" -msgstr "_Отображение приложений не имеющих ярлыков" +msgstr "Отображение приложений не имеющих ярлыков" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "_Масштаб:" @@ -276,78 +274,80 @@ msgid "Drop to open with {0}" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "Новое _окно" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" -msgstr "_Открыть" +msgstr "Открыть" #: ../Docky.Items/Docky.Items/ColoredIconDockItem.cs:69 msgid "Reset Color" msgstr "Восстановить цвет" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" -msgstr "_Прикрепить к панели" +msgstr "Прикрепить к панели" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "Ошибка при перетаскивании" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." -msgstr "" +msgstr "Недостаточно свободного места." -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "Выполнено" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "Перемещение" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "Копирование" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "Ошибка при перетаскивании" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "Открыть" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" -msgstr "" +msgstr "Открыть папку с объектом" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "Восстановить окно" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" -msgstr "_Развернуть" +msgstr "Развернуть" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" -msgstr "_Восстановить" +msgstr "Восстановить" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" -msgstr "_Свернуть" +msgstr "Свернуть" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" -msgstr "_Закрыть все" +msgstr "Закрыть все" #: ../Docky.Widgets/Docky.Widgets/AbstractLoginWidget.cs:43 #, csharp-format @@ -419,23 +419,23 @@ msgid "remaining " msgstr "осталось " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "Компьютер" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" -msgstr "Ци_фровые часы" +msgstr "Цифровые часы" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "24-часовый режим" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "Показывать _дату" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "Выбрать _тему" @@ -443,13 +443,13 @@ msgid "Themes" msgstr "Темы" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" -msgstr "Тема" +msgstr "тема" #: ../StandardPlugins/GMail/gtk-gui/GMail.GMailLabelConfig.cs:74 msgid "_Add Label" -msgstr "_Добавить метку" +msgstr "Добавить метку" #: ../StandardPlugins/GMail/gtk-gui/GMail.GMailLabelConfig.cs:113 msgid "Check e_very:" @@ -460,39 +460,39 @@ msgid "minutes" msgstr "мин." -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "Пользователь или Пароль не установлены" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(без темы)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "От: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "Ошибка ленты" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "Неверное имя пользователя" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "Ошибка сети" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "Общая ошибка" @@ -516,21 +516,21 @@ msgid "Checking mail..." msgstr "Проверка почты..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " -msgstr "" +msgstr "Просмотр " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" -msgstr "" +msgstr "Написать письмо" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" -msgstr "Новая почта" +msgstr "Новое письмо" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" -msgstr "Проверить _почту" +msgstr "Проверить почту" #: ../StandardPlugins/GMail/src/GMailLabelConfig.cs:36 msgid "Labels" @@ -548,11 +548,11 @@ msgid "From: " msgstr "От: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "_Извлечь" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "_Отключить" @@ -576,7 +576,7 @@ #: ../StandardPlugins/NPR/gtk-gui/NPR.StationSearchWidget.cs:47 msgid "My _Stations" -msgstr "" +msgstr "Мои _станции" #: ../StandardPlugins/NPR/gtk-gui/NPR.StationSearchWidget.cs:78 msgid "S_earch" @@ -591,39 +591,39 @@ msgid "Please try your search again." msgstr "Пожалуйста, повторите поиск." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "Получение информации..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "Нажмите, чтобы добавить NPR-станции." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "Домашняя страница" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "Расписание программы" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "Пожертвовать" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" -msgstr "" +msgstr "Онлайн потоки" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "Очистить список недавно использовавшихся документов?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "Очистить список недавно открытых документов" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -633,7 +633,7 @@ "• Все элементы из меню Переход → Недавние документы.\n" "• Все элементы из списков недавно открытых документов во всех приложениях." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "_Очистить недавно открытые документы" @@ -658,7 +658,7 @@ msgstr "_Открыть корзину" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "О_чистить корзину" @@ -696,11 +696,13 @@ msgid "Use _Metric Units" msgstr "Использовать _метрическую систему" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "Не могу проверить погоду для этого места" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "Проблема с сетью: " @@ -719,6 +721,10 @@ "website. To find your code, look up your forecast on their site and the " "code is in the URL after '/local/' and looks like AAXX0000." msgstr "" +"Данные о погоде предоставляются и принадлежат компании The Weather Channel. " +"Этот источник требует указать местоположение через US Zip Code или с помощью " +"уникального кода с веб-сайта. Чтобы найти код, откройте Ваш прогноз погоды " +"на сайте компании, в строке URL после '/ local /' код имеет вид AAXX0000." #: ../StandardPlugins/Weather/src/Sources/WunderWeatherSource.cs:55 msgid "" @@ -737,55 +743,56 @@ msgid "Weather Configuration" msgstr "Конфигурация модуля \"Погода\"" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "Загружаю данные..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "Сводка погоды" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "Проверить _погоду" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "_Сегодня" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "З_автра" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "Влажность" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "Температура" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "Ощущается как" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "Ветер" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "Направление" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "Восход солнца" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "Закат" diff -Nru docky-2.0.4/po/sv.po docky-2.0.5/po/sv.po --- docky-2.0.4/po/sv.po 2010-05-31 07:48:22.000000000 +0200 +++ docky-2.0.5/po/sv.po 2010-07-01 18:56:42.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" "PO-Revision-Date: 2010-03-29 21:54+0000\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -15,30 +15,30 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Sök dockprogram..." -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "Sök hjälpare..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "Klicka på en docka för att konfigurera den." -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "Drag en docka för att flytta på den." -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "Ta bort den markerade dockan?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -46,40 +46,39 @@ "Om du väljer att ta bort dockan så kommer alla\n" "inställningar för den borttagna dockan att förloras." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "_Ta bort docka" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_Välj" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr ".tar-arkiv" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "_Lägg till" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "_Ta bort" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Upphovsman" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Inställningar" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." @@ -87,27 +86,27 @@ "Docky kräver compositing för att fungera korrekt. Aktivera composition och " "starta om docky." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_Aktivera" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "_Inaktivera" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Status" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Avinstallera" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "Kör" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Stoppad" @@ -119,7 +118,7 @@ "Gör så att programstartare som hanterar fler än ett fönster har en extra " "indikator under sig." -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." @@ -127,42 +126,42 @@ "Fönster som inte redan har en ikon på någon docka kommer att läggas till i " "denna docka." -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "Dölj aldrig; maximerade fönster överlappar inte dockan." -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "Döljer sig när muspekaren inte är över den." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "Döljer sig när dockan är i vägen för det aktiva programmet." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "Döljer sig när dockan är i vägen för något fönster." -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "Dra för att ändra position" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "Släpp för att lägga till i dockan" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_Inställningar" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "_Om" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "A_vsluta Docky" @@ -170,83 +169,82 @@ msgid "Docky Configuration" msgstr "Konfigurera Docky" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "_Starta när datorn startar" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Tema:" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Allmänna alternativ" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Dockinställningar" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Dockor" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "Alla" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "Aktiverad" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "Inaktiverad" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Dockprogram" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Installera" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "Hjälpare" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "_Ny docka" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "Ingen" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Dölj automatiskt" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Dölj smart" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "Undvik fönster" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "_Tona vid döljande" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "_Ikonstorlek:" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_Dölj:" @@ -254,19 +252,19 @@ msgid "Indicat_e Multiple Windows" msgstr "Indike_ra flera fönster" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "_Panelläge" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "3D-bak_grund" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "_Hantera fönster utan programstartare" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "_Zoom:" @@ -275,12 +273,12 @@ msgid "Drop to open with {0}" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "Nytt _fönster" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "_Öppna" @@ -288,63 +286,65 @@ msgid "Reset Color" msgstr "Nollställ färg" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "_Nåla fast i dockan" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "Ett fel uppstod när objektet släpptes" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "Det finns inte tillräckligt med utrymme på målet." -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "Färdig" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "Flyttar" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "Kopierar" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "Ett fel uppstod när objektet släpptes" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "Öppna" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "Öppna mappen med filen" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "Avma_ximera" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "Ma_ximera" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "_Återställ" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "Mi_nimera" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "S_täng alla" @@ -416,23 +416,23 @@ msgid "remaining " msgstr "återstår " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "Dator" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "Di_gital klocka" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "24-timmars_klocka" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "Visa _datum" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "Välj _tema" @@ -440,7 +440,7 @@ msgid "Themes" msgstr "Teman" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "Tema" @@ -457,39 +457,39 @@ msgid "minutes" msgstr "minuter" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "Användarnamn och lösenord har inte angivits" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(inget ämne)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "Från: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "Fel i webbkanal" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "Ogiltigt användarnamn" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "Nätverksfel" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "Allmänt fel" @@ -512,19 +512,19 @@ msgid "Checking mail..." msgstr "Letar efter nya brev..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "_Visa " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "S_kriv e-postmeddelande" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "Ny e-post" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "Kontrollera _e-post" @@ -544,11 +544,11 @@ msgid "From: " msgstr "Från: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "Mata _ut" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "_Avmontera" @@ -587,39 +587,39 @@ msgid "Please try your search again." msgstr "Prova att söka igen." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "Hämtar information..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "Klicka för att lägga till NPR-stationer." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "Webbsida" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "Programtablå" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "Donera" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "Live-strömmar" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "Töm Senaste dokument-listan?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "Töm senaste dokument" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -629,7 +629,7 @@ "• Alla objekt från menyobjektet Platser → Senaste dokument.\n" "• Alla objekt från listan över senaste dokument i alla program." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "_Töm Senaste dokument..." @@ -653,7 +653,7 @@ msgstr "_Öppna papperskorgen" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "Töm _papperskorgen" @@ -691,11 +691,13 @@ msgid "Use _Metric Units" msgstr "Använd _metriska enheter" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "Ogiltig väderplats" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "Nätverksfel: " @@ -737,55 +739,56 @@ msgid "Weather Configuration" msgstr "Väderkonfiguration" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "Hämtar data..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "Radarka_rta" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "Prognoser" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "Kontrollera _vädret" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "_Idag" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "I_morgon" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "Luftfuktighet" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "Temp" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "Känns som" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "Vind" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "Riktning" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "Soluppgång" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "Solnedgång" diff -Nru docky-2.0.4/po/tr.po docky-2.0.5/po/tr.po --- docky-2.0.4/po/tr.po 2010-05-31 07:48:20.000000000 +0200 +++ docky-2.0.5/po/tr.po 2010-07-01 18:56:40.000000000 +0200 @@ -7,38 +7,38 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" -"PO-Revision-Date: 2010-03-16 20:41+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" +"PO-Revision-Date: 2010-06-17 13:42+0000\n" +"Last-Translator: Rico Tzschichholz \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Uygulamacıkları Ara..." -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "Yardımcıları Ara..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "Yapılandırmak için herhangi bir rıhtıma tıklayın." -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "Yeniden konumlandırmak için herhangi bir rıhtımı sürükleyin." -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "Seçili rıhtım silinsin mi?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -46,40 +46,39 @@ "Eğer rıhtımı silmeyi seçerseniz, silinen rıhtımın\n" "tüm ayarları kalıcı olarak kaybolacak." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "Rıhtımı _Sil" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_Seç" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr ".tar Arşivleri" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "_Ekle" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "_Kaldır" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Yazar" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Ayarlar" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." @@ -87,27 +86,27 @@ "Dock düzgün çalışabilmek için compositing'i gerektirir. Lütfen compositing'i " "aktifleştirin ve docky'yi yeniden başlatın." -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_Etkinleştir" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "_Etkisizleştir" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Durum" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Kaldır" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "Çalışıyor" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Durduruldu" @@ -119,7 +118,7 @@ "Birden fazla pencereyi yöneten başlatıcıların alt kısmına fazladan bir " "belirteç ekler." -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." @@ -127,44 +126,44 @@ "Ayarlandığında, bir rıhtım üzerindeki başlatıcıya sahip olmayan pencereler " "bu rıhtıma eklenecek." -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "" "Hiçbir zaman gizlemez; büyütülen pencereler rıhtımın üzerini " "kapatamaz." -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "Fare üzerinde olmadığında gizle." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "Rıhtım etkin uygulamayı engellediğinde gizle." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "Rıhtım bir pencereyi engellediğinde gizle." -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "Yeniden konumlandırmak için sürükleyin" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "Rıhtıma eklemek için bırakın" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_Ayarlar" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "_Hakkında" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "Docky'den _Çık" @@ -172,83 +171,82 @@ msgid "Docky Configuration" msgstr "Docky Ayarları" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "_Bilgisayar Açıldığında Başlat" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Tema:" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Genel Seçenekler" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Rıhtım Yapılandırması" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Rıhtımlar" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "Tümü" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" -msgstr "Etkinleştirildi" +msgstr "Etkin" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" -msgstr "Etkisizleştirildi" +msgstr "Etkin Olmayan" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Uygulamacıklar" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Kur" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "Yardımcılar" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "_Yeni Rıhtım" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "Hiçbiri" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Otomatik gizle" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "Akıllı gizleme" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "Pencere Çekilmesi" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "Gizlendiğinde _Soldur" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "_Simge Boyutu:" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_Gizleniyor:" @@ -256,19 +254,19 @@ msgid "Indicat_e Multiple Windows" msgstr "Çoklu Pencereleri Beli_rt" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" -msgstr "_Panel Modu" +msgstr "_Panel Kipi" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "3B Art_alan" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "Pencereleri Başlatıcı Olmadan _Yönet" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "_Yakınlaştır:" @@ -277,12 +275,12 @@ msgid "Drop to open with {0}" msgstr "{0} ile açmak için bırakın" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "Yeni _Pencere" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "_Aç" @@ -290,63 +288,65 @@ msgid "Reset Color" msgstr "Rengi Sıfırla" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "Rıhtıma _İğnele" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "{0} konumuna taşımak için bırakın" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "Bırakam eylemi sırasında bir hata oluştu" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "Hedefte yeterli alan yok." -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "Tamamlanmış" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "Taşınıyor" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "Kopyalanıyor" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "Bırakam eylemi sırasında bir hata oluştu" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "Aç" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "İçeren Dizini Aç" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "Büyüt_meyi geri al" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "Bü_yüt" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "_Geri Getir" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "_Küçült" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "_Tümünü Kapat" @@ -416,23 +416,23 @@ msgid "remaining " msgstr "kalan " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "Bilgisayar" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "Di_jital Saat" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "24'lük _Saat" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "Tarihi _Göster" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "_Temayı Seç" @@ -440,7 +440,7 @@ msgid "Themes" msgstr "Temalar" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "Tema" @@ -457,39 +457,39 @@ msgid "minutes" msgstr "dakikalar" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "Kullanıcı adı ve Şifre ayarlanmadı" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(konu yok)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" -msgstr "" +msgstr "{0} yeni, okunmamış iletiniz var" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "Gönderen: {0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "Besleme Hatası" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "Geçersiz Kullanıcı Adı" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "Ağ Hatası" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "Genel Hata" @@ -511,19 +511,19 @@ msgid "Checking mail..." msgstr "Posta kontrol ediliyor..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "_Görüntüle " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "Posta _Oluştur" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "Yeni Posta" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "_Postaları Denetle" @@ -543,11 +543,11 @@ msgid "From: " msgstr "Gönderen: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "_Çıkart" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "_Ayır" @@ -586,39 +586,39 @@ msgid "Please try your search again." msgstr "Lütfen aramanızı tekrarlayın." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "Bilgi Getiriliyor..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "NPR istasyonlarını eklemek için tıklayın." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "Ana Sayfa" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "Program Zamanlama" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "Bağışta Bulunun" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "Canlı Akışlar" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "Açılan Son Belgeler listesi temizlensin mi?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "Açılan Son Belgeler Listesini Temizle" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -630,7 +630,7 @@ "• Yerler → Açılan Son Belgeler menüsündeki tüm öğeler.\n" "• Tüm uygulamalardaki açılan son belgeler listeleri." -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "Açılan Son Belgeler Listesini _Temizle..." @@ -653,7 +653,7 @@ msgstr "Çöpü _Aç" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "Çöpü _Boşalt" @@ -691,11 +691,13 @@ msgid "Use _Metric Units" msgstr "_Metrik Birimleri Kullan" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "Geçersiz Hava Konumu" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "Ağ Hatası: " @@ -737,54 +739,55 @@ msgid "Weather Configuration" msgstr "Hava Durumu Yapılandırması" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "Veriler getiriliyor..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "Radar _Haritası" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "Hava Tahminleri" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "_Hava Durumunu Denetle" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "_Bugün" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "Y_arın" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "Nem" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "Sıcaklık" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "Rüzgar" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "Yön" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "Gün Doğumu" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "Gün Batımı" diff -Nru docky-2.0.4/po/uk.po docky-2.0.5/po/uk.po --- docky-2.0.4/po/uk.po 2010-05-31 07:48:20.000000000 +0200 +++ docky-2.0.5/po/uk.po 2010-07-01 18:56:40.000000000 +0200 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" -"PO-Revision-Date: 2010-05-23 19:40+0000\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" +"PO-Revision-Date: 2010-06-17 13:49+0000\n" "Last-Translator: Sergiy Gavrylov \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" @@ -16,30 +16,30 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "Знайти Доклети..." -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "Помічники пошуку..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "Позначте будь-який док для налаштування." -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "Перетягніть будь який док для переміщення." -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "Вилучити вибраний док?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -47,66 +47,65 @@ "Якщо Ви оберете вилучення доку, всі налаштування \n" "для цього доку будуть безповоротньо втрачені." -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "_Вилучити Док" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "_Вибрати" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr ".tar Архіви" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "_Додати" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "_Видалити" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "Автор" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "Параметри" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." msgstr "" -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "_Увімкнути" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "_Вимкнути" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "Статус" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "Видалити" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "Виконується" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "Зупинено" @@ -116,48 +115,48 @@ "extra indicator under it." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." msgstr "" -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "Завжди выдображати; максимізовані вікна не перекривають док." -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." -msgstr "" +msgstr "Приховує, коли вказівник не над ним." -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "Приховується, коли док заважає активному додатку." -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "Приховується, коли док заважає будь-якому вікну." -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "Перетягніть, що змінити розташування" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "_Налаштування" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "_Про програму" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "_Вихід з Docky" @@ -165,83 +164,82 @@ msgid "Docky Configuration" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "_Тема:" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "Загалні налаштування" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Налаштування Dock" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Доки" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" -msgstr "" +msgstr "Все" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" -msgstr "" +msgstr "Увімкнено" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Доклети" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "_Встановити" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "_Новий Док" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "Нічого" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "Автоматичне приховування" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "«Розумне» приховування" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "Край вікна" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "_Згасати при приховуванні" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "_Розмір значків:" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "_Приховування:" @@ -249,19 +247,19 @@ msgid "Indicat_e Multiple Windows" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "" @@ -270,12 +268,12 @@ msgid "Drop to open with {0}" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "" @@ -283,63 +281,65 @@ msgid "Reset Color" msgstr "" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "" @@ -411,23 +411,23 @@ msgid "remaining " msgstr "" -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "" @@ -435,7 +435,7 @@ msgid "Themes" msgstr "" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "" @@ -452,39 +452,39 @@ msgid "minutes" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "" @@ -507,19 +507,19 @@ msgid "Checking mail..." msgstr "" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "" @@ -539,11 +539,11 @@ msgid "From: " msgstr "" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "" @@ -582,46 +582,46 @@ msgid "Please try your search again." msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" "• All items from the recent documents list in all applications." msgstr "" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "" @@ -645,7 +645,7 @@ msgstr "" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "" @@ -680,11 +680,13 @@ msgid "Use _Metric Units" msgstr "" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "" @@ -716,54 +718,55 @@ msgid "Weather Configuration" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "" diff -Nru docky-2.0.4/po/zh_CN.po docky-2.0.5/po/zh_CN.po --- docky-2.0.4/po/zh_CN.po 2010-05-31 07:48:26.000000000 +0200 +++ docky-2.0.5/po/zh_CN.po 2010-07-01 18:56:44.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: docky\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-05-26 10:47+0200\n" +"POT-Creation-Date: 2010-07-01 18:45+0200\n" "PO-Revision-Date: 2010-03-30 02:35+0000\n" "Last-Translator: lhquark \n" "Language-Team: Chinese (Simplified) \n" @@ -15,30 +15,30 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2010-05-31 05:48+0000\n" +"X-Launchpad-Export-Date: 2010-07-01 16:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../Docky/Docky/ConfigurationWindow.cs:132 +#: ../Docky/Docky/ConfigurationWindow.cs:146 msgid "Search Docklets..." msgstr "搜索小部件..." -#: ../Docky/Docky/ConfigurationWindow.cs:147 +#: ../Docky/Docky/ConfigurationWindow.cs:162 msgid "Search Helpers..." msgstr "搜索辅助组件 ..." -#: ../Docky/Docky/ConfigurationWindow.cs:211 +#: ../Docky/Docky/ConfigurationWindow.cs:226 msgid "Click on any dock to configure." msgstr "点击任一面板进行设置" -#: ../Docky/Docky/ConfigurationWindow.cs:212 +#: ../Docky/Docky/ConfigurationWindow.cs:227 msgid "Drag any dock to reposition." msgstr "用拖拽移动位置。" -#: ../Docky/Docky/ConfigurationWindow.cs:277 +#: ../Docky/Docky/ConfigurationWindow.cs:292 msgid "Delete the currently selected dock?" msgstr "删除当前选中的面板?" -#: ../Docky/Docky/ConfigurationWindow.cs:279 +#: ../Docky/Docky/ConfigurationWindow.cs:294 msgid "" "If you choose to delete the dock, all settings\n" "for the deleted dock will be permanently lost." @@ -46,66 +46,65 @@ "如果您选择删除面板,那么该面板的所有配置将\n" "会永久消失。" -#: ../Docky/Docky/ConfigurationWindow.cs:286 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:456 +#: ../Docky/Docky/ConfigurationWindow.cs:309 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:405 msgid "_Delete Dock" msgstr "删除面板(_D)" -#: ../Docky/Docky/ConfigurationWindow.cs:400 -#: ../Docky/Docky/ConfigurationWindow.cs:425 +#: ../Docky/Docky/ConfigurationWindow.cs:413 msgid "_Select" msgstr "选择(_S)" -#: ../Docky/Docky/ConfigurationWindow.cs:403 -#: ../Docky/Docky/ConfigurationWindow.cs:428 +#: ../Docky/Docky/ConfigurationWindow.cs:416 msgid ".tar Archives" msgstr ".tar 格式的归档文件" -#: ../Docky/Docky/DockletTile.cs:46 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:220 +#: ../Docky/Docky/DockletTile.cs:47 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:222 msgid "_Add" msgstr "添加(_A)" -#: ../Docky/Docky/DockletTile.cs:47 -#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:203 +#: ../Docky/Docky/DockletTile.cs:48 +#: ../Docky.Widgets/Docky.Widgets/AbstractTileObject.cs:205 msgid "_Remove" msgstr "删除(_R)" -#: ../Docky/Docky/DockletTile.cs:50 +#: ../Docky/Docky/DockletTile.cs:49 msgid "Author" msgstr "作者" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:166 +#: ../Docky/Docky/DockletTile.cs:56 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:170 msgid "Settings" msgstr "设置" -#: ../Docky/Docky/Docky.cs:103 +#: ../Docky/Docky/Docky.cs:102 msgid "" "Docky requires compositing to work properly. Please enable compositing and " "restart docky." msgstr "Docky 需要混合窗口管理器才能工作。请启用混合窗口管理器后重新启动 Docky。" -#: ../Docky/Docky/HelperTile.cs:39 +#: ../Docky/Docky/HelperTile.cs:40 msgid "_Enable" msgstr "启用(_E)" -#: ../Docky/Docky/HelperTile.cs:40 +#: ../Docky/Docky/HelperTile.cs:41 msgid "_Disable" msgstr "禁用(_D)" -#: ../Docky/Docky/HelperTile.cs:41 +#: ../Docky/Docky/HelperTile.cs:42 msgid "Status" msgstr "状态" -#: ../Docky/Docky/HelperTile.cs:58 +#: ../Docky/Docky/HelperTile.cs:59 msgid "Uninstall" msgstr "卸载" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Running" msgstr "正在运行" -#: ../Docky/Docky/HelperTile.cs:82 +#: ../Docky/Docky/HelperTile.cs:74 msgid "Stopped" msgstr "已停止" @@ -115,48 +114,48 @@ "extra indicator under it." msgstr "对于拥有多个窗口的启动器,在其下方做出额外的标记。" -#: ../Docky/Docky/Interface/DockPreferences.cs:333 +#: ../Docky/Docky/Interface/DockPreferences.cs:331 msgid "" "When set, windows which do not already have launchers on a dock will be " "added to this dock." msgstr "如果选中此项,没有启动器的窗口将会被显示在这个 dock 上。" -#: ../Docky/Docky/Interface/DockPreferences.cs:684 +#: ../Docky/Docky/Interface/DockPreferences.cs:595 msgid "Never hides; maximized windows do not overlap the dock." msgstr "从不隐藏;最大化的窗口将不会覆盖在 Dock 上。" -#: ../Docky/Docky/Interface/DockPreferences.cs:687 +#: ../Docky/Docky/Interface/DockPreferences.cs:598 msgid "Hides whenever the mouse is not over it." msgstr "鼠标移开后自动隐藏。" -#: ../Docky/Docky/Interface/DockPreferences.cs:690 +#: ../Docky/Docky/Interface/DockPreferences.cs:601 msgid "Hides when dock obstructs the active application." msgstr "当 dock 阻挡了当前的程序时将会隐藏。" -#: ../Docky/Docky/Interface/DockPreferences.cs:693 +#: ../Docky/Docky/Interface/DockPreferences.cs:604 msgid "Hides when dock obstructs any window." msgstr "当 dock 阻挡了任何窗口时,将会隐藏。" -#: ../Docky/Docky/Interface/DockWindow.cs:378 +#: ../Docky/Docky/Interface/DockWindow.cs:382 msgid "Drag to reposition" msgstr "通过拖动改变位置" -#: ../Docky/Docky/Interface/DockWindow.cs:390 -#: ../Docky/Docky/Interface/DockWindow.cs:404 +#: ../Docky/Docky/Interface/DockWindow.cs:394 +#: ../Docky/Docky/Interface/DockWindow.cs:408 msgid "Drop to add to dock" msgstr "拖动添加到 dock 上" -#: ../Docky/Docky/Items/DockyItem.cs:133 -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:223 -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:239 +#: ../Docky/Docky/Items/DockyItem.cs:93 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:236 msgid "_Settings" msgstr "设置(_S)" -#: ../Docky/Docky/Items/DockyItem.cs:134 +#: ../Docky/Docky/Items/DockyItem.cs:94 msgid "_About" msgstr "关于(_A)" -#: ../Docky/Docky/Items/DockyItem.cs:137 +#: ../Docky/Docky/Items/DockyItem.cs:95 msgid "_Quit Docky" msgstr "退出 Docky (_Q)" @@ -164,83 +163,82 @@ msgid "Docky Configuration" msgstr "Docky 设置" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:141 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:139 msgid "_Start When Computer Starts" msgstr "开机时自动启动(_S)" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:157 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:155 msgid "_Theme:" msgstr "主题(_T):" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:207 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:179 msgid "General Options" msgstr "常规选项" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:227 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:199 msgid "Dock Configuration" msgstr "Dock 设置" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:241 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:213 msgid "Docks" msgstr "Docks" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:262 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:317 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:234 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:289 msgid "All" msgstr "全部" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:263 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:318 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:235 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:290 msgid "Enabled" msgstr "已启用" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:264 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:319 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:236 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:291 msgid "Disabled" msgstr "已禁用" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:296 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:268 msgid "Docklets" msgstr "Docklets" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:188 -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:343 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:315 msgid "_Install" msgstr "安装(_I)" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:374 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:347 msgid "Helpers" msgstr "辅助组件" -#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:429 +#: ../Docky/gtk-gui/Docky.ConfigurationWindow.cs:378 msgid "_New Dock" msgstr "新建 Dock(_N)" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:58 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 msgid "None" msgstr "无" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:59 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 msgid "Autohide" msgstr "自动隐藏" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:60 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:62 msgid "Intellihide" msgstr "智能隐藏" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:61 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:63 msgid "Window Dodge" msgstr "窗口闪避" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:75 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:77 msgid "_Fade On Hide" msgstr "淡出式隐藏(_F)" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:119 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:121 msgid "_Icon Size:" msgstr "图标大小(_I):" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:132 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:134 msgid "_Hiding:" msgstr "隐藏(_H):" @@ -248,19 +246,19 @@ msgid "Indicat_e Multiple Windows" msgstr "表示多重窗口(_E)" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:142 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:158 msgid "_Panel Mode" msgstr "面板模式(_P)" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:156 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:172 msgid "3D Back_ground" msgstr "三维背景(_G)" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:170 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:186 msgid "_Manage Windows Without Launcher" msgstr "管理没有启动器的窗口(_M)" -#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:185 +#: ../Docky/gtk-gui/Docky.Interface.DockPreferences.cs:201 msgid "_Zoom:" msgstr "缩放(_Z):" @@ -269,12 +267,12 @@ msgid "Drop to open with {0}" msgstr "" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:159 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:173 msgid "New _Window" msgstr "新建窗口(_W)" -#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:161 -#: ../StandardPlugins/Mounter/src/MountItem.cs:97 +#: ../Docky.Items/Docky.Items/ApplicationDockItem.cs:175 +#: ../StandardPlugins/Mounter/src/MountItem.cs:108 msgid "_Open" msgstr "打开(_O)" @@ -282,63 +280,65 @@ msgid "Reset Color" msgstr "重置颜色" -#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:410 +#: ../Docky.Items/Docky.Items/FileApplicationProvider.cs:435 msgid "_Pin to Dock" msgstr "锁定到 Dock (_P)" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:74 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:75 #, csharp-format msgid "Drop to move to {0}" msgstr "" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:189 +#. until we use a new version of GTK# which supports getting the GLib.Error code +#. this is about the best we can do. +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:239 +msgid "Error performing drop action" +msgstr "执行拖放动作出错" + +#: ../Docky.Items/Docky.Items/FileDockItem.cs:194 msgid "Not enough free space on destination." msgstr "目标处没有足够的空余空间。" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:201 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:203 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:223 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:211 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:214 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:246 msgid "Complete" msgstr "完成" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:209 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:224 msgid "Moving" msgstr "正在移动" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:215 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:230 msgid "Copying" msgstr "正在复制" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:228 -#: ../Docky.Items/Docky.Items/FileDockItem.cs:229 -msgid "Error performing drop action" -msgstr "执行拖放动作出错" - -#: ../Docky.Items/Docky.Items/FileDockItem.cs:251 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:264 msgid "Open" msgstr "打开" -#: ../Docky.Items/Docky.Items/FileDockItem.cs:252 +#: ../Docky.Items/Docky.Items/FileDockItem.cs:265 msgid "Open Containing Folder" msgstr "打开其所在的文件夹" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:248 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:264 msgid "Unma_ximize" msgstr "取消最大化(_X)" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:251 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:267 msgid "Ma_ximize" msgstr "最大化(_X)" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:255 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:272 msgid "_Restore" msgstr "还原(_R)" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:258 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:275 msgid "Mi_nimize" msgstr "最小化(_N)" -#: ../Docky.Items/Docky.Items/WnckDockItem.cs:261 +#: ../Docky.Items/Docky.Items/WnckDockItem.cs:279 msgid "_Close All" msgstr "全部关闭(_C)" @@ -408,23 +408,23 @@ msgid "remaining " msgstr "剩余 " -#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:84 +#: ../StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs:86 msgid "Computer" msgstr "计算机" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:425 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:430 msgid "Di_gital Clock" msgstr "数字时钟 (_G)" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:431 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:436 msgid "24-Hour _Clock" msgstr "24小时时钟(_C)" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:437 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:442 msgid "Show _Date" msgstr "显示日期(_D)" -#: ../StandardPlugins/Clock/src/ClockDockItem.cs:443 +#: ../StandardPlugins/Clock/src/ClockDockItem.cs:448 msgid "Select _Theme" msgstr "选择主题(_T)" @@ -432,7 +432,7 @@ msgid "Themes" msgstr "主题" -#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:62 +#: ../StandardPlugins/Clock/src/ClockThemeSelector.cs:69 msgid "Theme" msgstr "主题" @@ -449,39 +449,39 @@ msgid "minutes" msgstr "分钟" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:202 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:175 msgid "Username or Password not set" msgstr "用户名或密码未设置" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:255 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:230 msgid "(no subject)" msgstr "(无主题)" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:269 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:244 #, csharp-format msgid "You have {0} new, unread messages" msgstr "" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:273 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:248 #, csharp-format msgid "From: {0}" msgstr "来自:{0}" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:286 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:290 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:261 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:265 msgid "Feed Error" msgstr "Feed 错误" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:295 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:270 msgid "Invalid Username" msgstr "用户名无效" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:299 -#: ../StandardPlugins/GMail/src/GMailAtom.cs:303 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:274 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:278 msgid "Network Error" msgstr "网络错误" -#: ../StandardPlugins/GMail/src/GMailAtom.cs:308 +#: ../StandardPlugins/GMail/src/GMailAtom.cs:283 msgid "General Error" msgstr "一般错误" @@ -503,19 +503,19 @@ msgid "Checking mail..." msgstr "正在检查邮件 ..." -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:202 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:193 msgid "_View " msgstr "查看(_V) " -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:207 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:198 msgid "_Compose Mail" msgstr "写邮件(_C)" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:214 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:206 msgid "New Mail" msgstr "新邮件" -#: ../StandardPlugins/GMail/src/GMailDockItem.cs:232 +#: ../StandardPlugins/GMail/src/GMailDockItem.cs:222 msgid "Check _Mail" msgstr "检查邮件(_M)" @@ -535,11 +535,11 @@ msgid "From: " msgstr "来自: " -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Eject" msgstr "弹出(_E)" -#: ../StandardPlugins/Mounter/src/MountItem.cs:99 +#: ../StandardPlugins/Mounter/src/MountItem.cs:111 msgid "_Unmount" msgstr "卸载(_U)" @@ -578,39 +578,39 @@ msgid "Please try your search again." msgstr "请尝试重新搜索。" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:48 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:46 msgid "Fetching Information..." msgstr "获取信息..." -#: ../StandardPlugins/NPR/src/StationDockItem.cs:68 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:72 msgid "Click to add NPR stations." msgstr "点击添加 NPR 电台。" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:107 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:111 msgid "Home Page" msgstr "主页" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:114 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:118 msgid "Program Schedule" msgstr "程序调度" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:121 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:125 msgid "Donate" msgstr "捐赠" -#: ../StandardPlugins/NPR/src/StationDockItem.cs:128 +#: ../StandardPlugins/NPR/src/StationDockItem.cs:132 msgid "Live Streams" msgstr "实时流媒体" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:67 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:76 msgid "Clear the Recent Documents list?" msgstr "清除文档历史?" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:69 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:78 msgid "Clear Recent Documents" msgstr "清除最近文档历史" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:71 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:80 msgid "" "If you clear the Recent Documents list, you clear the following:\n" "• All items from the Places → Recent Documents menu item.\n" @@ -621,7 +621,7 @@ "• 位置 -> 最近文档菜单项中的全部项目。\n" "• 全部应用程序的最近文档列表中的全部项目。" -#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:92 +#: ../StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs:116 msgid "_Clear Recent Documents..." msgstr "清除最近的文档列表(_C)..." @@ -644,7 +644,7 @@ msgstr "打开回收站(_O)" #: ../StandardPlugins/Trash/src/TrashDockItem.cs:166 -#: ../StandardPlugins/Trash/src/TrashDockItem.cs:196 +#: ../StandardPlugins/Trash/src/TrashDockItem.cs:203 msgid "Empty _Trash" msgstr "清空回收站(_T)" @@ -681,11 +681,13 @@ msgid "Use _Metric Units" msgstr "使用公制单位(_M)" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:176 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:95 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:98 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:103 msgid "Invalid Weather Location" msgstr "无效的位置" -#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:182 +#: ../StandardPlugins/Weather/src/Sources/AbstractWeatherSource.cs:101 msgid "Network Error: " msgstr "网络错误: " @@ -721,55 +723,56 @@ msgid "Weather Configuration" msgstr "天气配置" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:90 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:81 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:91 msgid "Fetching data..." msgstr "正在更新数据..." -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:226 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:222 msgid "Radar _Map" msgstr "雷达图(_M)" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:231 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:227 msgid "Forecasts" msgstr "预报" -#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:247 +#: ../StandardPlugins/Weather/src/WeatherDocklet.cs:243 msgid "Check _Weather" msgstr "检查天气(_W)" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:108 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:88 msgid "_Today" msgstr "今天(_T)" -#: ../StandardPlugins/Weather/src/WeatherForecast.cs:111 +#: ../StandardPlugins/Weather/src/WeatherForecast.cs:91 msgid "T_omorrow" msgstr "明天(_O)" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:311 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:328 msgid "Humidity" msgstr "湿度" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:313 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:330 msgid "Temp" msgstr "温度" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:315 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:332 msgid "Feels Like" msgstr "体感温度" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:317 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:334 msgid "Wind" msgstr "风速" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:318 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:335 msgid "Direction" msgstr "风向" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:320 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:337 msgid "Sunrise" msgstr "日出" -#: ../StandardPlugins/Weather/src/WeatherPainter.cs:321 +#: ../StandardPlugins/Weather/src/WeatherPainter.cs:338 msgid "Sunset" msgstr "日落" diff -Nru docky-2.0.4/scripts/docky/Makefile.in docky-2.0.5/scripts/docky/Makefile.in --- docky-2.0.4/scripts/docky/Makefile.in 2010-05-31 08:00:12.945621489 +0200 +++ docky-2.0.5/scripts/docky/Makefile.in 2010-07-01 19:05:34.455184001 +0200 @@ -188,6 +188,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/scripts/Makefile.in docky-2.0.5/scripts/Makefile.in --- docky-2.0.4/scripts/Makefile.in 2010-05-31 08:00:12.885621362 +0200 +++ docky-2.0.5/scripts/Makefile.in 2010-07-01 19:05:34.395184001 +0200 @@ -229,6 +229,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/scripts/metadata/Makefile.in docky-2.0.5/scripts/metadata/Makefile.in --- docky-2.0.4/scripts/metadata/Makefile.in 2010-05-31 08:00:12.985621391 +0200 +++ docky-2.0.5/scripts/metadata/Makefile.in 2010-07-01 19:05:34.495184001 +0200 @@ -189,6 +189,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/StandardPlugins/BatteryMonitor/Makefile.in docky-2.0.5/StandardPlugins/BatteryMonitor/Makefile.in --- docky-2.0.4/StandardPlugins/BatteryMonitor/Makefile.in 2010-05-31 08:00:10.815621366 +0200 +++ docky-2.0.5/StandardPlugins/BatteryMonitor/Makefile.in 2010-07-01 19:05:31.765184001 +0200 @@ -199,6 +199,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/StandardPlugins/Bookmarks/Makefile.in docky-2.0.5/StandardPlugins/Bookmarks/Makefile.in --- docky-2.0.4/StandardPlugins/Bookmarks/Makefile.in 2010-05-31 08:00:10.865621406 +0200 +++ docky-2.0.5/StandardPlugins/Bookmarks/Makefile.in 2010-07-01 19:05:31.835184001 +0200 @@ -199,6 +199,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs docky-2.0.5/StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs --- docky-2.0.4/StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs 2010-04-11 08:14:01.034105744 +0200 +++ docky-2.0.5/StandardPlugins/Bookmarks/src/BookmarksItemProvider.cs 2010-06-26 15:47:36.543229000 +0200 @@ -77,6 +77,8 @@ } } + FileMonitor watcher; + public BookmarksItemProvider () { items = new List (); @@ -87,7 +89,7 @@ UpdateItems (); - FileMonitor watcher = FileMonitor.File (BookmarksFile, FileMonitorFlags.None, null); + watcher = FileMonitor.File (BookmarksFile, FileMonitorFlags.None, null); watcher.Changed += WatcherChanged; } @@ -232,6 +234,10 @@ public override void Dispose () { + watcher.Cancel (); + watcher.Changed -= WatcherChanged; + watcher.Dispose (); + Items = Enumerable.Empty (); foreach (AbstractDockItem item in items) item.Dispose (); diff -Nru docky-2.0.4/StandardPlugins/Clock/Makefile.in docky-2.0.5/StandardPlugins/Clock/Makefile.in --- docky-2.0.4/StandardPlugins/Clock/Makefile.in 2010-05-31 08:00:10.975621416 +0200 +++ docky-2.0.5/StandardPlugins/Clock/Makefile.in 2010-07-01 19:05:31.975184001 +0200 @@ -239,6 +239,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/StandardPlugins/Clock/src/CalendarPainter.cs docky-2.0.5/StandardPlugins/Clock/src/CalendarPainter.cs --- docky-2.0.4/StandardPlugins/Clock/src/CalendarPainter.cs 2010-02-26 17:24:37.000000000 +0100 +++ docky-2.0.5/StandardPlugins/Clock/src/CalendarPainter.cs 2010-06-26 15:47:36.543229000 +0200 @@ -1,5 +1,6 @@ // // Copyright (C) 2009 Jason Smith, Robert Dyer +// Copyright (C) 2010 Robert Dyer // // 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 @@ -109,26 +110,31 @@ DateTime day = CalendarStartDate; - Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout (); - - layout.FontDescription = new Gtk.Style().FontDescription; - layout.FontDescription.Weight = Pango.Weight.Bold; - layout.Ellipsize = Pango.EllipsizeMode.None; - layout.Width = Pango.Units.FromPixels (offsetSize); - layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels ((int) (0.625 * LineHeight)); - - cr.Color = new Cairo.Color (1, 1, 1, .5); - for (int i = 1; i < 8; i++) { - layout.SetText (string.Format ("{0}", day.ToString ("ddd").ToUpper ())); + using (Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout ()) + { + layout.FontDescription = new Gtk.Style().FontDescription; + layout.FontDescription.Weight = Pango.Weight.Bold; + layout.Ellipsize = Pango.EllipsizeMode.None; + layout.Width = Pango.Units.FromPixels (offsetSize); + layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels ((int) (0.625 * LineHeight)); - Pango.Rectangle inkRect, logicalRect; - layout.GetPixelExtents (out inkRect, out logicalRect); - cr.MoveTo (offsetSize * i + (offsetSize - inkRect.Width) / 2, centerLine - logicalRect.Height); + cr.Color = new Cairo.Color (1, 1, 1, .5); + for (int i = 1; i < 8; i++) { + layout.SetText (string.Format ("{0}", day.ToString ("ddd").ToUpper ())); + + Pango.Rectangle inkRect, logicalRect; + layout.GetPixelExtents (out inkRect, out logicalRect); + cr.MoveTo (offsetSize * i + (offsetSize - inkRect.Width) / 2, centerLine - logicalRect.Height); + + Pango.CairoHelper.LayoutPath (cr, layout); + cr.Fill (); + day = day.AddDays (1); + } - Pango.CairoHelper.LayoutPath (cr, layout); - cr.Fill (); - day = day.AddDays (1); + layout.FontDescription.Dispose (); + layout.Context.Dispose (); } + } void RenderLine (DockySurface surface, int line) @@ -139,56 +145,61 @@ int centerLine = LineHeight + LineHeight * line + ((Allocation.Height % LineHeight) / 2); int dayOffset = 0; - Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout (); - Pango.Rectangle inkRect, logicalRect; - - layout.FontDescription = new Gtk.Style().FontDescription; - layout.Ellipsize = Pango.EllipsizeMode.None; - layout.Width = Pango.Units.FromPixels (offsetSize); - layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels ((int) (0.625 * LineHeight)); - - for (int i = 0; i < 9; i++) { - layout.FontDescription.Weight = Pango.Weight.Bold; + using (Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout ()) + { + Pango.Rectangle inkRect, logicalRect; - if (i == 8) { - cr.Color = new Cairo.Color (1, 1, 1, lowlight); - layout.SetText (string.Format ("{0}", lineStart.AddDays (6).ToString ("MMM").ToUpper ())); - layout.GetPixelExtents (out inkRect, out logicalRect); - cr.MoveTo (offsetSize * i, centerLine - logicalRect.Height); - } else if (i == 0) { - cr.Color = new Cairo.Color (1, 1, 1, lowlight); - int woy = CultureInfo.CurrentCulture.Calendar.GetWeekOfYear (lineStart.AddDays (6), - DateTimeFormatInfo.CurrentInfo.CalendarWeekRule, - DateTimeFormatInfo.CurrentInfo.FirstDayOfWeek); - layout.SetText (string.Format ("W{0:00}", woy)); - layout.GetPixelExtents (out inkRect, out logicalRect); - cr.MoveTo (offsetSize - inkRect.Width, centerLine - logicalRect.Height); - } else { - DateTime day = lineStart.AddDays (dayOffset); - - if (day.Month == CalendarStartDate.AddDays (6).Month) - cr.Color = new Cairo.Color (1, 1, 1); - else - cr.Color = new Cairo.Color (1, 1, 1, .8); + layout.FontDescription = new Gtk.Style().FontDescription; + layout.Ellipsize = Pango.EllipsizeMode.None; + layout.Width = Pango.Units.FromPixels (offsetSize); + layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels ((int) (0.625 * LineHeight)); + + for (int i = 0; i < 9; i++) { + layout.FontDescription.Weight = Pango.Weight.Bold; - if (day.Date == DateTime.Today) - { - Gdk.Color color = Style.Backgrounds [(int) StateType.Selected].SetMinimumValue (100); - cr.Color = new Cairo.Color ((double) color.Red / ushort.MaxValue, - (double) color.Green / ushort.MaxValue, - (double) color.Blue / ushort.MaxValue, - 1.0); + if (i == 8) { + cr.Color = new Cairo.Color (1, 1, 1, lowlight); + layout.SetText (string.Format ("{0}", lineStart.AddDays (6).ToString ("MMM").ToUpper ())); + layout.GetPixelExtents (out inkRect, out logicalRect); + cr.MoveTo (offsetSize * i, centerLine - logicalRect.Height); + } else if (i == 0) { + cr.Color = new Cairo.Color (1, 1, 1, lowlight); + int woy = CultureInfo.CurrentCulture.Calendar.GetWeekOfYear (lineStart.AddDays (6), + DateTimeFormatInfo.CurrentInfo.CalendarWeekRule, + DateTimeFormatInfo.CurrentInfo.FirstDayOfWeek); + layout.SetText (string.Format ("W{0:00}", woy)); + layout.GetPixelExtents (out inkRect, out logicalRect); + cr.MoveTo (offsetSize - inkRect.Width, centerLine - logicalRect.Height); } else { - layout.FontDescription.Weight = Pango.Weight.Normal; + DateTime day = lineStart.AddDays (dayOffset); + + if (day.Month == CalendarStartDate.AddDays (6).Month) + cr.Color = new Cairo.Color (1, 1, 1); + else + cr.Color = new Cairo.Color (1, 1, 1, .8); + + if (day.Date == DateTime.Today) + { + Gdk.Color color = Style.Backgrounds [(int) StateType.Selected].SetMinimumValue (100); + cr.Color = new Cairo.Color ((double) color.Red / ushort.MaxValue, + (double) color.Green / ushort.MaxValue, + (double) color.Blue / ushort.MaxValue, + 1.0); + } else { + layout.FontDescription.Weight = Pango.Weight.Normal; + } + dayOffset++; + + layout.SetText (string.Format ("{0:00}", day.Day)); + layout.GetPixelExtents (out inkRect, out logicalRect); + cr.MoveTo (offsetSize * i + (offsetSize - inkRect.Width) / 2, centerLine - logicalRect.Height); } - dayOffset++; - - layout.SetText (string.Format ("{0:00}", day.Day)); - layout.GetPixelExtents (out inkRect, out logicalRect); - cr.MoveTo (offsetSize * i + (offsetSize - inkRect.Width) / 2, centerLine - logicalRect.Height); + Pango.CairoHelper.LayoutPath (cr, layout); + cr.Fill (); } - Pango.CairoHelper.LayoutPath (cr, layout); - cr.Fill (); + + layout.FontDescription.Dispose (); + layout.Context.Dispose (); } } diff -Nru docky-2.0.4/StandardPlugins/Clock/src/ClockDockItem.cs docky-2.0.5/StandardPlugins/Clock/src/ClockDockItem.cs --- docky-2.0.4/StandardPlugins/Clock/src/ClockDockItem.cs 2010-05-25 13:23:27.977364250 +0200 +++ docky-2.0.5/StandardPlugins/Clock/src/ClockDockItem.cs 2010-06-26 15:47:36.543229000 +0200 @@ -1,5 +1,6 @@ // // Copyright (C) 2009 Jason Smith, Robert Dyer +// Copyright (C) 2010 Robert Dyer // // 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 @@ -193,14 +194,12 @@ else HoverText = DateTime.Now.ToString ("ddd, MMM dd h:mm tt"); - if (ShowDigital) { - if (Square) - MakeSquareDigitalIcon (surface); - else - MakeRectangularDigitalIcon (surface); - } else { + if (!ShowDigital) MakeAnalogIcon (surface.Context, Math.Min (surface.Width, surface.Height)); - } + else if (Square) + MakeSquareDigitalIcon (surface); + else + MakeRectangularDigitalIcon (surface); } void MakeSquareDigitalIcon (DockySurface surface) @@ -215,75 +214,78 @@ int center = surface.Height / 2; // shared by all text - Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout (); - - layout.FontDescription = new Gtk.Style().FontDescription; - layout.FontDescription.Weight = Pango.Weight.Bold; - layout.Ellipsize = Pango.EllipsizeMode.None; - layout.Width = Pango.Units.FromPixels (surface.Width); - - - // draw the time, outlined - layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels (timeSize); - - if (ShowMilitary) - layout.SetText (DateTime.Now.ToString ("HH:mm")); - else - layout.SetText (DateTime.Now.ToString ("h:mm")); - - Pango.Rectangle inkRect, logicalRect; - layout.GetPixelExtents (out inkRect, out logicalRect); - - int timeYOffset = ShowMilitary ? timeSize : timeSize / 2; - int timeXOffset = (surface.Width - inkRect.Width) / 2; - if (ShowDate) - cr.MoveTo (timeXOffset, timeYOffset); - else - cr.MoveTo (timeXOffset, timeYOffset + timeSize / 2); - - Pango.CairoHelper.LayoutPath (cr, layout); - cr.LineWidth = 3; - cr.Color = new Cairo.Color (0, 0, 0, 0.5); - cr.StrokePreserve (); - cr.Color = new Cairo.Color (1, 1, 1, 0.8); - cr.Fill (); - - // draw the date, outlined - if (ShowDate) { - layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels (dateSize); + using (Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout ()) { + layout.FontDescription = new Gtk.Style().FontDescription; + layout.FontDescription.Weight = Pango.Weight.Bold; + layout.Ellipsize = Pango.EllipsizeMode.None; + layout.Width = Pango.Units.FromPixels (surface.Width); - layout.SetText (DateTime.Now.ToString ("MMM dd")); + + // draw the time, outlined + layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels (timeSize); + + if (ShowMilitary) + layout.SetText (DateTime.Now.ToString ("HH:mm")); + else + layout.SetText (DateTime.Now.ToString ("h:mm")); + + Pango.Rectangle inkRect, logicalRect; layout.GetPixelExtents (out inkRect, out logicalRect); - cr.MoveTo ((surface.Width - inkRect.Width) / 2, surface.Height - spacing - dateSize); + + int timeYOffset = ShowMilitary ? timeSize : timeSize / 2; + int timeXOffset = (surface.Width - inkRect.Width) / 2; + if (ShowDate) + cr.MoveTo (timeXOffset, timeYOffset); + else + cr.MoveTo (timeXOffset, timeYOffset + timeSize / 2); Pango.CairoHelper.LayoutPath (cr, layout); - cr.LineWidth = 2.5; + cr.LineWidth = 3; cr.Color = new Cairo.Color (0, 0, 0, 0.5); cr.StrokePreserve (); cr.Color = new Cairo.Color (1, 1, 1, 0.8); cr.Fill (); - } - - if (!ShowMilitary) { - layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels (ampmSize); - int yOffset = ShowDate ? center - spacing : surface.Height - spacing - ampmSize; + // draw the date, outlined + if (ShowDate) { + layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels (dateSize); + + layout.SetText (DateTime.Now.ToString ("MMM dd")); + layout.GetPixelExtents (out inkRect, out logicalRect); + cr.MoveTo ((surface.Width - inkRect.Width) / 2, surface.Height - spacing - dateSize); + + Pango.CairoHelper.LayoutPath (cr, layout); + cr.LineWidth = 2.5; + cr.Color = new Cairo.Color (0, 0, 0, 0.5); + cr.StrokePreserve (); + cr.Color = new Cairo.Color (1, 1, 1, 0.8); + cr.Fill (); + } - // draw AM indicator - layout.SetText ("am"); - cr.Color = new Cairo.Color (1, 1, 1, DateTime.Now.Hour < 12 ? 0.8 : 0.2); - layout.GetPixelExtents (out inkRect, out logicalRect); - cr.MoveTo ((center - inkRect.Width) / 2, yOffset); - Pango.CairoHelper.LayoutPath (cr, layout); - cr.Fill (); + if (!ShowMilitary) { + layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels (ampmSize); + + int yOffset = ShowDate ? center - spacing : surface.Height - spacing - ampmSize; + + // draw AM indicator + layout.SetText ("am"); + cr.Color = new Cairo.Color (1, 1, 1, DateTime.Now.Hour < 12 ? 0.8 : 0.2); + layout.GetPixelExtents (out inkRect, out logicalRect); + cr.MoveTo ((center - inkRect.Width) / 2, yOffset); + Pango.CairoHelper.LayoutPath (cr, layout); + cr.Fill (); + + // draw PM indicator + layout.SetText ("pm"); + cr.Color = new Cairo.Color (1, 1, 1, DateTime.Now.Hour > 11 ? 0.8 : 0.2); + layout.GetPixelExtents (out inkRect, out logicalRect); + cr.MoveTo (center + (center - inkRect.Width) / 2, yOffset); + Pango.CairoHelper.LayoutPath (cr, layout); + cr.Fill (); + } - // draw PM indicator - layout.SetText ("pm"); - cr.Color = new Cairo.Color (1, 1, 1, DateTime.Now.Hour > 11 ? 0.8 : 0.2); - layout.GetPixelExtents (out inkRect, out logicalRect); - cr.MoveTo (center + (center - inkRect.Width) / 2, yOffset); - Pango.CairoHelper.LayoutPath (cr, layout); - cr.Fill (); + layout.FontDescription.Dispose (); + layout.Context.Dispose (); } } @@ -298,69 +300,72 @@ int spacing = timeSize / 2; // shared by all text - Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout (); - - layout.FontDescription = new Gtk.Style().FontDescription; - layout.FontDescription.Weight = Pango.Weight.Bold; - layout.Ellipsize = Pango.EllipsizeMode.None; - layout.Width = Pango.Units.FromPixels (surface.Width); - - - // draw the time, outlined - layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels (timeSize); - - if (ShowMilitary) - layout.SetText (DateTime.Now.ToString ("HH:mm")); - else - layout.SetText (DateTime.Now.ToString ("h:mm")); - - Pango.Rectangle inkRect, logicalRect; - layout.GetPixelExtents (out inkRect, out logicalRect); - - int timeYOffset = timeSize / 2; - if (!ShowDate) - timeYOffset += timeSize / 2; - cr.MoveTo ((surface.Width - inkRect.Width) / 2, timeYOffset); - - Pango.CairoHelper.LayoutPath (cr, layout); - cr.LineWidth = 2; - cr.Color = new Cairo.Color (0, 0, 0, 0.5); - cr.StrokePreserve (); - cr.Color = new Cairo.Color (1, 1, 1, 0.8); - cr.Fill (); - - // draw the date, outlined - if (ShowDate) { - layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels (dateSize); + using (Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout ()) { + layout.FontDescription = new Gtk.Style().FontDescription; + layout.FontDescription.Weight = Pango.Weight.Bold; + layout.Ellipsize = Pango.EllipsizeMode.None; + layout.Width = Pango.Units.FromPixels (surface.Width); - layout.SetText (DateTime.Now.ToString ("MMM dd")); - layout.GetPixelExtents (out inkRect, out logicalRect); - cr.MoveTo ((surface.Width - inkRect.Width) / 2, surface.Height - spacing - dateSize); - Pango.CairoHelper.LayoutPath (cr, layout); - cr.Color = new Cairo.Color (0, 0, 0, 0.5); - cr.StrokePreserve (); - cr.Color = new Cairo.Color (1, 1, 1, 0.8); - cr.Fill (); - } - - if (!ShowMilitary) { - layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels (ampmSize); + // draw the time, outlined + layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels (timeSize); - if (DateTime.Now.Hour < 12) - layout.SetText ("am"); + if (ShowMilitary) + layout.SetText (DateTime.Now.ToString ("HH:mm")); else - layout.SetText ("pm"); + layout.SetText (DateTime.Now.ToString ("h:mm")); + Pango.Rectangle inkRect, logicalRect; layout.GetPixelExtents (out inkRect, out logicalRect); - int yOffset = timeSize; + + int timeYOffset = timeSize / 2; if (!ShowDate) - yOffset += timeSize / 2; - cr.MoveTo (surface.Width - logicalRect.Width, yOffset - inkRect.Height); + timeYOffset += timeSize / 2; + cr.MoveTo ((surface.Width - inkRect.Width) / 2, timeYOffset); Pango.CairoHelper.LayoutPath (cr, layout); + cr.LineWidth = 2; + cr.Color = new Cairo.Color (0, 0, 0, 0.5); + cr.StrokePreserve (); cr.Color = new Cairo.Color (1, 1, 1, 0.8); cr.Fill (); + + // draw the date, outlined + if (ShowDate) { + layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels (dateSize); + + layout.SetText (DateTime.Now.ToString ("MMM dd")); + layout.GetPixelExtents (out inkRect, out logicalRect); + cr.MoveTo ((surface.Width - inkRect.Width) / 2, surface.Height - spacing - dateSize); + + Pango.CairoHelper.LayoutPath (cr, layout); + cr.Color = new Cairo.Color (0, 0, 0, 0.5); + cr.StrokePreserve (); + cr.Color = new Cairo.Color (1, 1, 1, 0.8); + cr.Fill (); + } + + if (!ShowMilitary) { + layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels (ampmSize); + + if (DateTime.Now.Hour < 12) + layout.SetText ("am"); + else + layout.SetText ("pm"); + + layout.GetPixelExtents (out inkRect, out logicalRect); + int yOffset = timeSize; + if (!ShowDate) + yOffset += timeSize / 2; + cr.MoveTo (surface.Width - logicalRect.Width, yOffset - inkRect.Height); + + Pango.CairoHelper.LayoutPath (cr, layout); + cr.Color = new Cairo.Color (1, 1, 1, 0.8); + cr.Fill (); + } + + layout.FontDescription.Dispose (); + layout.Context.Dispose (); } } @@ -450,8 +455,8 @@ public void ShowSettings () { if (ClockThemeSelector.instance == null) - ClockThemeSelector.instance = new ClockThemeSelector (this); - ClockThemeSelector.instance.Show (); + ClockThemeSelector.instance = new ClockThemeSelector (this); + ClockThemeSelector.instance.Show (); } public override void Dispose () @@ -460,6 +465,7 @@ ClockThemeSelector.instance.Destroy (); ClockThemeSelector.instance = null; } + painter.Dispose (); if (timer > 0) GLib.Source.Remove (timer); base.Dispose (); diff -Nru docky-2.0.4/StandardPlugins/Clock/Themes/Default/Makefile.in docky-2.0.5/StandardPlugins/Clock/Themes/Default/Makefile.in --- docky-2.0.4/StandardPlugins/Clock/Themes/Default/Makefile.in 2010-05-31 08:00:11.015621413 +0200 +++ docky-2.0.5/StandardPlugins/Clock/Themes/Default/Makefile.in 2010-07-01 19:05:32.035184001 +0200 @@ -188,6 +188,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/StandardPlugins/Clock/Themes/Default24/Makefile.in docky-2.0.5/StandardPlugins/Clock/Themes/Default24/Makefile.in --- docky-2.0.4/StandardPlugins/Clock/Themes/Default24/Makefile.in 2010-05-31 08:00:11.065621348 +0200 +++ docky-2.0.5/StandardPlugins/Clock/Themes/Default24/Makefile.in 2010-07-01 19:05:32.085184001 +0200 @@ -188,6 +188,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/StandardPlugins/Clock/Themes/Makefile.in docky-2.0.5/StandardPlugins/Clock/Themes/Makefile.in --- docky-2.0.4/StandardPlugins/Clock/Themes/Makefile.in 2010-05-31 08:00:11.105621387 +0200 +++ docky-2.0.5/StandardPlugins/Clock/Themes/Makefile.in 2010-07-01 19:05:32.145184001 +0200 @@ -203,6 +203,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/StandardPlugins/CPUMonitor/Makefile.in docky-2.0.5/StandardPlugins/CPUMonitor/Makefile.in --- docky-2.0.4/StandardPlugins/CPUMonitor/Makefile.in 2010-05-31 08:00:10.915621472 +0200 +++ docky-2.0.5/StandardPlugins/CPUMonitor/Makefile.in 2010-07-01 19:05:31.905184001 +0200 @@ -199,6 +199,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/StandardPlugins/GMail/Makefile.in docky-2.0.5/StandardPlugins/GMail/Makefile.in --- docky-2.0.4/StandardPlugins/GMail/Makefile.in 2010-05-31 08:00:11.155621367 +0200 +++ docky-2.0.5/StandardPlugins/GMail/Makefile.in 2010-07-01 19:05:32.215184001 +0200 @@ -199,6 +199,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/StandardPlugins/GMail/src/GMailAtom.cs docky-2.0.5/StandardPlugins/GMail/src/GMailAtom.cs --- docky-2.0.4/StandardPlugins/GMail/src/GMailAtom.cs 2010-05-25 16:49:54.178614978 +0200 +++ docky-2.0.5/StandardPlugins/GMail/src/GMailAtom.cs 2010-06-26 15:47:36.543229000 +0200 @@ -1,5 +1,6 @@ // // Copyright (C) 2009 Robert Dyer +// Copyright (C) 2010 Robert Dyer // // 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 @@ -30,9 +31,6 @@ using Docky.Services; using Docky.Widgets; -// disable the warning message about System.Net.ServicePointManager.CertificatePolicy being obsolete -#pragma warning disable 618 - namespace GMail { public enum GMailState @@ -43,15 +41,6 @@ Error } - // remove when ServicePointManager.ServerCertificateValidationCallback implemented in mono - class CertHandler : System.Net.ICertificatePolicy - { - public bool CheckValidationResult(System.Net.ServicePoint srvPoint, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Net.WebRequest request, int certificateProblem) - { - return true; - } - } - public struct UnreadMessage { public string Topic; @@ -84,9 +73,7 @@ public int NewCount { get; protected set; } public bool HasUnread { - get { - return UnreadCount > 0 && State != GMailState.Error; - } + get { return UnreadCount > 0 && State != GMailState.Error; } } bool IsChecking { get; set; } @@ -95,21 +82,15 @@ { CurrentLabel = label; State = GMailState.ManualReload; + + ServicePointManager.ServerCertificateValidationCallback += delegate { return true; }; + DockServices.System.ConnectionStatusChanged += HandleNeedReset; - // this is not implemented in mono yet -// ServicePointManager.ServerCertificateValidationCallback += -// (sender, cert, chain, errors) => { return true; }; ResetNeeded += HandleNeedReset; } Thread checkerThread; - public void Dispose () - { - DockServices.System.ConnectionStatusChanged -= HandleNeedReset; - ResetNeeded -= HandleNeedReset; - } - void HandleNeedReset (object o, EventArgs state) { ResetTimer (); @@ -118,9 +99,7 @@ List messages = new List (); public IEnumerable Messages { - get { - return messages as IEnumerable; - } + get { return messages as IEnumerable; } } uint UpdateTimer { get; set; } @@ -146,17 +125,10 @@ { StopTimer (); - if (!DockServices.System.NetworkConnected) - return; - - if (!IsChecking) { - IsChecking = true; - CheckGMail (); - } + CheckGMail (); UpdateTimer = GLib.Timeout.Add (GMailPreferences.RefreshRate * 60 * 1000, () => { - if (!IsChecking && DockServices.System.NetworkConnected) - CheckGMail (); + CheckGMail (); return true; }); } @@ -180,8 +152,6 @@ request.Credentials = new NetworkCredential (username, password); if (DockServices.System.UseProxy) request.Proxy = DockServices.System.Proxy; - // FIXME: remove when ServicePointManager.ServerCertificateValidationCallback implemented in mono - System.Net.ServicePointManager.CertificatePolicy = new CertHandler (); using (HttpWebResponse response = (HttpWebResponse)request.GetResponse ()) try { } finally { @@ -196,6 +166,9 @@ void CheckGMail () { + if (IsChecking || !DockServices.System.NetworkConnected) + return; + string password = GMailPreferences.Password; if (string.IsNullOrEmpty (GMailPreferences.User) || string.IsNullOrEmpty (password)) { Gtk.Application.Invoke (delegate { @@ -204,6 +177,8 @@ return; } + IsChecking = true; + checkerThread = DockServices.System.RunOnThread (() => { try { Gtk.Application.Invoke (delegate { OnGMailChecking (); }); @@ -223,8 +198,6 @@ request.Credentials = new NetworkCredential (GMailPreferences.User, password); if (DockServices.System.UseProxy) request.Proxy = DockServices.System.Proxy; - // FIXME remove when ServicePointManager.ServerCertificateValidationCallback implemented in mono - System.Net.ServicePointManager.CertificatePolicy = new CertHandler (); XmlDocument xml = new XmlDocument (); XmlNamespaceManager nsmgr = new XmlNamespaceManager (xml.NameTable); @@ -282,7 +255,7 @@ messages = tmp; Gtk.Application.Invoke (delegate { OnGMailChecked (); }); } catch (ThreadAbortException) { - // do nothing + Log.Debug ("Stoping Atom thread"); } catch (NullReferenceException) { Gtk.Application.Invoke (delegate { OnGMailFailed (Catalog.GetString ("Feed Error")); @@ -309,13 +282,14 @@ Gtk.Application.Invoke (delegate { OnGMailFailed (Catalog.GetString ("General Error")); }); + } finally { + IsChecking = false; } }); } void OnGMailChecked () { - IsChecking = false; State = GMailState.Normal; if (GMailChecked != null) GMailChecked (null, EventArgs.Empty); @@ -323,7 +297,6 @@ void OnGMailChecking () { - IsChecking = true; if (State != GMailState.ManualReload) State = GMailState.Reloading; if (GMailChecking != null) @@ -332,10 +305,16 @@ void OnGMailFailed (string error) { - IsChecking = false; State = GMailState.Error; if (GMailFailed != null) GMailFailed (null, new GMailErrorArgs (error)); } + + public void Dispose () + { + StopTimer (); + DockServices.System.ConnectionStatusChanged -= HandleNeedReset; + ResetNeeded -= HandleNeedReset; + } } } diff -Nru docky-2.0.4/StandardPlugins/GMail/src/GMailDockItem.cs docky-2.0.5/StandardPlugins/GMail/src/GMailDockItem.cs --- docky-2.0.4/StandardPlugins/GMail/src/GMailDockItem.cs 2010-05-25 13:20:43.789601796 +0200 +++ docky-2.0.5/StandardPlugins/GMail/src/GMailDockItem.cs 2010-06-26 15:47:36.543229000 +0200 @@ -138,8 +138,7 @@ if (Atom.State != GMailState.Error) return pbuf; - - return DockServices.Drawing.MonochromePixbuf (pbuf); + return pbuf.MonochromePixbuf (); } protected override void PostProcessIconSurface (DockySurface surface) diff -Nru docky-2.0.4/StandardPlugins/Makefile.in docky-2.0.5/StandardPlugins/Makefile.in --- docky-2.0.4/StandardPlugins/Makefile.in 2010-05-31 08:00:11.205621367 +0200 +++ docky-2.0.5/StandardPlugins/Makefile.in 2010-07-01 19:05:32.275184001 +0200 @@ -203,6 +203,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/StandardPlugins/Mounter/Makefile.in docky-2.0.5/StandardPlugins/Mounter/Makefile.in --- docky-2.0.4/StandardPlugins/Mounter/Makefile.in 2010-05-31 08:00:11.255621566 +0200 +++ docky-2.0.5/StandardPlugins/Mounter/Makefile.in 2010-07-01 19:05:32.335184001 +0200 @@ -199,6 +199,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/StandardPlugins/Mounter/src/MountItem.cs docky-2.0.5/StandardPlugins/Mounter/src/MountItem.cs --- docky-2.0.4/StandardPlugins/Mounter/src/MountItem.cs 2010-02-14 19:56:42.000000000 +0100 +++ docky-2.0.5/StandardPlugins/Mounter/src/MountItem.cs 2010-06-26 15:47:36.543229000 +0200 @@ -1,5 +1,6 @@ // // Copyright (C) 2009 Chris Szikszoy +// Copyright (C) 2010 Robert Dyer // // 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 @@ -29,10 +30,8 @@ namespace Mounter { - public class MountItem : FileDockItem { - #region IconDockItem implementation public override string UniqueID () @@ -42,6 +41,8 @@ #endregion + public Mount Mnt { get; private set; } + public MountItem (Mount mount) : base (mount.Root.StringUri ()) { Mnt = mount; @@ -50,10 +51,13 @@ HoverText = Mnt.Name; - Mnt.Changed += (o, a) => SetIconFromGIcon (Mnt.Icon); + Mnt.Changed += HandleMountChanged; } - public Mount Mnt { get; private set; } + void HandleMountChanged (object o, EventArgs args) + { + SetIconFromGIcon (Mnt.Icon); + } protected override ClickAnimation OnClicked (uint button, Gdk.ModifierType mod, double xPercent, double yPercent) { @@ -65,42 +69,55 @@ return ClickAnimation.None; } - public void UnMount () + public bool UnMount () { + bool successful = false; if (Mnt.CanEject ()) Mnt.EjectWithOperation (MountUnmountFlags.Force, new Gtk.MountOperation (null), null, (s, result) => { try { if (!Mnt.EjectWithOperationFinish (result)) Log.Error ("Failed to eject {0}", Mnt.Name); + else + successful = true; } catch (Exception e) { Log.Error ("An error when ejecting {0} was encountered: {1}", Mnt.Name, e.Message); Log.Debug (e.StackTrace); } }); - else + else if (Mnt.CanUnmount) Mnt.UnmountWithOperation (MountUnmountFlags.Force, new Gtk.MountOperation (null), null, (s, result) => { try { if (!Mnt.UnmountWithOperationFinish (result)) Log.Error ("Failed to unmount {0}", Mnt.Name); + else + successful = true; } catch (Exception e) { Log.Error ("An error when unmounting {0} was encountered: {1}", Mnt.Name, e.Message); Log.Debug (e.StackTrace); } }); + return successful; } protected override MenuList OnGetMenuItems () { MenuList list = new MenuList (); + list[MenuListContainer.Actions].Add (new MenuItem (Catalog.GetString ("_Open"), Icon, (o, a) => Open ())); - if (Mnt.CanEject () || Mnt.CanUnmount) { - string removeLabel = (Mnt.CanEject ()) ? Catalog.GetString ("_Eject") : Catalog.GetString ("_Unmount"); - list[MenuListContainer.Actions].Add (new MenuItem (removeLabel, "media-eject", (o, a) => UnMount ())); - } + + if (Mnt.CanEject () || Mnt.CanUnmount) + list[MenuListContainer.Actions].Add (new MenuItem (Mnt.CanEject () ? Catalog.GetString ("_Eject") : Catalog.GetString ("_Unmount"), "media-eject", (o, a) => UnMount ())); return list; } + + public override void Dispose () + { + Mnt.Changed -= HandleMountChanged; + + base.Dispose (); + } } } diff -Nru docky-2.0.4/StandardPlugins/Mounter/src/MountProvider.cs docky-2.0.5/StandardPlugins/Mounter/src/MountProvider.cs --- docky-2.0.4/StandardPlugins/Mounter/src/MountProvider.cs 2010-04-11 08:14:01.044105312 +0200 +++ docky-2.0.5/StandardPlugins/Mounter/src/MountProvider.cs 2010-06-30 07:50:13.400310994 +0200 @@ -44,6 +44,9 @@ { foreach (MountItem m in Mounts) m.Dispose (); + + Monitor.MountAdded -= HandleMountAdded; + Monitor.MountRemoved -= HandleMountRemoved; } #endregion @@ -94,7 +97,7 @@ // FIXME: due to a bug in GIO#, this will crash when trying to get args.Mount Mount m = MountAdapter.GetObject (args.Args[0] as GLib.Object); - if (!IsTrash (m) && Mounts.Any (d => d.Mnt.Handle == m.Handle)) { + if (Mounts.Any (d => d.Mnt.Handle == m.Handle)) { MountItem mntToRemove = Mounts.First (d => d.Mnt.Handle == m.Handle); Mounts.Remove (mntToRemove); SetItems (); @@ -105,8 +108,10 @@ // determine if the mount should be handled or not bool IsTrash (Mount m) - { - return m == null || (m.Volume == null && m.Root != null && m.Root.Path != null && m.Root.Path.Contains ("cdda")); + { + return m == null + || (m.Root != null && Mounts.Find (mnt => mnt.Mnt.Root != null && mnt.Mnt.Root.StringUri () == m.Root.StringUri ()) != null) + || (m.Root == null && Mounts.Find (mnt => mnt.Mnt.Root == null && mnt.Mnt.Handle == m.Handle) != null); } public override bool ItemCanBeRemoved (AbstractDockItem item) @@ -116,11 +121,9 @@ public override bool RemoveItem (AbstractDockItem item) { - Mounts.Remove (item as MountItem); - SetItems (); - (item as MountItem).UnMount (); - - return true; + if ((item as MountItem).UnMount ()) + return base.RemoveItem (item); + return false; } } } diff -Nru docky-2.0.4/StandardPlugins/NetworkManager/Makefile.in docky-2.0.5/StandardPlugins/NetworkManager/Makefile.in --- docky-2.0.4/StandardPlugins/NetworkManager/Makefile.in 2010-05-31 08:00:11.355621432 +0200 +++ docky-2.0.5/StandardPlugins/NetworkManager/Makefile.in 2010-07-01 19:05:32.475184001 +0200 @@ -199,6 +199,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/StandardPlugins/NetworkManager/src/ConnectionManager.cs docky-2.0.5/StandardPlugins/NetworkManager/src/ConnectionManager.cs --- docky-2.0.4/StandardPlugins/NetworkManager/src/ConnectionManager.cs 2010-02-14 19:56:42.000000000 +0100 +++ docky-2.0.5/StandardPlugins/NetworkManager/src/ConnectionManager.cs 2010-06-26 15:47:36.543229000 +0200 @@ -1,5 +1,6 @@ // // Copyright (C) 2009 Chris Szikszoy +// Copyright (C) 2010 Robert Dyer // // 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 @@ -22,6 +23,8 @@ using NDesk.DBus; using org.freedesktop.DBus; +using Docky.Services; + namespace NetworkManagerDocklet { public class ConnectionManager @@ -71,34 +74,44 @@ { lock (SystemConnections) { SystemConnections.Clear (); - foreach (string con in SystemConnectionManager.BusObject.ListConnections ()) - { - NetworkConnection connection = new NetworkConnection (SystemBus, con, ConnectionOwner.System); - if (connection.Settings.ContainsKey ("802-11-wireless")) - connection = new WirelessConnection (SystemBus, con, ConnectionOwner.System); - else if (connection.Settings.ContainsKey ("802-3-ethernet")) - connection = new WiredConnection (SystemBus, con, ConnectionOwner.System); - else - continue; - //connection.ConnectionRemoved += OnNetworkConnectionRemoved; - SystemConnections.Add (connection); + try { + foreach (string con in SystemConnectionManager.BusObject.ListConnections ()) + { + NetworkConnection connection = new NetworkConnection (SystemBus, con, ConnectionOwner.System); + if (connection.Settings.ContainsKey ("802-11-wireless")) + connection = new WirelessConnection (SystemBus, con, ConnectionOwner.System); + else if (connection.Settings.ContainsKey ("802-3-ethernet")) + connection = new WiredConnection (SystemBus, con, ConnectionOwner.System); + else + continue; + //connection.ConnectionRemoved += OnNetworkConnectionRemoved; + SystemConnections.Add (connection); + } + } catch (Exception e) { + Log.Error (e.Message); + Log.Debug (e.StackTrace); } } lock (UserConnections) { UserConnections.Clear (); - foreach (string con in UserConnectionManager.BusObject.ListConnections ()) - { - NetworkConnection connection = new NetworkConnection (UserBus, con, ConnectionOwner.User); - if (connection.Settings.ContainsKey ("802-11-wireless")) - connection = new WirelessConnection (UserBus, con, ConnectionOwner.User); - else if (connection.Settings.ContainsKey ("802-3-ethernet")) - connection = new WiredConnection (UserBus, con, ConnectionOwner.User); - else - continue; - - //connection.ConnectionRemoved += OnNetworkConnectionRemoved; - UserConnections.Add (connection); + try { + foreach (string con in UserConnectionManager.BusObject.ListConnections ()) + { + NetworkConnection connection = new NetworkConnection (UserBus, con, ConnectionOwner.User); + if (connection.Settings.ContainsKey ("802-11-wireless")) + connection = new WirelessConnection (UserBus, con, ConnectionOwner.User); + else if (connection.Settings.ContainsKey ("802-3-ethernet")) + connection = new WiredConnection (UserBus, con, ConnectionOwner.User); + else + continue; + + //connection.ConnectionRemoved += OnNetworkConnectionRemoved; + UserConnections.Add (connection); + } + } catch (Exception e) { + Log.Error (e.Message); + Log.Debug (e.StackTrace); } } } diff -Nru docky-2.0.4/StandardPlugins/NetworkManager/src/NetworkManagerDocklet.cs docky-2.0.5/StandardPlugins/NetworkManager/src/NetworkManagerDocklet.cs --- docky-2.0.4/StandardPlugins/NetworkManager/src/NetworkManagerDocklet.cs 2010-02-14 19:56:42.000000000 +0100 +++ docky-2.0.5/StandardPlugins/NetworkManager/src/NetworkManagerDocklet.cs 2010-06-26 15:47:36.543229000 +0200 @@ -122,15 +122,15 @@ string APIconFromStrength (byte strength) { - string icon = "gnome-netstatus-{0}"; + string icon = "network-wireless-connected-{0};;gnome-netstatus-{1};;nm-signal-{0}"; if (strength >= 75) - icon = string.Format (icon, "75-100"); + icon = string.Format (icon, "75", "75-100"); else if (strength >= 50) - icon = string.Format (icon, "50-74"); + icon = string.Format (icon, "50", "50-74"); else if (strength >= 25) - icon = string.Format (icon, "25-49"); + icon = string.Format (icon, "25", "25-49"); else - icon = string.Format (icon, "0-24"); + icon = string.Format (icon, "00", "0-24"); return icon; } diff -Nru docky-2.0.4/StandardPlugins/NPR/Makefile.in docky-2.0.5/StandardPlugins/NPR/Makefile.in --- docky-2.0.4/StandardPlugins/NPR/Makefile.in 2010-05-31 08:00:11.305621395 +0200 +++ docky-2.0.5/StandardPlugins/NPR/Makefile.in 2010-07-01 19:05:32.405184001 +0200 @@ -199,6 +199,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/StandardPlugins/NPR/src/NPRItemProvider.cs docky-2.0.5/StandardPlugins/NPR/src/NPRItemProvider.cs --- docky-2.0.4/StandardPlugins/NPR/src/NPRItemProvider.cs 2010-02-14 19:56:42.000000000 +0100 +++ docky-2.0.5/StandardPlugins/NPR/src/NPRItemProvider.cs 2010-06-26 15:47:36.543229000 +0200 @@ -1,5 +1,6 @@ // // Copyright (C) 2009 Chris Szikszoy +// Copyright (C) 2010 Robert Dyer // // 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 @@ -80,20 +81,18 @@ StationDockItem sdi = items.Cast ().Where (s => s.OwnedStation == station).First (); items.Remove (sdi); - Items = items; - - sdi.Dispose (); MaybeAddNullStation (); + Items = items; + + sdi.Dispose (); } void MaybeAddNullStation () { if (items.Count () == 0) items.Add (new StationDockItem (NPR.LookupStation (-1))); - - Items = items; } public void ReloadStations () @@ -101,12 +100,12 @@ items.Clear (); NPR.MyStations.ToList ().ForEach (s => { - items.Add (new StationDockItem (NPR.LookupStation (s))); + items.Add (new StationDockItem (NPR.LookupStation (s))); }); - - Items = items; MaybeAddNullStation (); + + Items = items; } } } diff -Nru docky-2.0.4/StandardPlugins/NPR/src/Station.cs docky-2.0.5/StandardPlugins/NPR/src/Station.cs --- docky-2.0.4/StandardPlugins/NPR/src/Station.cs 2010-05-28 16:49:50.255126135 +0200 +++ docky-2.0.5/StandardPlugins/NPR/src/Station.cs 2010-06-26 15:47:36.543229000 +0200 @@ -64,8 +64,7 @@ public Station (int id) { IsLoaded = false; - Icon = DefaultLogo = "nprlogo.gif@" + GetType ().Assembly.FullName; - DockServices.System.ConnectionStatusChanged += HandleConnectionStatusChanged; + ForcePixbuf = DockServices.Drawing.LoadIcon ("nprlogo.gif@" + GetType ().Assembly.FullName, 128, -1); ID = id; if (ID > 0) { @@ -132,7 +131,7 @@ // delete the bad logofile, if it exists if (System.IO.File.Exists (LogoFile)) System.IO.File.Delete (LogoFile); - Icon = DefaultLogo; + ForcePixbuf = DockServices.Drawing.LoadIcon ("nprlogo.gif@" + GetType ().Assembly.FullName, 128, -1); } IsLoaded = true; diff -Nru docky-2.0.4/StandardPlugins/NPR/src/StationDockItem.cs docky-2.0.5/StandardPlugins/NPR/src/StationDockItem.cs --- docky-2.0.4/StandardPlugins/NPR/src/StationDockItem.cs 2010-05-28 16:49:50.266377057 +0200 +++ docky-2.0.5/StandardPlugins/NPR/src/StationDockItem.cs 2010-06-26 15:47:36.543229000 +0200 @@ -47,7 +47,10 @@ OwnedStation = station; - Icon = OwnedStation.Icon; + if (OwnedStation.ForcePixbuf != null) + ForcePixbuf = OwnedStation.ForcePixbuf.Copy (); + else + Icon = OwnedStation.Icon; OwnedStation.FinishedLoading += delegate { SetInfo (); @@ -59,7 +62,10 @@ void SetInfo () { - Icon = OwnedStation.Icon; + if (OwnedStation.ForcePixbuf != null) + ForcePixbuf = OwnedStation.ForcePixbuf.Copy (); + else + Icon = OwnedStation.Icon; string hover = (string.IsNullOrEmpty (OwnedStation.Description)) ? OwnedStation.Name : string.Format ("{0} : {1}", OwnedStation.Name, OwnedStation.Description); if (OwnedStation.ID < 1) diff -Nru docky-2.0.4/StandardPlugins/RecentDocuments/Makefile.in docky-2.0.5/StandardPlugins/RecentDocuments/Makefile.in --- docky-2.0.4/StandardPlugins/RecentDocuments/Makefile.in 2010-05-31 08:00:11.415621454 +0200 +++ docky-2.0.5/StandardPlugins/RecentDocuments/Makefile.in 2010-07-01 19:05:32.535184001 +0200 @@ -199,6 +199,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/StandardPlugins/RecentDocuments/src/RecentDocumentsItem.cs docky-2.0.5/StandardPlugins/RecentDocuments/src/RecentDocumentsItem.cs --- docky-2.0.4/StandardPlugins/RecentDocuments/src/RecentDocumentsItem.cs 2010-05-25 13:11:18.425680210 +0200 +++ docky-2.0.5/StandardPlugins/RecentDocuments/src/RecentDocumentsItem.cs 2010-06-30 10:26:14.750310993 +0200 @@ -1,5 +1,6 @@ // -// Copyright (C) 2009 Jason Smith +// Copyright (C) 2009 Chris Szikszoy, Robert Dyer +// Copyright (C) 2010 Robert Dyer // // 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 @@ -40,6 +41,8 @@ #endregion + public bool CanClear { get; protected set; } + const int NumRecentDocs = 7; List RecentDocs; @@ -59,7 +62,9 @@ currentFile = value; if (watcher != null) { + watcher.Cancel (); watcher.Changed -= WatcherChanged; + watcher.Dispose (); watcher = null; } @@ -88,8 +93,11 @@ void RefreshRecentDocs () { GLib.List recent_items = new GLib.List (Gtk.RecentManager.Default.Items.Handle, typeof(Gtk.RecentInfo)); + CanClear = recent_items.Cast ().Count () != 0; lock (RecentDocs) { + foreach (FileDockItem f in RecentDocs) + f.Dispose (); RecentDocs.Clear (); RecentDocs.AddRange (recent_items.Cast () @@ -177,7 +185,11 @@ public override void Dispose () { + foreach (FileDockItem f in RecentDocs) + f.Dispose (); + RecentDocs.Clear (); if (watcher != null) { + watcher.Cancel (); watcher.Changed -= WatcherChanged; watcher.Dispose (); } diff -Nru docky-2.0.4/StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs docky-2.0.5/StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs --- docky-2.0.4/StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs 2010-04-11 08:14:01.055356325 +0200 +++ docky-2.0.5/StandardPlugins/RecentDocuments/src/RecentDocumentsItemProvider.cs 2010-06-30 10:29:37.660310992 +0200 @@ -113,7 +113,7 @@ public override MenuList GetMenuItems (AbstractDockItem item) { MenuList list = base.GetMenuItems (item); - list[MenuListContainer.Footer].Add (new Docky.Menus.MenuItem (Catalog.GetString ("_Clear Recent Documents..."), "edit-clear", (o, a) => ClearRecent ())); + list[MenuListContainer.Footer].Add (new Docky.Menus.MenuItem (Catalog.GetString ("_Clear Recent Documents..."), "edit-clear", (o, a) => ClearRecent (), !docs.CanClear)); return list; } } diff -Nru docky-2.0.4/StandardPlugins/Trash/Makefile.in docky-2.0.5/StandardPlugins/Trash/Makefile.in --- docky-2.0.4/StandardPlugins/Trash/Makefile.in 2010-05-31 08:00:11.465621364 +0200 +++ docky-2.0.5/StandardPlugins/Trash/Makefile.in 2010-07-01 19:05:32.605184001 +0200 @@ -199,6 +199,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/StandardPlugins/Trash/src/TrashDockItem.cs docky-2.0.5/StandardPlugins/Trash/src/TrashDockItem.cs --- docky-2.0.4/StandardPlugins/Trash/src/TrashDockItem.cs 2010-05-25 19:00:18.626114291 +0200 +++ docky-2.0.5/StandardPlugins/Trash/src/TrashDockItem.cs 2010-06-26 15:47:36.543229000 +0200 @@ -232,5 +232,14 @@ OnPaintNeeded (); }); } + + public override void Dispose () + { + TrashMonitor.Cancel (); + TrashMonitor.Changed -= HandleChanged; + TrashMonitor.Dispose (); + + base.Dispose (); + } } } diff -Nru docky-2.0.4/StandardPlugins/Weather/Makefile.in docky-2.0.5/StandardPlugins/Weather/Makefile.in --- docky-2.0.4/StandardPlugins/Weather/Makefile.in 2010-05-31 08:00:11.515621367 +0200 +++ docky-2.0.5/StandardPlugins/Weather/Makefile.in 2010-07-01 19:05:32.675184001 +0200 @@ -199,6 +199,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ diff -Nru docky-2.0.4/StandardPlugins/Weather/src/Sources/WeatherChannelWeatherSource.cs docky-2.0.5/StandardPlugins/Weather/src/Sources/WeatherChannelWeatherSource.cs --- docky-2.0.4/StandardPlugins/Weather/src/Sources/WeatherChannelWeatherSource.cs 2010-02-14 19:56:42.000000000 +0100 +++ docky-2.0.5/StandardPlugins/Weather/src/Sources/WeatherChannelWeatherSource.cs 2010-06-26 15:47:36.543229000 +0200 @@ -167,12 +167,12 @@ int temp; Int32.TryParse (item.SelectSingleNode ("tmp").InnerText, out temp); Temp = temp; + FeelsLike = temp; if (!item.SelectSingleNode ("flik").InnerText.Equals ("N/A")) { Int32.TryParse (item.SelectSingleNode ("flik").InnerText, out temp); FeelsLike = temp; - } else - FeelsLike = Temp; + } Int32.TryParse(item.SelectSingleNode ("wind").SelectSingleNode ("s").InnerText, out temp); Wind = temp; diff -Nru docky-2.0.4/StandardPlugins/Weather/src/Sources/WunderWeatherSource.cs docky-2.0.5/StandardPlugins/Weather/src/Sources/WunderWeatherSource.cs --- docky-2.0.4/StandardPlugins/Weather/src/Sources/WunderWeatherSource.cs 2010-02-14 19:56:42.000000000 +0100 +++ docky-2.0.5/StandardPlugins/Weather/src/Sources/WunderWeatherSource.cs 2010-06-26 15:47:36.543229000 +0200 @@ -190,9 +190,11 @@ double tmp; Double.TryParse(item.SelectSingleNode ("temp_f").InnerText, NumberStyles.Any, CultureInfo.GetCultureInfo("en-US"), out tmp); Temp = (int)tmp; + FeelsLike = (int)tmp; } else { Int32.TryParse (item.SelectSingleNode ("temp_f").InnerText, out temp); Temp = temp; + FeelsLike = temp; } if (!item.SelectSingleNode ("heat_index_f").InnerText.Equals ("NA") && item.SelectSingleNode ("heat_index_f").InnerText.Length > 0) { @@ -201,8 +203,7 @@ } else if (!item.SelectSingleNode ("windchill_f").InnerText.Equals ("NA") && item.SelectSingleNode ("windchill_f").InnerText.Length > 0) { Int32.TryParse (item.SelectSingleNode ("windchill_f").InnerText, out temp); FeelsLike = temp; - } else - FeelsLike = Temp; + } Int32.TryParse (item.SelectSingleNode ("wind_mph").InnerText, out temp); Wind = temp; diff -Nru docky-2.0.4/StandardPlugins/Weather/src/WeatherDocklet.cs docky-2.0.5/StandardPlugins/Weather/src/WeatherDocklet.cs --- docky-2.0.4/StandardPlugins/Weather/src/WeatherDocklet.cs 2010-03-09 12:08:41.000000000 +0100 +++ docky-2.0.5/StandardPlugins/Weather/src/WeatherDocklet.cs 2010-06-26 15:47:36.543229000 +0200 @@ -152,30 +152,35 @@ int size = Math.Min (surface.Width, surface.Height); Context cr = surface.Context; - Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout (); - layout.FontDescription = new Gtk.Style().FontDescription; - layout.FontDescription.Weight = Pango.Weight.Bold; - layout.Ellipsize = Pango.EllipsizeMode.None; - - Pango.Rectangle inkRect, logicalRect; - - layout.Width = Pango.Units.FromPixels (size); - layout.SetText (WeatherController.Weather.Temp + WeatherUnits.TempUnit); - if (IsSmall) - layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels ((int) (size / 2.5)); - else - layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels ((int) (size / 3.5)); - - layout.GetPixelExtents (out inkRect, out logicalRect); - cr.MoveTo ((size - inkRect.Width) / 2, size - logicalRect.Height); - - Pango.CairoHelper.LayoutPath (cr, layout); - cr.LineWidth = 2; - cr.Color = new Cairo.Color (0, 0, 0, 0.8); - cr.StrokePreserve (); - - cr.Color = new Cairo.Color (1, 1, 1, 0.8); - cr.Fill (); + using (Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout ()) + { + layout.FontDescription = new Gtk.Style().FontDescription; + layout.FontDescription.Weight = Pango.Weight.Bold; + layout.Ellipsize = Pango.EllipsizeMode.None; + + Pango.Rectangle inkRect, logicalRect; + + layout.Width = Pango.Units.FromPixels (size); + layout.SetText (WeatherController.Weather.Temp + WeatherUnits.TempUnit); + if (IsSmall) + layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels ((int) (size / 2.5)); + else + layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels ((int) (size / 3.5)); + + layout.GetPixelExtents (out inkRect, out logicalRect); + cr.MoveTo ((size - inkRect.Width) / 2, size - logicalRect.Height); + + Pango.CairoHelper.LayoutPath (cr, layout); + cr.LineWidth = 2; + cr.Color = new Cairo.Color (0, 0, 0, 0.8); + cr.StrokePreserve (); + + cr.Color = new Cairo.Color (1, 1, 1, 0.8); + cr.Fill (); + + layout.FontDescription.Dispose (); + layout.Context.Dispose (); + } } protected override Gdk.Pixbuf ProcessPixbuf (Gdk.Pixbuf pbuf) @@ -183,7 +188,7 @@ if (Status != WeatherDockletStatus.Error && Status != WeatherDockletStatus.Initializing) return pbuf; - return DockServices.Drawing.MonochromePixbuf (pbuf); + return pbuf.MonochromePixbuf (); } protected override ClickAnimation OnClicked (uint button, Gdk.ModifierType mod, double xPercent, double yPercent) diff -Nru docky-2.0.4/StandardPlugins/Weather/src/WeatherPainter.cs docky-2.0.5/StandardPlugins/Weather/src/WeatherPainter.cs --- docky-2.0.4/StandardPlugins/Weather/src/WeatherPainter.cs 2010-02-14 19:56:42.000000000 +0100 +++ docky-2.0.5/StandardPlugins/Weather/src/WeatherPainter.cs 2010-06-26 15:47:36.543229000 +0200 @@ -1,5 +1,6 @@ // // Copyright (C) 2009 GNOME Do +// Copyright (C) 2010 Robert Dyer // // 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 @@ -99,65 +100,71 @@ void DrawForecast (Cairo.Context cr) { int xOffset = BUTTON_SIZE; + int cellWidth = (Allocation.Width - 2 * BUTTON_SIZE) / (WeatherController.Weather.ForecastDays * 2); - Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout (); - Pango.Rectangle inkRect, logicalRect; - - layout.FontDescription = new Gtk.Style().FontDescription; - layout.FontDescription.Weight = Pango.Weight.Bold; - layout.Ellipsize = Pango.EllipsizeMode.None; - layout.Width = Pango.Units.FromPixels (Allocation.Height); - - for (int day = 0; day < WeatherController.Weather.ForecastDays; day++) + using (Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout ()) { - layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels ((int) (Allocation.Height / 5)); + Pango.Rectangle inkRect, logicalRect; - cr.Color = colorTitle; - layout.SetText (string.Format ("{0}", WeatherForecast.DayShortName (WeatherController.Weather.Forecasts [day].dow))); - layout.GetPixelExtents (out inkRect, out logicalRect); - cr.MoveTo (xOffset + (Allocation.Height - inkRect.Width) / 2, 0); - Pango.CairoHelper.LayoutPath (cr, layout); - cr.Fill (); + layout.FontDescription = new Gtk.Style().FontDescription; + layout.FontDescription.Weight = Pango.Weight.Bold; + layout.Ellipsize = Pango.EllipsizeMode.None; + layout.Width = Pango.Units.FromPixels (cellWidth); - cr.Color = colorHigh; - layout.SetText (string.Format ("{0}{1}", WeatherController.Weather.Forecasts [day].high, WeatherUnits.TempUnit)); - layout.GetPixelExtents (out inkRect, out logicalRect); - cr.MoveTo (xOffset + (Allocation.Height - inkRect.Width) / 2, Allocation.Height / 2 - logicalRect.Height / 2); - Pango.CairoHelper.LayoutPath (cr, layout); - cr.Fill (); - - cr.Color = colorLow; - layout.SetText (string.Format ("{0}{1}", WeatherController.Weather.Forecasts [day].low, WeatherUnits.TempUnit)); - layout.GetPixelExtents (out inkRect, out logicalRect); - cr.MoveTo (xOffset + (Allocation.Height - inkRect.Width) / 2, Allocation.Height - logicalRect.Height); - Pango.CairoHelper.LayoutPath (cr, layout); - cr.Fill (); - - using (Gdk.Pixbuf pbuf = DockServices.Drawing.LoadIcon (WeatherController.Weather.Forecasts [day].image, Allocation.Height - 5)) + for (int day = 0; day < WeatherController.Weather.ForecastDays; day++) { - Gdk.CairoHelper.SetSourcePixbuf (cr, pbuf, xOffset + Allocation.Height + 2, 5); - cr.PaintWithAlpha (WeatherController.Weather.Forecasts [day].chanceOf ? .6 : 1); - } - - if (WeatherController.Weather.Forecasts [day].chanceOf) - { - layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels ((int) (Allocation.Height / 2)); - - layout.SetText ("?"); + layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels ((int) (cellWidth / 5)); + cr.Color = colorTitle; + layout.SetText (string.Format ("{0}", WeatherForecast.DayShortName (WeatherController.Weather.Forecasts [day].dow))); layout.GetPixelExtents (out inkRect, out logicalRect); - cr.MoveTo (xOffset + Allocation.Height + (Allocation.Height - inkRect.Width) / 2, Allocation.Height / 2 - logicalRect.Height / 2); + cr.MoveTo (xOffset + (cellWidth - inkRect.Width) / 2, 0); + Pango.CairoHelper.LayoutPath (cr, layout); + cr.Fill (); - cr.LineWidth = 4; - cr.Color = new Cairo.Color (0, 0, 0, 0.3); + cr.Color = colorHigh; + layout.SetText (string.Format ("{0}{1}", WeatherController.Weather.Forecasts [day].high, WeatherUnits.TempUnit)); + layout.GetPixelExtents (out inkRect, out logicalRect); + cr.MoveTo (xOffset + (cellWidth - inkRect.Width) / 2, Allocation.Height / 2 - logicalRect.Height / 2); Pango.CairoHelper.LayoutPath (cr, layout); - cr.StrokePreserve (); + cr.Fill (); - cr.Color = new Cairo.Color (1, 1, 1, .6); + cr.Color = colorLow; + layout.SetText (string.Format ("{0}{1}", WeatherController.Weather.Forecasts [day].low, WeatherUnits.TempUnit)); + layout.GetPixelExtents (out inkRect, out logicalRect); + cr.MoveTo (xOffset + (cellWidth - inkRect.Width) / 2, Allocation.Height - logicalRect.Height); + Pango.CairoHelper.LayoutPath (cr, layout); cr.Fill (); + + using (Gdk.Pixbuf pbuf = DockServices.Drawing.LoadIcon (WeatherController.Weather.Forecasts [day].image, cellWidth - 5)) + { + Gdk.CairoHelper.SetSourcePixbuf (cr, pbuf, xOffset + cellWidth + 2, 5 + (Allocation.Height - cellWidth) / 2); + cr.PaintWithAlpha (WeatherController.Weather.Forecasts [day].chanceOf ? .6 : 1); + } + + if (WeatherController.Weather.Forecasts [day].chanceOf) + { + layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels ((int) (cellWidth / 2)); + + layout.SetText ("?"); + + layout.GetPixelExtents (out inkRect, out logicalRect); + cr.MoveTo (xOffset + cellWidth + (cellWidth - inkRect.Width) / 2, Allocation.Height / 2 - logicalRect.Height / 2); + + cr.LineWidth = 4; + cr.Color = new Cairo.Color (0, 0, 0, 0.3); + Pango.CairoHelper.LayoutPath (cr, layout); + cr.StrokePreserve (); + + cr.Color = new Cairo.Color (1, 1, 1, .6); + cr.Fill (); + } + + xOffset += 2 * cellWidth; } - xOffset += 2 * (Allocation.Height); + layout.FontDescription.Dispose (); + layout.Context.Dispose (); } } @@ -186,43 +193,48 @@ if (max <= min) return; - Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout (); - Pango.Rectangle inkRect, logicalRect; - - layout.FontDescription = new Gtk.Style().FontDescription; - layout.FontDescription.Weight = Pango.Weight.Bold; - layout.Ellipsize = Pango.EllipsizeMode.None; - layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels ((int) (Allocation.Height / 5)); - - // high/low temp - layout.Width = Pango.Units.FromPixels (Allocation.Height); - cr.Color = colorHigh; - layout.SetText (string.Format ("{0}{1}", max, WeatherUnits.TempUnit)); - layout.GetPixelExtents (out inkRect, out logicalRect); - cr.MoveTo (Allocation.Width - Allocation.Height + (Allocation.Height - inkRect.Width) / 2 - BUTTON_SIZE, Allocation.Height / 6 - logicalRect.Height / 2); - Pango.CairoHelper.LayoutPath (cr, layout); - cr.Fill (); - - cr.Color = colorLow; - layout.SetText (string.Format ("{0}{1}", min, WeatherUnits.TempUnit)); - layout.GetPixelExtents (out inkRect, out logicalRect); - cr.MoveTo (Allocation.Width - Allocation.Height + (Allocation.Height - inkRect.Width) / 2 - BUTTON_SIZE, Allocation.Height * 6 / 9 - logicalRect.Height / 2); - Pango.CairoHelper.LayoutPath (cr, layout); - cr.Fill (); - - // day names - layout.Width = Pango.Units.FromPixels (2 * Allocation.Height); - - cr.Color = colorTitle; - for (int day = 0; day < WeatherController.Weather.ForecastDays; day++) + using (Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout ()) { - layout.SetText (WeatherForecast.DayShortName (WeatherController.Weather.Forecasts [day].dow)); + Pango.Rectangle inkRect, logicalRect; + + layout.FontDescription = new Gtk.Style().FontDescription; + layout.FontDescription.Weight = Pango.Weight.Bold; + layout.Ellipsize = Pango.EllipsizeMode.None; + layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels ((int) (Allocation.Height / 5)); + + // high/low temp + layout.Width = Pango.Units.FromPixels (Allocation.Height); + cr.Color = colorHigh; + layout.SetText (string.Format ("{0}{1}", max, WeatherUnits.TempUnit)); layout.GetPixelExtents (out inkRect, out logicalRect); - cr.MoveTo (BUTTON_SIZE + day * Allocation.Height * 2 + (Allocation.Height - inkRect.Width) / 2, Allocation.Height * 8 / 9 - logicalRect.Height / 2); + cr.MoveTo (Allocation.Width - Allocation.Height + (Allocation.Height - inkRect.Width) / 2 - BUTTON_SIZE, Allocation.Height / 6 - logicalRect.Height / 2); Pango.CairoHelper.LayoutPath (cr, layout); + cr.Fill (); + + cr.Color = colorLow; + layout.SetText (string.Format ("{0}{1}", min, WeatherUnits.TempUnit)); + layout.GetPixelExtents (out inkRect, out logicalRect); + cr.MoveTo (Allocation.Width - Allocation.Height + (Allocation.Height - inkRect.Width) / 2 - BUTTON_SIZE, Allocation.Height * 6 / 9 - logicalRect.Height / 2); + Pango.CairoHelper.LayoutPath (cr, layout); + cr.Fill (); + + // day names + layout.Width = Pango.Units.FromPixels (2 * Allocation.Height); + + cr.Color = colorTitle; + for (int day = 0; day < WeatherController.Weather.ForecastDays; day++) + { + layout.SetText (WeatherForecast.DayShortName (WeatherController.Weather.Forecasts [day].dow)); + layout.GetPixelExtents (out inkRect, out logicalRect); + cr.MoveTo (BUTTON_SIZE + day * Allocation.Height * 2 + (Allocation.Height - inkRect.Width) / 2, Allocation.Height * 8 / 9 - logicalRect.Height / 2); + Pango.CairoHelper.LayoutPath (cr, layout); + } + cr.Fill (); + cr.Save (); + + layout.FontDescription.Dispose (); + layout.Context.Dispose (); } - cr.Fill (); - cr.Save (); // draw tick lines cr.Color = new Cairo.Color (0.627, 0.627, 0.627, .8); @@ -290,23 +302,28 @@ /// void DrawCurrentCondition (Cairo.Context cr) { - Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout (); - Pango.Rectangle inkRect, logicalRect; - - layout.FontDescription = new Gtk.Style().FontDescription; - layout.FontDescription.Weight = Pango.Weight.Bold; - layout.Ellipsize = Pango.EllipsizeMode.None; - layout.Width = Pango.Units.FromPixels ((int) ((Allocation.Width - 4 * BUTTON_SIZE) / 4.5)); - - layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels ((int) (Allocation.Height / 3)); - - cr.Color = new Cairo.Color (1, 1, 1, 1); - - layout.SetText (WeatherController.Weather.City); - layout.GetPixelExtents (out inkRect, out logicalRect); - cr.MoveTo (2 * BUTTON_SIZE, Allocation.Height / 3.5 - logicalRect.Height / 2); - Pango.CairoHelper.LayoutPath (cr, layout); - cr.Fill (); + using (Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout ()) + { + Pango.Rectangle inkRect, logicalRect; + + layout.FontDescription = new Gtk.Style().FontDescription; + layout.FontDescription.Weight = Pango.Weight.Bold; + layout.Ellipsize = Pango.EllipsizeMode.None; + layout.Width = Pango.Units.FromPixels ((int) ((Allocation.Width - 4 * BUTTON_SIZE) / 4.5)); + + layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels ((int) (Allocation.Height / 3)); + + cr.Color = new Cairo.Color (1, 1, 1, 1); + + layout.SetText (WeatherController.Weather.City); + layout.GetPixelExtents (out inkRect, out logicalRect); + cr.MoveTo (2 * BUTTON_SIZE, Allocation.Height / 3.5 - logicalRect.Height / 2); + Pango.CairoHelper.LayoutPath (cr, layout); + cr.Fill (); + + layout.FontDescription.Dispose (); + layout.Context.Dispose (); + } DrawCondition (cr, WeatherController.Weather.SupportsFeelsLike ? 1 : 2, 2, Catalog.GetString ("Humidity"), WeatherController.Weather.Humidity); @@ -325,36 +342,41 @@ { int xWidth = (Allocation.Width - 4 * BUTTON_SIZE) / 8; - Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout (); - Pango.Rectangle inkRect, logicalRect; - - layout.FontDescription = new Gtk.Style().FontDescription; - layout.FontDescription.Weight = Pango.Weight.Bold; - layout.Ellipsize = Pango.EllipsizeMode.None; - layout.Width = Pango.Units.FromPixels (xWidth); - - if (WeatherController.Weather.ForecastDays < 6) - layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels ((int) (Allocation.Height / 6.5)); - else - layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels ((int) (Allocation.Height / 4.5)); - - int xOffset = 2 * BUTTON_SIZE + (column - 1) * 2 * xWidth; - int yOffset = row == 1 ? Allocation.Height : (int) (Allocation.Height * 2.5); - yOffset = (int) (yOffset / 3.5); - - cr.Color = new Cairo.Color (1, 1, 1, 0.9); - layout.SetText (label); - layout.GetPixelExtents (out inkRect, out logicalRect); - cr.MoveTo (xOffset + (xWidth - inkRect.Width) / 2, yOffset - logicalRect.Height / 2); - Pango.CairoHelper.LayoutPath (cr, layout); - cr.Fill (); - - cr.Color = new Cairo.Color (1, 1, 1, 0.7); - layout.SetText (val); - layout.GetPixelExtents (out inkRect, out logicalRect); - cr.MoveTo (xOffset + xWidth + (xWidth - inkRect.Width) / 2, yOffset - logicalRect.Height / 2); - Pango.CairoHelper.LayoutPath (cr, layout); - cr.Fill (); + using (Pango.Layout layout = DockServices.Drawing.ThemedPangoLayout ()) + { + Pango.Rectangle inkRect, logicalRect; + + layout.FontDescription = new Gtk.Style().FontDescription; + layout.FontDescription.Weight = Pango.Weight.Bold; + layout.Ellipsize = Pango.EllipsizeMode.None; + layout.Width = Pango.Units.FromPixels (xWidth); + + if (WeatherController.Weather.ForecastDays < 6) + layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels ((int) (Allocation.Height / 6.5)); + else + layout.FontDescription.AbsoluteSize = Pango.Units.FromPixels ((int) (Allocation.Height / 4.5)); + + int xOffset = 2 * BUTTON_SIZE + (column - 1) * 2 * xWidth; + int yOffset = row == 1 ? Allocation.Height : (int) (Allocation.Height * 2.5); + yOffset = (int) (yOffset / 3.5); + + cr.Color = new Cairo.Color (1, 1, 1, 0.9); + layout.SetText (label); + layout.GetPixelExtents (out inkRect, out logicalRect); + cr.MoveTo (xOffset + (xWidth - inkRect.Width) / 2, yOffset - logicalRect.Height / 2); + Pango.CairoHelper.LayoutPath (cr, layout); + cr.Fill (); + + cr.Color = new Cairo.Color (1, 1, 1, 0.7); + layout.SetText (val); + layout.GetPixelExtents (out inkRect, out logicalRect); + cr.MoveTo (xOffset + xWidth + (xWidth - inkRect.Width) / 2, yOffset - logicalRect.Height / 2); + Pango.CairoHelper.LayoutPath (cr, layout); + cr.Fill (); + + layout.FontDescription.Dispose (); + layout.Context.Dispose (); + } } ///