diff -Nru atk1.0-1.30.0/aclocal.m4 atk1.0-2.2.0/aclocal.m4 --- atk1.0-1.30.0/aclocal.m4 2010-03-29 22:53:46.000000000 +0000 +++ atk1.0-2.2.0/aclocal.m4 2011-09-26 22:24:57.000000000 +0000 @@ -1,4 +1,4 @@ -# generated automatically by aclocal 1.11 -*- Autoconf -*- +# generated automatically by aclocal 1.11.1 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. @@ -13,8 +13,8 @@ m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl -m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.64],, -[m4_warning([this file was generated for autoconf 2.64. +m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],, +[m4_warning([this file was generated for autoconf 2.68. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) @@ -34,7 +34,7 @@ [am__api_version='1.11' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.11], [], +m4_if([$1], [1.11.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) @@ -50,7 +50,7 @@ # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.11])dnl +[AM_AUTOMAKE_VERSION([1.11.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) @@ -406,18 +406,6 @@ [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) -# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 -# Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 8 - -# AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. -AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) - # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, @@ -818,6 +806,33 @@ fi AC_MSG_RESULT(yes)]) +# Copyright (C) 2009 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_SILENT_RULES([DEFAULT]) +# -------------------------- +# Enable less verbose build rules; with the default set to DEFAULT +# (`yes' being less verbose, `no' or empty being verbose). +AC_DEFUN([AM_SILENT_RULES], +[AC_ARG_ENABLE([silent-rules], +[ --enable-silent-rules less verbose build output (undo: `make V=1') + --disable-silent-rules verbose build output (undo: `make V=0')]) +case $enable_silent_rules in +yes) AM_DEFAULT_VERBOSITY=0;; +no) AM_DEFAULT_VERBOSITY=1;; +*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; +esac +AC_SUBST([AM_DEFAULT_VERBOSITY])dnl +AM_BACKSLASH='\' +AC_SUBST([AM_BACKSLASH])dnl +_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl +]) + # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation @@ -961,164 +976,6 @@ AC_SUBST([am__untar]) ]) # _AM_PROG_TAR -# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- -# -# Copyright © 2004 Scott James Remnant . -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# PKG_PROG_PKG_CONFIG([MIN-VERSION]) -# ---------------------------------- -AC_DEFUN([PKG_PROG_PKG_CONFIG], -[m4_pattern_forbid([^_?PKG_[A-Z_]+$]) -m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) -AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl -if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then - AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) -fi -if test -n "$PKG_CONFIG"; then - _pkg_min_version=m4_default([$1], [0.9.0]) - AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) - if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - AC_MSG_RESULT([yes]) - else - AC_MSG_RESULT([no]) - PKG_CONFIG="" - fi - -fi[]dnl -])# PKG_PROG_PKG_CONFIG - -# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# -# Check to see whether a particular set of modules exists. Similar -# to PKG_CHECK_MODULES(), but does not set variables or print errors. -# -# -# Similar to PKG_CHECK_MODULES, make sure that the first instance of -# this or PKG_CHECK_MODULES is called, or make sure to call -# PKG_CHECK_EXISTS manually -# -------------------------------------------------------------- -AC_DEFUN([PKG_CHECK_EXISTS], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl -if test -n "$PKG_CONFIG" && \ - AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then - m4_ifval([$2], [$2], [:]) -m4_ifvaln([$3], [else - $3])dnl -fi]) - - -# _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 -fi[]dnl -])# _PKG_CONFIG - -# _PKG_SHORT_ERRORS_SUPPORTED -# ----------------------------- -AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG]) -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi[]dnl -])# _PKG_SHORT_ERRORS_SUPPORTED - - -# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], -# [ACTION-IF-NOT-FOUND]) -# -# -# Note that if there is a possibility the first call to -# PKG_CHECK_MODULES might not happen, you should be sure to include an -# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac -# -# -# -------------------------------------------------------------- -AC_DEFUN([PKG_CHECK_MODULES], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl -AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl -AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl - -pkg_failed=no -AC_MSG_CHECKING([for $1]) - -_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) -_PKG_CONFIG([$1][_LIBS], [libs], [$2]) - -m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS -and $1[]_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details.]) - -if test $pkg_failed = yes; then - _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"` - else - $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"` - 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 -[Package requirements ($2) were not met: - -$$1_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -_PKG_TEXT -])], - [AC_MSG_RESULT([no]) - $4]) -elif test $pkg_failed = untried; then - ifelse([$4], , [AC_MSG_FAILURE(dnl -[The pkg-config script could not be found or is too old. Make sure it -is in your PATH or set the PKG_CONFIG environment variable to the full -path to pkg-config. - -_PKG_TEXT - -To get pkg-config, see .])], - [$4]) -else - $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS - $1[]_LIBS=$pkg_cv_[]$1[]_LIBS - AC_MSG_RESULT([yes]) - ifelse([$3], , :, [$3]) -fi[]dnl -])# PKG_CHECK_MODULES - # Configure paths for GLIB # Owen Taylor 1997-2001 @@ -1212,14 +1069,14 @@ int main () { - int major, minor, micro; + unsigned int major, minor, micro; char *tmp_version; fclose (fopen ("conf.glibtest", "w")); /* HP/UX 9 (%@#!) writes to sscanf strings */ tmp_version = g_strdup("$min_glib_version"); - if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { + if (sscanf(tmp_version, "%u.%u.%u", &major, &minor, µ) != 3) { printf("%s, bad version string\n", "$min_glib_version"); exit(1); } @@ -1258,9 +1115,9 @@ } else { - printf("\n*** An old version of GLIB (%d.%d.%d) was found.\n", + printf("\n*** An old version of GLIB (%u.%u.%u) was found.\n", glib_major_version, glib_minor_version, glib_micro_version); - printf("*** You need a version of GLIB newer than %d.%d.%d. The latest version of\n", + printf("*** You need a version of GLIB newer than %u.%u.%u. The latest version of\n", major, minor, micro); printf("*** GLIB is always available from ftp://ftp.gtk.org.\n"); printf("***\n"); @@ -1613,7 +1470,7 @@ dnl These rules are solely for the distribution goal. While doing this dnl we only have to keep exactly one list of the available catalogs - dnl in configure.in. + dnl in configure.ac. for lang in $ALL_LINGUAS; do GMOFILES="$GMOFILES $lang.gmo" POFILES="$POFILES $lang.po" @@ -1742,7 +1599,7 @@ dnl dnl Now the definitions that aclocal will find dnl -ifdef(glib_configure_in,[],[ +ifdef(glib_configure_ac,[],[ AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)]) AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)]) ])dnl @@ -1764,6 +1621,164 @@ fi]) +# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +# serial 1 (pkg-config-0.24) +# +# Copyright © 2004 Scott James Remnant . +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# PKG_PROG_PKG_CONFIG([MIN-VERSION]) +# ---------------------------------- +AC_DEFUN([PKG_PROG_PKG_CONFIG], +[m4_pattern_forbid([^_?PKG_[A-Z_]+$]) +m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) +AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) +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 +if test -n "$PKG_CONFIG"; then + _pkg_min_version=m4_default([$1], [0.9.0]) + AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + PKG_CONFIG="" + fi +fi[]dnl +])# PKG_PROG_PKG_CONFIG + +# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +# +# Check to see whether a particular set of modules exists. Similar +# to PKG_CHECK_MODULES(), but does not set variables or print errors. +# +# 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_default([$2], [:]) +m4_ifvaln([$3], [else + $3])dnl +fi]) + +# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) +# --------------------------------------------- +m4_define([_PKG_CONFIG], +[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 + +# _PKG_SHORT_ERRORS_SUPPORTED +# ----------------------------- +AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi[]dnl +])# _PKG_SHORT_ERRORS_SUPPORTED + + +# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +# [ACTION-IF-NOT-FOUND]) +# +# +# Note that if there is a possibility the first call to +# PKG_CHECK_MODULES might not happen, you should be sure to include an +# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac +# +# +# -------------------------------------------------------------- +AC_DEFUN([PKG_CHECK_MODULES], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl +AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl + +pkg_failed=no +AC_MSG_CHECKING([for $1]) + +_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) +_PKG_CONFIG([$1][_LIBS], [libs], [$2]) + +m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS +and $1[]_LIBS to avoid the need to call pkg-config. +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 --print-errors "$2" 2>&1` + else + $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 + + m4_default([$4], [AC_MSG_ERROR( +[Package requirements ($2) were not met: + +$$1_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +_PKG_TEXT])dnl + ]) +elif test $pkg_failed = untried; then + 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 .])dnl + ]) +else + $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS + $1[]_LIBS=$pkg_cv_[]$1[]_LIBS + AC_MSG_RESULT([yes]) + $3 +fi[]dnl +])# PKG_CHECK_MODULES + m4_include([m4/gtk-doc.m4]) m4_include([m4/introspection.m4]) m4_include([m4/libtool.m4]) diff -Nru atk1.0-1.30.0/atk/Atk-1.0.gir atk1.0-2.2.0/atk/Atk-1.0.gir --- atk1.0-1.30.0/atk/Atk-1.0.gir 2010-03-29 22:39:44.000000000 +0000 +++ atk1.0-2.2.0/atk/Atk-1.0.gir 1970-01-01 00:00:00.000000000 +0000 @@ -1,8678 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru atk1.0-1.30.0/atk/atkaction.c atk1.0-2.2.0/atk/atkaction.c --- atk1.0-1.30.0/atk/atkaction.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkaction.c 2011-09-19 17:06:54.000000000 +0000 @@ -101,7 +101,7 @@ * Returns a description string, or %NULL * if @action does not implement this interface. **/ -G_CONST_RETURN gchar* +const gchar* atk_action_get_description (AtkAction *obj, gint i) { @@ -140,7 +140,7 @@ * Returns a name string, or %NULL * if @action does not implement this interface. **/ -G_CONST_RETURN gchar* +const gchar* atk_action_get_name (AtkAction *obj, gint i) { @@ -166,7 +166,7 @@ * Returns a name string, or %NULL * if @action does not implement this interface. **/ -G_CONST_RETURN gchar* +const gchar* atk_action_get_localized_name (AtkAction *obj, gint i) { @@ -203,7 +203,7 @@ * if there is no keybinding for this action. * **/ -G_CONST_RETURN gchar* +const gchar* atk_action_get_keybinding (AtkAction *obj, gint i) { diff -Nru atk1.0-1.30.0/atk/atkaction.h atk1.0-2.2.0/atk/atkaction.h --- atk1.0-1.30.0/atk/atkaction.h 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkaction.h 2011-09-19 17:06:54.000000000 +0000 @@ -55,16 +55,16 @@ gboolean (*do_action) (AtkAction *action, gint i); gint (*get_n_actions) (AtkAction *action); - G_CONST_RETURN gchar* (*get_description) (AtkAction *action, + const gchar* (*get_description) (AtkAction *action, gint i); - G_CONST_RETURN gchar* (*get_name) (AtkAction *action, + const gchar* (*get_name) (AtkAction *action, gint i); - G_CONST_RETURN gchar* (*get_keybinding) (AtkAction *action, + const gchar* (*get_keybinding) (AtkAction *action, gint i); gboolean (*set_description) (AtkAction *action, gint i, const gchar *desc); - G_CONST_RETURN gchar* (*get_localized_name)(AtkAction *action, + const gchar* (*get_localized_name)(AtkAction *action, gint i); AtkFunction pad2; }; @@ -85,11 +85,11 @@ gboolean atk_action_do_action (AtkAction *action, gint i); gint atk_action_get_n_actions (AtkAction *action); -G_CONST_RETURN gchar* atk_action_get_description (AtkAction *action, +const gchar* atk_action_get_description (AtkAction *action, gint i); -G_CONST_RETURN gchar* atk_action_get_name (AtkAction *action, +const gchar* atk_action_get_name (AtkAction *action, gint i); -G_CONST_RETURN gchar* atk_action_get_keybinding (AtkAction *action, +const gchar* atk_action_get_keybinding (AtkAction *action, gint i); gboolean atk_action_set_description (AtkAction *action, gint i, @@ -97,7 +97,7 @@ /* NEW in ATK 1.1: */ -G_CONST_RETURN gchar* atk_action_get_localized_name (AtkAction *action, +const gchar* atk_action_get_localized_name (AtkAction *action, gint i); /* diff -Nru atk1.0-1.30.0/atk/atkcomponent.c atk1.0-2.2.0/atk/atkcomponent.c --- atk1.0-1.30.0/atk/atkcomponent.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkcomponent.c 2011-09-19 17:06:54.000000000 +0000 @@ -186,7 +186,7 @@ * Gets a reference to the accessible child, if one exists, at the * coordinate point specified by @x and @y. * - * Returns: a reference to the accessible child, if one exists + * Returns: (transfer full): a reference to the accessible child, if one exists **/ AtkObject* atk_component_ref_accessible_at_point (AtkComponent *component, @@ -590,12 +590,6 @@ atk_component_get_extents (component, &x, &y, width, height, coord_type); } -static gdouble -atk_component_real_get_alpha (AtkComponent *component) -{ - return (gdouble) 1.0; -} - static AtkRectangle * atk_rectangle_copy (const AtkRectangle *rectangle) { diff -Nru atk1.0-1.30.0/atk/atkdocument.c atk1.0-2.2.0/atk/atkdocument.c --- atk1.0-1.30.0/atk/atkdocument.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkdocument.c 2011-09-19 17:06:54.000000000 +0000 @@ -93,7 +93,7 @@ * * Returns: a string indicating the document type **/ -G_CONST_RETURN gchar* +const gchar* atk_document_get_document_type (AtkDocument *document) { AtkDocumentIface *iface; @@ -120,7 +120,7 @@ * up to the caller to check atk_document_get_type to determine * how to cast this pointer. * - * Returns: a %gpointer that points to an instance of the DOM. + * Returns: (transfer none): a %gpointer that points to an instance of the DOM. **/ gpointer atk_document_get_document (AtkDocument *document) @@ -155,7 +155,7 @@ * locale of the document content as a whole, or NULL if * the document content does not specify a locale. **/ -G_CONST_RETURN gchar * +const gchar * atk_document_get_locale (AtkDocument *document) { AtkDocumentIface *iface; @@ -184,7 +184,7 @@ * * Since: 1.12 * - * Returns: An AtkAttributeSet containing the explicitly + * Returns: (transfer none): An AtkAttributeSet containing the explicitly * set name-value-pair attributes associated with this document * as a whole. **/ @@ -219,7 +219,7 @@ * document, or NULL if a value for #attribute_name has not been specified * for this document. */ -G_CONST_RETURN gchar * +const gchar * atk_document_get_attribute_value (AtkDocument *document, const gchar *attribute_name) { diff -Nru atk1.0-1.30.0/atk/atkdocument.h atk1.0-2.2.0/atk/atkdocument.h --- atk1.0-1.30.0/atk/atkdocument.h 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkdocument.h 2011-09-19 17:06:54.000000000 +0000 @@ -49,12 +49,12 @@ struct _AtkDocumentIface { GTypeInterface parent; - G_CONST_RETURN gchar* ( *get_document_type) (AtkDocument *document); + const gchar* ( *get_document_type) (AtkDocument *document); gpointer ( *get_document) (AtkDocument *document); - G_CONST_RETURN gchar* ( *get_document_locale) (AtkDocument *document); + const gchar* ( *get_document_locale) (AtkDocument *document); AtkAttributeSet * ( *get_document_attributes) (AtkDocument *document); - G_CONST_RETURN gchar* ( *get_document_attribute_value) (AtkDocument *document, + const gchar* ( *get_document_attribute_value) (AtkDocument *document, const gchar *attribute_name); gboolean ( *set_document_attribute) (AtkDocument *document, const gchar *attribute_name, @@ -68,11 +68,11 @@ GType atk_document_get_type (void); -G_CONST_RETURN gchar* atk_document_get_document_type (AtkDocument *document); +const gchar* atk_document_get_document_type (AtkDocument *document); gpointer atk_document_get_document (AtkDocument *document); -G_CONST_RETURN gchar* atk_document_get_locale (AtkDocument *document); +const gchar* atk_document_get_locale (AtkDocument *document); AtkAttributeSet* atk_document_get_attributes (AtkDocument *document); -G_CONST_RETURN gchar* atk_document_get_attribute_value (AtkDocument *document, +const gchar* atk_document_get_attribute_value (AtkDocument *document, const gchar *attribute_name); gboolean atk_document_set_attribute_value (AtkDocument *document, const gchar *attribute_name, diff -Nru atk1.0-1.30.0/atk/atk-enum-types.c atk1.0-2.2.0/atk/atk-enum-types.c --- atk1.0-1.30.0/atk/atk-enum-types.c 2009-11-26 07:56:12.000000000 +0000 +++ atk1.0-2.2.0/atk/atk-enum-types.c 2011-09-26 22:25:10.000000000 +0000 @@ -1,5 +1,5 @@ -/* Generated data (by glib-mkenums) */ + #include @@ -113,6 +113,19 @@ { ATK_ROLE_FORM, "ATK_ROLE_FORM", "form" }, { ATK_ROLE_LINK, "ATK_ROLE_LINK", "link" }, { ATK_ROLE_INPUT_METHOD_WINDOW, "ATK_ROLE_INPUT_METHOD_WINDOW", "input-method-window" }, + { ATK_ROLE_TABLE_ROW, "ATK_ROLE_TABLE_ROW", "table-row" }, + { ATK_ROLE_TREE_ITEM, "ATK_ROLE_TREE_ITEM", "tree-item" }, + { ATK_ROLE_DOCUMENT_SPREADSHEET, "ATK_ROLE_DOCUMENT_SPREADSHEET", "document-spreadsheet" }, + { ATK_ROLE_DOCUMENT_PRESENTATION, "ATK_ROLE_DOCUMENT_PRESENTATION", "document-presentation" }, + { ATK_ROLE_DOCUMENT_TEXT, "ATK_ROLE_DOCUMENT_TEXT", "document-text" }, + { ATK_ROLE_DOCUMENT_WEB, "ATK_ROLE_DOCUMENT_WEB", "document-web" }, + { ATK_ROLE_DOCUMENT_EMAIL, "ATK_ROLE_DOCUMENT_EMAIL", "document-email" }, + { ATK_ROLE_COMMENT, "ATK_ROLE_COMMENT", "comment" }, + { ATK_ROLE_LIST_BOX, "ATK_ROLE_LIST_BOX", "list-box" }, + { ATK_ROLE_GROUPING, "ATK_ROLE_GROUPING", "grouping" }, + { ATK_ROLE_IMAGE_MAP, "ATK_ROLE_IMAGE_MAP", "image-map" }, + { ATK_ROLE_NOTIFICATION, "ATK_ROLE_NOTIFICATION", "notification" }, + { ATK_ROLE_INFO_BAR, "ATK_ROLE_INFO_BAR", "info-bar" }, { ATK_ROLE_LAST_DEFINED, "ATK_ROLE_LAST_DEFINED", "last-defined" }, { 0, NULL, NULL } }; @@ -336,5 +349,5 @@ return etype; } -/* Generated data ends here */ + diff -Nru atk1.0-1.30.0/atk/atk-enum-types.h atk1.0-2.2.0/atk/atk-enum-types.h --- atk1.0-1.30.0/atk/atk-enum-types.h 2009-10-13 09:08:01.000000000 +0000 +++ atk1.0-2.2.0/atk/atk-enum-types.h 2011-09-26 22:25:10.000000000 +0000 @@ -1,5 +1,5 @@ -/* Generated data (by glib-mkenums) */ + #if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION) #error "Only can be included directly." @@ -41,5 +41,5 @@ #endif /* __ATK_ENUM_TYPES_H__ */ -/* Generated data ends here */ + diff -Nru atk1.0-1.30.0/atk/atkgobjectaccessible.c atk1.0-2.2.0/atk/atkgobjectaccessible.c --- atk1.0-1.30.0/atk/atkgobjectaccessible.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkgobjectaccessible.c 2011-09-19 17:06:54.000000000 +0000 @@ -62,7 +62,8 @@ * * Gets the accessible object for the specified @obj. * - * Returns: a #AtkObject which is the accessible object for the @obj + * Returns: (transfer none): a #AtkObject which is the accessible object for + * the @obj **/ AtkObject* atk_gobject_accessible_for_object (GObject *obj) @@ -107,7 +108,8 @@ * * Gets the GObject for which @obj is the accessible object. * - * Returns: a #GObject which is the object for which @obj is the accessible object + * Returns: (transfer none): a #GObject which is the object for which @obj is + * the accessible object **/ GObject * atk_gobject_accessible_get_object (AtkGObjectAccessible *obj) diff -Nru atk1.0-1.30.0/atk/atk.h atk1.0-2.2.0/atk/atk.h --- atk1.0-1.30.0/atk/atk.h 2009-12-03 02:35:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atk.h 2011-09-19 17:06:54.000000000 +0000 @@ -50,6 +50,7 @@ #include #include #include +#include #undef __ATK_H_INSIDE__ diff -Nru atk1.0-1.30.0/atk/atkhyperlink.c atk1.0-2.2.0/atk/atkhyperlink.c --- atk1.0-1.30.0/atk/atkhyperlink.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkhyperlink.c 2011-09-19 17:06:54.000000000 +0000 @@ -217,7 +217,8 @@ * * Multiple anchors are primarily used by client-side image maps. * - * Returns: an #AtkObject associated with this hyperlinks i-th anchor + * Returns: (transfer none): an #AtkObject associated with this hyperlinks + * i-th anchor **/ AtkObject* atk_hyperlink_get_object (AtkHyperlink *link, diff -Nru atk1.0-1.30.0/atk/atkhyperlinkimpl.c atk1.0-2.2.0/atk/atkhyperlinkimpl.c --- atk1.0-1.30.0/atk/atkhyperlinkimpl.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkhyperlinkimpl.c 2011-09-19 17:06:54.000000000 +0000 @@ -46,7 +46,8 @@ * * Gets the hyperlink associated with this object. * - * Returns an AtkHyperlink object which points to this implementing AtkObject. + * Returns: (transfer full): an AtkHyperlink object which points to this + * implementing AtkObject. * * Since: 1.12 **/ diff -Nru atk1.0-1.30.0/atk/atkhypertext.c atk1.0-2.2.0/atk/atkhypertext.c --- atk1.0-1.30.0/atk/atkhypertext.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkhypertext.c 2011-09-19 17:06:54.000000000 +0000 @@ -78,7 +78,7 @@ * Gets the link in this hypertext document at index * @link_index * - * Returns: the link in this hypertext document at + * Returns: (transfer none): the link in this hypertext document at * index @link_index **/ AtkHyperlink* diff -Nru atk1.0-1.30.0/atk/atkimage.c atk1.0-2.2.0/atk/atkimage.c --- atk1.0-1.30.0/atk/atkimage.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkimage.c 2011-09-19 17:06:54.000000000 +0000 @@ -46,7 +46,7 @@ * * Returns: a string representing the image description **/ -G_CONST_RETURN gchar* +const gchar* atk_image_get_image_description (AtkImage *image) { AtkImageIface *iface; @@ -169,10 +169,6 @@ real_y = y; else real_y = &local_y; - - iface = ATK_IMAGE_GET_IFACE (image); - - g_return_if_fail (ATK_IS_IMAGE (image)); iface = ATK_IMAGE_GET_IFACE (image); @@ -196,7 +192,7 @@ * Returns a string corresponding to the POSIX LC_MESSAGES locale used by the image description, or NULL if the image does not specify a locale. * */ -G_CONST_RETURN gchar* +const gchar* atk_image_get_image_locale (AtkImage *image) { diff -Nru atk1.0-1.30.0/atk/atkimage.h atk1.0-2.2.0/atk/atkimage.h --- atk1.0-1.30.0/atk/atkimage.h 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkimage.h 2011-09-19 17:06:54.000000000 +0000 @@ -53,13 +53,13 @@ gint *x, gint *y, AtkCoordType coord_type); - G_CONST_RETURN gchar* ( *get_image_description) (AtkImage *image); + const gchar* ( *get_image_description) (AtkImage *image); void ( *get_image_size) (AtkImage *image, gint *width, gint *height); gboolean ( *set_image_description) (AtkImage *image, const gchar *description); - G_CONST_RETURN gchar* ( *get_image_locale) (AtkImage *image); + const gchar* ( *get_image_locale) (AtkImage *image); AtkFunction pad1; @@ -67,7 +67,7 @@ GType atk_image_get_type (void); -G_CONST_RETURN gchar* atk_image_get_image_description (AtkImage *image); +const gchar* atk_image_get_image_description (AtkImage *image); void atk_image_get_image_size (AtkImage *image, gint *width, @@ -80,7 +80,7 @@ gint *y, AtkCoordType coord_type); -G_CONST_RETURN gchar* atk_image_get_image_locale (AtkImage *image); +const gchar* atk_image_get_image_locale (AtkImage *image); G_END_DECLS diff -Nru atk1.0-1.30.0/atk/atkmarshal.c atk1.0-2.2.0/atk/atkmarshal.c --- atk1.0-1.30.0/atk/atkmarshal.c 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/atk/atkmarshal.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,123 +0,0 @@ - -#include - - -#ifdef G_ENABLE_DEBUG -#define g_marshal_value_peek_boolean(v) g_value_get_boolean (v) -#define g_marshal_value_peek_char(v) g_value_get_char (v) -#define g_marshal_value_peek_uchar(v) g_value_get_uchar (v) -#define g_marshal_value_peek_int(v) g_value_get_int (v) -#define g_marshal_value_peek_uint(v) g_value_get_uint (v) -#define g_marshal_value_peek_long(v) g_value_get_long (v) -#define g_marshal_value_peek_ulong(v) g_value_get_ulong (v) -#define g_marshal_value_peek_int64(v) g_value_get_int64 (v) -#define g_marshal_value_peek_uint64(v) g_value_get_uint64 (v) -#define g_marshal_value_peek_enum(v) g_value_get_enum (v) -#define g_marshal_value_peek_flags(v) g_value_get_flags (v) -#define g_marshal_value_peek_float(v) g_value_get_float (v) -#define g_marshal_value_peek_double(v) g_value_get_double (v) -#define g_marshal_value_peek_string(v) (char*) g_value_get_string (v) -#define g_marshal_value_peek_param(v) g_value_get_param (v) -#define g_marshal_value_peek_boxed(v) g_value_get_boxed (v) -#define g_marshal_value_peek_pointer(v) g_value_get_pointer (v) -#define g_marshal_value_peek_object(v) g_value_get_object (v) -#else /* !G_ENABLE_DEBUG */ -/* WARNING: This code accesses GValues directly, which is UNSUPPORTED API. - * Do not access GValues directly in your code. Instead, use the - * g_value_get_*() functions - */ -#define g_marshal_value_peek_boolean(v) (v)->data[0].v_int -#define g_marshal_value_peek_char(v) (v)->data[0].v_int -#define g_marshal_value_peek_uchar(v) (v)->data[0].v_uint -#define g_marshal_value_peek_int(v) (v)->data[0].v_int -#define g_marshal_value_peek_uint(v) (v)->data[0].v_uint -#define g_marshal_value_peek_long(v) (v)->data[0].v_long -#define g_marshal_value_peek_ulong(v) (v)->data[0].v_ulong -#define g_marshal_value_peek_int64(v) (v)->data[0].v_int64 -#define g_marshal_value_peek_uint64(v) (v)->data[0].v_uint64 -#define g_marshal_value_peek_enum(v) (v)->data[0].v_long -#define g_marshal_value_peek_flags(v) (v)->data[0].v_ulong -#define g_marshal_value_peek_float(v) (v)->data[0].v_float -#define g_marshal_value_peek_double(v) (v)->data[0].v_double -#define g_marshal_value_peek_string(v) (v)->data[0].v_pointer -#define g_marshal_value_peek_param(v) (v)->data[0].v_pointer -#define g_marshal_value_peek_boxed(v) (v)->data[0].v_pointer -#define g_marshal_value_peek_pointer(v) (v)->data[0].v_pointer -#define g_marshal_value_peek_object(v) (v)->data[0].v_pointer -#endif /* !G_ENABLE_DEBUG */ - - -/* VOID:INT,INT (./atkmarshal.list:25) */ -void -atk_marshal_VOID__INT_INT (GClosure *closure, - GValue *return_value G_GNUC_UNUSED, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint G_GNUC_UNUSED, - gpointer marshal_data) -{ - typedef void (*GMarshalFunc_VOID__INT_INT) (gpointer data1, - gint arg_1, - gint arg_2, - gpointer data2); - register GMarshalFunc_VOID__INT_INT callback; - register GCClosure *cc = (GCClosure*) closure; - register gpointer data1, data2; - - g_return_if_fail (n_param_values == 3); - - if (G_CCLOSURE_SWAP_DATA (closure)) - { - data1 = closure->data; - data2 = g_value_peek_pointer (param_values + 0); - } - else - { - data1 = g_value_peek_pointer (param_values + 0); - data2 = closure->data; - } - callback = (GMarshalFunc_VOID__INT_INT) (marshal_data ? marshal_data : cc->callback); - - callback (data1, - g_marshal_value_peek_int (param_values + 1), - g_marshal_value_peek_int (param_values + 2), - data2); -} - -/* VOID:STRING,BOOLEAN (./atkmarshal.list:26) */ -void -atk_marshal_VOID__STRING_BOOLEAN (GClosure *closure, - GValue *return_value G_GNUC_UNUSED, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint G_GNUC_UNUSED, - gpointer marshal_data) -{ - typedef void (*GMarshalFunc_VOID__STRING_BOOLEAN) (gpointer data1, - gpointer arg_1, - gboolean arg_2, - gpointer data2); - register GMarshalFunc_VOID__STRING_BOOLEAN callback; - register GCClosure *cc = (GCClosure*) closure; - register gpointer data1, data2; - - g_return_if_fail (n_param_values == 3); - - if (G_CCLOSURE_SWAP_DATA (closure)) - { - data1 = closure->data; - data2 = g_value_peek_pointer (param_values + 0); - } - else - { - data1 = g_value_peek_pointer (param_values + 0); - data2 = closure->data; - } - callback = (GMarshalFunc_VOID__STRING_BOOLEAN) (marshal_data ? marshal_data : cc->callback); - - callback (data1, - g_marshal_value_peek_string (param_values + 1), - g_marshal_value_peek_boolean (param_values + 2), - data2); -} - diff -Nru atk1.0-1.30.0/atk/atkmarshal.h atk1.0-2.2.0/atk/atkmarshal.h --- atk1.0-1.30.0/atk/atkmarshal.h 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/atk/atkmarshal.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ - -#ifndef __atk_marshal_MARSHAL_H__ -#define __atk_marshal_MARSHAL_H__ - -#include - -G_BEGIN_DECLS - -/* VOID:INT,INT (./atkmarshal.list:25) */ -extern void atk_marshal_VOID__INT_INT (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); - -/* VOID:STRING,BOOLEAN (./atkmarshal.list:26) */ -extern void atk_marshal_VOID__STRING_BOOLEAN (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); - -G_END_DECLS - -#endif /* __atk_marshal_MARSHAL_H__ */ - diff -Nru atk1.0-1.30.0/atk/atkmarshal.list atk1.0-2.2.0/atk/atkmarshal.list --- atk1.0-1.30.0/atk/atkmarshal.list 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkmarshal.list 2011-09-19 17:06:54.000000000 +0000 @@ -23,4 +23,6 @@ # BOOL deprecated alias for BOOLEAN VOID:INT,INT +VOID:INT,INT,STRING +VOID:INT,INT,INT,STRING VOID:STRING,BOOLEAN diff -Nru atk1.0-1.30.0/atk/atkmisc.h atk1.0-2.2.0/atk/atkmisc.h --- atk1.0-1.30.0/atk/atkmisc.h 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkmisc.h 2011-09-19 17:06:54.000000000 +0000 @@ -26,6 +26,29 @@ #include +/* We prefix variable declarations so they can + * properly get exported in Windows DLLs. + */ +#ifndef ATK_VAR +# ifdef G_PLATFORM_WIN32 +# ifdef ATK_STATIC_COMPILATION +# define ATK_VAR extern +# else /* !ATK_STATIC_COMPILATION */ +# ifdef ATK_COMPILATION +# ifdef DLL_EXPORT +# define ATK_VAR __declspec(dllexport) +# else /* !DLL_EXPORT */ +# define ATK_VAR extern +# endif /* !DLL_EXPORT */ +# else /* !ATK_COMPILATION */ +# define ATK_VAR extern __declspec(dllimport) +# endif /* !ATK_COMPILATION */ +# endif /* !ATK_STATIC_COMPILATION */ +# else /* !G_PLATFORM_WIN32 */ +# define ATK_VAR extern +# endif /* !G_PLATFORM_WIN32 */ +#endif /* ATK_VAR */ + G_BEGIN_DECLS #define ATK_TYPE_MISC (atk_misc_get_type ()) @@ -52,7 +75,7 @@ * a given GUI toolkit/application instance should touch this * symbol directly. */ -extern AtkMisc *atk_misc_instance; +ATK_VAR AtkMisc *atk_misc_instance; struct _AtkMiscClass { diff -Nru atk1.0-1.30.0/atk/atknoopobject.c atk1.0-2.2.0/atk/atknoopobject.c --- atk1.0-1.30.0/atk/atknoopobject.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atknoopobject.c 2011-09-19 17:06:54.000000000 +0000 @@ -116,6 +116,13 @@ NULL }; + static const GInterfaceInfo atk_window_info = + { + (GInterfaceInitFunc) NULL, + (GInterfaceFinalizeFunc) NULL, + NULL + }; + type = g_type_register_static (ATK_TYPE_OBJECT, "AtkNoOpObject", &tinfo, 0); g_type_add_interface_static (type, ATK_TYPE_COMPONENT, @@ -138,6 +145,8 @@ &atk_value_info); g_type_add_interface_static (type, ATK_TYPE_DOCUMENT, &atk_document_info); + g_type_add_interface_static (type, ATK_TYPE_WINDOW, + &atk_window_info); } return type; } diff -Nru atk1.0-1.30.0/atk/atkobject.c atk1.0-2.2.0/atk/atkobject.c --- atk1.0-1.30.0/atk/atkobject.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkobject.c 2011-09-19 17:06:54.000000000 +0000 @@ -160,6 +160,19 @@ N_("form") N_("link") N_("input method window") + N_("table row") + N_("tree item") + N_("document spreadsheet") + N_("document presentation") + N_("document text") + N_("document web") + N_("document email") + N_("comment") + N_("list box") + N_("grouping") + N_("image map") + N_("notification") + N_("info bar") #endif /* 0 */ static const char roles[] = @@ -250,7 +263,20 @@ "redundant object\0" "form\0" "link\0" - "input method window"; + "input method window\0" + "table row\0" + "tree item\0" + "document spreadsheet\0" + "document presentation\0" + "document text\0" + "document web\0" + "document email\0" + "comment\0" + "list box\0" + "grouping\0" + "image map\0" + "notification\0" + "info bar\0"; static const guint16 roles_offsets[] = { 0, 8, 26, 32, 42, 48, 57, 64, @@ -263,7 +289,9 @@ 585, 605, 622, 641, 650, 655, 669, 678, 687, 692, 703, 711, 720, 727, 734, 741, 751, 757, 769, 782, 791, 810, 816, 822, - 830, 845, 853, 858, 866, 883, 888, 893 + 830, 845, 853, 858, 866, 883, 888, 893, + 913, 923, 933, 954, 976, 990, 1003, 1018, + 1026, 1035, 1044, 1054, 1067 }; /* This is a static assertion */ @@ -285,10 +313,8 @@ GValue *value, GParamSpec *pspec); static void atk_object_finalize (GObject *object); -static G_CONST_RETURN gchar* - atk_object_real_get_name (AtkObject *object); -static G_CONST_RETURN gchar* - atk_object_real_get_description +static const gchar* atk_object_real_get_name (AtkObject *object); +static const gchar* atk_object_real_get_description (AtkObject *object); static AtkObject* atk_object_real_get_parent (AtkObject *object); static AtkRole atk_object_real_get_role (AtkObject *object); @@ -692,7 +718,7 @@ * * Returns: a character string representing the accessible name of the object. **/ -G_CONST_RETURN gchar* +const gchar* atk_object_get_name (AtkObject *accessible) { AtkObjectClass *klass; @@ -716,7 +742,7 @@ * of the accessible. * **/ -G_CONST_RETURN gchar* +const gchar* atk_object_get_description (AtkObject *accessible) { AtkObjectClass *klass; @@ -736,7 +762,8 @@ * * Gets the accessible parent of the accessible. * - * Returns: a #AtkObject representing the accessible parent of the accessible + * Returns: (transfer none): a #AtkObject representing the accessible parent + * of the accessible **/ AtkObject* atk_object_get_parent (AtkObject *accessible) @@ -784,8 +811,8 @@ * The accessible children are 0-based so the first accessible child is * at index 0, the second at index 1 and so on. * - * Returns: an #AtkObject representing the specified accessible child - * of the accessible. + * Returns: (transfer full): an #AtkObject representing the specified + * accessible child of the accessible. **/ AtkObject* atk_object_ref_accessible_child (AtkObject *accessible, @@ -808,7 +835,8 @@ * * Gets the #AtkRelationSet associated with the object. * - * Returns: an #AtkRelationSet representing the relation set of the object. + * Returns: (transfer full): an #AtkRelationSet representing the relation set + * of the object. **/ AtkRelationSet* atk_object_ref_relation_set (AtkObject *accessible) @@ -923,7 +951,7 @@ * Gets a reference to the state set of the accessible; the caller must * unreference it when it is no longer needed. * - * Returns: a reference to an #AtkStateSet which is the state + * Returns: (transfer full): a reference to an #AtkStateSet which is the state * set of the accessible **/ AtkStateSet* @@ -990,7 +1018,7 @@ /** * atk_object_set_description: * @accessible: an #AtkObject - * @description : a character string to be set as the accessible description + * @description: a character string to be set as the accessible description * * Sets the accessible description of the accessible. **/ @@ -1014,7 +1042,7 @@ /** * atk_object_set_parent: * @accessible: an #AtkObject - * @parent : an #AtkObject to be set as the accessible parent + * @parent: an #AtkObject to be set as the accessible parent * * Sets the accessible parent of the accessible. **/ @@ -1037,7 +1065,7 @@ /** * atk_object_set_role: * @accessible: an #AtkObject - * @role : an #AtkRole to be set as the role + * @role: an #AtkRole to be set as the role * * Sets the role of the accessible. **/ @@ -1067,7 +1095,7 @@ /** * atk_object_connect_property_change_handler: * @accessible: an #AtkObject - * @handler : a function to be called when a property changes its value + * @handler: a function to be called when a property changes its value * * Specifies a function to be called when a property changes value. * @@ -1093,7 +1121,7 @@ /** * atk_object_remove_property_change_handler: * @accessible: an #AtkObject - * @handler_id : a guint which identifies the handler to be removed. + * @handler_id: a guint which identifies the handler to be removed. * * Removes a property change handler. **/ @@ -1114,7 +1142,7 @@ * atk_object_notify_state_change: * @accessible: an #AtkObject * @state: an #AtkState whose state is changed - * @value : a gboolean which indicates whether the state is being set on or off + * @value: a gboolean which indicates whether the state is being set on or off * * Emits a state-change signal for the specified state. **/ @@ -1123,7 +1151,7 @@ AtkState state, gboolean value) { - G_CONST_RETURN gchar* name; + const gchar* name; g_return_if_fail (ATK_IS_OBJECT (accessible)); @@ -1141,7 +1169,8 @@ * Gets a reference to an object's #AtkObject implementation, if * the object implements #AtkObjectIface * - * Returns: a reference to an object's #AtkObject implementation + * Returns: (transfer full): a reference to an object's #AtkObject + * implementation */ AtkObject * atk_implementor_ref_accessible (AtkImplementor *implementor) @@ -1173,8 +1202,9 @@ * * Since: 1.12 * - * Returns: an #AtkAttributeSet consisting of all explicit properties/annotations applied to - * the object, or an empty set if the object has no name-value pair attributes assigned to it. + * Returns: (transfer none): an #AtkAttributeSet consisting of all explicit + * properties/annotations applied to the object, or an empty set if the object + * has no name-value pair attributes assigned to it. */ AtkAttributeSet * atk_object_get_attributes (AtkObject *accessible) @@ -1319,13 +1349,13 @@ G_OBJECT_CLASS (parent_class)->finalize (object); } -static G_CONST_RETURN gchar* +static const gchar* atk_object_real_get_name (AtkObject *object) { return object->name; } -static G_CONST_RETURN gchar* +static const gchar* atk_object_real_get_description (AtkObject *object) { return object->description; @@ -1487,7 +1517,7 @@ * * Returns: the string describing the AtkRole */ -G_CONST_RETURN gchar* +const gchar* atk_role_get_name (AtkRole role) { if (role >= 0 && role < ATK_ROLE_LAST_DEFINED) @@ -1514,7 +1544,7 @@ * * Returns: the localized string describing the AtkRole **/ -G_CONST_RETURN gchar* +const gchar* atk_role_get_localized_name (AtkRole role) { gettext_initialization (); @@ -1589,6 +1619,9 @@ g_return_val_if_fail (ATK_IS_OBJECT (object), FALSE); g_return_val_if_fail (ATK_IS_OBJECT (target), FALSE); + if (atk_relation_set_contains (object->relation_set, relationship)) + return FALSE; + array[0] = target; relation = atk_relation_new (array, 1, relationship); atk_relation_set_add (object->relation_set, relation); diff -Nru atk1.0-1.30.0/atk/atkobjectfactory.c atk1.0-2.2.0/atk/atkobjectfactory.c --- atk1.0-1.30.0/atk/atkobjectfactory.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkobjectfactory.c 2011-09-19 17:06:54.000000000 +0000 @@ -65,8 +65,8 @@ * Provides an #AtkObject that implements an accessibility interface * on behalf of @obj * - * Returns: an #AtkObject that implements an accessibility interface - * on behalf of @obj + * Returns: (transfer full): an #AtkObject that implements an accessibility + * interface on behalf of @obj **/ AtkObject* atk_object_factory_create_accessible (AtkObjectFactory *factory, diff -Nru atk1.0-1.30.0/atk/atkobject.h atk1.0-2.2.0/atk/atkobject.h --- atk1.0-1.30.0/atk/atkobject.h 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkobject.h 2011-09-19 17:06:54.000000000 +0000 @@ -53,7 +53,7 @@ *@ATK_ROLE_CHECK_MENU_ITEM: A menu item with a check box *@ATK_ROLE_COLOR_CHOOSER: A specialized dialog that lets the user choose a color *@ATK_ROLE_COLUMN_HEADER: The header for a column of data - *@ATK_ROLE_COMBO_BOX: A list of choices the user can select from + *@ATK_ROLE_COMBO_BOX: A collapsible list of choices the user can select from *@ATK_ROLE_DATE_EDITOR: An object whose purpose is to allow a user to edit a date *@ATK_ROLE_DESKTOP_ICON: An inconifed internal frame within a DESKTOP_PANE *@ATK_ROLE_DESKTOP_FRAME: A pane that supports internal frames and iconified versions of those internal frames @@ -139,6 +139,19 @@ *@ATK_ROLE_INPUT_METHOD_WINDOW: The object is a window or similar viewport * which is used to allow composition or input of a 'complex character', * in other words it is an "input method window." @Since: ATK-1.12.1 + *@ATK_ROLE_TABLE_ROW: A row in a table. @Since: ATK-2.1.0 + *@ATK_ROLE_TREE_ITEM: An object that represents an element of a tree. @Since: ATK-2.1.0 + *@ATK_ROLE_DOCUMENT_SPREADSHEET: A document frame which contains a spreadsheet. @Since: ATK-2.1.0 + *@ATK_ROLE_DOCUMENT_PRESENTATION: A document frame which contains a presentation or slide content. @Since: ATK-2.1.0 + *@ATK_ROLE_DOCUMENT_TEXT: A document frame which contains textual content, such as found in a word processing application. @Since: ATK-2.1.0 + *@ATK_ROLE_DOCUMENT_WEB: A document frame which contains HTML or other markup suitable for display in a web browser. @Since: ATK-2.1.0 + *@ATK_ROLE_DOCUMENT_EMAIL: A document frame which contains email content to be displayed or composed either in plain text or HTML. @Since: ATK-2.1.0 + *@ATK_ROLE_COMMENT: An object found within a document and designed to present a comment, note, or other annotation. In some cases, this object might not be visible until activated. @Since: ATK-2.1.0 + *@ATK_ROLE_LIST_BOX: A non-collapsible list of choices the user can select from. @Since: ATK-2.1.0 + *@ATK_ROLE_GROUPING: A group of related widgets. This group typically has a label. @Since: ATK-2.1.0 + *@ATK_ROLE_IMAGE_MAP: An image map object. Usually a graphic with multiple hotspots, where each hotspot can be activated resulting in the loading of another document or section of a document. @Since: ATK-2.1.0 + *@ATK_ROLE_NOTIFICATION: A transitory object designed to present a message to the user, typically at the desktop level rather than inside a particular application. @Since: ATK-2.1.0 + *@ATK_ROLE_INFO_BAR: An object designed to present a message to the user within an existing window. @Since: ATK-2.1.0 *@ATK_ROLE_LAST_DEFINED: not a valid role, used for finding end of the enumeration * * Describes the role of an object @@ -237,6 +250,19 @@ ATK_ROLE_FORM, ATK_ROLE_LINK, ATK_ROLE_INPUT_METHOD_WINDOW, + ATK_ROLE_TABLE_ROW, + ATK_ROLE_TREE_ITEM, + ATK_ROLE_DOCUMENT_SPREADSHEET, + ATK_ROLE_DOCUMENT_PRESENTATION, + ATK_ROLE_DOCUMENT_TEXT, + ATK_ROLE_DOCUMENT_WEB, + ATK_ROLE_DOCUMENT_EMAIL, + ATK_ROLE_COMMENT, + ATK_ROLE_LIST_BOX, + ATK_ROLE_GROUPING, + ATK_ROLE_IMAGE_MAP, + ATK_ROLE_NOTIFICATION, + ATK_ROLE_INFO_BAR, ATK_ROLE_LAST_DEFINED } AtkRole; @@ -381,11 +407,11 @@ /* * Gets the accessible name of the object */ - G_CONST_RETURN gchar* (* get_name) (AtkObject *accessible); + const gchar* (* get_name) (AtkObject *accessible); /* * Gets the accessible description of the object */ - G_CONST_RETURN gchar* (* get_description) (AtkObject *accessible); + const gchar* (* get_description) (AtkObject *accessible); /* * Gets the accessible parent of the object */ @@ -535,8 +561,8 @@ * Properties directly supported by AtkObject */ -G_CONST_RETURN gchar* atk_object_get_name (AtkObject *accessible); -G_CONST_RETURN gchar* atk_object_get_description (AtkObject *accessible); +const gchar* atk_object_get_name (AtkObject *accessible); +const gchar* atk_object_get_description (AtkObject *accessible); AtkObject* atk_object_get_parent (AtkObject *accessible); gint atk_object_get_n_accessible_children (AtkObject *accessible); AtkObject* atk_object_ref_accessible_child (AtkObject *accessible, @@ -571,7 +597,7 @@ void atk_object_initialize (AtkObject *accessible, gpointer data); -G_CONST_RETURN gchar* atk_role_get_name (AtkRole role); +const gchar* atk_role_get_name (AtkRole role); AtkRole atk_role_for_name (const gchar *name); @@ -582,7 +608,7 @@ gboolean atk_object_remove_relationship (AtkObject *object, AtkRelationType relationship, AtkObject *target); -G_CONST_RETURN gchar* atk_role_get_localized_name (AtkRole role); +const gchar* atk_role_get_localized_name (AtkRole role); /* */ diff -Nru atk1.0-1.30.0/atk/atkplug.c atk1.0-2.2.0/atk/atkplug.c --- atk1.0-1.30.0/atk/atkplug.c 2009-12-03 02:35:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkplug.c 2011-09-19 17:06:54.000000000 +0000 @@ -20,10 +20,13 @@ #include "atk.h" #include "atkplug.h" -G_DEFINE_TYPE (AtkPlug, atk_plug, ATK_TYPE_OBJECT); +static void atk_component_interface_init (AtkComponentIface *iface); static void atk_plug_class_init (AtkPlugClass *klass); +G_DEFINE_TYPE_WITH_CODE (AtkPlug, atk_plug, ATK_TYPE_OBJECT, + G_IMPLEMENT_INTERFACE (ATK_TYPE_COMPONENT, atk_component_interface_init)) + static void atk_plug_init (AtkPlug* obj) { @@ -35,6 +38,11 @@ klass->get_object_id = NULL; } +static void +atk_component_interface_init (AtkComponentIface *iface) +{ +} + AtkObject* atk_plug_new (void) { @@ -55,8 +63,15 @@ * * Gets the unique ID of an #AtkPlug object, which can be used to embed inside * of an #AtkSocket using atk_socket_embed(). + * Internally, this calls a class function that should be registered by the + * IPC layer (eg, at-spi2-atk). The implementor of an AtkSocket object + * should call this function (after atk-bridge is loaded) and pass the value + * to the process implementing the AtkPlug into which the AtkSocket is + * embedded. * * Returns: the unique ID for the plug + * + * Since: 1.30 **/ gchar* atk_plug_get_id (AtkPlug* obj) diff -Nru atk1.0-1.30.0/atk/atk.rc atk1.0-2.2.0/atk/atk.rc --- atk1.0-1.30.0/atk/atk.rc 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/atk/atk.rc 2011-09-26 22:25:09.000000000 +0000 @@ -0,0 +1,30 @@ +#include + +VS_VERSION_INFO VERSIONINFO + FILEVERSION 2,2,0,0 + PRODUCTVERSION 2,2,0,0 + FILEFLAGSMASK 0 + FILEFLAGS 0 + FILEOS VOS__WINDOWS32 + FILETYPE VFT_DLL + FILESUBTYPE VFT2_UNKNOWN + BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904B0" + BEGIN + VALUE "CompanyName", "Sun Microsystems Inc." + VALUE "FileDescription", "atk" + VALUE "FileVersion", "2.2.0.0" + VALUE "InternalName", "libatk-1.0-0" + VALUE "LegalCopyright", "Copyright Sun Microsystems Inc." + VALUE "OriginalFilename", "libatk-1.0-0.dll" + VALUE "ProductName", "atk" + VALUE "ProductVersion", "2.2.0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1200 + END + END diff -Nru atk1.0-1.30.0/atk/atkregistry.c atk1.0-2.2.0/atk/atkregistry.c --- atk1.0-1.30.0/atk/atkregistry.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkregistry.c 2011-09-19 17:06:54.000000000 +0000 @@ -206,8 +206,8 @@ * Gets an #AtkObjectFactory appropriate for creating #AtkObjects * appropriate for @type. * - * Returns: an #AtkObjectFactory appropriate for creating #AtkObjects - * appropriate for @type. + * Returns: (transfer none): an #AtkObjectFactory appropriate for creating + * #AtkObjects appropriate for @type. **/ AtkObjectFactory* atk_registry_get_factory (AtkRegistry *registry, @@ -247,7 +247,7 @@ } /** - *atk_get_default_registry: + * atk_get_default_registry: * * Gets a default implementation of the #AtkObjectFactory/type * registry. @@ -257,8 +257,8 @@ * to associate an #AtkObjectFactory subclass with the GType of objects * for whom accessibility information will be provided. * - * Returns: a default implementation of the #AtkObjectFactory/type - * registry + * Returns: (transfer full): a default implementation of the + * #AtkObjectFactory/type registry **/ AtkRegistry* atk_get_default_registry (void) diff -Nru atk1.0-1.30.0/atk/atkrelation.c atk1.0-2.2.0/atk/atkrelation.c --- atk1.0-1.30.0/atk/atkrelation.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkrelation.c 2011-09-19 17:06:54.000000000 +0000 @@ -130,7 +130,7 @@ * * Returns: the string describing the AtkRelationType */ -G_CONST_RETURN gchar* +const gchar* atk_relation_type_get_name (AtkRelationType type) { GTypeClass *type_class; @@ -282,7 +282,7 @@ * * Gets the target list of @relation * - * Returns: the target list of @relation + * Returns: (transfer none): the target list of @relation **/ GPtrArray* atk_relation_get_target (AtkRelation *relation) diff -Nru atk1.0-1.30.0/atk/atkrelation.h atk1.0-2.2.0/atk/atkrelation.h --- atk1.0-1.30.0/atk/atkrelation.h 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkrelation.h 2011-09-19 17:06:54.000000000 +0000 @@ -61,7 +61,7 @@ GType atk_relation_get_type (void); AtkRelationType atk_relation_type_register (const gchar *name); -G_CONST_RETURN gchar* atk_relation_type_get_name (AtkRelationType type); +const gchar* atk_relation_type_get_name (AtkRelationType type); AtkRelationType atk_relation_type_for_name (const gchar *name); /* diff -Nru atk1.0-1.30.0/atk/atkrelationset.c atk1.0-2.2.0/atk/atkrelationset.c --- atk1.0-1.30.0/atk/atkrelationset.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkrelationset.c 2011-09-19 17:06:54.000000000 +0000 @@ -216,13 +216,14 @@ } /** - * atk_relation_set_get_relation + * atk_relation_set_get_relation: * @set: an #AtkRelationSet * @i: a gint representing a position in the set, starting from 0. * * Determines the relation at the specified position in the relation set. * - * Returns: a #AtkRelation, which is the relation at position i in the set. + * Returns: (transfer none): a #AtkRelation, which is the relation at + * position i in the set. **/ AtkRelation* atk_relation_set_get_relation (AtkRelationSet *set, @@ -251,7 +252,8 @@ * * Finds a relation that matches the specified type. * - * Returns: an #AtkRelation, which is a relation matching the specified type. + * Returns: (transfer none): an #AtkRelation, which is a relation matching the + * specified type. **/ AtkRelation* atk_relation_set_get_relation_by_type (AtkRelationSet *set, diff -Nru atk1.0-1.30.0/atk/atkselection.c atk1.0-2.2.0/atk/atkselection.c --- atk1.0-1.30.0/atk/atkselection.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkselection.c 2011-09-19 17:06:54.000000000 +0000 @@ -132,8 +132,8 @@ * use type checking/interface checking macros or the * atk_get_accessible_value() convenience method. * - * Returns: an #AtkObject representing the selected accessible , or %NULL - * if @selection does not implement this interface. + * Returns: (transfer full): an #AtkObject representing the selected + * accessible , or %NULL if @selection does not implement this interface. **/ AtkObject* atk_selection_ref_selection (AtkSelection *obj, diff -Nru atk1.0-1.30.0/atk/atksocket.c atk1.0-2.2.0/atk/atksocket.c --- atk1.0-1.30.0/atk/atksocket.c 2009-12-03 02:35:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atksocket.c 2011-09-19 17:06:54.000000000 +0000 @@ -20,10 +20,13 @@ #include "atk.h" #include "atksocket.h" -G_DEFINE_TYPE (AtkSocket, atk_socket, ATK_TYPE_OBJECT); - static void atk_socket_class_init (AtkSocketClass *klass); +static void atk_component_interface_init (AtkComponentIface *iface); + +G_DEFINE_TYPE_WITH_CODE (AtkSocket, atk_socket, ATK_TYPE_OBJECT, + G_IMPLEMENT_INTERFACE (ATK_TYPE_COMPONENT, atk_component_interface_init)) + static void atk_socket_init (AtkSocket* obj) { @@ -36,6 +39,10 @@ klass->embed = NULL; } +static void atk_component_interface_init (AtkComponentIface *iface) +{ +} + AtkObject* atk_socket_new (void) { @@ -57,6 +64,13 @@ * * Embeds the children of an #AtkPlug as the children of the #AtkSocket. The * plug may be in the same process or in a different process. + * THe class item used by this function should be filled in by the IPC layer + * (ie, at-spi2-atk). The implementor of the AtkSocket should call this + * function and pass the id for the plug as returned by atk_plug_get_id. + * It is the responsibility of the application to pass the plug id on to + * the process implementing the AtkSocket as needed. + * + * Since: 1.30 **/ void atk_socket_embed (AtkSocket* obj, gchar* plug_id) @@ -83,6 +97,8 @@ * Determines whether or not the socket has an embedded plug. * * Returns: TRUE if a plug is embedded in the socket + * + * Since: 1.30 **/ gboolean atk_socket_is_occupied (AtkSocket* obj) diff -Nru atk1.0-1.30.0/atk/atkstate.c atk1.0-2.2.0/atk/atkstate.c --- atk1.0-1.30.0/atk/atkstate.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkstate.c 2011-09-19 17:06:54.000000000 +0000 @@ -57,7 +57,7 @@ * * Returns: the string describing the AtkStateType */ -G_CONST_RETURN gchar* +const gchar* atk_state_type_get_name (AtkStateType type) { GTypeClass *type_class; diff -Nru atk1.0-1.30.0/atk/atkstate.h atk1.0-2.2.0/atk/atkstate.h --- atk1.0-1.30.0/atk/atkstate.h 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkstate.h 2011-09-19 17:06:54.000000000 +0000 @@ -170,7 +170,7 @@ AtkStateType atk_state_type_register (const gchar *name); -G_CONST_RETURN gchar* atk_state_type_get_name (AtkStateType type); +const gchar* atk_state_type_get_name (AtkStateType type); AtkStateType atk_state_type_for_name (const gchar *name); G_END_DECLS diff -Nru atk1.0-1.30.0/atk/atkstateset.c atk1.0-2.2.0/atk/atkstateset.c --- atk1.0-1.30.0/atk/atkstateset.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkstateset.c 2011-09-19 17:06:54.000000000 +0000 @@ -257,7 +257,8 @@ * Constructs the intersection of the two sets, returning %NULL if the * intersection is empty. * - * Returns: a new #AtkStateSet which is the intersection of the two sets. + * Returns: (transfer full): a new #AtkStateSet which is the intersection of + * the two sets. **/ AtkStateSet* atk_state_set_and_sets (AtkStateSet *set, @@ -289,8 +290,8 @@ * * Constructs the union of the two sets. * - * Returns: a new #AtkStateSet which is the union of the two sets, - * returning %NULL is empty. + * Returns: (transfer full): a new #AtkStateSet which is the union of the two + * sets, returning %NULL is empty. **/ AtkStateSet* atk_state_set_or_sets (AtkStateSet *set, @@ -326,8 +327,8 @@ * The set returned by this operation contains the states in exactly * one of the two sets. * - * Returns: a new #AtkStateSet which contains the states which are - * in exactly one of the two sets. + * Returns: (transfer full): a new #AtkStateSet which contains the states + * which are in exactly one of the two sets. **/ AtkStateSet* atk_state_set_xor_sets (AtkStateSet *set, diff -Nru atk1.0-1.30.0/atk/atkstreamablecontent.c atk1.0-2.2.0/atk/atkstreamablecontent.c --- atk1.0-1.30.0/atk/atkstreamablecontent.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkstreamablecontent.c 2011-09-19 17:06:54.000000000 +0000 @@ -73,7 +73,7 @@ * Returns : a gchar* representing the specified mime type; the caller * should not free the character string. **/ -G_CONST_RETURN gchar* +const gchar* atk_streamable_content_get_mime_type (AtkStreamableContent *streamable, gint i) { @@ -97,8 +97,8 @@ * * Gets the content in the specified mime type. * - * Returns: A #GIOChannel which contains the content in the specified mime - * type. + * Returns: (transfer full): A #GIOChannel which contains the content in the + * specified mime type. **/ GIOChannel* atk_streamable_content_get_stream (AtkStreamableContent *streamable, @@ -137,7 +137,7 @@ * * Since: 1.12 **/ -gchar* +const gchar* atk_streamable_content_get_uri (AtkStreamableContent *streamable, const gchar *mime_type) { diff -Nru atk1.0-1.30.0/atk/atkstreamablecontent.h atk1.0-2.2.0/atk/atkstreamablecontent.h --- atk1.0-1.30.0/atk/atkstreamablecontent.h 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkstreamablecontent.h 2011-09-19 17:06:54.000000000 +0000 @@ -54,11 +54,11 @@ * at index 0 should be considered the "default" data type for the stream. * * This assumes that the strings for the mime types are stored in the - * AtkStreamableContent. Alternatively the G_CONST_RETURN could be removed + * AtkStreamableContent. Alternatively the const could be removed * and the caller would be responsible for calling g_free() on the * returned value. */ - G_CONST_RETURN gchar* (* get_mime_type) (AtkStreamableContent *streamable, + const gchar* (* get_mime_type) (AtkStreamableContent *streamable, gint i); /* * One possible implementation for this method is that it constructs the @@ -80,7 +80,7 @@ * constructed. Note that it is possible for get_uri to return NULL but for * get_stream to work nonetheless, since not all GIOChannels connect to URIs. */ - G_CONST_RETURN gchar* (* get_uri) (AtkStreamableContent *streamable, + const gchar* (* get_uri) (AtkStreamableContent *streamable, const gchar *mime_type); @@ -92,13 +92,13 @@ gint atk_streamable_content_get_n_mime_types (AtkStreamableContent *streamable); -G_CONST_RETURN gchar* atk_streamable_content_get_mime_type (AtkStreamableContent *streamable, +const gchar* atk_streamable_content_get_mime_type (AtkStreamableContent *streamable, gint i); GIOChannel* atk_streamable_content_get_stream (AtkStreamableContent *streamable, const gchar *mime_type); -gchar* atk_streamable_content_get_uri (AtkStreamableContent *streamable, - const gchar *mime_type); +const gchar* atk_streamable_content_get_uri (AtkStreamableContent *streamable, + const gchar *mime_type); G_END_DECLS diff -Nru atk1.0-1.30.0/atk/atk.symbols atk1.0-2.2.0/atk/atk.symbols --- atk1.0-1.30.0/atk/atk.symbols 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atk.symbols 2011-09-19 17:06:54.000000000 +0000 @@ -70,6 +70,8 @@ atk_hypertext_get_n_links atk_hypertext_get_type atk_hyperlink_state_flags_get_type + atk_hyperlink_impl_get_type + atk_hyperlink_impl_get_hyperlink atk_image_get_image_description atk_image_get_image_locale atk_image_get_image_position @@ -177,6 +179,7 @@ atk_streamable_content_get_n_mime_types atk_streamable_content_get_stream atk_streamable_content_get_type + atk_streamable_content_get_uri atk_table_add_column_selection atk_table_add_row_selection atk_table_get_caption @@ -238,6 +241,8 @@ atk_util_get_type atk_value_get_current_value atk_value_get_maximum_value + atk_value_get_minimum_increment atk_value_get_minimum_value atk_value_get_type atk_value_set_current_value + atk_window_get_type diff -Nru atk1.0-1.30.0/atk/atktable.c atk1.0-2.2.0/atk/atktable.c --- atk1.0-1.30.0/atk/atktable.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atktable.c 2011-09-19 17:06:54.000000000 +0000 @@ -138,7 +138,8 @@ * * Get a reference to the table cell at @row, @column. * - * Returns: a AtkObject* representing the referred to accessible + * Returns: (transfer full): a AtkObject* representing the referred to + * accessible **/ AtkObject* atk_table_ref_at (AtkTable *table, @@ -248,8 +249,8 @@ * * Gets the caption for the @table. * - * Returns: a AtkObject* representing the table caption, or %NULL - * if value does not implement this interface. + * Returns: (transfer none): a AtkObject* representing the table caption, or + * %NULL if value does not implement this interface. **/ AtkObject* atk_table_get_caption (AtkTable *table) @@ -300,7 +301,7 @@ * Returns: a gchar* representing the column description, or %NULL * if value does not implement this interface. **/ -G_CONST_RETURN gchar* +const gchar* atk_table_get_column_description (AtkTable *table, gint column) { @@ -352,8 +353,8 @@ * * Gets the column header of a specified column in an accessible table. * - * Returns: a AtkObject* representing the specified column header, or - * %NULL if value does not implement this interface. + * Returns: (transfer none): a AtkObject* representing the specified column + * header, or %NULL if value does not implement this interface. **/ AtkObject* atk_table_get_column_header (AtkTable *table, gint column) @@ -404,7 +405,7 @@ * Returns: a gchar* representing the row description, or %NULL * if value does not implement this interface. **/ -G_CONST_RETURN gchar* +const gchar* atk_table_get_row_description (AtkTable *table, gint row) { @@ -456,8 +457,8 @@ * * Gets the row header of a specified row in an accessible table. * - * Returns: a AtkObject* representing the specified row header, or - * %NULL if value does not implement this interface. + * Returns: (transfer none): a AtkObject* representing the specified row + * header, or %NULL if value does not implement this interface. **/ AtkObject* atk_table_get_row_header (AtkTable *table, gint row) @@ -480,8 +481,8 @@ * * Gets the summary description of the table. * - * Returns: a AtkObject* representing a summary description of the table, - * or zero if value does not implement this interface. + * Returns: (transfer full): a AtkObject* representing a summary description + * of the table, or zero if value does not implement this interface. **/ AtkObject* atk_table_get_summary (AtkTable *table) diff -Nru atk1.0-1.30.0/atk/atktable.h atk1.0-2.2.0/atk/atktable.h --- atk1.0-1.30.0/atk/atktable.h 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atktable.h 2011-09-19 17:06:54.000000000 +0000 @@ -69,13 +69,11 @@ gint column); AtkObject* (* get_caption) (AtkTable *table); - G_CONST_RETURN gchar* - (* get_column_description) (AtkTable *table, + const gchar* (* get_column_description) (AtkTable *table, gint column); AtkObject* (* get_column_header) (AtkTable *table, gint column); - G_CONST_RETURN gchar* - (* get_row_description) (AtkTable *table, + const gchar* (* get_row_description) (AtkTable *table, gint row); AtkObject* (* get_row_header) (AtkTable *table, gint row); @@ -163,13 +161,12 @@ gint column); AtkObject* atk_table_get_caption (AtkTable *table); -G_CONST_RETURN gchar* - atk_table_get_column_description (AtkTable *table, +const gchar* atk_table_get_column_description + (AtkTable *table, gint column); AtkObject* atk_table_get_column_header (AtkTable *table, gint column); -G_CONST_RETURN gchar* - atk_table_get_row_description (AtkTable *table, +const gchar* atk_table_get_row_description (AtkTable *table, gint row); AtkObject* atk_table_get_row_header (AtkTable *table, gint row); diff -Nru atk1.0-1.30.0/atk/atktext.c atk1.0-2.2.0/atk/atktext.c --- atk1.0-1.30.0/atk/atktext.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atktext.c 2011-09-19 17:06:54.000000000 +0000 @@ -30,6 +30,9 @@ TEXT_CARET_MOVED, TEXT_SELECTION_CHANGED, TEXT_ATTRIBUTES_CHANGED, + TEXT_INSERT, + TEXT_REMOVE, + TEXT_UPDATE, LAST_SIGNAL }; @@ -99,9 +102,10 @@ "none\0" "single\0" "double\0" - "low"; + "low\0" + "error"; static const guint8 underline_offsets[] = { - 0, 5, 12, 19 + 0, 5, 12, 19, 23 }; static void atk_text_base_init (AtkTextIface *class); @@ -167,7 +171,37 @@ atk_marshal_VOID__INT_INT, G_TYPE_NONE, 2, G_TYPE_INT, G_TYPE_INT); - + + atk_text_signals[TEXT_INSERT] = + g_signal_new ("text_insert", + ATK_TYPE_TEXT, + G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED, + 0, + (GSignalAccumulator) NULL, NULL, + atk_marshal_VOID__INT_INT_STRING, + G_TYPE_NONE, + 3, G_TYPE_INT, G_TYPE_INT, G_TYPE_STRING); + + atk_text_signals[TEXT_REMOVE] = + g_signal_new ("text_remove", + ATK_TYPE_TEXT, + G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED, + 0, + (GSignalAccumulator) NULL, NULL, + atk_marshal_VOID__INT_INT_STRING, + G_TYPE_NONE, + 3, G_TYPE_INT, G_TYPE_INT, G_TYPE_STRING); + + atk_text_signals[TEXT_UPDATE] = + g_signal_new ("text_update", + ATK_TYPE_TEXT, + G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED, + 0, + (GSignalAccumulator) NULL, NULL, + atk_marshal_VOID__INT_INT_INT_STRING, + G_TYPE_NONE, + 4, G_TYPE_INT, G_TYPE_INT, G_TYPE_INT, G_TYPE_STRING); + atk_text_signals[TEXT_CARET_MOVED] = g_signal_new ("text_caret_moved", ATK_TYPE_TEXT, @@ -207,7 +241,8 @@ * * Gets the specified text. * - * Returns: the text from @start_offset up to, but not including @end_offset. + * Returns: a newly allocated string containing the text from @start_offset up + * to, but not including @end_offset. Use g_free() to free the returned string. **/ gchar* atk_text_get_text (AtkText *text, @@ -299,9 +334,10 @@ * string is from the line start after the offset to the next line start. * * If the boundary_type is ATK_TEXT_BOUNDARY_LINE_END the returned string - * is from the line end at or after the offset to the next line start. + * is from the line end at or after the offset to the next line end. * - * Returns: the text after @offset bounded by the specified @boundary_type. + * Returns: a newly allocated string containing the text after @offset bounded + * by the specified @boundary_type. Use g_free() to free the returned string. **/ gchar* atk_text_get_text_after_offset (AtkText *text, @@ -390,7 +426,8 @@ * is from the line end before the offset to the line end at or after * the offset. * - * Returns: the text at @offset bounded by the specified @boundary_type. + * Returns: a newly allocated string containing the text at @offset bounded by + * the specified @boundary_type. Use g_free() to free the returned string. **/ gchar* atk_text_get_text_at_offset (AtkText *text, @@ -437,16 +474,16 @@ * offset is returned. * * If the boundary_type is ATK_TEXT_BOUNDARY_WORD_START the returned string - * is from the word start before the word start before the offset to - * the word start before the offset. + * is from the word start before the word start before or at the offset to + * the word start before or at the offset. * * The returned string will contain the word before the offset if the offset * is inside a word and will contain the word before the word before the * offset if the offset is not inside a word. * * If the boundary_type is ATK_TEXT_BOUNDARY_WORD_END the returned string - * is from the word end before the word end at or before the offset to the - * word end at or before the offset. + * is from the word end before the word end before the offset to the word + * end before the offset. * * The returned string will contain the word before the offset if the offset * is inside a word or if the offset is not inside a word. @@ -474,7 +511,8 @@ * is from the line end before the line end before the offset to the * line end before the offset. * - * Returns: the text before @offset bounded by the specified @boundary_type. + * Returns: a newly allocated string containing the text before @offset bounded + * by the specified @boundary_type. Use g_free() to free the returned string. **/ gchar* atk_text_get_text_before_offset (AtkText *text, @@ -598,7 +636,7 @@ } /** - *atk_text_get_run_attributes: + * atk_text_get_run_attributes: *@text: an #AtkText *@offset: the offset at which to get the attributes, -1 means the offset of *the character to be inserted at the caret location. @@ -613,9 +651,9 @@ *attributes that can be returned. Note that other attributes may also be *returned. * - *Returns: an #AtkAttributeSet which contains the attributes explicitly set - *at @offset. This #AtkAttributeSet should be freed by a call to - *atk_attribute_set_free(). + *Returns: (transfer full): an #AtkAttributeSet which contains the attributes + * explicitly set at @offset. This #AtkAttributeSet should be freed by a call + * to atk_attribute_set_free(). **/ AtkAttributeSet* atk_text_get_run_attributes (AtkText *text, @@ -650,7 +688,7 @@ } /** - *atk_text_get_default_attributes: + * atk_text_get_default_attributes: *@text: an #AtkText * *Creates an #AtkAttributeSet which consists of the default values of @@ -658,9 +696,9 @@ *attributes that can be returned. Note that other attributes may also be *returned. * - *Returns: an #AtkAttributeSet which contains the default values of attributes. - *at @offset. This #AtkAttributeSet should be freed by a call to - *atk_attribute_set_free(). + *Returns: (transfer full): an #AtkAttributeSet which contains the default + * values of attributes. at @offset. this #atkattributeset should be freed by + * a call to atk_attribute_set_free(). */ AtkAttributeSet* atk_text_get_default_attributes (AtkText *text) @@ -771,7 +809,8 @@ * * Gets the text from the specified selection. * - * Returns: the selected text. + * Returns: a newly allocated string containing the selected text. Use g_free() + * to free the returned string. **/ gchar* atk_text_get_selection (AtkText *text, @@ -965,7 +1004,7 @@ /** * atk_text_get_bounded_ranges: * @text: an #AtkText - * @rect: An AtkTextRectagle giving the dimensions of the bounding box. + * @rect: An AtkTextRectangle giving the dimensions of the bounding box. * @coord_type: Specify whether coordinates are relative to the screen or widget window. * @x_clip_type: Specify the horizontal clip type. * @y_clip_type: Specify the vertical clip type. @@ -974,8 +1013,8 @@ * * Since: 1.3 * - * Returns: Array of AtkTextRange. The last element of the array returned - * by this function will be NULL. + * Returns: (array zero-terminated=1): Array of AtkTextRange. The last + * element of the array returned by this function will be NULL. **/ AtkTextRange** atk_text_get_bounded_ranges (AtkText *text, @@ -1053,7 +1092,7 @@ * * Returns: a string containing the name; this string should not be freed **/ -G_CONST_RETURN gchar* +const gchar* atk_text_attribute_get_name (AtkTextAttribute attr) { GTypeClass *type_class; @@ -1149,7 +1188,7 @@ * Returns: a string containing the value; this string should not be freed; * NULL is returned if there are no values maintained for the attr value. **/ -G_CONST_RETURN gchar* +const gchar* atk_text_attribute_get_value (AtkTextAttribute attr, gint index) { @@ -1364,10 +1403,32 @@ AtkTextRange *range; range = *ranges; - *ranges++; + ranges++; g_free (range->content); g_free (range); } g_free (first); } } + +static AtkTextRange * +atk_text_range_copy (AtkTextRange *src) +{ + AtkTextRange *dst = g_new0 (AtkTextRange, 1); + dst->bounds = src->bounds; + dst->start_offset = src->start_offset; + dst->end_offset = src->end_offset; + if (src->content) + dst->content = g_strdup (src->content); + return dst; +} + +static void +atk_text_range_free (AtkTextRange *range) +{ + g_free (range->content); + g_free (range); +} + +G_DEFINE_BOXED_TYPE (AtkTextRange, atk_text_range, atk_text_range_copy, + atk_text_range_free) diff -Nru atk1.0-1.30.0/atk/atktext.h atk1.0-2.2.0/atk/atktext.h --- atk1.0-1.30.0/atk/atktext.h 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atktext.h 2011-09-19 17:06:54.000000000 +0000 @@ -43,7 +43,7 @@ *@ATK_TEXT_ATTR_PIXELS_INSIDE_WRAP: Pixels of blank space to leave between wrapped lines inside the same newline-terminated line (paragraph). *@ATK_TEXT_ATTR_BG_FULL_HEIGHT: "true" or "false" whether to make the background color for each character the height of the highest font used on the current line, or the height of the font used for the current character. *@ATK_TEXT_ATTR_RISE: Number of pixels that the characters are risen above the baseline - *@ATK_TEXT_ATTR_UNDERLINE: "none", "single", "double" or "low" + *@ATK_TEXT_ATTR_UNDERLINE: "none", "single", "double", "low", or "error" *@ATK_TEXT_ATTR_STRIKETHROUGH: "true" or "false" whether the text is strikethrough *@ATK_TEXT_ATTR_SIZE: The size of the characters. *@ATK_TEXT_ATTR_SCALE: The scale of the characters. The value is a string representation of a double @@ -174,6 +174,8 @@ gchar* content; }; +GType atk_text_range_get_type (void); + /** *AtkTextClipType *@ATK_TEXT_CLIP_NONE: No clipping to be done @@ -355,9 +357,9 @@ AtkTextClipType y_clip_type); void atk_text_free_ranges (AtkTextRange **ranges); void atk_attribute_set_free (AtkAttributeSet *attrib_set); -G_CONST_RETURN gchar* atk_text_attribute_get_name (AtkTextAttribute attr); +const gchar* atk_text_attribute_get_name (AtkTextAttribute attr); AtkTextAttribute atk_text_attribute_for_name (const gchar *name); -G_CONST_RETURN gchar* atk_text_attribute_get_value (AtkTextAttribute attr, +const gchar* atk_text_attribute_get_value (AtkTextAttribute attr, gint index_); G_END_DECLS diff -Nru atk1.0-1.30.0/atk/atkutil.c atk1.0-2.2.0/atk/atkutil.c --- atk1.0-1.30.0/atk/atkutil.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkutil.c 2011-09-19 17:06:54.000000000 +0000 @@ -210,7 +210,18 @@ * @event_type: the type of event for which notification is requested * * Adds the specified function to the list of functions to be called - * when an event of type event_type occurs. + * when an ATK event of type event_type occurs. + * + * The format of event_type is the following: + * "ATK:: + * + * Where "ATK" works as the namespace, is the name of + * the ATK type (interface or object) and is the name of + * the signal defined on that interface. + * + * For example: + * ATK:AtkObject:state-change + * ATK:AtkText:text-selection-changed * * Returns: added event listener id, or 0 on failure. **/ @@ -298,7 +309,8 @@ * * Gets the root accessible container for the current application. * - * Returns: the root accessible container for the current application + * Returns: (transfer none): the root accessible container for the current + * application **/ AtkObject* atk_get_root (void) @@ -325,7 +337,8 @@ * * Since: 1.6 * - * Returns: the currently focused object for the current application + * Returns: (transfer none): the currently focused object for the current + * application **/ AtkObject* atk_get_focus_object (void) @@ -340,7 +353,7 @@ * * Returns: name string for the GUI toolkit implementing ATK for this application **/ -G_CONST_RETURN gchar* +const gchar* atk_get_toolkit_name (void) { const gchar *retval; @@ -365,7 +378,7 @@ * * Returns: version string for the GUI toolkit implementing ATK for this application **/ -G_CONST_RETURN gchar* +const gchar* atk_get_toolkit_version (void) { const gchar *retval; @@ -389,9 +402,10 @@ * Gets the current version for ATK. * * Returns: version string for ATK - **/ - -G_CONST_RETURN gchar * + * + * Since: 1.20 + */ +const gchar * atk_get_version (void) { return VERSION; diff -Nru atk1.0-1.30.0/atk/atkutil.h atk1.0-2.2.0/atk/atkutil.h --- atk1.0-1.30.0/atk/atkutil.h 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/atk/atkutil.h 2011-09-19 17:06:54.000000000 +0000 @@ -54,7 +54,7 @@ * supported are events of type "focus:". Most clients of ATK will prefer to * attach signal handlers for the various ATK signals instead. * - * @see: atk_add_focus_tracker. + * see atk_add_focus_tracker. **/ typedef void (*AtkEventListener) (AtkObject* obj); /** @@ -64,7 +64,7 @@ * called in order to initialize the per-object event registration system * used by #AtkEventListener, if any preparation is required. * - * @see: atk_focus_tracker_init. + * see atk_focus_tracker_init. **/ typedef void (*AtkEventListenerInit) (void); /** @@ -81,7 +81,7 @@ * discarded without being passed to the normal GUI recipient; FALSE (zero) if the * event dispatch to the client application should proceed as normal. * - * @see: atk_add_key_event_listener. + * see atk_add_key_event_listener. **/ typedef gint (*AtkKeySnoopFunc) (AtkKeyEventStruct *event, gpointer func_data); @@ -147,8 +147,8 @@ gpointer data); void (* remove_key_event_listener) (guint listener_id); AtkObject* (* get_root) (void); - G_CONST_RETURN gchar* (* get_toolkit_name) (void); - G_CONST_RETURN gchar* (* get_toolkit_version) (void); + const gchar* (* get_toolkit_name) (void); + const gchar* (* get_toolkit_version) (void); }; GType atk_util_get_type (void); @@ -166,80 +166,22 @@ ATK_XY_WINDOW }AtkCoordType; -/* - * Adds the specified function to the list of functions to be called - * when an object receives focus. - */ guint atk_add_focus_tracker (AtkEventListener focus_tracker); - -/* - * Removes the specified focus tracker from the list of function - * to be called when any object receives focus - */ void atk_remove_focus_tracker (guint tracker_id); - -/* - * atk_focus_tracker_init: - * @init: An #AtkEventListenerInit function to be called - * prior to any focus-tracking requests. - * - * Specifies the function to be called for focus tracker initialization. - * removal. This function should be called by an implementation of the - * ATK interface if any specific work needs to be done to enable - * focus tracking. - */ void atk_focus_tracker_init (AtkEventListenerInit init); - -/* - * Cause the focus tracker functions which have been specified to be - * executed for the object. - */ void atk_focus_tracker_notify (AtkObject *object); - -/* - * Adds the specified function to the list of functions to be called - * when an event of type event_type occurs. - */ guint atk_add_global_event_listener (GSignalEmissionHook listener, const gchar *event_type); - -/* - * Removes the specified event listener - */ void atk_remove_global_event_listener (guint listener_id); - -/* - * Adds the specified function to the list of functions to be called - * when an keyboard event occurs. - */ guint atk_add_key_event_listener (AtkKeySnoopFunc listener, gpointer data); - -/* - * Removes the specified event listener - */ void atk_remove_key_event_listener (guint listener_id); -/* - * Returns the root accessible container for the current application. - */ AtkObject* atk_get_root(void); - AtkObject* atk_get_focus_object (void); -/* - * Returns name string for the GUI toolkit. - */ -G_CONST_RETURN gchar *atk_get_toolkit_name (void); - -/* - * Returns version string for the GUI toolkit. - */ -G_CONST_RETURN gchar *atk_get_toolkit_version (void); - -/* - * Gets the current version of ATK - */ -G_CONST_RETURN gchar *atk_get_version (void); +const gchar *atk_get_toolkit_name (void); +const gchar *atk_get_toolkit_version (void); +const gchar *atk_get_version (void); /* --- GType boilerplate --- */ /* convenience macros for atk type implementations, which for a type GtkGadgetAccessible will: @@ -255,10 +197,77 @@ * G_IMPLEMENT_INTERFACE (ATK_TYPE_TABLE, gtk_gadget_accessible_table_iface_init)) */ +/** + * ATK_DEFINE_TYPE: + * @TN: The name of the new type, in Camel case. + * @t_n: The name of the new type, in lowercase, with words separated by '_'. + * @T_P: The #GType of the parent type. + * + * A convenience macro for type ATK implementations, which declares a class + * initialization function, an instance initialization function (see #GTypeInfo + * for information about these) and a static variable named + * @t_n _parent_class pointing to the parent class. Furthermore, it + * defines a _get_type() function. + * + * Since: 1.22 + */ #define ATK_DEFINE_TYPE(TN, t_n, T_P) ATK_DEFINE_TYPE_EXTENDED (TN, t_n, T_P, 0, {}) + +/** + * ATK_DEFINE_TYPE_WITH_CODE: + * @TN: The name of the new type, in Camel case. + * @t_n: The name of the new type in lowercase, with words separated by '_'. + * @T_P: The #GType of the parent type. + * @_C_: Custom code that gets inserted in the _get_type() function. + * + * A convenience macro for ATK type implementations. + * Similar to ATK_DEFINE_TYPE(), but allows you to insert custom code into the + * _get_type() function, e.g. interface implementations via G_IMPLEMENT_INTERFACE(). + * + * Since: 1.22 + */ #define ATK_DEFINE_TYPE_WITH_CODE(TN, t_n, T_P, _C_) _ATK_DEFINE_TYPE_EXTENDED_BEGIN (TN, t_n, T_P, 0) {_C_;} _ATK_DEFINE_TYPE_EXTENDED_END() + +/** + * ATK_DEFINE_ABSTRACT_TYPE: + * @TN: The name of the new type, in Camel case. + * @t_n: The name of the new type, in lowercase, with words separated by '_'. + * @T_P: The #GType of the parent type. + * + * A convenience macro for ATK type implementations. + * Similar to ATK_DEFINE_TYPE(), but defines an abstract type. + * + * Since: 1.22 + */ #define ATK_DEFINE_ABSTRACT_TYPE(TN, t_n, T_P) ATK_DEFINE_TYPE_EXTENDED (TN, t_n, T_P, G_TYPE_FLAG_ABSTRACT, {}) + +/** + * ATK_DEFINE_ABSTRACT_TYPE_WITH_CODE: + * @TN: The name of the new type, in Camel case. + * @t_n: The name of the new type, in lowercase, with words separated by '_'. + * @T_P: The #GType of the parent type. + * @_C_: Custom code that gets inserted in the _get_type() function. + * + * A convenience macro for ATK type implementations. + * Similar to ATK_DEFINE_TYPE_WITH_CODE(), but defines an abstract type. + * + * Since: 1.22 + */ #define ATK_DEFINE_ABSTRACT_TYPE_WITH_CODE(TN, t_n, T_P, _C_) _ATK_DEFINE_TYPE_EXTENDED_BEGIN (TN, t_n, T_P, G_TYPE_FLAG_ABSTRACT) {_C_;} _ATK_DEFINE_TYPE_EXTENDED_END() + +/** + * ATK_DEFINE_TYPE_EXTENDED: + * @TN: The name of the new type, in Camel case. + * @t_n: The name of the new type, in lowercase, with words separated by '_'. + * @T_P: The #GType of the parent type. + * @_f_: #GTypeFlags to pass to g_type_register_static() + * @_C_: Custom code that gets inserted in the _get_type() function. + * + * The most general convenience macro for ATK type implementations, on which + * ATK_DEFINE_TYPE(), etc are based. + * + * Since: 1.22 + */ #define ATK_DEFINE_TYPE_EXTENDED(TN, t_n, T_P, _f_, _C_) _ATK_DEFINE_TYPE_EXTENDED_BEGIN (TN, t_n, T_P, _f_) {_C_;} _ATK_DEFINE_TYPE_EXTENDED_END() #define _ATK_DEFINE_TYPE_EXTENDED_BEGIN(TypeName, type_name, TYPE, flags) \ diff -Nru atk1.0-1.30.0/atk/atkwindow.c atk1.0-2.2.0/atk/atkwindow.c --- atk1.0-1.30.0/atk/atkwindow.c 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/atk/atkwindow.c 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,73 @@ +/* ATK - Accessibility Toolkit + * Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + +#include "atkwindow.h" +#include "atkmarshal.h" + +enum { + ACTIVATE, + CREATE, + DEACTIVATE, + DESTROY, + MAXIMIZE, + MINIMIZE, + MOVE, + RESIZE, + RESTORE, + LAST_SIGNAL +}; + +static guint atk_window_signals[LAST_SIGNAL] = { 0 }; + +static guint +atk_window_add_signal (const gchar *name) +{ + return g_signal_new (name, + ATK_TYPE_WINDOW, + G_SIGNAL_RUN_LAST, + 0, + (GSignalAccumulator) NULL, NULL, + g_cclosure_marshal_VOID__VOID, + G_TYPE_NONE, + 0); +} + +typedef AtkWindowIface AtkWindowInterface; +G_DEFINE_INTERFACE (AtkWindow, atk_window, ATK_TYPE_OBJECT) + +static void +atk_window_default_init (AtkWindowIface *iface) +{ + static gboolean initialized = FALSE; + + if (!initialized) + { + atk_window_signals[ACTIVATE] = atk_window_add_signal ("activate"); + atk_window_signals[CREATE] = atk_window_add_signal ("create"); + atk_window_signals[DEACTIVATE] = atk_window_add_signal ("deactivate"); + atk_window_signals[DESTROY] = atk_window_add_signal ("destroy"); + atk_window_signals[MAXIMIZE] = atk_window_add_signal ("maximize"); + atk_window_signals[MINIMIZE] = atk_window_add_signal ("minimize"); + atk_window_signals[MOVE] = atk_window_add_signal ("move"); + atk_window_signals[RESIZE] = atk_window_add_signal ("resize"); + atk_window_signals[RESTORE] = atk_window_add_signal ("restore"); + + initialized = TRUE; + } +} diff -Nru atk1.0-1.30.0/atk/atkwindow.h atk1.0-2.2.0/atk/atkwindow.h --- atk1.0-1.30.0/atk/atkwindow.h 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/atk/atkwindow.h 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,54 @@ +/* ATK - Accessibility Toolkit + * Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library 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 + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + +#if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION) +#error "Only can be included directly." +#endif + +#ifndef __ATK_WINDOW_H__ +#define __ATK_WINDOW_H__ + +#include + +G_BEGIN_DECLS + +/* + * AtkWindow describes signals pertaining to on-screen windows. + */ + + +#define ATK_TYPE_WINDOW (atk_window_get_type ()) +#define ATK_IS_WINDOW(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATK_TYPE_WINDOW) +#define ATK_WINDOW(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATK_TYPE_WINDOW, AtkWindow) +#define ATK_WINDOW_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATK_TYPE_WINDOW, AtkWindowIface)) + +typedef struct _AtkWindow AtkWindow; /* Dummy typedef */ +typedef struct _AtkWindowIface AtkWindowIface; + +struct _AtkWindowIface +{ + GTypeInterface parent; + + gpointer _padding_dummy[16]; +}; + +GType atk_window_get_type (void); +G_END_DECLS + +#endif /* __ATK_WINDOW_H__ */ diff -Nru atk1.0-1.30.0/atk/Makefile.am atk1.0-2.2.0/atk/Makefile.am --- atk1.0-1.30.0/atk/Makefile.am 2010-01-19 07:56:31.000000000 +0000 +++ atk1.0-2.2.0/atk/Makefile.am 2011-09-19 17:06:54.000000000 +0000 @@ -30,7 +30,7 @@ $(DEP_LIBS) \ $(INTLLIBS) -libatk_1_0_la_SOURCES = \ +atk_sources = \ atkaction.c \ atkcomponent.c \ atkdocument.c \ @@ -57,7 +57,11 @@ atktext.c \ atkutil.c \ atkmisc.c \ - atkvalue.c \ + atkvalue.c \ + atkwindow.c + +libatk_1_0_la_SOURCES = \ + $(atk_sources) \ atk-enum-types.c libatkincludedir=$(includedir)/atk-1.0/atk @@ -91,7 +95,8 @@ atktext.h \ atkutil.h \ atkmisc.h \ - atkvalue.h + atkvalue.h \ + atkwindow.h libatkinclude_HEADERS = \ $(atk_headers) \ @@ -105,7 +110,7 @@ atkmarshal.h: stamp-atkmarshal.h @true stamp-atkmarshal.h: @REBUILD@ atkmarshal.list - $(GLIB_GENMARSHAL) --prefix=atk_marshal $(srcdir)/atkmarshal.list --header >> xgen-gmh \ + $(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=atk_marshal $(srcdir)/atkmarshal.list --header >> xgen-gmh \ && (cmp -s xgen-gmh atkmarshal.h || cp xgen-gmh atkmarshal.h) \ && rm -f xgen-gmh xgen-gmh~ \ && echo timestamp > $(@F) @@ -113,7 +118,7 @@ atkmarshal.c: stamp-atkmarshal.c @true stamp-atkmarshal.c: @REBUILD@ atkmarshal.list - $(GLIB_GENMARSHAL) --prefix=atk_marshal $(srcdir)/atkmarshal.list --body >> xgen-gmc \ + $(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=atk_marshal $(srcdir)/atkmarshal.list --body >> xgen-gmc \ && (cmp -s xgen-gmc atkmarshal.c || cp xgen-gmc atkmarshal.c) \ && rm -f xgen-gmc xgen-gmc~ \ && echo timestamp > $(@F) @@ -121,7 +126,7 @@ atk-enum-types.h: s-enum-types-h @true s-enum-types-h: @REBUILD@ $(atk_headers) Makefile - ( cd $(srcdir) && $(GLIB_MKENUMS) \ + $(AM_V_GEN) ( cd $(srcdir) && $(GLIB_MKENUMS) \ --fhead "#if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION)\n#error \"Only can be included directly.\"\n#endif\n\n#ifndef __ATK_ENUM_TYPES_H__\n#define __ATK_ENUM_TYPES_H__\n\n#include \n\nG_BEGIN_DECLS\n" \ --fprod "/* enumerations from \"@filename@\" */\n" \ --vhead "GType @enum_name@_get_type (void);\n#define ATK_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n" \ @@ -134,7 +139,7 @@ atk-enum-types.c: s-enum-types-c @true s-enum-types-c: @REBUILD@ $(atk_headers) Makefile - ( cd $(srcdir) && $(GLIB_MKENUMS) \ + $(AM_V_GEN) ( cd $(srcdir) && $(GLIB_MKENUMS) \ --fhead "#include " \ --fprod "\n/* enumerations from \"@filename@\" */" \ --vhead "GType\n@enum_name@_get_type (void)\n{\n static GType etype = 0;\n if (etype == 0) {\n static const G@Type@Value values[] = {" \ @@ -148,33 +153,39 @@ if HAVE_INTROSPECTION introspection_sources = \ - $(libatkinclude_HEADERS) \ - $(libatk_1_0_la_SOURCES) + $(atk_headers) \ + $(atk_sources) +introspection_generated_sources = \ + atk-enum-types.c \ + atk-enum-types.h -Atk-1.0.gir: libatk-1.0.la +Atk-1.0.gir: libatk-1.0.la Makefile Atk_1_0_gir_INCLUDES = GObject-2.0 Atk_1_0_gir_CFLAGS = $(INCLUDES) Atk_1_0_gir_LIBS = libatk-1.0.la -Atk_1_0_gir_FILES = $(addprefix $(srcdir)/, $(introspection_sources)) +Atk_1_0_gir_SCANNERFLAGS = --pkg-export atk --warn-all +Atk_1_0_gir_FILES = \ + $(addprefix $(srcdir)/, $(introspection_sources)) \ + $(introspection_generated_sources) INTROSPECTION_GIRS += Atk-1.0.gir girdir = $(datadir)/gir-1.0 -dist_gir_DATA = $(INTROSPECTION_GIRS) +gir_DATA = $(INTROSPECTION_GIRS) typelibsdir = $(libdir)/girepository-1.0 typelibs_DATA = $(INTROSPECTION_GIRS:.gir=.typelib) -CLEANFILES += $(dist_gir_DATA) $(typelibs_DATA) +CLEANFILES += $(gir_DATA) $(typelibs_DATA) endif # ---------- Win32 stuff ---------- if OS_WIN32 -libatk_1_0_la_LDFLAGS += -export-symbols $(srcdir)/atk.def -no-undefined -Wl,atk-win32-res.o +libatk_1_0_la_LDFLAGS += -export-symbols atk.def -no-undefined -Wl,atk-win32-res.o libatk_1_0_la_DEPENDENCIES = atk-win32-res.o atk.def install-def-file: - $(INSTALL) $(srcdir)/atk.def $(DESTDIR)$(libdir)/atk-1.0.def + $(INSTALL) atk.def $(DESTDIR)$(libdir)/atk-1.0.def uninstall-def-file: -rm $(DESTDIR)$(libdir)/atk-1.0.def else @@ -205,7 +216,39 @@ lib -machine:$(LIB_EXE_MACHINE_FLAG) -name:libatk-$(ATK_API_VERSION)-$(LT_CURRENT_MINUS_AGE).dll -def:atk.def -out:$@ -EXTRA_DIST = atk.symbols atk.rc.in atkmarshal.list atkintl.h +EXTRA_DIST = atk.symbols atk.rc.in atkmarshal.list atkintl.h atk.rc + +dist-hook: ../build/win32/vs9/atk.vcproj ../build/win32/vs10/atk.vcxproj ../build/win32/vs10/atk.vcxproj.filters + +../build/win32/vs9/atk.vcproj: ../build/win32/vs9/atk.vcprojin + for F in $(libatk_1_0_la_SOURCES); do \ + case $$F in \ + *.c) echo ' ' \ + ;; \ + esac; \ + done >libatk.sourcefiles + $(CPP) -P - <$(top_srcdir)/build/win32/vs9/atk.vcprojin >$@ + rm libatk.sourcefiles + +../build/win32/vs10/atk.vcxproj: ../build/win32/vs10/atk.vcxprojin + for F in $(libatk_1_0_la_SOURCES); do \ + case $$F in \ + *.c) echo ' ' \ + ;; \ + esac; \ + done >libatk.vs10.sourcefiles + $(CPP) -P - <$(top_srcdir)/build/win32/vs10/atk.vcxprojin >$@ + rm libatk.vs10.sourcefiles + +../build/win32/vs10/atk.vcxproj.filters: ../build/win32/vs10/atk.vcxproj.filtersin + for F in $(libatk_1_0_la_SOURCES); do \ + case $$F in \ + *.c) echo ' Source Files' \ + ;; \ + esac; \ + done >libatk.vs10.sourcefiles.filters + $(CPP) -P - <$(top_srcdir)/build/win32/vs10/atk.vcxproj.filtersin >$@ + rm libatk.vs10.sourcefiles.filters DISTCLEANFILES = \ stamp-atkmarshal.h stamp-atkmarshal.c \ diff -Nru atk1.0-1.30.0/atk/Makefile.in atk1.0-2.2.0/atk/Makefile.in --- atk1.0-1.30.0/atk/Makefile.in 2010-03-29 22:53:48.000000000 +0000 +++ atk1.0-2.2.0/atk/Makefile.in 2011-09-26 22:24:59.000000000 +0000 @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.11 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, @@ -37,22 +37,21 @@ build_triplet = @build@ host_triplet = @host@ @HAVE_INTROSPECTION_TRUE@am__append_1 = Atk-1.0.gir -@HAVE_INTROSPECTION_TRUE@am__append_2 = $(dist_gir_DATA) $(typelibs_DATA) +@HAVE_INTROSPECTION_TRUE@am__append_2 = $(gir_DATA) $(typelibs_DATA) # ---------- Win32 stuff ---------- -@OS_WIN32_TRUE@am__append_3 = -export-symbols $(srcdir)/atk.def -no-undefined -Wl,atk-win32-res.o +@OS_WIN32_TRUE@am__append_3 = -export-symbols atk.def -no-undefined -Wl,atk-win32-res.o @OS_WIN32_FALSE@libatk_1_0_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ @OS_WIN32_FALSE@ $(am__DEPENDENCIES_1) subdir = atk -DIST_COMMON = $(am__dist_gir_DATA_DIST) $(libatkinclude_HEADERS) \ - $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ - $(srcdir)/atk.rc.in +DIST_COMMON = $(libatkinclude_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in $(srcdir)/atk.rc.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gtk-doc.m4 \ $(top_srcdir)/m4/introspection.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.in + $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs @@ -84,16 +83,20 @@ "$(DESTDIR)$(typelibsdir)" "$(DESTDIR)$(libatkincludedir)" LTLIBRARIES = $(lib_LTLIBRARIES) am__DEPENDENCIES_1 = -am_libatk_1_0_la_OBJECTS = atkaction.lo atkcomponent.lo atkdocument.lo \ +am__objects_1 = atkaction.lo atkcomponent.lo atkdocument.lo \ atkeditabletext.lo atkgobjectaccessible.lo atkhyperlink.lo \ atkhyperlinkimpl.lo atkhypertext.lo atkimage.lo \ atknoopobject.lo atknoopobjectfactory.lo atkobject.lo \ atkobjectfactory.lo atkplug.lo atkregistry.lo atkrelation.lo \ atkrelationset.lo atkselection.lo atksocket.lo atkstate.lo \ atkstateset.lo atkstreamablecontent.lo atktable.lo atktext.lo \ - atkutil.lo atkmisc.lo atkvalue.lo atk-enum-types.lo + atkutil.lo atkmisc.lo atkvalue.lo atkwindow.lo +am_libatk_1_0_la_OBJECTS = $(am__objects_1) atk-enum-types.lo libatk_1_0_la_OBJECTS = $(am_libatk_1_0_la_OBJECTS) -libatk_1_0_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +libatk_1_0_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(libatk_1_0_la_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) @@ -102,23 +105,36 @@ am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libatk_1_0_la_SOURCES) DIST_SOURCES = $(libatk_1_0_la_SOURCES) -am__dist_gir_DATA_DIST = Atk-1.0.gir -DATA = $(dist_gir_DATA) $(noinst_DATA) $(typelibs_DATA) +DATA = $(gir_DATA) $(noinst_DATA) $(typelibs_DATA) HEADERS = $(libatkinclude_HEADERS) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AS = @AS@ ATK_API_VERSION = @ATK_API_VERSION@ @@ -166,6 +182,10 @@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@ +GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@ +GTKDOC_MKPDF = @GTKDOC_MKPDF@ +GTKDOC_REBASE = @GTKDOC_REBASE@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ @@ -214,6 +234,8 @@ PATH_SEPARATOR = @PATH_SEPARATOR@ PERL = @PERL@ 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@ @@ -304,7 +326,7 @@ $(DEP_LIBS) \ $(INTLLIBS) -libatk_1_0_la_SOURCES = \ +atk_sources = \ atkaction.c \ atkcomponent.c \ atkdocument.c \ @@ -331,7 +353,11 @@ atktext.c \ atkutil.c \ atkmisc.c \ - atkvalue.c \ + atkvalue.c \ + atkwindow.c + +libatk_1_0_la_SOURCES = \ + $(atk_sources) \ atk-enum-types.c libatkincludedir = $(includedir)/atk-1.0/atk @@ -364,7 +390,8 @@ atktext.h \ atkutil.h \ atkmisc.h \ - atkvalue.h + atkvalue.h \ + atkwindow.h libatkinclude_HEADERS = \ $(atk_headers) \ @@ -374,20 +401,28 @@ # ---------- Handle built sources ---------- BUILT_SOURCES = atkmarshal.h atkmarshal.c atk-enum-types.h atk-enum-types.c @HAVE_INTROSPECTION_TRUE@introspection_sources = \ -@HAVE_INTROSPECTION_TRUE@ $(libatkinclude_HEADERS) \ -@HAVE_INTROSPECTION_TRUE@ $(libatk_1_0_la_SOURCES) +@HAVE_INTROSPECTION_TRUE@ $(atk_headers) \ +@HAVE_INTROSPECTION_TRUE@ $(atk_sources) + +@HAVE_INTROSPECTION_TRUE@introspection_generated_sources = \ +@HAVE_INTROSPECTION_TRUE@ atk-enum-types.c \ +@HAVE_INTROSPECTION_TRUE@ atk-enum-types.h @HAVE_INTROSPECTION_TRUE@Atk_1_0_gir_INCLUDES = GObject-2.0 @HAVE_INTROSPECTION_TRUE@Atk_1_0_gir_CFLAGS = $(INCLUDES) @HAVE_INTROSPECTION_TRUE@Atk_1_0_gir_LIBS = libatk-1.0.la -@HAVE_INTROSPECTION_TRUE@Atk_1_0_gir_FILES = $(addprefix $(srcdir)/, $(introspection_sources)) +@HAVE_INTROSPECTION_TRUE@Atk_1_0_gir_SCANNERFLAGS = --pkg-export atk --warn-all +@HAVE_INTROSPECTION_TRUE@Atk_1_0_gir_FILES = \ +@HAVE_INTROSPECTION_TRUE@ $(addprefix $(srcdir)/, $(introspection_sources)) \ +@HAVE_INTROSPECTION_TRUE@ $(introspection_generated_sources) + @HAVE_INTROSPECTION_TRUE@girdir = $(datadir)/gir-1.0 -@HAVE_INTROSPECTION_TRUE@dist_gir_DATA = $(INTROSPECTION_GIRS) +@HAVE_INTROSPECTION_TRUE@gir_DATA = $(INTROSPECTION_GIRS) @HAVE_INTROSPECTION_TRUE@typelibsdir = $(libdir)/girepository-1.0 @HAVE_INTROSPECTION_TRUE@typelibs_DATA = $(INTROSPECTION_GIRS:.gir=.typelib) @OS_WIN32_TRUE@libatk_1_0_la_DEPENDENCIES = atk-win32-res.o atk.def @MS_LIB_AVAILABLE_TRUE@noinst_DATA = atk-$(ATK_API_VERSION).lib -EXTRA_DIST = atk.symbols atk.rc.in atkmarshal.list atkintl.h +EXTRA_DIST = atk.symbols atk.rc.in atkmarshal.list atkintl.h atk.rc DISTCLEANFILES = \ stamp-atkmarshal.h stamp-atkmarshal.c \ s-enum-types-h s-enum-types-c @@ -461,7 +496,7 @@ rm -f "$${dir}/so_locations"; \ done libatk-1.0.la: $(libatk_1_0_la_OBJECTS) $(libatk_1_0_la_DEPENDENCIES) - $(libatk_1_0_la_LINK) -rpath $(libdir) $(libatk_1_0_la_OBJECTS) $(libatk_1_0_la_LIBADD) $(LIBS) + $(AM_V_CCLD)$(libatk_1_0_la_LINK) -rpath $(libdir) $(libatk_1_0_la_OBJECTS) $(libatk_1_0_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) @@ -497,24 +532,28 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atktext.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atkutil.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atkvalue.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atkwindow.Plo@am__quote@ .c.o: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< @@ -524,10 +563,10 @@ clean-libtool: -rm -rf .libs _libs -install-dist_girDATA: $(dist_gir_DATA) +install-girDATA: $(gir_DATA) @$(NORMAL_INSTALL) test -z "$(girdir)" || $(MKDIR_P) "$(DESTDIR)$(girdir)" - @list='$(dist_gir_DATA)'; test -n "$(girdir)" || list=; \ + @list='$(gir_DATA)'; test -n "$(girdir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ @@ -537,9 +576,9 @@ $(INSTALL_DATA) $$files "$(DESTDIR)$(girdir)" || exit $$?; \ done -uninstall-dist_girDATA: +uninstall-girDATA: @$(NORMAL_UNINSTALL) - @list='$(dist_gir_DATA)'; test -n "$(girdir)" || list=; \ + @list='$(gir_DATA)'; test -n "$(girdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$files" || exit 0; \ echo " ( cd '$(DESTDIR)$(girdir)' && rm -f" $$files ")"; \ @@ -667,6 +706,9 @@ || exit 1; \ fi; \ done + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$(top_distdir)" distdir="$(distdir)" \ + dist-hook check-am: all-am check: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-am @@ -727,7 +769,7 @@ info-am: -install-data-am: install-data-local install-dist_girDATA \ +install-data-am: install-data-local install-girDATA \ install-libatkincludeHEADERS install-typelibsDATA install-dvi: install-dvi-am @@ -774,29 +816,29 @@ ps-am: -uninstall-am: uninstall-dist_girDATA uninstall-libLTLIBRARIES \ +uninstall-am: uninstall-girDATA uninstall-libLTLIBRARIES \ uninstall-libatkincludeHEADERS uninstall-local \ uninstall-typelibsDATA .MAKE: all check install install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libLTLIBRARIES clean-libtool ctags distclean \ + clean-libLTLIBRARIES clean-libtool ctags dist-hook distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-local distclean-tags distdir dvi dvi-am html html-am \ info info-am install install-am install-data install-data-am \ - install-data-local install-dist_girDATA install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am \ - install-libLTLIBRARIES install-libatkincludeHEADERS \ - install-man install-pdf install-pdf-am install-ps \ - install-ps-am install-strip install-typelibsDATA installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-dist_girDATA \ - uninstall-libLTLIBRARIES uninstall-libatkincludeHEADERS \ - uninstall-local uninstall-typelibsDATA + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-girDATA install-html install-html-am \ + install-info install-info-am install-libLTLIBRARIES \ + install-libatkincludeHEADERS install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + install-typelibsDATA installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-girDATA uninstall-libLTLIBRARIES \ + uninstall-libatkincludeHEADERS uninstall-local \ + uninstall-typelibsDATA include $(INTROSPECTION_MAKEFILE) @@ -804,7 +846,7 @@ atkmarshal.h: stamp-atkmarshal.h @true stamp-atkmarshal.h: @REBUILD@ atkmarshal.list - $(GLIB_GENMARSHAL) --prefix=atk_marshal $(srcdir)/atkmarshal.list --header >> xgen-gmh \ + $(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=atk_marshal $(srcdir)/atkmarshal.list --header >> xgen-gmh \ && (cmp -s xgen-gmh atkmarshal.h || cp xgen-gmh atkmarshal.h) \ && rm -f xgen-gmh xgen-gmh~ \ && echo timestamp > $(@F) @@ -812,7 +854,7 @@ atkmarshal.c: stamp-atkmarshal.c @true stamp-atkmarshal.c: @REBUILD@ atkmarshal.list - $(GLIB_GENMARSHAL) --prefix=atk_marshal $(srcdir)/atkmarshal.list --body >> xgen-gmc \ + $(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=atk_marshal $(srcdir)/atkmarshal.list --body >> xgen-gmc \ && (cmp -s xgen-gmc atkmarshal.c || cp xgen-gmc atkmarshal.c) \ && rm -f xgen-gmc xgen-gmc~ \ && echo timestamp > $(@F) @@ -820,7 +862,7 @@ atk-enum-types.h: s-enum-types-h @true s-enum-types-h: @REBUILD@ $(atk_headers) Makefile - ( cd $(srcdir) && $(GLIB_MKENUMS) \ + $(AM_V_GEN) ( cd $(srcdir) && $(GLIB_MKENUMS) \ --fhead "#if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION)\n#error \"Only can be included directly.\"\n#endif\n\n#ifndef __ATK_ENUM_TYPES_H__\n#define __ATK_ENUM_TYPES_H__\n\n#include \n\nG_BEGIN_DECLS\n" \ --fprod "/* enumerations from \"@filename@\" */\n" \ --vhead "GType @enum_name@_get_type (void);\n#define ATK_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n" \ @@ -833,7 +875,7 @@ atk-enum-types.c: s-enum-types-c @true s-enum-types-c: @REBUILD@ $(atk_headers) Makefile - ( cd $(srcdir) && $(GLIB_MKENUMS) \ + $(AM_V_GEN) ( cd $(srcdir) && $(GLIB_MKENUMS) \ --fhead "#include " \ --fprod "\n/* enumerations from \"@filename@\" */" \ --vhead "GType\n@enum_name@_get_type (void)\n{\n static GType etype = 0;\n if (etype == 0) {\n static const G@Type@Value values[] = {" \ @@ -844,10 +886,10 @@ && rm -f tmp-atk-enum-types.c \ && echo timestamp > $(@F) -@HAVE_INTROSPECTION_TRUE@Atk-1.0.gir: libatk-1.0.la +@HAVE_INTROSPECTION_TRUE@Atk-1.0.gir: libatk-1.0.la Makefile @OS_WIN32_TRUE@install-def-file: -@OS_WIN32_TRUE@ $(INSTALL) $(srcdir)/atk.def $(DESTDIR)$(libdir)/atk-1.0.def +@OS_WIN32_TRUE@ $(INSTALL) atk.def $(DESTDIR)$(libdir)/atk-1.0.def @OS_WIN32_TRUE@uninstall-def-file: @OS_WIN32_TRUE@ -rm $(DESTDIR)$(libdir)/atk-1.0.def @OS_WIN32_FALSE@install-def-file: @@ -870,6 +912,38 @@ atk-$(ATK_API_VERSION).lib: libatk-$(ATK_API_VERSION).la atk.def lib -machine:$(LIB_EXE_MACHINE_FLAG) -name:libatk-$(ATK_API_VERSION)-$(LT_CURRENT_MINUS_AGE).dll -def:atk.def -out:$@ +dist-hook: ../build/win32/vs9/atk.vcproj ../build/win32/vs10/atk.vcxproj ../build/win32/vs10/atk.vcxproj.filters + +../build/win32/vs9/atk.vcproj: ../build/win32/vs9/atk.vcprojin + for F in $(libatk_1_0_la_SOURCES); do \ + case $$F in \ + *.c) echo ' ' \ + ;; \ + esac; \ + done >libatk.sourcefiles + $(CPP) -P - <$(top_srcdir)/build/win32/vs9/atk.vcprojin >$@ + rm libatk.sourcefiles + +../build/win32/vs10/atk.vcxproj: ../build/win32/vs10/atk.vcxprojin + for F in $(libatk_1_0_la_SOURCES); do \ + case $$F in \ + *.c) echo ' ' \ + ;; \ + esac; \ + done >libatk.vs10.sourcefiles + $(CPP) -P - <$(top_srcdir)/build/win32/vs10/atk.vcxprojin >$@ + rm libatk.vs10.sourcefiles + +../build/win32/vs10/atk.vcxproj.filters: ../build/win32/vs10/atk.vcxproj.filtersin + for F in $(libatk_1_0_la_SOURCES); do \ + case $$F in \ + *.c) echo ' Source Files' \ + ;; \ + esac; \ + done >libatk.vs10.sourcefiles.filters + $(CPP) -P - <$(top_srcdir)/build/win32/vs10/atk.vcxproj.filtersin >$@ + rm libatk.vs10.sourcefiles.filters + distclean-local: if test $(srcdir) = .; then :; else \ rm -f atkmarshal.h atkmarshal.c atk-enum-types.h atk-enum-types.c; \ diff -Nru atk1.0-1.30.0/atk.spec atk1.0-2.2.0/atk.spec --- atk1.0-1.30.0/atk.spec 2010-03-29 22:53:53.000000000 +0000 +++ atk1.0-2.2.0/atk.spec 2011-09-26 22:25:09.000000000 +0000 @@ -1,6 +1,6 @@ Name: atk Summary: Accessibility Toolkit -Version: 1.30.0 +Version: 2.2.0 Release: 1 License: LGPL Group: Development/Libraries diff -Nru atk1.0-1.30.0/build/Makefile.am atk1.0-2.2.0/build/Makefile.am --- atk1.0-1.30.0/build/Makefile.am 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/Makefile.am 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,3 @@ +SUBDIRS = \ + win32 + diff -Nru atk1.0-1.30.0/build/Makefile.in atk1.0-2.2.0/build/Makefile.in --- atk1.0-1.30.0/build/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/Makefile.in 2011-09-26 22:25:00.000000000 +0000 @@ -0,0 +1,622 @@ +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = build +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gtk-doc.m4 \ + $(top_srcdir)/m4/introspection.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-dvi-recursive install-exec-recursive \ + install-html-recursive install-info-recursive \ + install-pdf-recursive install-ps-recursive install-recursive \ + installcheck-recursive installdirs-recursive pdf-recursive \ + ps-recursive uninstall-recursive +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ + $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ + distdir +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AS = @AS@ +ATK_API_VERSION = @ATK_API_VERSION@ +ATK_BINARY_AGE = @ATK_BINARY_AGE@ +ATK_INTERFACE_AGE = @ATK_INTERFACE_AGE@ +ATK_MAJOR_VERSION = @ATK_MAJOR_VERSION@ +ATK_MICRO_VERSION = @ATK_MICRO_VERSION@ +ATK_MINOR_VERSION = @ATK_MINOR_VERSION@ +ATK_VERSION = @ATK_VERSION@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEP_CFLAGS = @DEP_CFLAGS@ +DEP_LIBS = @DEP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_CFLAGS = @GLIB_CFLAGS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_LIBS = @GLIB_LIBS@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GLIB_PACKAGES = @GLIB_PACKAGES@ +GLIB_REQUIRED_VERSION = @GLIB_REQUIRED_VERSION@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GOBJECT_QUERY = @GOBJECT_QUERY@ +GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ +GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@ +GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@ +GTKDOC_MKPDF = @GTKDOC_MKPDF@ +GTKDOC_REBASE = @GTKDOC_REBASE@ +HTML_DIR = @HTML_DIR@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ +INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ +INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ +INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ +INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ +INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ +INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ +INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIB_EXE_MACHINE_FLAG = @LIB_EXE_MACHINE_FLAG@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ +LT_VERSION_INFO = @LT_VERSION_INFO@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PERL = @PERL@ +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@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +RANLIB = @RANLIB@ +REBUILD = @REBUILD@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +WINDRES = @WINDRES@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +ms_librarian = @ms_librarian@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +SUBDIRS = \ + win32 + +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu build/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu build/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +# This directory's subdirectories are mostly independent; you can cd +# into them and run `make' without going through this Makefile. +# To change the values of `make' variables: instead of editing Makefiles, +# (1) if the variable is set in `config.status', edit `config.status' +# (which will cause the Makefiles to be regenerated when you run `make'); +# (2) otherwise, pass the desired values on the `make' command line. +$(RECURSIVE_TARGETS): + @fail= failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +$(RECURSIVE_CLEAN_TARGETS): + @fail= failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + rev=''; for subdir in $$list; do \ + if test "$$subdir" = "."; then :; else \ + rev="$$subdir $$rev"; \ + fi; \ + done; \ + rev="$$rev ."; \ + target=`echo $@ | sed s/-recursive//`; \ + for subdir in $$rev; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done && test -z "$$fail" +tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done +ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ + install-am install-strip tags-recursive + +.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ + all all-am check check-am clean clean-generic clean-libtool \ + ctags ctags-recursive distclean distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ + uninstall uninstall-am + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru atk1.0-1.30.0/build/win32/Makefile.am atk1.0-2.2.0/build/win32/Makefile.am --- atk1.0-1.30.0/build/win32/Makefile.am 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/win32/Makefile.am 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,3 @@ +SUBDIRS = \ + vs9 \ + vs10 diff -Nru atk1.0-1.30.0/build/win32/Makefile.in atk1.0-2.2.0/build/win32/Makefile.in --- atk1.0-1.30.0/build/win32/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/win32/Makefile.in 2011-09-26 22:25:00.000000000 +0000 @@ -0,0 +1,623 @@ +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = build/win32 +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gtk-doc.m4 \ + $(top_srcdir)/m4/introspection.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-dvi-recursive install-exec-recursive \ + install-html-recursive install-info-recursive \ + install-pdf-recursive install-ps-recursive install-recursive \ + installcheck-recursive installdirs-recursive pdf-recursive \ + ps-recursive uninstall-recursive +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ + $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ + distdir +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AS = @AS@ +ATK_API_VERSION = @ATK_API_VERSION@ +ATK_BINARY_AGE = @ATK_BINARY_AGE@ +ATK_INTERFACE_AGE = @ATK_INTERFACE_AGE@ +ATK_MAJOR_VERSION = @ATK_MAJOR_VERSION@ +ATK_MICRO_VERSION = @ATK_MICRO_VERSION@ +ATK_MINOR_VERSION = @ATK_MINOR_VERSION@ +ATK_VERSION = @ATK_VERSION@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEP_CFLAGS = @DEP_CFLAGS@ +DEP_LIBS = @DEP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_CFLAGS = @GLIB_CFLAGS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_LIBS = @GLIB_LIBS@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GLIB_PACKAGES = @GLIB_PACKAGES@ +GLIB_REQUIRED_VERSION = @GLIB_REQUIRED_VERSION@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GOBJECT_QUERY = @GOBJECT_QUERY@ +GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ +GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@ +GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@ +GTKDOC_MKPDF = @GTKDOC_MKPDF@ +GTKDOC_REBASE = @GTKDOC_REBASE@ +HTML_DIR = @HTML_DIR@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ +INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ +INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ +INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ +INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ +INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ +INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ +INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIB_EXE_MACHINE_FLAG = @LIB_EXE_MACHINE_FLAG@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ +LT_VERSION_INFO = @LT_VERSION_INFO@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PERL = @PERL@ +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@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +RANLIB = @RANLIB@ +REBUILD = @REBUILD@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +WINDRES = @WINDRES@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +ms_librarian = @ms_librarian@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +SUBDIRS = \ + vs9 \ + vs10 + +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu build/win32/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu build/win32/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +# This directory's subdirectories are mostly independent; you can cd +# into them and run `make' without going through this Makefile. +# To change the values of `make' variables: instead of editing Makefiles, +# (1) if the variable is set in `config.status', edit `config.status' +# (which will cause the Makefiles to be regenerated when you run `make'); +# (2) otherwise, pass the desired values on the `make' command line. +$(RECURSIVE_TARGETS): + @fail= failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +$(RECURSIVE_CLEAN_TARGETS): + @fail= failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + rev=''; for subdir in $$list; do \ + if test "$$subdir" = "."; then :; else \ + rev="$$subdir $$rev"; \ + fi; \ + done; \ + rev="$$rev ."; \ + target=`echo $@ | sed s/-recursive//`; \ + for subdir in $$rev; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done && test -z "$$fail" +tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done +ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ + install-am install-strip tags-recursive + +.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ + all all-am check check-am clean clean-generic clean-libtool \ + ctags ctags-recursive distclean distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ + uninstall uninstall-am + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru atk1.0-1.30.0/build/win32/vs10/atk.props atk1.0-2.2.0/build/win32/vs10/atk.props --- atk1.0-1.30.0/build/win32/vs10/atk.props 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/win32/vs10/atk.props 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,173 @@ + + + + 1.0 + \"/dummy\" + ..\..\..\..\..\vs10\$(Platform) + $(AtkEtcInstallRoot) + +mkdir $(CopyDir)\bin + +copy $(SolutionDir)$(Configuration)\$(Platform)\bin\*.dll $(CopyDir)\bin + + +mkdir $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atk.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkaction.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkcomponent.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkdocument.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkeditabletext.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkgobjectaccessible.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkhyperlink.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkhyperlinkimpl.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkhypertext.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atknoopobject.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atknoopobjectfactory.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkobject.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkobjectfactory.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkplug.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkimage.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkregistry.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkrelation.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkrelationtype.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkrelationset.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkselection.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atksocket.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkstate.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkstateset.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkstreamablecontent.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atktable.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atktext.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkutil.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkmisc.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkvalue.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atkwindow.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + +copy ..\..\..\atk\atk-enum-types.h $(CopyDir)\include\atk-$(AtkApiVersion)\atk + + +mkdir $(CopyDir)\lib + +copy $(SolutionDir)$(Configuration)\$(Platform)\bin\*-$(AtkApiVersion).lib $(CopyDir)\lib + + + echo EXPORTS >"..\..\..\atk\atk.def" && cl /EP ..\..\..\atk\atk.symbols >>"..\..\..\atk\atk.def" + ATK_COMPILATION;DLL_EXPORT;ATK_LOCALEDIR="$(AtkDummyPrefix)/share/locale" + lib + -1.0-0 + + -1-vs10 + $(AtkSeparateVS10DllPrefix) + $(AtkSeparateVS10DllSuffix) + + + <_ProjectFileVersion>10.0.30319.1 + <_PropertySheetDisplayName>atkprops + $(SolutionDir)$(Configuration)\$(PlatformName)\bin\ + $(SolutionDir)$(Configuration)\$(PlatformName)\obj\$(ProjectName)\ + + + + ..\..\..;..\..\..\atk;$(AtkEtcInstallRoot)\include;$(AtkEtcInstallRoot)\include\glib-2.0;$(AtkEtcInstallRoot)\lib\glib-2.0\include\;%(AdditionalIncludeDirectories) + HAVE_CONFIG_H;G_DISABLE_DEPRECATED;G_DISABLE_SINGLE_INCLUDES;%(PreprocessorDefinitions) + msvc_recommended_pragmas.h;%(ForcedIncludeFiles) + + + glib-2.0.lib;gobject-2.0.lib;gmodule-2.0.lib;intl.lib;%(AdditionalDependencies) + $(AtkEtcInstallRoot)\lib;%(AdditionalLibraryDirectories) + + + +if exist ..\..\..\config.h goto DONE_CONFIG_H + +copy ..\..\..\config.h.win32 ..\..\..\config.h + +:DONE_CONFIG_H + +if exist ..\..\..\atk\atkmarshal.h goto GEN_MARS_C + +$(AtkEtcInstallRoot)\bin\glib-genmarshal --prefix=atk_marshal ..\..\..\atk\atkmarshal.list --header >..\..\..\atk\atkmarshal.h + +:GEN_MARS_C + +if exist ..\..\..\atk\atkmarshal.c goto END + +$(AtkEtcInstallRoot)\bin\glib-genmarshal --prefix=atk_marshal ..\..\..\atk\atkmarshal.list --body >..\..\..\atk\atkmarshal.c + +:END + + + + + + + $(AtkApiVersion) + + + $(AtkDummyPrefix) + + + $(AtkEtcInstallRoot) + + + $(CopyDir) + + + $(AtkDoInstall) + + + $(GenerateAtkDef) + + + $(AtkDefines) + + + $(AtkLibtoolCompatibleDllPrefix) + + + $(AtkLibtoolCompatibleDllSuffix) + + + $(AtkSeparateVS10DllPrefix) + + + $(AtkSeparateVS10DllSuffix) + + + $(AtkDllPrefix) + + + $(AtkDllSuffix) + + + \ No newline at end of file diff -Nru atk1.0-1.30.0/build/win32/vs10/atk.sln atk1.0-2.2.0/build/win32/vs10/atk.sln --- atk1.0-1.30.0/build/win32/vs10/atk.sln 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/win32/vs10/atk.sln 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,36 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual C++ Express 2010 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "atk", "atk.vcxproj", "{86EACD59-F69F-4AAD-854B-AA03D5447360}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "install", "install.vcxproj", "{00702787-1566-484D-991F-3E7E459BB909}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {86EACD59-F69F-4AAD-854B-AA03D5447360}.Debug|Win32.ActiveCfg = Debug|Win32 + {86EACD59-F69F-4AAD-854B-AA03D5447360}.Debug|Win32.Build.0 = Debug|Win32 + {86EACD59-F69F-4AAD-854B-AA03D5447360}.Debug|x64.ActiveCfg = Debug|x64 + {86EACD59-F69F-4AAD-854B-AA03D5447360}.Debug|x64.Build.0 = Debug|x64 + {86EACD59-F69F-4AAD-854B-AA03D5447360}.Release|Win32.ActiveCfg = Release|Win32 + {86EACD59-F69F-4AAD-854B-AA03D5447360}.Release|Win32.Build.0 = Release|Win32 + {86EACD59-F69F-4AAD-854B-AA03D5447360}.Release|x64.ActiveCfg = Release|x64 + {86EACD59-F69F-4AAD-854B-AA03D5447360}.Release|x64.Build.0 = Release|x64 + {00702787-1566-484D-991F-3E7E459BB909}.Debug|Win32.ActiveCfg = Debug|Win32 + {00702787-1566-484D-991F-3E7E459BB909}.Debug|Win32.Build.0 = Debug|Win32 + {00702787-1566-484D-991F-3E7E459BB909}.Debug|x64.ActiveCfg = Debug|x64 + {00702787-1566-484D-991F-3E7E459BB909}.Debug|x64.Build.0 = Debug|x64 + {00702787-1566-484D-991F-3E7E459BB909}.Release|Win32.ActiveCfg = Release|Win32 + {00702787-1566-484D-991F-3E7E459BB909}.Release|Win32.Build.0 = Release|Win32 + {00702787-1566-484D-991F-3E7E459BB909}.Release|x64.ActiveCfg = Release|x64 + {00702787-1566-484D-991F-3E7E459BB909}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff -Nru atk1.0-1.30.0/build/win32/vs10/atk.vcxproj atk1.0-2.2.0/build/win32/vs10/atk.vcxproj --- atk1.0-1.30.0/build/win32/vs10/atk.vcxproj 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/win32/vs10/atk.vcxproj 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,208 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {86EACD59-F69F-4AAD-854B-AA03D5447360} + atk + Win32Proj + + + + DynamicLibrary + Unicode + true + + + DynamicLibrary + Unicode + + + DynamicLibrary + MultiByte + + + DynamicLibrary + MultiByte + + + + + + + + + + + + + + + + + + + + + + + true + false + true + true + + + + Disabled + _DEBUG;$(AtkDefines);%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + + + Level3 + EditAndContinue + + + $(GenerateAtkDef) + + + $(OutDir)$(AtkDllPrefix)$(ProjectName)$(AtkDllSuffix).dll + %(IgnoreSpecificDefaultLibraries) + ..\..\..\atk\atk.def + true + Windows + $(OutDir)$(ProjectName)-$(AtkApiVersion).lib + MachineX86 + + + + + MaxSpeed + true + $(AtkDefines);%(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + $(GenerateAtkDef) + + + $(OutDir)$(AtkDllPrefix)$(ProjectName)$(AtkDllSuffix).dll + %(IgnoreSpecificDefaultLibraries) + ..\..\..\atk\atk.def + true + Windows + true + true + $(OutDir)$(ProjectName)-$(AtkApiVersion).lib + MachineX86 + + + + + Disabled + _DEBUG;$(AtkDefines);%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + + + Level3 + ProgramDatabase + + + $(GenerateAtkDef) + + + %(AdditionalDependencies) + $(OutDir)$(AtkDllPrefix)$(ProjectName)$(AtkDllSuffix).dll + ..\..\..\atk\atk.def + true + Windows + $(TargetDir)$(ProjectName)-$(AtkApiVersion).lib + MachineX64 + + + + + $(AtkDefines);%(PreprocessorDefinitions) + MultiThreadedDLL + + + Level3 + ProgramDatabase + + + $(GenerateAtkDef) + + + %(AdditionalDependencies) + $(OutDir)$(AtkDllPrefix)$(ProjectName)$(AtkDllSuffix).dll + ..\..\..\atk\atk.def + true + Windows + true + true + $(TargetDir)$(ProjectName)-$(AtkApiVersion).lib + MachineX64 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru atk1.0-1.30.0/build/win32/vs10/atk.vcxproj.filters atk1.0-2.2.0/build/win32/vs10/atk.vcxproj.filters --- atk1.0-1.30.0/build/win32/vs10/atk.vcxproj.filters 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/win32/vs10/atk.vcxproj.filters 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,53 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav + + + + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + + + + Resource Files + + + diff -Nru atk1.0-1.30.0/build/win32/vs10/atk.vcxproj.filtersin atk1.0-2.2.0/build/win32/vs10/atk.vcxproj.filtersin --- atk1.0-1.30.0/build/win32/vs10/atk.vcxproj.filtersin 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/win32/vs10/atk.vcxproj.filtersin 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,25 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav + + + +#include "libatk.vs10.sourcefiles.filters" + + + + Resource Files + + + \ No newline at end of file diff -Nru atk1.0-1.30.0/build/win32/vs10/atk.vcxprojin atk1.0-2.2.0/build/win32/vs10/atk.vcxprojin --- atk1.0-1.30.0/build/win32/vs10/atk.vcxprojin 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/win32/vs10/atk.vcxprojin 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,180 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {86EACD59-F69F-4AAD-854B-AA03D5447360} + atk + Win32Proj + + + + DynamicLibrary + Unicode + true + + + DynamicLibrary + Unicode + + + DynamicLibrary + MultiByte + + + DynamicLibrary + MultiByte + + + + + + + + + + + + + + + + + + + + + + + true + false + true + true + + + + Disabled + _DEBUG;$(AtkDefines);%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + + + Level3 + EditAndContinue + + + $(GenerateAtkDef) + + + $(OutDir)$(AtkDllPrefix)$(ProjectName)$(AtkDllSuffix).dll + %(IgnoreSpecificDefaultLibraries) + ..\..\..\atk\atk.def + true + Windows + $(OutDir)$(ProjectName)-$(AtkApiVersion).lib + MachineX86 + + + + + MaxSpeed + true + $(AtkDefines);%(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + $(GenerateAtkDef) + + + $(OutDir)$(AtkDllPrefix)$(ProjectName)$(AtkDllSuffix).dll + %(IgnoreSpecificDefaultLibraries) + ..\..\..\atk\atk.def + true + Windows + true + true + $(OutDir)$(ProjectName)-$(AtkApiVersion).lib + MachineX86 + + + + + Disabled + _DEBUG;$(AtkDefines);%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + + + Level3 + ProgramDatabase + + + $(GenerateAtkDef) + + + %(AdditionalDependencies) + $(OutDir)$(AtkDllPrefix)$(ProjectName)$(AtkDllSuffix).dll + ..\..\..\atk\atk.def + true + Windows + $(TargetDir)$(ProjectName)-$(AtkApiVersion).lib + MachineX64 + + + + + $(AtkDefines);%(PreprocessorDefinitions) + MultiThreadedDLL + + + Level3 + ProgramDatabase + + + $(GenerateAtkDef) + + + %(AdditionalDependencies) + $(OutDir)$(AtkDllPrefix)$(ProjectName)$(AtkDllSuffix).dll + ..\..\..\atk\atk.def + true + Windows + true + true + $(TargetDir)$(ProjectName)-$(AtkApiVersion).lib + MachineX64 + + + +#include "libatk.vs10.sourcefiles" + + + + + + + + \ No newline at end of file diff -Nru atk1.0-1.30.0/build/win32/vs10/install.vcxproj atk1.0-2.2.0/build/win32/vs10/install.vcxproj --- atk1.0-1.30.0/build/win32/vs10/install.vcxproj 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/win32/vs10/install.vcxproj 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,132 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {00702787-1566-484D-991F-3E7E459BB909} + install + + + + Utility + MultiByte + true + + + Application + + + Utility + MultiByte + true + + + Application + + + Application + + + Application + + + Utility + MultiByte + + + Utility + MultiByte + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(AtkEtcInstallRoot)\ + $(AtkEtcInstallRoot)\ + $(Configuration)\ + $(Configuration)\ + + $(AtkEtcInstallRoot)\ + $(Configuration)\ + $(AtkEtcInstallRoot)\ + + + + + $(AtkDoInstall) + + + + + $(AtkDoInstall) + + + $(AtkDoInstall) + + + + + $(AtkDoInstall) + + + + + $(AtkDoInstall) + + + + + {86eacd59-f69f-4aad-854b-aa03d5447360} + false + + + + + + \ No newline at end of file diff -Nru atk1.0-1.30.0/build/win32/vs10/Makefile.am atk1.0-2.2.0/build/win32/vs10/Makefile.am --- atk1.0-1.30.0/build/win32/vs10/Makefile.am 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/win32/vs10/Makefile.am 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,9 @@ +EXTRA_DIST = \ + README.txt \ + atk.sln \ + atk.props \ + atk.vcxproj \ + atk.vcxprojin \ + atk.vcxproj.filters \ + atk.vcxproj.filtersin \ + install.vcxproj diff -Nru atk1.0-1.30.0/build/win32/vs10/Makefile.in atk1.0-2.2.0/build/win32/vs10/Makefile.in --- atk1.0-1.30.0/build/win32/vs10/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/win32/vs10/Makefile.in 2011-09-26 22:25:00.000000000 +0000 @@ -0,0 +1,427 @@ +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = build/win32/vs10 +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gtk-doc.m4 \ + $(top_srcdir)/m4/introspection.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +SOURCES = +DIST_SOURCES = +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AS = @AS@ +ATK_API_VERSION = @ATK_API_VERSION@ +ATK_BINARY_AGE = @ATK_BINARY_AGE@ +ATK_INTERFACE_AGE = @ATK_INTERFACE_AGE@ +ATK_MAJOR_VERSION = @ATK_MAJOR_VERSION@ +ATK_MICRO_VERSION = @ATK_MICRO_VERSION@ +ATK_MINOR_VERSION = @ATK_MINOR_VERSION@ +ATK_VERSION = @ATK_VERSION@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEP_CFLAGS = @DEP_CFLAGS@ +DEP_LIBS = @DEP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_CFLAGS = @GLIB_CFLAGS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_LIBS = @GLIB_LIBS@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GLIB_PACKAGES = @GLIB_PACKAGES@ +GLIB_REQUIRED_VERSION = @GLIB_REQUIRED_VERSION@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GOBJECT_QUERY = @GOBJECT_QUERY@ +GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ +GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@ +GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@ +GTKDOC_MKPDF = @GTKDOC_MKPDF@ +GTKDOC_REBASE = @GTKDOC_REBASE@ +HTML_DIR = @HTML_DIR@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ +INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ +INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ +INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ +INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ +INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ +INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ +INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIB_EXE_MACHINE_FLAG = @LIB_EXE_MACHINE_FLAG@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ +LT_VERSION_INFO = @LT_VERSION_INFO@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PERL = @PERL@ +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@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +RANLIB = @RANLIB@ +REBUILD = @REBUILD@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +WINDRES = @WINDRES@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +ms_librarian = @ms_librarian@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +EXTRA_DIST = \ + README.txt \ + atk.sln \ + atk.props \ + atk.vcxproj \ + atk.vcxprojin \ + atk.vcxproj.filters \ + atk.vcxproj.filtersin \ + install.vcxproj + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu build/win32/vs10/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu build/win32/vs10/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + distclean distclean-generic distclean-libtool distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru atk1.0-1.30.0/build/win32/vs10/README.txt atk1.0-2.2.0/build/win32/vs10/README.txt --- atk1.0-1.30.0/build/win32/vs10/README.txt 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/win32/vs10/README.txt 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,89 @@ +Please do not build this package in a path that contains spaces to avoid +possible problems during the build or during the usage of the library. + +Please refer to the following GNOME Live! page for more detailed +instructions on building ATK and its dependencies with Visual C++: + +https://live.gnome.org/GTK%2B/Win32/MSVCCompilationOfGTKStack + +This VS10 solution and the projects it includes are intented to be used +in a ATK source tree unpacked from a tarball. In a git checkout you +first need to use some Unix-like environment or manual work to expand +the .in files needed, mainly config.h.win32.in into config.h.win32. +You will also need to expand atk.vcxprojin and atk.vcxproj.filtersin here +into atk.vcxproj and atk.vcxproj.filters respectively. + +The dependencies for this package are gettext-runtime (libintl), GLib* +and ZLib. + +a) look for all of the dependencies (except GLib*) under + + http://ftp.gnome.org/pub/GNOME/binaries/win32/dependencies/ (32-bit) -OR- + http://ftp.gnome.org/pub/GNOME/binaries/win64/dependencies/ (64-bit) + + Please use the latest versions of these libraries that are available there, + these are packaged by Tor Lillqvist, which are built with MinGW/GCC. + Please see b) below regarding the build of GLib* + +-OR- + +b) Build them yourself with VS10 (but you may most probably wish to get + gettext-runtime from the URL(s) mentioned in a)). Use the latest + stable versions for them (you may need to get the latest unstable version of + GLib if you are using an unstable version of ATK): + + GLib*: Grab the latest sources from http://www.gtk.org under "Download" + (stable only-please make a search for the latest unstable versions) + ZLib: http://www.zlib.net + + The above 2 packages all have supported mechanisms (Makefiles and/or Project + Files) for building under VS10 (upgrade the Project Files from earlier VS + versions will do for these, when applicable) + +* This GLib refers to a build that is built by VS10 + +Set up the source tree as follows under some arbitrary top +folder : + +\atk\ +\vs10\ + +*this* file you are now reading is thus located at +\atk\\build\win32\vs10\README. + + is either Win32 or x64, as in VS10 project files. + +You should unpack the -dev and (runtime) +into \vs10\, if you download any of the packages from + +http://ftp.gnome.org/pub/GNOME/binaries/win32/dependencies/ (32-bit) -OR- +http://ftp.gnome.org/pub/GNOME/binaries/win64/dependencies/ (64-bit) + +so that for instance libintl.h end up at +\vs10\\include\libintl.h. + +If you build any of the dependencies yourselves, copy the: +-DLLs and EXEs into \vs10\\bin +-headers into \vs10\\include\ +-LIBs into \vs10\\lib + +If you have not built GLib with VS10 and placed the LIBs and headers in a +place where VS10 can find them automatically, you should also uncompress +your GLib sources in \ and build it from there, following the +instructions in \glib<-version>\build\win32\vs10, so that the required +headers, EXEs, DLLs and LIBs will end up in +\vs10\\include\glib-2.0 (headers) +\vs10\\lib (LIBs, also glib-2.0/include/glibocnfig.h) +\vs10\\bin (EXEs/DLLs) +respectively. + +After the build of ATK, the "install" project will copy build results +and headers into their appropriate location under \vs10\. +For instance, built DLLs go into \vs10\\bin, built LIBs into +\vs10\\lib and atk headers into +\vs10\\include\atk-1.0. This is then from where +project files higher in the stack are supposed to look for them, not +from a specific ATK source tree. + +--Chun-wei Fan +--(adapted from the GLib VS9 README.txt file originally written by Tor Lillqvist) diff -Nru atk1.0-1.30.0/build/win32/vs9/atk.sln atk1.0-2.2.0/build/win32/vs9/atk.sln --- atk1.0-1.30.0/build/win32/vs9/atk.sln 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/win32/vs9/atk.sln 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,39 @@ + +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "atk", "atk.vcproj", "{86EACD59-F69F-4AAD-854B-AA03D5447360}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "install", "install.vcproj", "{00702787-1566-484D-991F-3E7E459BB909}" + ProjectSection(ProjectDependencies) = postProject + {86EACD59-F69F-4AAD-854B-AA03D5447360} = {86EACD59-F69F-4AAD-854B-AA03D5447360} + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {86EACD59-F69F-4AAD-854B-AA03D5447360}.Debug|Win32.ActiveCfg = Debug|Win32 + {86EACD59-F69F-4AAD-854B-AA03D5447360}.Debug|Win32.Build.0 = Debug|Win32 + {86EACD59-F69F-4AAD-854B-AA03D5447360}.Release|Win32.ActiveCfg = Release|Win32 + {86EACD59-F69F-4AAD-854B-AA03D5447360}.Release|Win32.Build.0 = Release|Win32 + {86EACD59-F69F-4AAD-854B-AA03D5447360}.Debug|x64.ActiveCfg = Debug|x64 + {86EACD59-F69F-4AAD-854B-AA03D5447360}.Debug|x64.Build.0 = Debug|x64 + {86EACD59-F69F-4AAD-854B-AA03D5447360}.Release|x64.ActiveCfg = Release|x64 + {86EACD59-F69F-4AAD-854B-AA03D5447360}.Release|x64.Build.0 = Release|x64 + {00702787-1566-484D-991F-3E7E459BB909}.Debug|Win32.ActiveCfg = Debug|Win32 + {00702787-1566-484D-991F-3E7E459BB909}.Debug|Win32.Build.0 = Debug|Win32 + {00702787-1566-484D-991F-3E7E459BB909}.Release|Win32.ActiveCfg = Release|Win32 + {00702787-1566-484D-991F-3E7E459BB909}.Release|Win32.Build.0 = Release|Win32 + {00702787-1566-484D-991F-3E7E459BB909}.Debug|x64.ActiveCfg = Debug|x64 + {00702787-1566-484D-991F-3E7E459BB909}.Debug|x64.Build.0 = Debug|x64 + {00702787-1566-484D-991F-3E7E459BB909}.Release|x64.ActiveCfg = Release|x64 + {00702787-1566-484D-991F-3E7E459BB909}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff -Nru atk1.0-1.30.0/build/win32/vs9/atk.vcproj atk1.0-2.2.0/build/win32/vs9/atk.vcproj --- atk1.0-1.30.0/build/win32/vs9/atk.vcproj 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/win32/vs9/atk.vcproj 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru atk1.0-1.30.0/build/win32/vs9/atk.vcprojin atk1.0-2.2.0/build/win32/vs9/atk.vcprojin --- atk1.0-1.30.0/build/win32/vs9/atk.vcprojin 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/win32/vs9/atk.vcprojin 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +#include "libatk.sourcefiles" + + + + + + + + + + diff -Nru atk1.0-1.30.0/build/win32/vs9/atk.vsprops atk1.0-2.2.0/build/win32/vs9/atk.vsprops --- atk1.0-1.30.0/build/win32/vs9/atk.vsprops 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/win32/vs9/atk.vsprops 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + diff -Nru atk1.0-1.30.0/build/win32/vs9/install.vcproj atk1.0-2.2.0/build/win32/vs9/install.vcproj --- atk1.0-1.30.0/build/win32/vs9/install.vcproj 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/win32/vs9/install.vcproj 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru atk1.0-1.30.0/build/win32/vs9/Makefile.am atk1.0-2.2.0/build/win32/vs9/Makefile.am --- atk1.0-1.30.0/build/win32/vs9/Makefile.am 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/win32/vs9/Makefile.am 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,7 @@ +EXTRA_DIST = \ + README.txt \ + atk.sln \ + atk.vsprops \ + atk.vcproj \ + atk.vcprojin \ + install.vcproj diff -Nru atk1.0-1.30.0/build/win32/vs9/Makefile.in atk1.0-2.2.0/build/win32/vs9/Makefile.in --- atk1.0-1.30.0/build/win32/vs9/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/win32/vs9/Makefile.in 2011-09-26 22:25:00.000000000 +0000 @@ -0,0 +1,425 @@ +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = build/win32/vs9 +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gtk-doc.m4 \ + $(top_srcdir)/m4/introspection.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +SOURCES = +DIST_SOURCES = +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AS = @AS@ +ATK_API_VERSION = @ATK_API_VERSION@ +ATK_BINARY_AGE = @ATK_BINARY_AGE@ +ATK_INTERFACE_AGE = @ATK_INTERFACE_AGE@ +ATK_MAJOR_VERSION = @ATK_MAJOR_VERSION@ +ATK_MICRO_VERSION = @ATK_MICRO_VERSION@ +ATK_MINOR_VERSION = @ATK_MINOR_VERSION@ +ATK_VERSION = @ATK_VERSION@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEP_CFLAGS = @DEP_CFLAGS@ +DEP_LIBS = @DEP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_CFLAGS = @GLIB_CFLAGS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_LIBS = @GLIB_LIBS@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GLIB_PACKAGES = @GLIB_PACKAGES@ +GLIB_REQUIRED_VERSION = @GLIB_REQUIRED_VERSION@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GOBJECT_QUERY = @GOBJECT_QUERY@ +GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ +GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@ +GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@ +GTKDOC_MKPDF = @GTKDOC_MKPDF@ +GTKDOC_REBASE = @GTKDOC_REBASE@ +HTML_DIR = @HTML_DIR@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ +INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ +INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ +INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ +INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ +INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ +INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ +INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIB_EXE_MACHINE_FLAG = @LIB_EXE_MACHINE_FLAG@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ +LT_VERSION_INFO = @LT_VERSION_INFO@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PERL = @PERL@ +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@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +RANLIB = @RANLIB@ +REBUILD = @REBUILD@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +WINDRES = @WINDRES@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +ms_librarian = @ms_librarian@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +EXTRA_DIST = \ + README.txt \ + atk.sln \ + atk.vsprops \ + atk.vcproj \ + atk.vcprojin \ + install.vcproj + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu build/win32/vs9/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu build/win32/vs9/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + distclean distclean-generic distclean-libtool distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru atk1.0-1.30.0/build/win32/vs9/README.txt atk1.0-2.2.0/build/win32/vs9/README.txt --- atk1.0-1.30.0/build/win32/vs9/README.txt 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/build/win32/vs9/README.txt 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,89 @@ +Please do not build this package in a path that contains spaces to avoid +possible problems during the build or during the usage of the library. + +Please refer to the following GNOME Live! page for more detailed +instructions on building ATK and its dependencies with Visual C++: + +https://live.gnome.org/GTK%2B/Win32/MSVCCompilationOfGTKStack + +This VS9 solution and the projects it includes are intented to be used +in a ATK source tree unpacked from a tarball. In a git checkout you +first need to use some Unix-like environment or manual work to expand +the .in files needed, mainly config.h.win32.in into config.h.win32. +You will also need to expand atk.vcprojin here into +atk.vcproj. + +The dependencies for this package are gettext-runtime (libintl), GLib* +and ZLib. + +a) look for all of the dependencies (except GLib*) under + + http://ftp.gnome.org/pub/GNOME/binaries/win32/dependencies/ (32-bit) -OR- + http://ftp.gnome.org/pub/GNOME/binaries/win64/dependencies/ (64-bit) + + Please use the latest versions of these libraries that are available there, + these are packaged by Tor Lillqvist, which are built with MinGW/GCC. + Please see b) below regarding the build of GLib* + +-OR- + +b) Build them yourself with VS9 (but you may most probably wish to get + gettext-runtime from the URL(s) mentioned in a)). Use the latest + stable versions for them (you may need to get the latest unstable version of + GLib if you are using an unstable version of ATK): + + GLib*: Grab the latest sources from http://www.gtk.org under "Download" + (stable only-please make a search for the latest unstable versions) + ZLib: http://www.zlib.net + + The above 2 packages all have supported mechanisms (Makefiles and/or Project + Files) for building under VS9 (upgrade the Project Files from earlier VS + versions will do for these, when applicable) + +* This GLib refers to a build that is built by VS9 + +Set up the source tree as follows under some arbitrary top +folder : + +\atk\ +\vs9\ + +*this* file you are now reading is thus located at +\atk\\build\win32\vs9\README. + + is either Win32 or x64, as in VS9 project files. + +You should unpack the -dev and (runtime) +into \vs9\, if you download any of the packages from + +http://ftp.gnome.org/pub/GNOME/binaries/win32/dependencies/ (32-bit) -OR- +http://ftp.gnome.org/pub/GNOME/binaries/win64/dependencies/ (64-bit) + +so that for instance libintl.h end up at +\vs9\\include\libintl.h. + +If you build any of the dependencies yourselves, copy the: +-DLLs and EXEs into \vs9\\bin +-headers into \vs9\\include\ +-LIBs into \vs9\\lib + +If you have not built GLib with VS9 and placed the LIBs and headers in a +place where VS9 can find them automatically, you should also uncompress +your GLib sources in \ and build it from there, following the +instructions in \glib<-version>\build\win32\vs9, so that the required +headers, EXEs, DLLs and LIBs will end up in +\vs9\\include\glib-2.0 (headers) +\vs9\\lib (LIBs, also glib-2.0/include/glibocnfig.h) +\vs9\\bin (EXEs/DLLs) +respectively. + +After the build of ATK, the "install" project will copy build results +and headers into their appropriate location under \vs9\. +For instance, built DLLs go into \vs9\\bin, built LIBs into +\vs9\\lib and atk headers into +\vs9\\include\atk-1.0. This is then from where +project files higher in the stack are supposed to look for them, not +from a specific ATK source tree. + +--Chun-wei Fan +--(adapted from the GLib VS9 README.txt file originally written by Tor Lillqvist) diff -Nru atk1.0-1.30.0/config.guess atk1.0-2.2.0/config.guess --- atk1.0-1.30.0/config.guess 2010-03-29 22:53:48.000000000 +0000 +++ atk1.0-2.2.0/config.guess 2011-09-26 22:24:59.000000000 +0000 @@ -1,10 +1,10 @@ #! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 # Free Software Foundation, Inc. -timestamp='2009-04-27' +timestamp='2009-11-20' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -27,16 +27,16 @@ # the same distribution terms that you use for the rest of that program. -# Originally written by Per Bothner . -# Please send patches to . Submit a context -# diff and a properly formatted ChangeLog entry. +# Originally written by Per Bothner. Please send patches (context +# diff format) to and include a ChangeLog +# entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # -# The plan is that this can be called by configure scripts if you -# don't specify an explicit build system type. +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD me=`echo "$0" | sed -e 's,.*/,,'` @@ -170,7 +170,7 @@ arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ - | grep __ELF__ >/dev/null + | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? @@ -333,6 +333,9 @@ sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; + i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) + echo i386-pc-auroraux${UNAME_RELEASE} + exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) eval $set_cc_for_build SUN_ARCH="i386" @@ -656,7 +659,7 @@ # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | - grep __LP64__ >/dev/null + grep -q __LP64__ then HP_ARCH="hppa2.0w" else @@ -807,12 +810,12 @@ i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; - *:Interix*:[3456]*) + *:Interix*:*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; - EM64T | authenticamd | genuineintel) + authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) @@ -822,6 +825,9 @@ [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; + 8664:Windows_NT:*) + echo x86_64-pc-mks + exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we @@ -851,6 +857,20 @@ i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; + EV56) UNAME_MACHINE=alphaev56 ;; + PCA56) UNAME_MACHINE=alphapca56 ;; + PCA57) UNAME_MACHINE=alphapca56 ;; + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac + objdump --private-headers /bin/sh | grep -q ld.so.1 + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ @@ -873,6 +893,17 @@ frv:Linux:*:*) echo frv-unknown-linux-gnu exit ;; + i*86:Linux:*:*) + LIBC=gnu + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #ifdef __dietlibc__ + LIBC=dietlibc + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` + echo "${UNAME_MACHINE}-pc-linux-${LIBC}" + exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; @@ -882,78 +913,34 @@ m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; - mips:Linux:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #undef CPU - #undef mips - #undef mipsel - #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) - CPU=mipsel - #else - #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) - CPU=mips - #else - CPU= - #endif - #endif -EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' - /^CPU/{ - s: ::g - p - }'`" - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } - ;; - mips64:Linux:*:*) + mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU - #undef mips64 - #undef mips64el + #undef ${UNAME_MACHINE} + #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) - CPU=mips64el + CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) - CPU=mips64 + CPU=${UNAME_MACHINE} #else CPU= #endif #endif EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' - /^CPU/{ - s: ::g - p - }'`" + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) echo or32-unknown-linux-gnu exit ;; - ppc:Linux:*:*) - echo powerpc-unknown-linux-gnu - exit ;; - ppc64:Linux:*:*) - echo powerpc64-unknown-linux-gnu - exit ;; - alpha:Linux:*:*) - case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in - EV5) UNAME_MACHINE=alphaev5 ;; - EV56) UNAME_MACHINE=alphaev56 ;; - PCA56) UNAME_MACHINE=alphapca56 ;; - PCA57) UNAME_MACHINE=alphapca56 ;; - EV6) UNAME_MACHINE=alphaev6 ;; - EV67) UNAME_MACHINE=alphaev67 ;; - EV68*) UNAME_MACHINE=alphaev68 ;; - esac - objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null - if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi - echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} - exit ;; padre:Linux:*:*) echo sparc-unknown-linux-gnu exit ;; + parisc64:Linux:*:* | hppa64:Linux:*:*) + echo hppa64-unknown-linux-gnu + exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in @@ -962,8 +949,11 @@ *) echo hppa-unknown-linux-gnu ;; esac exit ;; - parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-gnu + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-gnu + exit ;; + ppc:Linux:*:*) + echo powerpc-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux @@ -986,66 +976,6 @@ xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; - i*86:Linux:*:*) - # The BFD linker knows what the default object file format is, so - # first see if it will tell us. cd to the root directory to prevent - # problems with other programs or directories called `ld' in the path. - # Set LC_ALL=C to ensure ld outputs messages in English. - ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ - | sed -ne '/supported targets:/!d - s/[ ][ ]*/ /g - s/.*supported targets: *// - s/ .*// - p'` - case "$ld_supported_targets" in - elf32-i386) - TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" - ;; - a.out-i386-linux) - echo "${UNAME_MACHINE}-pc-linux-gnuaout" - exit ;; - "") - # Either a pre-BFD a.out linker (linux-gnuoldld) or - # one that does not give us useful --help. - echo "${UNAME_MACHINE}-pc-linux-gnuoldld" - exit ;; - esac - # Determine whether the default compiler is a.out or elf - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include - #ifdef __ELF__ - # ifdef __GLIBC__ - # if __GLIBC__ >= 2 - LIBC=gnu - # else - LIBC=gnulibc1 - # endif - # else - LIBC=gnulibc1 - # endif - #else - #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) - LIBC=gnu - #else - LIBC=gnuaout - #endif - #endif - #ifdef __dietlibc__ - LIBC=dietlibc - #endif -EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' - /^LIBC/{ - s: ::g - p - }'`" - test x"${LIBC}" != x && { - echo "${UNAME_MACHINE}-pc-linux-${LIBC}" - exit - } - test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } - ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both @@ -1074,7 +1004,7 @@ i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; - i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) + i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) @@ -1182,7 +1112,7 @@ rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; - PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) + PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) @@ -1275,6 +1205,16 @@ *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in + i386) + eval $set_cc_for_build + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + UNAME_PROCESSOR="x86_64" + fi + fi ;; unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} diff -Nru atk1.0-1.30.0/config.h.in atk1.0-2.2.0/config.h.in --- atk1.0-1.30.0/config.h.in 2010-03-29 22:53:47.000000000 +0000 +++ atk1.0-2.2.0/config.h.in 2011-09-26 22:24:59.000000000 +0000 @@ -1,4 +1,4 @@ -/* config.h.in. Generated from configure.in by autoheader. */ +/* config.h.in. Generated from configure.ac by autoheader. */ /* always defined to indicate that i18n is enabled */ #undef ENABLE_NLS diff -Nru atk1.0-1.30.0/config.h.win32 atk1.0-2.2.0/config.h.win32 --- atk1.0-1.30.0/config.h.win32 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/config.h.win32 2011-09-26 22:25:09.000000000 +0000 @@ -0,0 +1,100 @@ +/* config.h.win32.in Hand written to suit the MSVC/MinGW compilers */ +/* config.h.in. Generated from configure.in by autoheader. */ + +/* always defined to indicate that i18n is enabled */ +#define ENABLE_NLS 1 + +/* Define the gettext package to be used */ +#define GETTEXT_PACKAGE "atk10" + +/* Define to 1 if you have the `bind_textdomain_codeset' function. */ +#define HAVE_BIND_TEXTDOMAIN_CODESET 1 + +/* Define to 1 if you have the `dcgettext' function. */ +#define HAVE_DCGETTEXT 1 + +/* Define to 1 if you have the header file. */ +/*#undef HAVE_DLFCN_H*/ + +/* Define if the GNU gettext() function is already present or preinstalled. */ +#define HAVE_GETTEXT 1 + +/* Define to 1 if you have the header file. */ +#ifndef _MSC_VER +#define HAVE_INTTYPES_H 1 +#else +/* #undef HAVE_INTTYPES_H */ +#endif + +/* Define if your file defines LC_MESSAGES. */ +/*#undef HAVE_LC_MESSAGES*/ + +/* Define to 1 if you have the header file. */ +#define HAVE_LOCALE_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_MEMORY_H 1 + +/* Define to 1 if you have the header file. */ +#ifdef _MSC_VER +#if (_MSC_VER >= 1600) +#define HAVE_STDINT_H 1 +#else +/* #undef HAVE_STDINT_H */ +#endif +#else /*not MSVC*/ +#define HAVE_STDINT_H 1 +#endif + +/* Define to 1 if you have the header file. */ +#define HAVE_STDLIB_H 1 + +/* Define to 1 if you have the header file. */ +/*#undef HAVE_STRINGS_H*/ + +/* Define to 1 if you have the header file. */ +#define HAVE_STRING_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_TYPES_H 1 + +/* Define to 1 if you have the header file. */ +#ifndef _MSC_VER +#define HAVE_UNISTD_H 1 +#else +/* #undef HAVE_UNISTD_H */ +#endif + +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#define LT_OBJDIR ".libs/" + +/* Name of package */ +#define PACKAGE "ATK" + +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "http://bugzilla.gnome.org/enter_bug.cgi?product=atk" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "atk" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "atk 2.2.0" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "atk" + +/* Define to the home page for this package. */ +#define PACKAGE_URL "http://www.gtk.org/" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "2.2.0" + +/* Define to 1 if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + +/* Version number of package */ +#define VERSION "2.2.0" diff -Nru atk1.0-1.30.0/config.h.win32.in atk1.0-2.2.0/config.h.win32.in --- atk1.0-1.30.0/config.h.win32.in 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/config.h.win32.in 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,100 @@ +/* config.h.win32.in Hand written to suit the MSVC/MinGW compilers */ +/* config.h.in. Generated from configure.in by autoheader. */ + +/* always defined to indicate that i18n is enabled */ +#define ENABLE_NLS 1 + +/* Define the gettext package to be used */ +#define GETTEXT_PACKAGE "@GETTEXT_PACKAGE@" + +/* Define to 1 if you have the `bind_textdomain_codeset' function. */ +#define HAVE_BIND_TEXTDOMAIN_CODESET 1 + +/* Define to 1 if you have the `dcgettext' function. */ +#define HAVE_DCGETTEXT 1 + +/* Define to 1 if you have the header file. */ +/*#undef HAVE_DLFCN_H*/ + +/* Define if the GNU gettext() function is already present or preinstalled. */ +#define HAVE_GETTEXT 1 + +/* Define to 1 if you have the header file. */ +#ifndef _MSC_VER +#define HAVE_INTTYPES_H 1 +#else +/* #undef HAVE_INTTYPES_H */ +#endif + +/* Define if your file defines LC_MESSAGES. */ +/*#undef HAVE_LC_MESSAGES*/ + +/* Define to 1 if you have the header file. */ +#define HAVE_LOCALE_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_MEMORY_H 1 + +/* Define to 1 if you have the header file. */ +#ifdef _MSC_VER +#if (_MSC_VER >= 1600) +#define HAVE_STDINT_H 1 +#else +/* #undef HAVE_STDINT_H */ +#endif +#else /*not MSVC*/ +#define HAVE_STDINT_H 1 +#endif + +/* Define to 1 if you have the header file. */ +#define HAVE_STDLIB_H 1 + +/* Define to 1 if you have the header file. */ +/*#undef HAVE_STRINGS_H*/ + +/* Define to 1 if you have the header file. */ +#define HAVE_STRING_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_TYPES_H 1 + +/* Define to 1 if you have the header file. */ +#ifndef _MSC_VER +#define HAVE_UNISTD_H 1 +#else +/* #undef HAVE_UNISTD_H */ +#endif + +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#define LT_OBJDIR ".libs/" + +/* Name of package */ +#define PACKAGE "ATK" + +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "http://bugzilla.gnome.org/enter_bug.cgi?product=atk" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "atk" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "atk @ATK_MAJOR_VERSION@.@ATK_MINOR_VERSION@.@ATK_MICRO_VERSION@" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "atk" + +/* Define to the home page for this package. */ +#define PACKAGE_URL "http://www.gtk.org/" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "@ATK_MAJOR_VERSION@.@ATK_MINOR_VERSION@.@ATK_MICRO_VERSION@" + +/* Define to 1 if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + +/* Version number of package */ +#define VERSION "@ATK_MAJOR_VERSION@.@ATK_MINOR_VERSION@.@ATK_MICRO_VERSION@" diff -Nru atk1.0-1.30.0/config.sub atk1.0-2.2.0/config.sub --- atk1.0-1.30.0/config.sub 2010-03-29 22:53:48.000000000 +0000 +++ atk1.0-2.2.0/config.sub 2011-09-26 22:24:59.000000000 +0000 @@ -1,10 +1,10 @@ #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 # Free Software Foundation, Inc. -timestamp='2009-04-17' +timestamp='2009-11-20' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -32,13 +32,16 @@ # Please send patches to . Submit a context -# diff and a properly formatted ChangeLog entry. +# diff and a properly formatted GNU ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD + # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. @@ -149,10 +152,13 @@ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ - -apple | -axis | -knuth | -cray) + -apple | -axis | -knuth | -cray | -microblaze) os= basic_machine=$1 ;; + -bluegene*) + os=-cnk + ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 @@ -281,6 +287,7 @@ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ + | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ @@ -288,13 +295,14 @@ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ + | ubicom32 \ | v850 | v850e \ | we32k \ | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; - m6811 | m68hc11 | m6812 | m68hc12) + m6811 | m68hc11 | m6812 | m68hc12 | picochip) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none @@ -337,7 +345,7 @@ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ - | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ + | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ @@ -365,7 +373,7 @@ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ - | romp-* | rs6000-* \ + | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ @@ -374,6 +382,7 @@ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \ | tron-* \ + | ubicom32-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ @@ -467,6 +476,10 @@ basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; + bluegene*) + basic_machine=powerpc-ibm + os=-cnk + ;; c90) basic_machine=c90-cray os=-unicos @@ -719,6 +732,9 @@ basic_machine=ns32k-utek os=-sysv ;; + microblaze) + basic_machine=microblaze-xilinx + ;; mingw32) basic_machine=i386-pc os=-mingw32 @@ -1240,6 +1256,9 @@ # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. + -auroraux) + os=-auroraux + ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; @@ -1260,9 +1279,9 @@ # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ - | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ - | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ - | -kopensolaris* \ + | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ + | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ + | -sym* | -kopensolaris* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ @@ -1283,7 +1302,7 @@ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos* | -toppers* | -drops*) + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1613,7 +1632,7 @@ -sunos*) vendor=sun ;; - -aix*) + -cnk*|-aix*) vendor=ibm ;; -beos*) diff -Nru atk1.0-1.30.0/configure atk1.0-2.2.0/configure --- atk1.0-1.30.0/configure 2010-03-29 22:53:47.000000000 +0000 +++ atk1.0-2.2.0/configure 2011-09-26 22:24:58.000000000 +0000 @@ -1,13 +1,15 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.64 for atk 1.30.0. +# Generated by GNU Autoconf 2.68 for atk 2.2.0. # # Report bugs to . # +# # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software +# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software # Foundation, Inc. # +# # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## @@ -89,6 +91,7 @@ IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. +as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR @@ -214,11 +217,18 @@ # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. + # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV export CONFIG_SHELL - exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} + case $- in # (((( + *v*x* | *x*v* ) as_opts=-vx ;; + *v* ) as_opts=-v ;; + *x* ) as_opts=-x ;; + * ) as_opts= ;; + esac + exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"} fi if test x$as_have_required = xno; then : @@ -318,7 +328,7 @@ test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p @@ -358,19 +368,19 @@ fi # as_fn_arith -# as_fn_error ERROR [LINENO LOG_FD] -# --------------------------------- +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with status $?, using 1 if that was 0. +# script with STATUS, using 1 if that was 0. as_fn_error () { - as_status=$?; test $as_status -eq 0 && as_status=1 - if test "$3"; then - as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi - $as_echo "$as_me: error: $1" >&2 + $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error @@ -677,10 +687,11 @@ -exec 7<&0 &1 +test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. -# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, +# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` @@ -699,8 +710,8 @@ # Identity of this package. PACKAGE_NAME='atk' PACKAGE_TARNAME='atk' -PACKAGE_VERSION='1.30.0' -PACKAGE_STRING='atk 1.30.0' +PACKAGE_VERSION='2.2.0' +PACKAGE_STRING='atk 2.2.0' PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=atk' PACKAGE_URL='' @@ -747,12 +758,22 @@ LIBOBJS REBUILD PERL +GTK_DOC_USE_REBASE_FALSE +GTK_DOC_USE_REBASE_TRUE GTK_DOC_USE_LIBTOOL_FALSE GTK_DOC_USE_LIBTOOL_TRUE +GTK_DOC_BUILD_PDF_FALSE +GTK_DOC_BUILD_PDF_TRUE +GTK_DOC_BUILD_HTML_FALSE +GTK_DOC_BUILD_HTML_TRUE ENABLE_GTK_DOC_FALSE ENABLE_GTK_DOC_TRUE -GTKDOC_CHECK +GTKDOC_DEPS_LIBS +GTKDOC_DEPS_CFLAGS HTML_DIR +GTKDOC_MKPDF +GTKDOC_REBASE +GTKDOC_CHECK HAVE_INTROSPECTION_FALSE HAVE_INTROSPECTION_TRUE INTROSPECTION_MAKEFILE @@ -779,6 +800,7 @@ MSGFMT_OPTS MSGFMT USE_NLS +GETTEXT_PACKAGE DEP_LIBS DEP_CFLAGS GLIB_MKENUMS @@ -786,6 +808,8 @@ GLIB_GENMARSHAL GLIB_LIBS GLIB_CFLAGS +PKG_CONFIG_LIBDIR +PKG_CONFIG_PATH PKG_CONFIG GLIB_REQUIRED_VERSION GLIB_PACKAGES @@ -816,10 +840,6 @@ EGREP GREP SED -LIBTOOL -OBJDUMP -DLLTOOL -AS host_os host_vendor host_cpu @@ -828,6 +848,10 @@ build_vendor build_cpu build +LIBTOOL +OBJDUMP +DLLTOOL +AS am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE @@ -844,7 +868,6 @@ LDFLAGS CFLAGS CC -GETTEXT_PACKAGE LT_CURRENT_MINUS_AGE LT_VERSION_INFO ATK_BINARY_AGE @@ -854,6 +877,8 @@ ATK_VERSION ATK_MINOR_VERSION ATK_MAJOR_VERSION +AM_BACKSLASH +AM_DEFAULT_VERBOSITY am__untar am__tar AMTAR @@ -918,6 +943,7 @@ ac_subst_files='' ac_user_opts=' enable_option_checking +enable_silent_rules enable_dependency_tracking enable_static enable_shared @@ -930,6 +956,8 @@ enable_introspection with_html_dir enable_gtk_doc +enable_gtk_doc_html +enable_gtk_doc_pdf ' ac_precious_vars='build_alias host_alias @@ -941,8 +969,12 @@ CPPFLAGS CPP PKG_CONFIG +PKG_CONFIG_PATH +PKG_CONFIG_LIBDIR DEP_CFLAGS -DEP_LIBS' +DEP_LIBS +GTKDOC_DEPS_CFLAGS +GTKDOC_DEPS_LIBS' # Initialize some variables set by options. @@ -1005,8 +1037,9 @@ fi case $ac_option in - *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; - *) ac_optarg=yes ;; + *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; + *=) ac_optarg= ;; + *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. @@ -1051,7 +1084,7 @@ ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error "invalid feature name: $ac_useropt" + as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in @@ -1077,7 +1110,7 @@ ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error "invalid feature name: $ac_useropt" + as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in @@ -1281,7 +1314,7 @@ ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error "invalid package name: $ac_useropt" + as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in @@ -1297,7 +1330,7 @@ ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error "invalid package name: $ac_useropt" + as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in @@ -1327,8 +1360,8 @@ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; - -*) as_fn_error "unrecognized option: \`$ac_option' -Try \`$0 --help' for more information." + -*) as_fn_error $? "unrecognized option: \`$ac_option' +Try \`$0 --help' for more information" ;; *=*) @@ -1336,7 +1369,7 @@ # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) - as_fn_error "invalid variable name: \`$ac_envvar'" ;; + as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; @@ -1346,7 +1379,7 @@ $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 - : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} + : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac @@ -1354,13 +1387,13 @@ if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` - as_fn_error "missing argument to $ac_option" + as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; - fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;; + fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi @@ -1383,7 +1416,7 @@ [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac - as_fn_error "expected an absolute directory name for --$ac_var: $ac_val" + as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' @@ -1397,8 +1430,8 @@ if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe - $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. - If a cross compiler is detected then cross compile mode will be used." >&2 + $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. + If a cross compiler is detected then cross compile mode will be used" >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi @@ -1413,9 +1446,9 @@ ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || - as_fn_error "working directory cannot be determined" + as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || - as_fn_error "pwd does not report name of working directory" + as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. @@ -1454,11 +1487,11 @@ fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." - as_fn_error "cannot find sources ($ac_unique_file) in $srcdir" + as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( - cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg" + cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then @@ -1484,7 +1517,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 atk 1.30.0 to adapt to many kinds of systems. +\`configure' configures atk 2.2.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1498,7 +1531,7 @@ --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit - -q, --quiet, --silent do not print \`checking...' messages + -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files @@ -1554,7 +1587,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of atk 1.30.0:";; + short | recursive ) echo "Configuration of atk 2.2.0:";; esac cat <<\_ACEOF @@ -1562,6 +1595,8 @@ --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --enable-silent-rules less verbose build output (undo: `make V=1') + --disable-silent-rules verbose build output (undo: `make V=0') --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors --enable-static[=PKGS] build static libraries [default=no] @@ -1573,7 +1608,9 @@ --disable-glibtest do not try to compile and run a test GLIB program --enable-introspection=[no/auto/yes] Enable introspection for this build - --enable-gtk-doc use gtk-doc to build documentation [default=no] + --enable-gtk-doc use gtk-doc to build documentation [[default=no]] + --enable-gtk-doc-html build documentation in html format [[default=yes]] + --enable-gtk-doc-pdf build documentation in pdf format [[default=no]] Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] @@ -1589,12 +1626,20 @@ LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l - CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I if + CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if 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 DEP_CFLAGS C compiler flags for DEP, overriding pkg-config DEP_LIBS linker flags for DEP, overriding pkg-config + GTKDOC_DEPS_CFLAGS + C compiler flags for GTKDOC_DEPS, overriding pkg-config + GTKDOC_DEPS_LIBS + linker flags for GTKDOC_DEPS, overriding pkg-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. @@ -1662,10 +1707,10 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -atk configure 1.30.0 -generated by GNU Autoconf 2.64 +atk configure 2.2.0 +generated by GNU Autoconf 2.68 -Copyright (C) 2009 Free Software Foundation, Inc. +Copyright (C) 2010 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF @@ -1709,8 +1754,8 @@ ac_retval=1 fi - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - return $ac_retval + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval } # ac_fn_c_try_compile @@ -1755,8 +1800,8 @@ # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - return $ac_retval + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval } # ac_fn_c_try_link @@ -1769,7 +1814,7 @@ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : +if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -1787,7 +1832,7 @@ eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile @@ -1812,7 +1857,7 @@ mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } >/dev/null && { + test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : @@ -1823,8 +1868,8 @@ ac_retval=1 fi - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - return $ac_retval + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval } # ac_fn_c_try_cpp @@ -1865,8 +1910,8 @@ ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - return $ac_retval + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval } # ac_fn_c_try_run @@ -1878,7 +1923,7 @@ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : +if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -1933,7 +1978,7 @@ eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func @@ -1945,10 +1990,10 @@ ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : +if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 @@ -1984,7 +2029,7 @@ else ac_header_preproc=no fi -rm -f conftest.err conftest.$ac_ext +rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } @@ -2007,17 +2052,15 @@ $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} -( cat <<\_ASBOX -## ------------------------------------------------------------------ ## +( $as_echo "## ------------------------------------------------------------------ ## ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=atk ## -## ------------------------------------------------------------------ ## -_ASBOX +## ------------------------------------------------------------------ ##" ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : +if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" @@ -2026,15 +2069,15 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by atk $as_me 1.30.0, which was -generated by GNU Autoconf 2.64. Invocation command line was +It was created by atk $as_me 2.2.0, which was +generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ @@ -2144,11 +2187,9 @@ { echo - cat <<\_ASBOX -## ---------------- ## + $as_echo "## ---------------- ## ## Cache variables. ## -## ---------------- ## -_ASBOX +## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( @@ -2182,11 +2223,9 @@ ) echo - cat <<\_ASBOX -## ----------------- ## + $as_echo "## ----------------- ## ## Output variables. ## -## ----------------- ## -_ASBOX +## ----------------- ##" echo for ac_var in $ac_subst_vars do @@ -2199,11 +2238,9 @@ echo if test -n "$ac_subst_files"; then - cat <<\_ASBOX -## ------------------- ## + $as_echo "## ------------------- ## ## File substitutions. ## -## ------------------- ## -_ASBOX +## ------------------- ##" echo for ac_var in $ac_subst_files do @@ -2217,11 +2254,9 @@ fi if test -s confdefs.h; then - cat <<\_ASBOX -## ----------- ## + $as_echo "## ----------- ## ## confdefs.h. ## -## ----------- ## -_ASBOX +## ----------- ##" echo cat confdefs.h echo @@ -2276,7 +2311,12 @@ ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then - ac_site_file1=$CONFIG_SITE + # We do not want a PATH search for config.site. + case $CONFIG_SITE in #(( + -*) ac_site_file1=./$CONFIG_SITE;; + */*) ac_site_file1=$CONFIG_SITE;; + *) ac_site_file1=./$CONFIG_SITE;; + esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site @@ -2287,18 +2327,22 @@ for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue - if test -r "$ac_site_file"; then + if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 - . "$ac_site_file" + . "$ac_site_file" \ + || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "failed to load site script $ac_site_file +See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then - # Some versions of bash will fail to source /dev/null (special - # files actually), so we avoid doing that. - if test -f "$cache_file"; then + # Some versions of bash will fail to source /dev/null (special files + # actually), so we avoid doing that. DJGPP emulates it as a regular file. + if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in @@ -2367,7 +2411,7 @@ $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} - as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 + as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## @@ -2381,26 +2425,31 @@ +ac_config_headers="$ac_config_headers config.h" -ac_config_headers="$ac_config_headers config.h" - am__api_version='1.11' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do - for ac_t in install-sh install.sh shtool; do - if test -f "$ac_dir/$ac_t"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/$ac_t -c" - break 2 - fi - done + if test -f "$ac_dir/install-sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install-sh -c" + break + elif test -f "$ac_dir/install.sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install.sh -c" + break + elif test -f "$ac_dir/shtool"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/shtool install -c" + break + fi done if test -z "$ac_aux_dir"; then - as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 + as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, @@ -2429,7 +2478,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then -if test "${ac_cv_path_install+set}" = set; then : +if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR @@ -2516,11 +2565,11 @@ ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) - as_fn_error "unsafe absolute working directory name" "$LINENO" 5;; + as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) - as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; + as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; esac # Do `set' in a subshell so we don't clobber the current shell's @@ -2542,7 +2591,7 @@ # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". - as_fn_error "ls -t appears to fail. Make sure there is not a broken + as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi @@ -2552,7 +2601,7 @@ # Ok. : else - as_fn_error "newly created file is older than distributed files! + as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 @@ -2606,7 +2655,7 @@ set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_STRIP+set}" = set; then : +if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then @@ -2646,7 +2695,7 @@ set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then : +if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then @@ -2699,7 +2748,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then - if test "${ac_cv_path_mkdir+set}" = set; then : + if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR @@ -2724,6 +2773,7 @@ fi + test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else @@ -2731,7 +2781,6 @@ # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. - test -d ./--version && rmdir ./--version MKDIR_P="$ac_install_sh -d" fi fi @@ -2750,7 +2799,7 @@ set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_AWK+set}" = set; then : +if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then @@ -2790,7 +2839,7 @@ $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` -if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then : +if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF @@ -2798,7 +2847,7 @@ all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF -# GNU make sometimes prints "make[1]: Entering...", which would confuse us. +# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; @@ -2832,7 +2881,7 @@ am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then - as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 + as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi @@ -2848,7 +2897,7 @@ # Define the identity of the package. PACKAGE='atk' - VERSION='1.30.0' + VERSION='2.2.0' cat >>confdefs.h <<_ACEOF @@ -2889,14 +2938,30 @@ +# Support silent build rules, requires at least automake-1.11. Disable +# by either passing --disable-silent-rules to configure or passing V=1 +# to make +# Check whether --enable-silent-rules was given. +if test "${enable_silent_rules+set}" = set; then : + enableval=$enable_silent_rules; +fi + +case $enable_silent_rules in +yes) AM_DEFAULT_VERBOSITY=0;; +no) AM_DEFAULT_VERBOSITY=1;; +*) AM_DEFAULT_VERBOSITY=0;; +esac +AM_BACKSLASH='\' + + -ATK_MAJOR_VERSION=1 -ATK_MINOR_VERSION=30 +ATK_MAJOR_VERSION=2 +ATK_MINOR_VERSION=2 ATK_MICRO_VERSION=0 -ATK_VERSION=1.30.0 +ATK_VERSION=2.2.0 ATK_API_VERSION=1.0 ATK_INTERFACE_AGE=1 -ATK_BINARY_AGE=3010 +ATK_BINARY_AGE=20210 @@ -2906,20 +2971,13 @@ -LT_VERSION_INFO=3009:1:3009 +LT_VERSION_INFO=20209:1:20209 LT_CURRENT_MINUS_AGE=0 -GETTEXT_PACKAGE=atk10 - - -cat >>confdefs.h <<_ACEOF -#define GETTEXT_PACKAGE "$GETTEXT_PACKAGE" -_ACEOF - - +# Check for programs ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -2930,7 +2988,7 @@ set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then : +if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -2970,7 +3028,7 @@ set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : +if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then @@ -3023,7 +3081,7 @@ set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then : +if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -3063,7 +3121,7 @@ set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then : +if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -3122,7 +3180,7 @@ set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then : +if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -3166,7 +3224,7 @@ set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : +if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then @@ -3220,8 +3278,8 @@ test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "no acceptable C compiler found in \$PATH -See \`config.log' for more details." "$LINENO" 5; } +as_fn_error $? "no acceptable C compiler found in \$PATH +See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 @@ -3242,32 +3300,30 @@ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 - rm -f conftest.er1 conftest.err fi + rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ -#include + int main () { -FILE *f = fopen ("conftest.out", "w"); - return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out conftest.out" +ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 -$as_echo_n "checking for C compiler default output file name... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 +$as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: @@ -3329,62 +3385,28 @@ else ac_file='' fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 -$as_echo "$ac_file" >&6; } if test -z "$ac_file"; then : - $as_echo "$as_me: failed program was:" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +$as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "C compiler cannot create executables -See \`config.log' for more details." "$LINENO" 5; }; } +as_fn_error 77 "C compiler cannot create executables +See \`config.log' for more details" "$LINENO" 5; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 +$as_echo_n "checking for C compiler default output file name... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 +$as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext -# Check that the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 -$as_echo_n "checking whether the C compiler works... " >&6; } -# If not cross compiling, check that we can run a simple program. -if test "$cross_compiling" != yes; then - if { ac_try='./$ac_file' - { { case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; }; then - cross_compiling=no - else - if test "$cross_compiling" = maybe; then - cross_compiling=yes - else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "cannot run C compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details." "$LINENO" 5; } - fi - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - -rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out conftest.out +rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save -# Check that the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 -$as_echo_n "checking whether we are cross compiling... " >&6; } -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 -$as_echo "$cross_compiling" >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" @@ -3414,19 +3436,78 @@ else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." "$LINENO" 5; } +as_fn_error $? "cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details" "$LINENO" 5; } fi -rm -f conftest$ac_cv_exeext +rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +FILE *f = fopen ("conftest.out", "w"); + return ferror (f) || fclose (f) != 0; + + ; + return 0; +} +_ACEOF +ac_clean_files="$ac_clean_files conftest.out" +# Check that the compiler produces executables we can run. If not, either +# the compiler is broken, or we cross compile. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 +$as_echo_n "checking whether we are cross compiling... " >&6; } +if test "$cross_compiling" != yes; then + { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if { ac_try='./conftest$ac_cv_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then + cross_compiling=no + else + if test "$cross_compiling" = maybe; then + cross_compiling=yes + else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot run C compiled programs. +If you meant to cross compile, use \`--host'. +See \`config.log' for more details" "$LINENO" 5; } + fi + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 +$as_echo "$cross_compiling" >&6; } + +rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out +ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } -if test "${ac_cv_objext+set}" = set; then : +if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -3466,8 +3547,8 @@ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "cannot compute suffix of object files: cannot compile -See \`config.log' for more details." "$LINENO" 5; } +as_fn_error $? "cannot compute suffix of object files: cannot compile +See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi @@ -3477,7 +3558,7 @@ ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } -if test "${ac_cv_c_compiler_gnu+set}" = set; then : +if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -3514,7 +3595,7 @@ ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } -if test "${ac_cv_prog_cc_g+set}" = set; then : +if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag @@ -3592,7 +3673,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } -if test "${ac_cv_prog_cc_c89+set}" = set; then : +if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no @@ -3753,7 +3834,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } -if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then : +if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then @@ -3876,28 +3957,20 @@ fi -# Check whether --enable-static was given. -if test "${enable_static+set}" = set; then : - enableval=$enable_static; p=${PACKAGE-default} - case $enableval in - yes) enable_static=yes ;; - no) enable_static=no ;; - *) - enable_static=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_static=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac -else - enable_static=no -fi + +# Initialize libtool + +case `pwd` in + *\ * | *\ *) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 +$as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; +esac + + + +macro_version='2.2.6' +macro_revision='1.3012' + @@ -3907,29 +3980,34 @@ + + + +ltmain="$ac_aux_dir/ltmain.sh" + # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || - as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 + as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } -if test "${ac_cv_build+set}" = set; then : +if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && - as_fn_error "cannot guess build type; you must specify one" "$LINENO" 5 + as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || - as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 + as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; -*) as_fn_error "invalid value of canonical build" "$LINENO" 5;; +*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' @@ -3947,14 +4025,14 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } -if test "${ac_cv_host+set}" = set; then : +if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || - as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 + as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi @@ -3962,7 +4040,7 @@ $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; -*) as_fn_error "invalid value of canonical host" "$LINENO" 5;; +*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' @@ -3978,362 +4056,243 @@ case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac -enable_win32_dll=yes - -case $host in -*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-cegcc*) - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}as", so it can be a program name with args. -set dummy ${ac_tool_prefix}as; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_AS+set}" = set; then : +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 +$as_echo_n "checking for a sed that does not truncate output... " >&6; } +if ${ac_cv_path_SED+:} false; then : $as_echo_n "(cached) " >&6 else - if test -n "$AS"; then - ac_cv_prog_AS="$AS" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ + for ac_i in 1 2 3 4 5 6 7; do + ac_script="$ac_script$as_nl$ac_script" + done + echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed + { ac_script=; unset ac_script;} + if test -z "$SED"; then + ac_path_SED_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. + for ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_AS="${ac_tool_prefix}as" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done + ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue +# Check for GNU ac_path_SED and select it if it is found. + # Check for GNU $ac_path_SED +case `"$ac_path_SED" --version 2>&1` in +*GNU*) + ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo '' >> "conftest.nl" + "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_SED_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_SED="$ac_path_SED" + ac_path_SED_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break done -IFS=$as_save_IFS + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac -fi -fi -AS=$ac_cv_prog_AS -if test -n "$AS"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AS" >&5 -$as_echo "$AS" >&6; } + $ac_path_SED_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_SED"; then + as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 + fi else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + ac_cv_path_SED=$SED fi - fi -if test -z "$ac_cv_prog_AS"; then - ac_ct_AS=$AS - # Extract the first word of "as", so it can be a program name with args. -set dummy as; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_AS+set}" = set; then : +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 +$as_echo "$ac_cv_path_SED" >&6; } + SED="$ac_cv_path_SED" + rm -f conftest.sed + +test -z "$SED" && SED=sed +Xsed="$SED -e 1s/^X//" + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 +$as_echo_n "checking for grep that handles long lines and -e... " >&6; } +if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else - if test -n "$ac_ct_AS"; then - ac_cv_prog_ac_ct_AS="$ac_ct_AS" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH + if test -z "$GREP"; then + ac_path_GREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. + for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_AS="as" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done + ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue +# Check for GNU ac_path_GREP and select it if it is found. + # Check for GNU $ac_path_GREP +case `"$ac_path_GREP" --version 2>&1` in +*GNU*) + ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'GREP' >> "conftest.nl" + "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_GREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_GREP="$ac_path_GREP" + ac_path_GREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break done -IFS=$as_save_IFS + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac -fi -fi -ac_ct_AS=$ac_cv_prog_ac_ct_AS -if test -n "$ac_ct_AS"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AS" >&5 -$as_echo "$ac_ct_AS" >&6; } + $ac_path_GREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_GREP"; then + as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + ac_cv_path_GREP=$GREP fi - if test "x$ac_ct_AS" = x; then - AS="false" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - AS=$ac_ct_AS - fi -else - AS="$ac_cv_prog_AS" fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 +$as_echo "$ac_cv_path_GREP" >&6; } + GREP="$ac_cv_path_GREP" - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. -set dummy ${ac_tool_prefix}dlltool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_DLLTOOL+set}" = set; then : + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 +$as_echo_n "checking for egrep... " >&6; } +if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else - if test -n "$DLLTOOL"; then - ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH + if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 + then ac_cv_path_EGREP="$GREP -E" + else + if test -z "$EGREP"; then + ac_path_EGREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. + for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done + ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue +# Check for GNU ac_path_EGREP and select it if it is found. + # Check for GNU $ac_path_EGREP +case `"$ac_path_EGREP" --version 2>&1` in +*GNU*) + ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'EGREP' >> "conftest.nl" + "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_EGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_EGREP="$ac_path_EGREP" + ac_path_EGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break done -IFS=$as_save_IFS + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac -fi -fi -DLLTOOL=$ac_cv_prog_DLLTOOL -if test -n "$DLLTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 -$as_echo "$DLLTOOL" >&6; } + $ac_path_EGREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_EGREP"; then + as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + ac_cv_path_EGREP=$EGREP fi - + fi fi -if test -z "$ac_cv_prog_DLLTOOL"; then - ac_ct_DLLTOOL=$DLLTOOL - # Extract the first word of "dlltool", so it can be a program name with args. -set dummy dlltool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_DLLTOOL+set}" = set; then : +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 +$as_echo "$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 +$as_echo_n "checking for fgrep... " >&6; } +if ${ac_cv_path_FGREP+:} false; then : $as_echo_n "(cached) " >&6 else - if test -n "$ac_ct_DLLTOOL"; then - ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH + if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 + then ac_cv_path_FGREP="$GREP -F" + else + if test -z "$FGREP"; then + ac_path_FGREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. + for ac_prog in fgrep; do for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_DLLTOOL="dlltool" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL -if test -n "$ac_ct_DLLTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 -$as_echo "$ac_ct_DLLTOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_DLLTOOL" = x; then - DLLTOOL="false" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - DLLTOOL=$ac_ct_DLLTOOL - fi -else - DLLTOOL="$ac_cv_prog_DLLTOOL" -fi - - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. -set dummy ${ac_tool_prefix}objdump; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_OBJDUMP+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$OBJDUMP"; then - ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -OBJDUMP=$ac_cv_prog_OBJDUMP -if test -n "$OBJDUMP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 -$as_echo "$OBJDUMP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_OBJDUMP"; then - ac_ct_OBJDUMP=$OBJDUMP - # Extract the first word of "objdump", so it can be a program name with args. -set dummy objdump; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_OBJDUMP+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_OBJDUMP"; then - ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_OBJDUMP="objdump" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP -if test -n "$ac_ct_OBJDUMP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 -$as_echo "$ac_ct_OBJDUMP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_OBJDUMP" = x; then - OBJDUMP="false" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - OBJDUMP=$ac_ct_OBJDUMP - fi -else - OBJDUMP="$ac_cv_prog_OBJDUMP" -fi - - ;; -esac - -test -z "$AS" && AS=as - - - - - -test -z "$DLLTOOL" && DLLTOOL=dlltool - - - - - -test -z "$OBJDUMP" && OBJDUMP=objdump - - - - - - - -case `pwd` in - *\ * | *\ *) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 -$as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; -esac - - - -macro_version='2.2.6' -macro_revision='1.3012' - - - - - - - - - - - - - -ltmain="$ac_aux_dir/ltmain.sh" - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 -$as_echo_n "checking for a sed that does not truncate output... " >&6; } -if test "${ac_cv_path_SED+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ - for ac_i in 1 2 3 4 5 6 7; do - ac_script="$ac_script$as_nl$ac_script" - done - echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed - { ac_script=; unset ac_script;} - if test -z "$SED"; then - ac_path_SED_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in sed gsed; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue -# Check for GNU ac_path_SED and select it if it is found. - # Check for GNU $ac_path_SED -case `"$ac_path_SED" --version 2>&1` in + ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_FGREP" && $as_test_x "$ac_path_FGREP"; } || continue +# Check for GNU ac_path_FGREP and select it if it is found. + # Check for GNU $ac_path_FGREP +case `"$ac_path_FGREP" --version 2>&1` in *GNU*) - ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; + ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" @@ -4342,14 +4301,14 @@ cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" - $as_echo '' >> "conftest.nl" - "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break + $as_echo 'FGREP' >> "conftest.nl" + "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_SED_max-0}; then + if test $ac_count -gt ${ac_path_FGREP_max-0}; then # Best one so far, save it but keep looking for a better one - ac_cv_path_SED="$ac_path_SED" - ac_path_SED_max=$ac_count + ac_cv_path_FGREP="$ac_path_FGREP" + ac_path_FGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break @@ -4357,235 +4316,26 @@ rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac - $ac_path_SED_found && break 3 + $ac_path_FGREP_found && break 3 done done done IFS=$as_save_IFS - if test -z "$ac_cv_path_SED"; then - as_fn_error "no acceptable sed could be found in \$PATH" "$LINENO" 5 + if test -z "$ac_cv_path_FGREP"; then + as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else - ac_cv_path_SED=$SED + ac_cv_path_FGREP=$FGREP fi + fi fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 -$as_echo "$ac_cv_path_SED" >&6; } - SED="$ac_cv_path_SED" - rm -f conftest.sed +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 +$as_echo "$ac_cv_path_FGREP" >&6; } + FGREP="$ac_cv_path_FGREP" -test -z "$SED" && SED=sed -Xsed="$SED -e 1s/^X//" - - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 -$as_echo_n "checking for grep that handles long lines and -e... " >&6; } -if test "${ac_cv_path_GREP+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$GREP"; then - ac_path_GREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in grep ggrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue -# Check for GNU ac_path_GREP and select it if it is found. - # Check for GNU $ac_path_GREP -case `"$ac_path_GREP" --version 2>&1` in -*GNU*) - ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'GREP' >> "conftest.nl" - "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_GREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_GREP="$ac_path_GREP" - ac_path_GREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_GREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_GREP"; then - as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_GREP=$GREP -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 -$as_echo "$ac_cv_path_GREP" >&6; } - GREP="$ac_cv_path_GREP" - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 -$as_echo_n "checking for egrep... " >&6; } -if test "${ac_cv_path_EGREP+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 - then ac_cv_path_EGREP="$GREP -E" - else - if test -z "$EGREP"; then - ac_path_EGREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in egrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue -# Check for GNU ac_path_EGREP and select it if it is found. - # Check for GNU $ac_path_EGREP -case `"$ac_path_EGREP" --version 2>&1` in -*GNU*) - ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'EGREP' >> "conftest.nl" - "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_EGREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_EGREP="$ac_path_EGREP" - ac_path_EGREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_EGREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_EGREP"; then - as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_EGREP=$EGREP -fi - - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 -$as_echo "$ac_cv_path_EGREP" >&6; } - EGREP="$ac_cv_path_EGREP" - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 -$as_echo_n "checking for fgrep... " >&6; } -if test "${ac_cv_path_FGREP+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 - then ac_cv_path_FGREP="$GREP -F" - else - if test -z "$FGREP"; then - ac_path_FGREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in fgrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_FGREP" && $as_test_x "$ac_path_FGREP"; } || continue -# Check for GNU ac_path_FGREP and select it if it is found. - # Check for GNU $ac_path_FGREP -case `"$ac_path_FGREP" --version 2>&1` in -*GNU*) - ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'FGREP' >> "conftest.nl" - "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_FGREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_FGREP="$ac_path_FGREP" - ac_path_FGREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_FGREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_FGREP"; then - as_fn_error "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_FGREP=$FGREP -fi - - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 -$as_echo "$ac_cv_path_FGREP" >&6; } - FGREP="$ac_cv_path_FGREP" - - -test -z "$GREP" && GREP=grep +test -z "$GREP" && GREP=grep @@ -4651,7 +4401,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi -if test "${lt_cv_path_LD+set}" = set; then : +if ${lt_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then @@ -4688,10 +4438,10 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi -test -z "$LD" && as_fn_error "no acceptable ld found in \$PATH" "$LINENO" 5 +test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } -if test "${lt_cv_prog_gnu_ld+set}" = set; then : +if ${lt_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. @@ -4718,7 +4468,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 $as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } -if test "${lt_cv_path_NM+set}" = set; then : +if ${lt_cv_path_NM+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NM"; then @@ -4778,7 +4528,7 @@ set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_DUMPBIN+set}" = set; then : +if ${ac_cv_prog_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DUMPBIN"; then @@ -4822,7 +4572,7 @@ set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_DUMPBIN+set}" = set; then : +if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DUMPBIN"; then @@ -4885,18 +4635,18 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 $as_echo_n "checking the name lister ($NM) interface... " >&6; } -if test "${lt_cv_nm_interface+set}" = set; then : +if ${lt_cv_nm_interface+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext - (eval echo "\"\$as_me:4893: $ac_compile\"" >&5) + (eval echo "\"\$as_me:4643: $ac_compile\"" >&5) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&5 - (eval echo "\"\$as_me:4896: $NM \\\"conftest.$ac_objext\\\"\"" >&5) + (eval echo "\"\$as_me:4646: $NM \\\"conftest.$ac_objext\\\"\"" >&5) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&5 - (eval echo "\"\$as_me:4899: output\"" >&5) + (eval echo "\"\$as_me:4649: output\"" >&5) cat conftest.out >&5 if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" @@ -4920,7 +4670,7 @@ # find the maximum length of command line arguments { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 $as_echo_n "checking the maximum length of command line arguments... " >&6; } -if test "${lt_cv_sys_max_cmd_len+set}" = set; then : +if ${lt_cv_sys_max_cmd_len+:} false; then : $as_echo_n "(cached) " >&6 else i=0 @@ -5112,7 +4862,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 $as_echo_n "checking for $LD option to reload object files... " >&6; } -if test "${lt_cv_ld_reload_flag+set}" = set; then : +if ${lt_cv_ld_reload_flag+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_reload_flag='-r' @@ -5148,7 +4898,7 @@ set dummy ${ac_tool_prefix}objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_OBJDUMP+set}" = set; then : +if ${ac_cv_prog_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OBJDUMP"; then @@ -5188,7 +4938,7 @@ set dummy objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_OBJDUMP+set}" = set; then : +if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OBJDUMP"; then @@ -5244,7 +4994,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 $as_echo_n "checking how to recognize dependent libraries... " >&6; } -if test "${lt_cv_deplibs_check_method+set}" = set; then : +if ${lt_cv_deplibs_check_method+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_file_magic_cmd='$MAGIC_CMD' @@ -5363,7 +5113,7 @@ lt_cv_deplibs_check_method=pass_all ;; -netbsd* | netbsdelf*-gnu) +netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else @@ -5460,7 +5210,7 @@ set dummy ${ac_tool_prefix}ar; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_AR+set}" = set; then : +if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then @@ -5500,7 +5250,7 @@ set dummy ar; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_AR+set}" = set; then : +if ${ac_cv_prog_ac_ct_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then @@ -5565,7 +5315,7 @@ set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_STRIP+set}" = set; then : +if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then @@ -5605,7 +5355,7 @@ set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then : +if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then @@ -5664,7 +5414,7 @@ set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_RANLIB+set}" = set; then : +if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then @@ -5704,7 +5454,7 @@ set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then : +if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then @@ -5821,7 +5571,7 @@ # Check for command to grab the raw symbol name followed by C symbol from nm. { $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 $as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } -if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then : +if ${lt_cv_sys_global_symbol_pipe+:} false; then : $as_echo_n "(cached) " >&6 else @@ -6099,7 +5849,7 @@ ;; *-*-irix6*) # Find out which ABI we are using. - echo '#line 6102 "configure"' > conftest.$ac_ext + echo '#line 5852 "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -6193,7 +5943,7 @@ CFLAGS="$CFLAGS -belf" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 $as_echo_n "checking whether the C compiler needs -belf... " >&6; } -if test "${lt_cv_cc_needs_belf+set}" = set; then : +if ${lt_cv_cc_needs_belf+:} false; then : $as_echo_n "(cached) " >&6 else ac_ext=c @@ -6269,7 +6019,7 @@ set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_DSYMUTIL+set}" = set; then : +if ${ac_cv_prog_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DSYMUTIL"; then @@ -6309,7 +6059,7 @@ set dummy dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_DSYMUTIL+set}" = set; then : +if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DSYMUTIL"; then @@ -6361,7 +6111,7 @@ set dummy ${ac_tool_prefix}nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_NMEDIT+set}" = set; then : +if ${ac_cv_prog_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NMEDIT"; then @@ -6401,7 +6151,7 @@ set dummy nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_NMEDIT+set}" = set; then : +if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_NMEDIT"; then @@ -6453,7 +6203,7 @@ set dummy ${ac_tool_prefix}lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_LIPO+set}" = set; then : +if ${ac_cv_prog_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$LIPO"; then @@ -6493,7 +6243,7 @@ set dummy lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_LIPO+set}" = set; then : +if ${ac_cv_prog_ac_ct_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_LIPO"; then @@ -6545,7 +6295,7 @@ set dummy ${ac_tool_prefix}otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_OTOOL+set}" = set; then : +if ${ac_cv_prog_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL"; then @@ -6585,7 +6335,7 @@ set dummy otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_OTOOL+set}" = set; then : +if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL"; then @@ -6637,7 +6387,7 @@ set dummy ${ac_tool_prefix}otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_OTOOL64+set}" = set; then : +if ${ac_cv_prog_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL64"; then @@ -6677,7 +6427,7 @@ set dummy otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_OTOOL64+set}" = set; then : +if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL64"; then @@ -6752,7 +6502,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 $as_echo_n "checking for -single_module linker flag... " >&6; } -if test "${lt_cv_apple_cc_single_mod+set}" = set; then : +if ${lt_cv_apple_cc_single_mod+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_apple_cc_single_mod=no @@ -6781,7 +6531,7 @@ $as_echo "$lt_cv_apple_cc_single_mod" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } -if test "${lt_cv_ld_exported_symbols_list+set}" = set; then : +if ${lt_cv_ld_exported_symbols_list+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_exported_symbols_list=no @@ -6858,7 +6608,7 @@ CPP= fi if test -z "$CPP"; then - if test "${ac_cv_prog_CPP+set}" = set; then : + if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded @@ -6888,7 +6638,7 @@ # Broken: fails on valid input. continue fi -rm -f conftest.err conftest.$ac_ext +rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. @@ -6904,11 +6654,11 @@ ac_preproc_ok=: break fi -rm -f conftest.err conftest.$ac_ext +rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext +rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi @@ -6947,7 +6697,7 @@ # Broken: fails on valid input. continue fi -rm -f conftest.err conftest.$ac_ext +rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. @@ -6959,177 +6709,505 @@ # Broken: success on invalid input. continue else - # Passes both tests. -ac_preproc_ok=: -break + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details" "$LINENO" 5; } +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 +$as_echo_n "checking for ANSI C header files... " >&6; } +if ${ac_cv_header_stdc+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#include +#include + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_stdc=yes +else + ac_cv_header_stdc=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "memchr" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "free" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. + if test "$cross_compiling" = yes; then : + : +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#if ((' ' & 0x0FF) == 0x020) +# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) +#else +# define ISLOWER(c) \ + (('a' <= (c) && (c) <= 'i') \ + || ('j' <= (c) && (c) <= 'r') \ + || ('s' <= (c) && (c) <= 'z')) +# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) +#endif + +#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) +int +main () +{ + int i; + for (i = 0; i < 256; i++) + if (XOR (islower (i), ISLOWER (i)) + || toupper (i) != TOUPPER (i)) + return 2; + return 0; +} +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + +else + ac_cv_header_stdc=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 +$as_echo "$ac_cv_header_stdc" >&6; } +if test $ac_cv_header_stdc = yes; then + +$as_echo "#define STDC_HEADERS 1" >>confdefs.h + +fi + +# On IRIX 5.3, sys/types and inttypes.h are conflicting. +for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ + inttypes.h stdint.h unistd.h +do : + as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default +" +if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + +for ac_header in dlfcn.h +do : + ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default +" +if test "x$ac_cv_header_dlfcn_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_DLFCN_H 1 +_ACEOF + +fi + +done + + + +# Set options +# Check whether --enable-static was given. +if test "${enable_static+set}" = set; then : + enableval=$enable_static; p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) + enable_static=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_static=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_static=no +fi + + + + + + + +enable_win32_dll=yes + +case $host in +*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-cegcc*) + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}as", so it can be a program name with args. +set dummy ${ac_tool_prefix}as; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AS+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AS"; then + ac_cv_prog_AS="$AS" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AS="${ac_tool_prefix}as" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AS=$ac_cv_prog_AS +if test -n "$AS"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AS" >&5 +$as_echo "$AS" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_AS"; then + ac_ct_AS=$AS + # Extract the first word of "as", so it can be a program name with args. +set dummy as; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_AS+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_AS"; then + ac_cv_prog_ac_ct_AS="$ac_ct_AS" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_AS="as" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_AS=$ac_cv_prog_ac_ct_AS +if test -n "$ac_ct_AS"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AS" >&5 +$as_echo "$ac_ct_AS" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_AS" = x; then + AS="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + AS=$ac_ct_AS + fi +else + AS="$ac_cv_prog_AS" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. +set dummy ${ac_tool_prefix}dlltool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DLLTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DLLTOOL"; then + ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DLLTOOL=$ac_cv_prog_DLLTOOL +if test -n "$DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 +$as_echo "$DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_DLLTOOL"; then + ac_ct_DLLTOOL=$DLLTOOL + # Extract the first word of "dlltool", so it can be a program name with args. +set dummy dlltool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DLLTOOL"; then + ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_DLLTOOL="dlltool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL +if test -n "$ac_ct_DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 +$as_echo "$ac_ct_DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } fi -rm -f conftest.err conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : + if test "x$ac_ct_DLLTOOL" = x; then + DLLTOOL="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DLLTOOL=$ac_ct_DLLTOOL + fi else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details." "$LINENO" 5; } + DLLTOOL="$ac_cv_prog_DLLTOOL" fi -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 -$as_echo_n "checking for ANSI C header files... " >&6; } -if test "${ac_cv_header_stdc+set}" = set; then : + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. +set dummy ${ac_tool_prefix}objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#include -#include - -int -main () -{ + if test -n "$OBJDUMP"; then + ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_header_stdc=yes +fi +fi +OBJDUMP=$ac_cv_prog_OBJDUMP +if test -n "$OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 +$as_echo "$OBJDUMP" >&6; } else - ac_cv_header_stdc=no + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -if test $ac_cv_header_stdc = yes; then - # SunOS 4.x string.h does not declare mem*, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "memchr" >/dev/null 2>&1; then : -else - ac_cv_header_stdc=no fi -rm -f conftest* +if test -z "$ac_cv_prog_OBJDUMP"; then + ac_ct_OBJDUMP=$OBJDUMP + # Extract the first word of "objdump", so it can be a program name with args. +set dummy objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OBJDUMP"; then + ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_OBJDUMP="objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS fi - -if test $ac_cv_header_stdc = yes; then - # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "free" >/dev/null 2>&1; then : - +fi +ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP +if test -n "$ac_ct_OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 +$as_echo "$ac_ct_OBJDUMP" >&6; } else - ac_cv_header_stdc=no + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } fi -rm -f conftest* + if test "x$ac_ct_OBJDUMP" = x; then + OBJDUMP="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OBJDUMP=$ac_ct_OBJDUMP + fi +else + OBJDUMP="$ac_cv_prog_OBJDUMP" fi -if test $ac_cv_header_stdc = yes; then - # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. - if test "$cross_compiling" = yes; then : - : -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#if ((' ' & 0x0FF) == 0x020) -# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') -# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) -#else -# define ISLOWER(c) \ - (('a' <= (c) && (c) <= 'i') \ - || ('j' <= (c) && (c) <= 'r') \ - || ('s' <= (c) && (c) <= 'z')) -# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) -#endif + ;; +esac -#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) -int -main () -{ - int i; - for (i = 0; i < 256; i++) - if (XOR (islower (i), ISLOWER (i)) - || toupper (i) != TOUPPER (i)) - return 2; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : +test -z "$AS" && AS=as -else - ac_cv_header_stdc=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi -fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 -$as_echo "$ac_cv_header_stdc" >&6; } -if test $ac_cv_header_stdc = yes; then -$as_echo "#define STDC_HEADERS 1" >>confdefs.h -fi -# On IRIX 5.3, sys/types and inttypes.h are conflicting. -for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ - inttypes.h stdint.h unistd.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default -" -eval as_val=\$$as_ac_Header - if test "x$as_val" = x""yes; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +test -z "$DLLTOOL" && DLLTOOL=dlltool -fi -done -for ac_header in dlfcn.h -do : - ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default -" -if test "x$ac_cv_header_dlfcn_h" = x""yes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_DLFCN_H 1 -_ACEOF -fi +test -z "$OBJDUMP" && OBJDUMP=objdump -done -# Set options @@ -7270,7 +7348,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 $as_echo_n "checking for objdir... " >&6; } -if test "${lt_cv_objdir+set}" = set; then : +if ${lt_cv_objdir+:} false; then : $as_echo_n "(cached) " >&6 else rm -f .libs 2>/dev/null @@ -7378,7 +7456,7 @@ if test "$file_magic_cmd" = '$MAGIC_CMD'; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 $as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } -if test "${lt_cv_path_MAGIC_CMD+set}" = set; then : +if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in @@ -7444,7 +7522,7 @@ if test -n "$ac_tool_prefix"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 $as_echo_n "checking for file... " >&6; } -if test "${lt_cv_path_MAGIC_CMD+set}" = set; then : +if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in @@ -7581,7 +7659,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 $as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } -if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then : +if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_rtti_exceptions=no @@ -7597,11 +7675,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:7600: $lt_compile\"" >&5) + (eval echo "\"\$as_me:7678: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:7604: \$? = $ac_status" >&5 + echo "$as_me:7682: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -7920,7 +7998,7 @@ if test -n "$lt_prog_compiler_pic"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } -if test "${lt_cv_prog_compiler_pic_works+set}" = set; then : +if ${lt_cv_prog_compiler_pic_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works=no @@ -7936,11 +8014,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:7939: $lt_compile\"" >&5) + (eval echo "\"\$as_me:8017: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:7943: \$? = $ac_status" >&5 + echo "$as_me:8021: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -7979,7 +8057,7 @@ wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } -if test "${lt_cv_prog_compiler_static_works+set}" = set; then : +if ${lt_cv_prog_compiler_static_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works=no @@ -8022,7 +8100,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if test "${lt_cv_prog_compiler_c_o+set}" = set; then : +if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no @@ -8041,11 +8119,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:8044: $lt_compile\"" >&5) + (eval echo "\"\$as_me:8122: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:8048: \$? = $ac_status" >&5 + echo "$as_me:8126: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -8077,7 +8155,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if test "${lt_cv_prog_compiler_c_o+set}" = set; then : +if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no @@ -8096,11 +8174,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:8099: $lt_compile\"" >&5) + (eval echo "\"\$as_me:8177: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:8103: \$? = $ac_status" >&5 + echo "$as_me:8181: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -8215,9 +8293,6 @@ openbsd*) with_gnu_ld=no ;; - linux* | k*bsd*-gnu) - link_all_deplibs=no - ;; esac ld_shlibs=yes @@ -8400,7 +8475,7 @@ fi ;; - netbsd* | netbsdelf*-gnu) + netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= @@ -8575,7 +8650,6 @@ if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi - link_all_deplibs=no else # not using gcc if test "$host_cpu" = ia64; then @@ -8902,7 +8976,7 @@ link_all_deplibs=yes ;; - netbsd* | netbsdelf*-gnu) + netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else @@ -9847,18 +9921,6 @@ dynamic_linker='GNU/Linux ld.so' ;; -netbsdelf*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='NetBSD ld.elf_so' - ;; - netbsd*) version_type=sunos need_lib_prefix=no @@ -10221,7 +10283,7 @@ # if libdl is installed we need to link against it { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } -if test "${ac_cv_lib_dl_dlopen+set}" = set; then : +if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -10255,7 +10317,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } -if test "x$ac_cv_lib_dl_dlopen" = x""yes; then : +if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else @@ -10269,12 +10331,12 @@ *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" -if test "x$ac_cv_func_shl_load" = x""yes; then : +if test "x$ac_cv_func_shl_load" = xyes; then : lt_cv_dlopen="shl_load" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 $as_echo_n "checking for shl_load in -ldld... " >&6; } -if test "${ac_cv_lib_dld_shl_load+set}" = set; then : +if ${ac_cv_lib_dld_shl_load+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -10308,16 +10370,16 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 $as_echo "$ac_cv_lib_dld_shl_load" >&6; } -if test "x$ac_cv_lib_dld_shl_load" = x""yes; then : +if test "x$ac_cv_lib_dld_shl_load" = xyes; then : lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" else ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" -if test "x$ac_cv_func_dlopen" = x""yes; then : +if test "x$ac_cv_func_dlopen" = xyes; then : lt_cv_dlopen="dlopen" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } -if test "${ac_cv_lib_dl_dlopen+set}" = set; then : +if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -10351,12 +10413,12 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } -if test "x$ac_cv_lib_dl_dlopen" = x""yes; then : +if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 $as_echo_n "checking for dlopen in -lsvld... " >&6; } -if test "${ac_cv_lib_svld_dlopen+set}" = set; then : +if ${ac_cv_lib_svld_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -10390,12 +10452,12 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 $as_echo "$ac_cv_lib_svld_dlopen" >&6; } -if test "x$ac_cv_lib_svld_dlopen" = x""yes; then : +if test "x$ac_cv_lib_svld_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 $as_echo_n "checking for dld_link in -ldld... " >&6; } -if test "${ac_cv_lib_dld_dld_link+set}" = set; then : +if ${ac_cv_lib_dld_dld_link+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -10429,7 +10491,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 $as_echo "$ac_cv_lib_dld_dld_link" >&6; } -if test "x$ac_cv_lib_dld_dld_link" = x""yes; then : +if test "x$ac_cv_lib_dld_dld_link" = xyes; then : lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" fi @@ -10470,7 +10532,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 $as_echo_n "checking whether a program can dlopen itself... " >&6; } -if test "${lt_cv_dlopen_self+set}" = set; then : +if ${lt_cv_dlopen_self+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -10479,7 +10541,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 10482 "configure" +#line 10544 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -10566,7 +10628,7 @@ wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } -if test "${lt_cv_dlopen_self_static+set}" = set; then : +if ${lt_cv_dlopen_self_static+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -10575,7 +10637,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 10578 "configure" +#line 10640 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -10803,6 +10865,18 @@ +for ac_func in bind_textdomain_codeset +do : + ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" +if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_BIND_TEXTDOMAIN_CODESET 1 +_ACEOF + +fi +done + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for some Win32 platform" >&5 $as_echo_n "checking for some Win32 platform... " >&6; } case "$host" in @@ -10861,7 +10935,7 @@ set dummy ${ac_tool_prefix}windres; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_WINDRES+set}" = set; then : +if ${ac_cv_prog_WINDRES+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$WINDRES"; then @@ -10901,7 +10975,7 @@ set dummy windres; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_WINDRES+set}" = set; then : +if ${ac_cv_prog_ac_ct_WINDRES+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_WINDRES"; then @@ -10949,13 +11023,13 @@ fi if test "$WINDRES" = no; then - as_fn_error "*** Could not find an implementation of windres in your PATH." "$LINENO" 5 + as_fn_error $? "*** Could not find an implementation of windres in your PATH." "$LINENO" 5 fi # Extract the first word of "lib.exe", so it can be a program name with args. set dummy lib.exe; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ms_librarian+set}" = set; then : +if ${ac_cv_prog_ms_librarian+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ms_librarian"; then @@ -11002,7 +11076,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for aclocal flags" >&5 $as_echo_n "checking for aclocal flags... " >&6; } -if test "${ac_cv_atk_aclocal_flags+set}" = set; then : +if ${ac_cv_atk_aclocal_flags+:} false; then : $as_echo_n "(cached) " >&6 else @@ -11067,13 +11141,17 @@ + + + + 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. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : +if ${ac_cv_path_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in @@ -11116,7 +11194,7 @@ set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then : +if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in @@ -11179,7 +11257,6 @@ $as_echo "no" >&6; } PKG_CONFIG="" fi - fi no_glib="" @@ -11239,14 +11316,14 @@ int main () { - int major, minor, micro; + unsigned int major, minor, micro; char *tmp_version; fclose (fopen ("conf.glibtest", "w")); /* HP/UX 9 (%@#!) writes to sscanf strings */ tmp_version = g_strdup("$min_glib_version"); - if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { + if (sscanf(tmp_version, "%u.%u.%u", &major, &minor, µ) != 3) { printf("%s, bad version string\n", "$min_glib_version"); exit(1); } @@ -11285,9 +11362,9 @@ } else { - printf("\n*** An old version of GLIB (%d.%d.%d) was found.\n", + printf("\n*** An old version of GLIB (%u.%u.%u) was found.\n", glib_major_version, glib_minor_version, glib_micro_version); - printf("*** You need a version of GLIB newer than %d.%d.%d. The latest version of\n", + printf("*** You need a version of GLIB newer than %u.%u.%u. The latest version of\n", major, minor, micro); printf("*** GLIB is always available from ftp://ftp.gtk.org.\n"); printf("***\n"); @@ -11375,7 +11452,7 @@ GLIB_GENMARSHAL="" GOBJECT_QUERY="" GLIB_MKENUMS="" - as_fn_error " + as_fn_error $? " *** GLIB $GLIB_REQUIRED_VERSION or better is required. The latest version of *** GLIB is always available from ftp://ftp.gtk.org/. If GLIB is installed *** but not in the same location as pkg-config add the location of the file @@ -11393,12 +11470,11 @@ pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for DEP" >&5 $as_echo_n "checking for DEP... " >&6; } - -if test -n "$PKG_CONFIG"; then - if test -n "$DEP_CFLAGS"; then - pkg_cv_DEP_CFLAGS="$DEP_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ + +if test -n "$DEP_CFLAGS"; then + pkg_cv_DEP_CFLAGS="$DEP_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-2.0 >= \$GLIB_REQUIRED_VERSION \$GLIB_PACKAGES\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQUIRED_VERSION $GLIB_PACKAGES") 2>&5 ac_status=$? @@ -11408,15 +11484,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 "$DEP_LIBS"; then - pkg_cv_DEP_LIBS="$DEP_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$DEP_LIBS"; then + pkg_cv_DEP_LIBS="$DEP_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-2.0 >= \$GLIB_REQUIRED_VERSION \$GLIB_PACKAGES\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQUIRED_VERSION $GLIB_PACKAGES") 2>&5 ac_status=$? @@ -11426,14 +11500,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 @@ -11441,21 +11516,21 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - DEP_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "glib-2.0 >= $GLIB_REQUIRED_VERSION $GLIB_PACKAGES"` + DEP_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "glib-2.0 >= $GLIB_REQUIRED_VERSION $GLIB_PACKAGES" 2>&1` else - DEP_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "glib-2.0 >= $GLIB_REQUIRED_VERSION $GLIB_PACKAGES"` + DEP_PKG_ERRORS=`$PKG_CONFIG --print-errors "glib-2.0 >= $GLIB_REQUIRED_VERSION $GLIB_PACKAGES" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$DEP_PKG_ERRORS" >&5 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - as_fn_error " + as_fn_error $? " *** GLib not found. You can find it on ftp://ftp.gtk.org *** Errors follow: $DEP_PKG_ERRORS" "$LINENO" 5 elif test $pkg_failed = untried; then - as_fn_error " + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + as_fn_error $? " *** GLib not found. You can find it on ftp://ftp.gtk.org *** Errors follow: $DEP_PKG_ERRORS" "$LINENO" 5 @@ -11464,18 +11539,27 @@ DEP_LIBS=$pkg_cv_DEP_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi # Rerun PKG_CONFIG to add gthread-2.0 cflags, but not libs DEP_CFLAGS=`$PKG_CONFIG --cflags $GLIB_PACKAGES gthread-2.0` +# i18n stuff +GETTEXT_PACKAGE=atk10 + + +cat >>confdefs.h <<_ACEOF +#define GETTEXT_PACKAGE "$GETTEXT_PACKAGE" +_ACEOF + + ALL_LINGUAS="`grep -v '^#' "$srcdir/po/LINGUAS" | tr '\n' ' '`" for ac_header in locale.h do : ac_fn_c_check_header_mongrel "$LINENO" "locale.h" "ac_cv_header_locale_h" "$ac_includes_default" -if test "x$ac_cv_header_locale_h" = x""yes; then : +if test "x$ac_cv_header_locale_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LOCALE_H 1 _ACEOF @@ -11487,7 +11571,7 @@ if test $ac_cv_header_locale_h = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5 $as_echo_n "checking for LC_MESSAGES... " >&6; } -if test "${am_cv_val_LC_MESSAGES+set}" = set; then : +if ${am_cv_val_LC_MESSAGES+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11527,7 +11611,7 @@ INTLLIBS= ac_fn_c_check_header_mongrel "$LINENO" "libintl.h" "ac_cv_header_libintl_h" "$ac_includes_default" -if test "x$ac_cv_header_libintl_h" = x""yes; then : +if test "x$ac_cv_header_libintl_h" = xyes; then : gt_cv_func_dgettext_libintl="no" libintl_extra_libs="" @@ -11536,7 +11620,7 @@ # { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in libc" >&5 $as_echo_n "checking for ngettext in libc... " >&6; } -if test "${gt_cv_func_ngettext_libc+set}" = set; then : +if ${gt_cv_func_ngettext_libc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11567,7 +11651,7 @@ if test "$gt_cv_func_ngettext_libc" = "yes" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in libc" >&5 $as_echo_n "checking for dgettext in libc... " >&6; } -if test "${gt_cv_func_dgettext_libc+set}" = set; then : +if ${gt_cv_func_dgettext_libc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11600,7 +11684,7 @@ for ac_func in bind_textdomain_codeset do : ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" -if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then : +if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_BIND_TEXTDOMAIN_CODESET 1 _ACEOF @@ -11619,7 +11703,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bindtextdomain in -lintl" >&5 $as_echo_n "checking for bindtextdomain in -lintl... " >&6; } -if test "${ac_cv_lib_intl_bindtextdomain+set}" = set; then : +if ${ac_cv_lib_intl_bindtextdomain+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -11653,10 +11737,10 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_bindtextdomain" >&5 $as_echo "$ac_cv_lib_intl_bindtextdomain" >&6; } -if test "x$ac_cv_lib_intl_bindtextdomain" = x""yes; then : +if test "x$ac_cv_lib_intl_bindtextdomain" = xyes; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -lintl" >&5 $as_echo_n "checking for ngettext in -lintl... " >&6; } -if test "${ac_cv_lib_intl_ngettext+set}" = set; then : +if ${ac_cv_lib_intl_ngettext+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -11690,10 +11774,10 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_ngettext" >&5 $as_echo "$ac_cv_lib_intl_ngettext" >&6; } -if test "x$ac_cv_lib_intl_ngettext" = x""yes; then : +if test "x$ac_cv_lib_intl_ngettext" = xyes; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in -lintl" >&5 $as_echo_n "checking for dgettext in -lintl... " >&6; } -if test "${ac_cv_lib_intl_dgettext+set}" = set; then : +if ${ac_cv_lib_intl_dgettext+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -11727,7 +11811,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dgettext" >&5 $as_echo "$ac_cv_lib_intl_dgettext" >&6; } -if test "x$ac_cv_lib_intl_dgettext" = x""yes; then : +if test "x$ac_cv_lib_intl_dgettext" = xyes; then : gt_cv_func_dgettext_libintl=yes fi @@ -11743,7 +11827,7 @@ $as_echo "" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -lintl" >&5 $as_echo_n "checking for ngettext in -lintl... " >&6; } -if test "${ac_cv_lib_intl_ngettext+set}" = set; then : +if ${ac_cv_lib_intl_ngettext+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -11777,10 +11861,10 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_ngettext" >&5 $as_echo "$ac_cv_lib_intl_ngettext" >&6; } -if test "x$ac_cv_lib_intl_ngettext" = x""yes; then : +if test "x$ac_cv_lib_intl_ngettext" = xyes; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dcgettext in -lintl" >&5 $as_echo_n "checking for dcgettext in -lintl... " >&6; } -if test "${ac_cv_lib_intl_dcgettext+set}" = set; then : +if ${ac_cv_lib_intl_dcgettext+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -11814,7 +11898,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dcgettext" >&5 $as_echo "$ac_cv_lib_intl_dcgettext" >&6; } -if test "x$ac_cv_lib_intl_dcgettext" = x""yes; then : +if test "x$ac_cv_lib_intl_dcgettext" = xyes; then : gt_cv_func_dgettext_libintl=yes libintl_extra_libs=-liconv else @@ -11839,7 +11923,7 @@ for ac_func in bind_textdomain_codeset do : ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" -if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then : +if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_BIND_TEXTDOMAIN_CODESET 1 _ACEOF @@ -11877,7 +11961,7 @@ set dummy msgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_MSGFMT+set}" = set; then : +if ${ac_cv_path_MSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case "$MSGFMT" in @@ -11914,7 +11998,7 @@ for ac_func in dcgettext do : ac_fn_c_check_func "$LINENO" "dcgettext" "ac_cv_func_dcgettext" -if test "x$ac_cv_func_dcgettext" = x""yes; then : +if test "x$ac_cv_func_dcgettext" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_DCGETTEXT 1 _ACEOF @@ -11955,7 +12039,7 @@ set dummy gmsgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_GMSGFMT+set}" = set; then : +if ${ac_cv_path_GMSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case $GMSGFMT in @@ -11996,7 +12080,7 @@ set dummy xgettext; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_XGETTEXT+set}" = set; then : +if ${ac_cv_path_XGETTEXT+:} false; then : $as_echo_n "(cached) " >&6 else case "$XGETTEXT" in @@ -12047,7 +12131,7 @@ case $host in *-*-solaris*) ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" -if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then : +if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then : CATOBJEXT=.gmo DATADIRNAME=share else @@ -12176,18 +12260,7 @@ < $srcdir/po/POTFILES.in > po/POTFILES -for ac_func in bind_textdomain_codeset -do : - ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" -if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_BIND_TEXTDOMAIN_CODESET 1 -_ACEOF - -fi -done - - +# Introspection support @@ -12215,7 +12288,7 @@ test $ac_status = 0; }; then : else - as_fn_error "gobject-introspection-1.0 is not installed" "$LINENO" 5 + as_fn_error $? "gobject-introspection-1.0 is not installed" "$LINENO" 5 fi if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gobject-introspection-1.0 >= 0.6.7\""; } >&5 @@ -12225,7 +12298,7 @@ test $ac_status = 0; }; then found_introspection=yes else - as_fn_error "You need to have gobject-introspection >= 0.6.7 installed to build atk" "$LINENO" 5 + as_fn_error $? "You need to have gobject-introspection >= 0.6.7 installed to build atk" "$LINENO" 5 fi ;; #( auto) : @@ -12241,7 +12314,7 @@ fi ;; #( *) : - as_fn_error "invalid argument passed to --enable-introspection, should be one of [no/auto/yes]" "$LINENO" 5 + as_fn_error $? "invalid argument passed to --enable-introspection, should be one of [no/auto/yes]" "$LINENO" 5 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $found_introspection" >&5 @@ -12282,56 +12355,62 @@ +# Documentation support -# Check whether --with-html-dir was given. -if test "${with_html_dir+set}" = set; then : - withval=$with_html_dir; -else - with_html_dir='${datadir}/gtk-doc/html' -fi - - HTML_DIR="$with_html_dir" - - # Check whether --enable-gtk-doc was given. -if test "${enable_gtk_doc+set}" = set; then : - enableval=$enable_gtk_doc; + # Extract the first word of "gtkdoc-check", so it can be a program name with args. +set dummy gtkdoc-check; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_GTKDOC_CHECK+:} false; then : + $as_echo_n "(cached) " >&6 else - enable_gtk_doc=no -fi - + case $GTKDOC_CHECK in + [\\/]* | ?:[\\/]*) + ac_cv_path_GTKDOC_CHECK="$GTKDOC_CHECK" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_GTKDOC_CHECK="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS - if test x$enable_gtk_doc = xyes; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk-doc >= 1.0\""; } >&5 - ($PKG_CONFIG --exists --print-errors "gtk-doc >= 1.0") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - : + ;; +esac +fi +GTKDOC_CHECK=$ac_cv_path_GTKDOC_CHECK +if test -n "$GTKDOC_CHECK"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTKDOC_CHECK" >&5 +$as_echo "$GTKDOC_CHECK" >&6; } else - as_fn_error "You need to have gtk-doc >= 1.0 installed to build gtk-doc" "$LINENO" 5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } fi - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build gtk-doc documentation" >&5 -$as_echo_n "checking whether to build gtk-doc documentation... " >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_gtk_doc" >&5 -$as_echo "$enable_gtk_doc" >&6; } - for ac_prog in gtkdoc-check + for ac_prog in gtkdoc-rebase do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_GTKDOC_CHECK+set}" = set; then : +if ${ac_cv_path_GTKDOC_REBASE+:} false; then : $as_echo_n "(cached) " >&6 else - case $GTKDOC_CHECK in + case $GTKDOC_REBASE in [\\/]* | ?:[\\/]*) - ac_cv_path_GTKDOC_CHECK="$GTKDOC_CHECK" # Let the user override the test with a path. + ac_cv_path_GTKDOC_REBASE="$GTKDOC_REBASE" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR @@ -12341,7 +12420,7 @@ test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_GTKDOC_CHECK="$as_dir/$ac_word$ac_exec_ext" + ac_cv_path_GTKDOC_REBASE="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi @@ -12352,18 +12431,207 @@ ;; esac fi -GTKDOC_CHECK=$ac_cv_path_GTKDOC_CHECK -if test -n "$GTKDOC_CHECK"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTKDOC_CHECK" >&5 -$as_echo "$GTKDOC_CHECK" >&6; } +GTKDOC_REBASE=$ac_cv_path_GTKDOC_REBASE +if test -n "$GTKDOC_REBASE"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTKDOC_REBASE" >&5 +$as_echo "$GTKDOC_REBASE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi - test -n "$GTKDOC_CHECK" && break + test -n "$GTKDOC_REBASE" && break +done +test -n "$GTKDOC_REBASE" || GTKDOC_REBASE="true" + + # Extract the first word of "gtkdoc-mkpdf", so it can be a program name with args. +set dummy gtkdoc-mkpdf; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_GTKDOC_MKPDF+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $GTKDOC_MKPDF in + [\\/]* | ?:[\\/]*) + ac_cv_path_GTKDOC_MKPDF="$GTKDOC_MKPDF" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_GTKDOC_MKPDF="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi done + done +IFS=$as_save_IFS + + ;; +esac +fi +GTKDOC_MKPDF=$ac_cv_path_GTKDOC_MKPDF +if test -n "$GTKDOC_MKPDF"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTKDOC_MKPDF" >&5 +$as_echo "$GTKDOC_MKPDF" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + + +# Check whether --with-html-dir was given. +if test "${with_html_dir+set}" = set; then : + withval=$with_html_dir; +else + with_html_dir='${datadir}/gtk-doc/html' +fi + + HTML_DIR="$with_html_dir" + + + # Check whether --enable-gtk-doc was given. +if test "${enable_gtk_doc+set}" = set; then : + enableval=$enable_gtk_doc; +else + enable_gtk_doc=no +fi + + + if test x$enable_gtk_doc = xyes; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk-doc >= 1.13\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gtk-doc >= 1.13") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + : +else + as_fn_error $? "You need to have gtk-doc >= 1.13 installed to build $PACKAGE_NAME" "$LINENO" 5 +fi + if test "x$PACKAGE_NAME" != "xglib"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTKDOC_DEPS" >&5 +$as_echo_n "checking for GTKDOC_DEPS... " >&6; } + +if test -n "$GTKDOC_DEPS_CFLAGS"; then + pkg_cv_GTKDOC_DEPS_CFLAGS="$GTKDOC_DEPS_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-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GTKDOC_DEPS_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0" 2>/dev/null` +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$GTKDOC_DEPS_LIBS"; then + pkg_cv_GTKDOC_DEPS_LIBS="$GTKDOC_DEPS_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-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GTKDOC_DEPS_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0" 2>/dev/null` +else + pkg_failed=yes +fi + 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 +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + GTKDOC_DEPS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0" 2>&1` + else + GTKDOC_DEPS_PKG_ERRORS=`$PKG_CONFIG --print-errors "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$GTKDOC_DEPS_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements (glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0) were not met: + +$GTKDOC_DEPS_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables GTKDOC_DEPS_CFLAGS +and GTKDOC_DEPS_LIBS to avoid the need to call pkg-config. +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 +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables GTKDOC_DEPS_CFLAGS +and GTKDOC_DEPS_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } +else + GTKDOC_DEPS_CFLAGS=$pkg_cv_GTKDOC_DEPS_CFLAGS + GTKDOC_DEPS_LIBS=$pkg_cv_GTKDOC_DEPS_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + fi + fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build gtk-doc documentation" >&5 +$as_echo_n "checking whether to build gtk-doc documentation... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_gtk_doc" >&5 +$as_echo "$enable_gtk_doc" >&6; } + + # Check whether --enable-gtk-doc-html was given. +if test "${enable_gtk_doc_html+set}" = set; then : + enableval=$enable_gtk_doc_html; +else + enable_gtk_doc_html=yes +fi + + # Check whether --enable-gtk-doc-pdf was given. +if test "${enable_gtk_doc_pdf+set}" = set; then : + enableval=$enable_gtk_doc_pdf; +else + enable_gtk_doc_pdf=no +fi + + + if test -z "$GTKDOC_MKPDF"; then + enable_gtk_doc_pdf=no + fi if test x$enable_gtk_doc = xyes; then @@ -12374,6 +12642,22 @@ ENABLE_GTK_DOC_FALSE= fi + if test x$enable_gtk_doc_html = xyes; then + GTK_DOC_BUILD_HTML_TRUE= + GTK_DOC_BUILD_HTML_FALSE='#' +else + GTK_DOC_BUILD_HTML_TRUE='#' + GTK_DOC_BUILD_HTML_FALSE= +fi + + if test x$enable_gtk_doc_pdf = xyes; then + GTK_DOC_BUILD_PDF_TRUE= + GTK_DOC_BUILD_PDF_FALSE='#' +else + GTK_DOC_BUILD_PDF_TRUE='#' + GTK_DOC_BUILD_PDF_FALSE= +fi + if test -n "$LIBTOOL"; then GTK_DOC_USE_LIBTOOL_TRUE= GTK_DOC_USE_LIBTOOL_FALSE='#' @@ -12382,6 +12666,14 @@ GTK_DOC_USE_LIBTOOL_FALSE= fi + if test -n "$GTKDOC_REBASE"; then + GTK_DOC_USE_REBASE_TRUE= + GTK_DOC_USE_REBASE_FALSE='#' +else + GTK_DOC_USE_REBASE_TRUE='#' + GTK_DOC_USE_REBASE_FALSE= +fi + # define a MAINT-like variable REBUILD which is set if Perl @@ -12393,7 +12685,7 @@ set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_AWK+set}" = set; then : +if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then @@ -12435,7 +12727,7 @@ set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_PERL+set}" = set; then : +if ${ac_cv_prog_PERL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$PERL"; then @@ -12481,7 +12773,7 @@ fi -ac_config_files="$ac_config_files Makefile po/Makefile.in atk.pc atk-uninstalled.pc atk/Makefile atk/atk.rc tests/Makefile docs/Makefile docs/version.xml atk.spec atk-zip.sh" +ac_config_files="$ac_config_files Makefile po/Makefile.in atk.pc atk-uninstalled.pc atk/Makefile atk/atk.rc tests/Makefile build/Makefile build/win32/Makefile build/win32/vs9/Makefile build/win32/vs10/Makefile docs/Makefile docs/version.xml atk.spec atk-zip.sh config.h.win32" cat >confcache <<\_ACEOF @@ -12548,10 +12840,21 @@ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then - test "x$cache_file" != "x/dev/null" && + if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} - cat confcache >$cache_file + if test ! -f "$cache_file" || test -h "$cache_file"; then + cat confcache >"$cache_file" + else + case $cache_file in #( + */* | ?:*) + mv -f confcache "$cache_file"$$ && + mv -f "$cache_file"$$ "$cache_file" ;; #( + *) + mv -f confcache "$cache_file" ;; + esac + fi + fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} @@ -12567,6 +12870,7 @@ ac_libobjs= ac_ltlibobjs= +U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' @@ -12590,39 +12894,51 @@ fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then - as_fn_error "conditional \"AMDEP\" was never defined. + as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then - as_fn_error "conditional \"am__fastdepCC\" was never defined. + as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${PLATFORM_WIN32_TRUE}" && test -z "${PLATFORM_WIN32_FALSE}"; then - as_fn_error "conditional \"PLATFORM_WIN32\" was never defined. + as_fn_error $? "conditional \"PLATFORM_WIN32\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${OS_WIN32_TRUE}" && test -z "${OS_WIN32_FALSE}"; then - as_fn_error "conditional \"OS_WIN32\" was never defined. + as_fn_error $? "conditional \"OS_WIN32\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${MS_LIB_AVAILABLE_TRUE}" && test -z "${MS_LIB_AVAILABLE_FALSE}"; then - as_fn_error "conditional \"MS_LIB_AVAILABLE\" was never defined. + as_fn_error $? "conditional \"MS_LIB_AVAILABLE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_INTROSPECTION_TRUE}" && test -z "${HAVE_INTROSPECTION_FALSE}"; then - as_fn_error "conditional \"HAVE_INTROSPECTION\" was never defined. + as_fn_error $? "conditional \"HAVE_INTROSPECTION\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_GTK_DOC_TRUE}" && test -z "${ENABLE_GTK_DOC_FALSE}"; then - as_fn_error "conditional \"ENABLE_GTK_DOC\" was never defined. + as_fn_error $? "conditional \"ENABLE_GTK_DOC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${GTK_DOC_BUILD_HTML_TRUE}" && test -z "${GTK_DOC_BUILD_HTML_FALSE}"; then + as_fn_error $? "conditional \"GTK_DOC_BUILD_HTML\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${GTK_DOC_BUILD_PDF_TRUE}" && test -z "${GTK_DOC_BUILD_PDF_FALSE}"; then + as_fn_error $? "conditional \"GTK_DOC_BUILD_PDF\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GTK_DOC_USE_LIBTOOL_TRUE}" && test -z "${GTK_DOC_USE_LIBTOOL_FALSE}"; then - as_fn_error "conditional \"GTK_DOC_USE_LIBTOOL\" was never defined. + as_fn_error $? "conditional \"GTK_DOC_USE_LIBTOOL\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${GTK_DOC_USE_REBASE_TRUE}" && test -z "${GTK_DOC_USE_REBASE_FALSE}"; then + as_fn_error $? "conditional \"GTK_DOC_USE_REBASE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi -: ${CONFIG_STATUS=./config.status} +: "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" @@ -12723,6 +13039,7 @@ IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. +as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR @@ -12768,19 +13085,19 @@ (unset CDPATH) >/dev/null 2>&1 && unset CDPATH -# as_fn_error ERROR [LINENO LOG_FD] -# --------------------------------- +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with status $?, using 1 if that was 0. +# script with STATUS, using 1 if that was 0. as_fn_error () { - as_status=$?; test $as_status -eq 0 && as_status=1 - if test "$3"; then - as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi - $as_echo "$as_me: error: $1" >&2 + $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error @@ -12976,7 +13293,7 @@ test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p @@ -13029,8 +13346,8 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by atk $as_me 1.30.0, which was -generated by GNU Autoconf 2.64. Invocation command line was +This file was extended by atk $as_me 2.2.0, which was +generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS @@ -13070,6 +13387,7 @@ -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit + --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files @@ -13092,12 +13410,13 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -atk config.status 1.30.0 -configured by $0, generated by GNU Autoconf 2.64, - with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" +atk config.status 2.2.0 +configured by $0, generated by GNU Autoconf 2.68, + with options \\"\$ac_cs_config\\" -Copyright (C) 2009 Free Software Foundation, Inc. +Copyright (C) 2010 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." @@ -13115,11 +13434,16 @@ while test $# != 0 do case $1 in - --*=*) + --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; + --*=) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg= + ac_shift=: + ;; *) ac_option=$1 ac_optarg=$2 @@ -13133,12 +13457,15 @@ ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; + --config | --confi | --conf | --con | --co | --c ) + $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; @@ -13151,7 +13478,7 @@ ac_need_defaults=false;; --he | --h) # Conflict between --help and --header - as_fn_error "ambiguous option: \`$1' + as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; @@ -13160,7 +13487,7 @@ ac_cs_silent=: ;; # This is an error. - -*) as_fn_error "unrecognized option: \`$1' + -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" @@ -13214,12 +13541,12 @@ sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' +macro_version='`$ECHO "X$macro_version" | $Xsed -e "$delay_single_quote_subst"`' +macro_revision='`$ECHO "X$macro_revision" | $Xsed -e "$delay_single_quote_subst"`' enable_static='`$ECHO "X$enable_static" | $Xsed -e "$delay_single_quote_subst"`' AS='`$ECHO "X$AS" | $Xsed -e "$delay_single_quote_subst"`' DLLTOOL='`$ECHO "X$DLLTOOL" | $Xsed -e "$delay_single_quote_subst"`' OBJDUMP='`$ECHO "X$OBJDUMP" | $Xsed -e "$delay_single_quote_subst"`' -macro_version='`$ECHO "X$macro_version" | $Xsed -e "$delay_single_quote_subst"`' -macro_revision='`$ECHO "X$macro_revision" | $Xsed -e "$delay_single_quote_subst"`' enable_shared='`$ECHO "X$enable_shared" | $Xsed -e "$delay_single_quote_subst"`' pic_mode='`$ECHO "X$pic_mode" | $Xsed -e "$delay_single_quote_subst"`' enable_fast_install='`$ECHO "X$enable_fast_install" | $Xsed -e "$delay_single_quote_subst"`' @@ -13482,12 +13809,17 @@ "atk/Makefile") CONFIG_FILES="$CONFIG_FILES atk/Makefile" ;; "atk/atk.rc") CONFIG_FILES="$CONFIG_FILES atk/atk.rc" ;; "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;; + "build/Makefile") CONFIG_FILES="$CONFIG_FILES build/Makefile" ;; + "build/win32/Makefile") CONFIG_FILES="$CONFIG_FILES build/win32/Makefile" ;; + "build/win32/vs9/Makefile") CONFIG_FILES="$CONFIG_FILES build/win32/vs9/Makefile" ;; + "build/win32/vs10/Makefile") CONFIG_FILES="$CONFIG_FILES build/win32/vs10/Makefile" ;; "docs/Makefile") CONFIG_FILES="$CONFIG_FILES docs/Makefile" ;; "docs/version.xml") CONFIG_FILES="$CONFIG_FILES docs/version.xml" ;; "atk.spec") CONFIG_FILES="$CONFIG_FILES atk.spec" ;; "atk-zip.sh") CONFIG_FILES="$CONFIG_FILES atk-zip.sh" ;; + "config.h.win32") CONFIG_FILES="$CONFIG_FILES config.h.win32" ;; - *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done @@ -13510,9 +13842,10 @@ # after its creation but before its name has been assigned to `$tmp'. $debug || { - tmp= + tmp= ac_tmp= trap 'exit_status=$? - { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status + : "${ac_tmp:=$tmp}" + { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } @@ -13520,12 +13853,13 @@ { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && - test -n "$tmp" && test -d "$tmp" + test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") -} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5 +} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 +ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. @@ -13542,12 +13876,12 @@ fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then - ac_cs_awk_cr='\r' + ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi -echo 'BEGIN {' >"$tmp/subs1.awk" && +echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF @@ -13556,18 +13890,18 @@ echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || - as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 -ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 +ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || - as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then - as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi @@ -13575,7 +13909,7 @@ rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -cat >>"\$tmp/subs1.awk" <<\\_ACAWK && +cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h @@ -13589,7 +13923,7 @@ t delim :nl h -s/\(.\{148\}\).*/\1/ +s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p @@ -13603,7 +13937,7 @@ t nl :delim h -s/\(.\{148\}\).*/\1/ +s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p @@ -13623,7 +13957,7 @@ rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK -cat >>"\$tmp/subs1.awk" <<_ACAWK && +cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" @@ -13655,21 +13989,29 @@ sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat -fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ - || as_fn_error "could not setup config files machinery" "$LINENO" 5 +fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ + || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF -# VPATH may cause trouble with some makes, so we remove $(srcdir), -# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and +# VPATH may cause trouble with some makes, so we remove sole $(srcdir), +# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then - ac_vpsub='/^[ ]*VPATH[ ]*=/{ -s/:*\$(srcdir):*/:/ -s/:*\${srcdir}:*/:/ -s/:*@srcdir@:*/:/ -s/^\([^=]*=[ ]*\):*/\1/ + ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ +h +s/// +s/^/:/ +s/[ ]*$/:/ +s/:\$(srcdir):/:/g +s/:\${srcdir}:/:/g +s/:@srcdir@:/:/g +s/^:*// s/:*$// +x +s/\(=[ ]*\).*/\1/ +G +s/\n// s/^[^=]*=[ ]*$// }' fi @@ -13681,7 +14023,7 @@ # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then -cat >"$tmp/defines.awk" <<\_ACAWK || +cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF @@ -13693,11 +14035,11 @@ # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do - ac_t=`sed -n "/$ac_delim/p" confdefs.h` - if test -z "$ac_t"; then + ac_tt=`sed -n "/$ac_delim/p" confdefs.h` + if test -z "$ac_tt"; then break elif $ac_last_try; then - as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5 + as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi @@ -13782,7 +14124,7 @@ _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 - as_fn_error "could not setup config headers machinery" "$LINENO" 5 + as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" @@ -13795,7 +14137,7 @@ esac case $ac_mode$ac_tag in :[FHL]*:*);; - :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;; + :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac @@ -13814,7 +14156,7 @@ for ac_f do case $ac_f in - -) ac_f="$tmp/stdin";; + -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. @@ -13823,7 +14165,7 @@ [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || - as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;; + as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" @@ -13849,8 +14191,8 @@ esac case $ac_tag in - *:-:* | *:-) cat >"$tmp/stdin" \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 ;; + *:-:* | *:-) cat >"$ac_tmp/stdin" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac @@ -13986,23 +14328,24 @@ s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " -eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ + >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && - { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && - { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && + { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ + "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined." >&5 +which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined." >&2;} +which seems to be undefined. Please make sure it is defined" >&2;} - rm -f "$tmp/stdin" + rm -f "$ac_tmp/stdin" case $ac_file in - -) cat "$tmp/out" && rm -f "$tmp/out";; - *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; + -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; + *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # @@ -14011,21 +14354,21 @@ if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" - } >"$tmp/config.h" \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 - if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" + } >"$ac_tmp/config.h" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" - mv "$tmp/config.h" "$ac_file" \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 + mv "$ac_tmp/config.h" "$ac_file" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ - || as_fn_error "could not create -" "$LINENO" 5 + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ + || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" @@ -14218,6 +14561,10 @@ # ### BEGIN LIBTOOL CONFIG +# Which release of libtool.m4 was used? +macro_version=$macro_version +macro_revision=$macro_revision + # Whether or not to build static libraries. build_old_libs=$enable_static @@ -14230,10 +14577,6 @@ # Object dumper program. OBJDUMP=$OBJDUMP -# Which release of libtool.m4 was used? -macro_version=$macro_version -macro_revision=$macro_revision - # Whether or not to build shared libraries. build_libtool_libs=$enable_shared @@ -14819,7 +15162,7 @@ ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || - as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5 + as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. @@ -14840,7 +15183,7 @@ exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. - $ac_cs_success || as_fn_exit $? + $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 diff -Nru atk1.0-1.30.0/configure.ac atk1.0-2.2.0/configure.ac --- atk1.0-1.30.0/configure.ac 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/configure.ac 2011-09-26 22:21:59.000000000 +0000 @@ -0,0 +1,237 @@ +dnl Process this file with autoconf to produce a configure script. + +AC_PREREQ([2.63]) + +dnl ========================================================================== +dnl Versioning +dnl ========================================================================== + +dnl Making releases: +dnl ATK_MICRO_VERSION += 1; +dnl ATK_INTERFACE_AGE += 1; +dnl ATK_BINARY_AGE += 1; +dnl if any functions have been added, set ATK_INTERFACE_AGE to 0. +dnl if backwards compatibility has been broken, +dnl set ATK_BINARY_AGE _and_ ATK_INTERFACE_AGE to 0. + +dnl The triplet +m4_define([atk_major_version], [2]) +m4_define([atk_minor_version], [2]) +m4_define([atk_micro_version], [0]) +m4_define([atk_version], + [atk_major_version.atk_minor_version.atk_micro_version]) + +dnl The X.Y in -latk-X.Y line. This is expected to stay 1.0 until Atk 3. +m4_define([atk_api_version], [1.0]) + +dnl Number of releases since we've added interfaces +m4_define([atk_interface_age], [1]) + +dnl binary_age includes major version as ATK 2 is still fully API and ABI compatible +m4_define([atk_binary_age], + [m4_eval(10000 * atk_major_version + 100 * atk_minor_version + 10 + atk_micro_version)]) + +m4_define([lt_current], + [m4_eval(10000 * atk_major_version + 100 * atk_minor_version + 10 + atk_micro_version - atk_interface_age)]) +m4_define([lt_revision], [atk_interface_age]) +m4_define([lt_age], [m4_eval(atk_binary_age - atk_interface_age)]) +m4_define([lt_version_info], [lt_current:lt_revision:lt_age]) +m4_define([lt_current_minus_age], [m4_eval(lt_current - lt_age)]) + +AC_INIT([atk], + [atk_version], + [http://bugzilla.gnome.org/enter_bug.cgi?product=atk], + [atk]) + +AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_SRCDIR([ChangeLog]) +AC_CONFIG_MACRO_DIR([m4]) + +AM_INIT_AUTOMAKE([1.10 -Wno-portability]) + +# Support silent build rules, requires at least automake-1.11. Disable +# by either passing --disable-silent-rules to configure or passing V=1 +# to make +m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) + +dnl ========================================================================== +dnl +dnl If you add a version number here, you *must* add an AC_SUBST line for +dnl it too, or it will never make it into the spec file! +dnl +dnl ========================================================================== + +ATK_MAJOR_VERSION=atk_major_version +ATK_MINOR_VERSION=atk_minor_version +ATK_MICRO_VERSION=atk_micro_version +ATK_VERSION=atk_version +ATK_API_VERSION=atk_api_version +ATK_INTERFACE_AGE=atk_interface_age +ATK_BINARY_AGE=atk_binary_age + +AC_SUBST(ATK_MAJOR_VERSION) +AC_SUBST(ATK_MINOR_VERSION) +AC_SUBST(ATK_VERSION) +AC_SUBST(ATK_API_VERSION) +AC_SUBST(ATK_MICRO_VERSION) +AC_SUBST(ATK_INTERFACE_AGE) +AC_SUBST(ATK_BINARY_AGE) + +dnl libtool versioning +LT_VERSION_INFO=lt_version_info +LT_CURRENT_MINUS_AGE=lt_current_minus_age +AC_SUBST(LT_VERSION_INFO) +AC_SUBST(LT_CURRENT_MINUS_AGE) + +dnl ========================================================================== + +# Check for programs +AC_PROG_CC + +# Initialize libtool +LT_PREREQ([2.2]) +LT_INIT([disable-static win32-dll]) + +AC_CHECK_FUNCS(bind_textdomain_codeset) + +AC_MSG_CHECKING([for some Win32 platform]) +case "$host" in + *-*-mingw*|*-*-cygwin*) + platform_win32=yes + ;; + *) + platform_win32=no + ;; +esac +AC_MSG_RESULT([$platform_win32]) +AM_CONDITIONAL(PLATFORM_WIN32, test "$platform_win32" = "yes") + +AC_MSG_CHECKING([for native Win32 platform]) +case "$host" in + *-*-mingw*) + atk_native_win32=yes + case "$host" in + x86_64-*-*) + LIB_EXE_MACHINE_FLAG=X64 + ;; + *) + LIB_EXE_MACHINE_FLAG=X86 + ;; + esac + ;; + *) + atk_native_win32=no + ;; +esac +AC_MSG_RESULT([$atk_native_win32]) +AM_CONDITIONAL(OS_WIN32, test "$atk_native_win32" = "yes") + +AC_SUBST(LIB_EXE_MACHINE_FLAG) + +if test "$atk_native_win32" = "yes"; then + AC_CHECK_TOOL(WINDRES, windres, no) + if test "$WINDRES" = no; then + AC_MSG_ERROR([*** Could not find an implementation of windres in your PATH.]) + fi + AC_CHECK_PROG(ms_librarian, lib.exe, yes, no) + +fi +AM_CONDITIONAL(MS_LIB_AVAILABLE, test x$ms_librarian = xyes) + +dnl Cache $ACLOCAL_FLAGS +AC_CACHE_CHECK([for aclocal flags], ac_cv_atk_aclocal_flags,[ + ac_cv_atk_aclocal_flags="$ACLOCAL_FLAGS" +]) +ACLOCAL="$ACLOCAL $ac_cv_atk_aclocal_flags" + +AC_ARG_ENABLE(rebuilds, + [AS_HELP_STRING([--disable-rebuilds], + [disable all source autogeneration rules])],, + [enable_rebuilds=yes]) + +CPPFLAGS="$CPPFLAGS -DG_DISABLE_SINGLE_INCLUDES -DATK_DISABLE_SINGLE_INCLUDES" + +changequote(,)dnl +if test "x$GCC" = "xyes"; then + case " $CFLAGS " in + *[\ \ ]-Wall[\ \ ]*) ;; + *) CFLAGS="$CFLAGS -Wall" ;; + esac +fi +changequote([,])dnl + +GLIB_REQUIRED_VERSION=2.0.0 +GLIB_PACKAGES="gobject-2.0" +AC_SUBST(GLIB_PACKAGES) +AC_SUBST(GLIB_REQUIRED_VERSION) + +dnl This PATH_GLIB is somewhat redundant, but does a sanity compile and +dnl importantly defines the GLIB_GENMARSHAL variable for subst into the +dnl Makefile +AM_PATH_GLIB_2_0($GLIB_REQUIRED_VERSION, :, + AC_MSG_ERROR([ +*** GLIB $GLIB_REQUIRED_VERSION or better is required. The latest version of +*** GLIB is always available from ftp://ftp.gtk.org/. If GLIB is installed +*** but not in the same location as pkg-config add the location of the file +*** glib-2.0.pc to the environment variable PKG_CONFIG_PATH.]), + gobject) + +PKG_CHECK_MODULES(DEP, glib-2.0 >= $GLIB_REQUIRED_VERSION $GLIB_PACKAGES, , + AC_MSG_ERROR([ + *** GLib not found. You can find it on ftp://ftp.gtk.org + *** Errors follow: + $DEP_PKG_ERRORS])) + +# Rerun PKG_CONFIG to add gthread-2.0 cflags, but not libs +DEP_CFLAGS=`$PKG_CONFIG --cflags $GLIB_PACKAGES gthread-2.0` + +# i18n stuff +GETTEXT_PACKAGE=atk10 +AC_SUBST(GETTEXT_PACKAGE) +AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, ["$GETTEXT_PACKAGE"], + [Define the gettext package to be used]) + +ALL_LINGUAS="`grep -v '^#' "$srcdir/po/LINGUAS" | tr '\n' ' '`" +AM_GLIB_GNU_GETTEXT + +# Introspection support +GOBJECT_INTROSPECTION_CHECK([0.6.7]) + +# Documentation support +GTK_DOC_CHECK([1.13]) + +# define a MAINT-like variable REBUILD which is set if Perl +# and awk are found, so autogenerated sources can be rebuilt + +AC_PROG_AWK +AC_CHECK_PROGS(PERL, perl5 perl) + +REBUILD=\# +if test "x$enable_rebuilds" = "xyes" && \ + test -n "$PERL" && \ + $PERL -e 'exit !($] >= 5.002)' > /dev/null 2>&1 && \ + test -n "$AWK" ; then + REBUILD= +fi +AC_SUBST(REBUILD) + +AC_CONFIG_FILES([ +Makefile +po/Makefile.in +atk.pc +atk-uninstalled.pc +atk/Makefile +atk/atk.rc +tests/Makefile +build/Makefile +build/win32/Makefile +build/win32/vs9/Makefile +build/win32/vs10/Makefile +docs/Makefile +docs/version.xml +atk.spec +atk-zip.sh +config.h.win32 +]) + +AC_OUTPUT diff -Nru atk1.0-1.30.0/configure.in atk1.0-2.2.0/configure.in --- atk1.0-1.30.0/configure.in 2010-03-29 22:38:57.000000000 +0000 +++ atk1.0-2.2.0/configure.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,221 +0,0 @@ -dnl Process this file with autoconf to produce a configure script. - -AC_PREREQ(2.62) - -dnl ========================================================================== -dnl Versioning -dnl ========================================================================== - -dnl Making releases: -dnl ATK_MICRO_VERSION += 1; -dnl ATK_INTERFACE_AGE += 1; -dnl ATK_BINARY_AGE += 1; -dnl if any functions have been added, set ATK_INTERFACE_AGE to 0. -dnl if backwards compatibility has been broken, -dnl set ATK_BINARY_AGE _and_ ATK_INTERFACE_AGE to 0. - -dnl The triplet -m4_define([atk_major_version], [1]) -m4_define([atk_minor_version], [30]) -m4_define([atk_micro_version], [0]) -m4_define([atk_version], - [atk_major_version.atk_minor_version.atk_micro_version]) - -dnl The X.Y in -latk-X.Y line. This is expected to stay 1.0 until Atk 2. -m4_define([atk_api_version], [1.0]) - -dnl Number of releases since we've added interfaces -m4_define([atk_interface_age], [1]) - -m4_define([atk_binary_age], - [m4_eval(100 * atk_minor_version + 10 + atk_micro_version)]) - -m4_define([lt_current], - [m4_eval(100 * atk_minor_version + 10 + atk_micro_version - atk_interface_age)]) -m4_define([lt_revision], [atk_interface_age]) -m4_define([lt_age], [m4_eval(atk_binary_age - atk_interface_age)]) -m4_define([lt_version_info], [lt_current:lt_revision:lt_age]) -m4_define([lt_current_minus_age], [m4_eval(lt_current - lt_age)]) - - -AC_INIT(atk, [atk_version], - [http://bugzilla.gnome.org/enter_bug.cgi?product=atk]) -AC_CONFIG_SRCDIR([ChangeLog]) - -AC_CONFIG_MACRO_DIR([m4]) - -AM_CONFIG_HEADER(config.h) - -AM_INIT_AUTOMAKE([-Wno-portability]) - -dnl ========================================================================== -dnl -dnl If you add a version number here, you *must* add an AC_SUBST line for -dnl it too, or it will never make it into the spec file! -dnl -dnl ========================================================================== - -ATK_MAJOR_VERSION=atk_major_version -ATK_MINOR_VERSION=atk_minor_version -ATK_MICRO_VERSION=atk_micro_version -ATK_VERSION=atk_version -ATK_API_VERSION=atk_api_version -ATK_INTERFACE_AGE=atk_interface_age -ATK_BINARY_AGE=atk_binary_age - -AC_SUBST(ATK_MAJOR_VERSION) -AC_SUBST(ATK_MINOR_VERSION) -AC_SUBST(ATK_VERSION) -AC_SUBST(ATK_API_VERSION) -AC_SUBST(ATK_MICRO_VERSION) -AC_SUBST(ATK_INTERFACE_AGE) -AC_SUBST(ATK_BINARY_AGE) - -dnl libtool versioning -LT_VERSION_INFO=lt_version_info -LT_CURRENT_MINUS_AGE=lt_current_minus_age -AC_SUBST(LT_VERSION_INFO) -AC_SUBST(LT_CURRENT_MINUS_AGE) - -dnl ========================================================================== - -GETTEXT_PACKAGE=atk10 -AC_SUBST(GETTEXT_PACKAGE) -AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, ["$GETTEXT_PACKAGE"], - [Define the gettext package to be used]) - -AC_PROG_CC -AM_DISABLE_STATIC -AC_LIBTOOL_WIN32_DLL -AM_PROG_LIBTOOL - -AC_MSG_CHECKING([for some Win32 platform]) -case "$host" in - *-*-mingw*|*-*-cygwin*) - platform_win32=yes - ;; - *) - platform_win32=no - ;; -esac -AC_MSG_RESULT([$platform_win32]) -AM_CONDITIONAL(PLATFORM_WIN32, test "$platform_win32" = "yes") - -AC_MSG_CHECKING([for native Win32 platform]) -case "$host" in - *-*-mingw*) - atk_native_win32=yes - case "$host" in - x86_64-*-*) - LIB_EXE_MACHINE_FLAG=X64 - ;; - *) - LIB_EXE_MACHINE_FLAG=X86 - ;; - esac - ;; - *) - atk_native_win32=no - ;; -esac -AC_MSG_RESULT([$atk_native_win32]) -AM_CONDITIONAL(OS_WIN32, test "$atk_native_win32" = "yes") - -AC_SUBST(LIB_EXE_MACHINE_FLAG) - -if test "$atk_native_win32" = "yes"; then - AC_CHECK_TOOL(WINDRES, windres, no) - if test "$WINDRES" = no; then - AC_MSG_ERROR([*** Could not find an implementation of windres in your PATH.]) - fi - AC_CHECK_PROG(ms_librarian, lib.exe, yes, no) - -fi -AM_CONDITIONAL(MS_LIB_AVAILABLE, test x$ms_librarian = xyes) - -dnl Cache $ACLOCAL_FLAGS -AC_CACHE_CHECK([for aclocal flags], ac_cv_atk_aclocal_flags,[ - ac_cv_atk_aclocal_flags="$ACLOCAL_FLAGS" -]) -ACLOCAL="$ACLOCAL $ac_cv_atk_aclocal_flags" - -AC_ARG_ENABLE(rebuilds, - [AC_HELP_STRING([--disable-rebuilds], - [disable all source autogeneration rules])],, - [enable_rebuilds=yes]) - -CPPFLAGS="$CPPFLAGS -DG_DISABLE_SINGLE_INCLUDES -DATK_DISABLE_SINGLE_INCLUDES" - -changequote(,)dnl -if test "x$GCC" = "xyes"; then - case " $CFLAGS " in - *[\ \ ]-Wall[\ \ ]*) ;; - *) CFLAGS="$CFLAGS -Wall" ;; - esac -fi -changequote([,])dnl - -GLIB_REQUIRED_VERSION=2.0.0 -GLIB_PACKAGES="gobject-2.0" -AC_SUBST(GLIB_PACKAGES) -AC_SUBST(GLIB_REQUIRED_VERSION) - -dnl This PATH_GLIB is somewhat redundant, but does a sanity compile and -dnl importantly defines the GLIB_GENMARSHAL variable for subst into the -dnl Makefile -AM_PATH_GLIB_2_0($GLIB_REQUIRED_VERSION, :, - AC_MSG_ERROR([ -*** GLIB $GLIB_REQUIRED_VERSION or better is required. The latest version of -*** GLIB is always available from ftp://ftp.gtk.org/. If GLIB is installed -*** but not in the same location as pkg-config add the location of the file -*** glib-2.0.pc to the environment variable PKG_CONFIG_PATH.]), - gobject) - -PKG_CHECK_MODULES(DEP, glib-2.0 >= $GLIB_REQUIRED_VERSION $GLIB_PACKAGES, , - AC_MSG_ERROR([ - *** GLib not found. You can find it on ftp://ftp.gtk.org - *** Errors follow: - $DEP_PKG_ERRORS])) - -# Rerun PKG_CONFIG to add gthread-2.0 cflags, but not libs -DEP_CFLAGS=`$PKG_CONFIG --cflags $GLIB_PACKAGES gthread-2.0` - -ALL_LINGUAS="`grep -v '^#' "$srcdir/po/LINGUAS" | tr '\n' ' '`" -AM_GLIB_GNU_GETTEXT - -AC_CHECK_FUNCS(bind_textdomain_codeset) - -GOBJECT_INTROSPECTION_CHECK([0.6.7]) - -GTK_DOC_CHECK([1.0]) - -# define a MAINT-like variable REBUILD which is set if Perl -# and awk are found, so autogenerated sources can be rebuilt - -AC_PROG_AWK -AC_CHECK_PROGS(PERL, perl5 perl) - -REBUILD=\# -if test "x$enable_rebuilds" = "xyes" && \ - test -n "$PERL" && \ - $PERL -e 'exit !($] >= 5.002)' > /dev/null 2>&1 && \ - test -n "$AWK" ; then - REBUILD= -fi -AC_SUBST(REBUILD) - -AC_CONFIG_FILES([ -Makefile -po/Makefile.in -atk.pc -atk-uninstalled.pc -atk/Makefile -atk/atk.rc -tests/Makefile -docs/Makefile -docs/version.xml -atk.spec -atk-zip.sh -]) - -AC_OUTPUT diff -Nru atk1.0-1.30.0/debian/changelog atk1.0-2.2.0/debian/changelog --- atk1.0-1.30.0/debian/changelog 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/debian/changelog 2011-11-12 03:26:20.000000000 +0000 @@ -1,43 +1,162 @@ -atk1.0 (1.30.0-0ubuntu2) lucid; urgency=low +atk1.0 (2.2.0-0ubuntu1~lucid0) lucid; urgency=low - * debian/control.in: - - replaces gobject-introspection-repository too (lp: #547244) + * Backport to Lucid. + + -- An Yang Sat, 12 Nov 2011 11:26:05 +0800 + +atk1.0 (2.2.0-0ubuntu1) oneiric; urgency=low - -- Sebastien Bacher Thu, 01 Apr 2010 00:39:42 +0200 + * New upstream release + - Updated Gujarati, Oriya, Assamese, Danish, Portuguese, Czech and + Catalan (Valencian) translations + + -- Luke Yelavich Tue, 27 Sep 2011 11:38:55 +1000 -atk1.0 (1.30.0-0ubuntu1) lucid; urgency=low +atk1.0 (2.1.92-0ubuntu1) oneiric; urgency=low * New upstream release + - Updated Visual Studio files due AtkWindow addition + - Bug 649577: atk_add_global_event_listener should only accept ATK events + - Minor documentation updates + - Updated German, Basque, Japanese, Serbian, Catalan, Tamil, Punjabi, + Asturian, Italian, Polish, British English, Brazilian Portuguese, + Korean, Telugu and Kannada Translation - -- Luke Yelavich Tue, 30 Mar 2010 10:38:09 +1100 + -- Luke Yelavich Fri, 23 Sep 2011 13:17:11 +1000 -atk1.0 (1.29.92-0ubuntu2) lucid; urgency=low +atk1.0 (2.1.91-0ubuntu1) oneiric; urgency=low - * add introspection needed as gtk gir package doesn't ship them anymore: - - debian/rules: - + toggle configure - + add dh_girepository call - - debian/control.in: - + add gir1.0-atk-1.0 package - + add build-dep gobject-introspection, libgirepository1.0-dev and - gir1.0-glib-2.0 - + libatk1.0-dev replaces gir-repository-dev - - add debian/gir1.0-atk-1.0.install - - add gir file to debian/libatk1.0-dev.install + * New upstream release + - Documentation updates + - Updated Brazilian Portuguese, Korean, Telugu and Kannada translations - -- Didier Roche Tue, 23 Mar 2010 20:17:28 +0100 + -- Luke Yelavich Tue, 06 Sep 2011 09:25:09 +1000 -atk1.0 (1.29.92-0ubuntu1) lucid; urgency=low +atk1.0 (2.1.5-0ubuntu1) oneiric; urgency=low * New upstream release + - Bug 638924: Add AtkWindow + - Fixing out of tree compilation on Win32 + - Update README.txt + - Fixing release number of the new ATK roles added + - Updated Traditional Chinese, Indonesian, Bulgarian, French, + Hungarian and Swedish translations + * Update symbols file - -- Luke Yelavich Tue, 09 Mar 2010 08:57:37 +1100 + -- Luke Yelavich Wed, 17 Aug 2011 08:21:48 +1000 -atk1.0 (1.29.4-0ubuntu1) lucid; urgency=low +atk1.0 (2.1.0-0ubuntu1) oneiric; urgency=low * New upstream release + - Bug 654767: shlib downgrade at update atk-1.32.0 to atk-2.0.1 + - Bug 651343: New ATK Roles + - Added Leon Fan as maintainer + - Improved Visual C++ 2010 infrastructure + - Updated Russian, Slovenian, Persian, Hebrew, Lithuanian, Latvian, + Norwegian, Galician, and Spanish translations + + -- Luke Yelavich Mon, 25 Jul 2011 09:18:55 +1000 + +atk1.0 (2.0.1-2) unstable; urgency=low + + [ Laurent Bigonville ] + * Transition to multiarch policy (Closes: #631691) + + -- Michael Biebl Mon, 04 Jul 2011 00:50:22 +0200 + +atk1.0 (2.0.1-1) unstable; urgency=low + + * New upstream release. + * debian/watch + - Don't run uupdate. + - Switch to .bz2 tarballs. + * debian/control.in + - Bump Standards-Version to 3.9.2. No further changes. + - Remove article from description synopsis. + * Bump debhelper compatility level to 8. + - Update Build-Depends on debhelper. + - Strip debian/tmp/ from .install files. + + -- Michael Biebl Tue, 21 Jun 2011 22:33:22 +0200 + +atk1.0 (2.0.0-1) unstable; urgency=low + + [ Laurent Bigonville ] + * New upstream release + * debian/control.in: Bump gtk-doc-tools build-dependency + * debian/rules: + - Blindly bump the shlibs version. We've got a symbols file anyway and + updating the version is error prone. + - FTBFS if the .symbols file is not uptodate. + + [ Emilio Pozuelo Monfort ] + * debian/rules: + debian/control.in: + - Let CDBS call dh_girepository for us. Require a recent enough version. + - Let it also guess the debug package name. + + [ Josselin Mouette ] + * Make the -dev package depend on the gir package. + * New upstream stable release. + * 01-docs_libs.patch: dropped, merged upstream. + * 90-relibtoolize.patch: dropped, useless now. + * Update symbols file. + + -- Josselin Mouette Sun, 10 Apr 2011 12:44:57 +0200 + +atk1.0 (1.32.0-2) experimental; urgency=low + + * Update to the new gir policy: + - Rename gir1.0-atk-1.0 to gir1.2-atk-1.0. + - Bump the gobject-introspection build dependency. + - Build depend on gir1.2 packages. + + -- Emilio Pozuelo Monfort Sat, 11 Dec 2010 19:19:52 +0100 + +atk1.0 (1.32.0-1) experimental; urgency=low + + [ Josselin Mouette ] + * Make libatk1.0-0 depend on libatk1.0-data and remove the opposite + dependency. Closes: #599666. + + [ Laurent Bigonville ] + * New upstream stable release. + - Refresh debian/patches/90-relibtoolize.patch + * debian/control.in: + - Bump Standards-Version to 3.9.1 + - Remove duplicate Uploaders + - Remove duplicate Section/Priority to please lintian + * debian/rules: Bump SHLIB_VERSION version + * Switch to dpkg-source 3.0 (quilt) format + * Add libatk1.0-0.symbols file + * Enable introspection support (Closes: #582385) + + -- Laurent Bigonville Mon, 22 Nov 2010 19:38:00 +0100 + +atk1.0 (1.30.0-1) unstable; urgency=low + + * New upstream stable release. + + debian/patches/90-relibtoolize.patch: + - Regenerated for the new version. + + -- Sebastian Dröge Wed, 31 Mar 2010 09:03:18 +0200 + +atk1.0 (1.29.92-1) experimental; urgency=low + + * New upstream release candidate. + * debian/control.in: + - Update Standards-Version to 3.8.4, no additional changes needed. + - Added myself to uploaders. + * debian/patches/01-docs_ldflags.patch: Fix FTBFS with binutils-gold. + * debian/patches/90-relibtoolize.patch: Relibtoolize. + + -- David Weinehall Tue, 23 Mar 2010 04:11:53 +0200 + +atk1.0 (1.29.4-1) experimental; urgency=low + + * New upstream development release. - -- Luke Yelavich Tue, 22 Dec 2009 10:32:06 +1100 + -- Sebastian Dröge Mon, 04 Jan 2010 10:28:47 +0100 atk1.0 (1.29.3-1) experimental; urgency=low diff -Nru atk1.0-1.30.0/debian/compat atk1.0-2.2.0/debian/compat --- atk1.0-1.30.0/debian/compat 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/debian/compat 2011-06-21 20:06:19.000000000 +0000 @@ -1 +1 @@ -5 +8 diff -Nru atk1.0-1.30.0/debian/control atk1.0-2.2.0/debian/control --- atk1.0-1.30.0/debian/control 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/debian/control 2011-12-01 07:11:15.000000000 +0000 @@ -8,30 +8,32 @@ Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian GNOME Maintainers -Uploaders: Debian GNOME Maintainers , Josselin Mouette , Mario Lang , Sebastian Dröge +Uploaders: Debian GNOME Maintainers , Emilio Pozuelo Monfort , Josselin Mouette Vcs-Browser: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/atk1.0 Vcs-Svn: svn://svn.debian.org/svn/pkg-gnome/desktop/unstable/atk1.0 -Build-Depends: debhelper (>= 5.0.22), +Build-Depends: debhelper (>= 8.1.3~), pkg-config, libglib2.0-dev (>= 2.0.0), gnome-pkg-tools (>= 0.10), - cdbs (>= 0.4.41), - gobject-introspection, - libgirepository1.0-dev, - gir1.0-glib-2.0, - gtk-doc-tools, - docbook-xml + cdbs (>= 0.4.93~), + gtk-doc-tools (>= 1.13), + docbook-xml, + autotools-dev, + gobject-introspection (>= 0.9.12-4~), + libgirepository1.0-dev (>= 0.9.3), + gir1.2-glib-2.0 Build-Depends-Indep: libglib2.0-doc -Standards-Version: 3.8.3 +Standards-Version: 3.9.2 Homepage: http://www.gtk.org/ Package: libatk1.0-0 -Section: libs Architecture: any Depends: ${misc:Depends}, - ${shlibs:Depends} -Recommends: libatk1.0-data -Description: The ATK accessibility toolkit + ${shlibs:Depends}, + libatk1.0-data (= ${source:Version}) +Multi-Arch: same +Pre-Depends: ${misc:Pre-Depends} +Description: ATK accessibility toolkit ATK is a toolkit providing accessibility interfaces for applications or other toolkits. By implementing these interfaces, those other toolkits or applications can be used with tools such as screen readers, magnifiers, and @@ -42,11 +44,10 @@ Package: libatk1.0-udeb XC-Package-Type: udeb Section: debian-installer -Priority: optional Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} -Description: The ATK accessibility toolkit +Description: ATK accessibility toolkit This is a udeb, or a microdeb, for the debian-installer. . ATK is a toolkit providing accessibility interfaces for applications or @@ -59,8 +60,8 @@ Package: libatk1.0-data Section: misc Architecture: all -Depends: ${misc:Depends}, - libatk1.0-0 (>= ${source:Version}) +Depends: ${misc:Depends} +Multi-Arch: foreign Description: Common files for the ATK accessibility toolkit ATK is a toolkit providing accessibility interfaces for applications or other toolkits. By implementing these interfaces, those other toolkits or @@ -74,6 +75,7 @@ Architecture: any Depends: ${misc:Depends}, libatk1.0-0 (= ${binary:Version}), + gir1.2-atk-1.0 (= ${binary:Version}), pkg-config, libglib2.0-dev (>= 2.4.1-2) Replaces: libatk0-dev, @@ -97,7 +99,8 @@ Depends: ${misc:Depends}, libatk1.0-0 (= ${binary:Version}) Replaces: libatk1.0-0 (<< 1.11.4-3) -Description: The ATK libraries and debugging symbols +Multi-Arch: same +Description: ATK libraries and debugging symbols ATK is a toolkit providing accessibility interfaces for applications or other toolkits. By implementing these interfaces, those other toolkits or applications can be used with tools such as screen readers, magnifiers, and @@ -125,14 +128,15 @@ This contains the HTML documentation for the ATK library in /usr/share/doc/libatk1.0-doc/ . -Package: gir1.0-atk-1.0 -Section: libs +Package: gir1.2-atk-1.0 Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends}, ${gir:Depends} -Replaces: gir1.0-gtk-2.0, gobject-introspection-repository -Description: The ATK accessibility toolkit +Replaces: gir1.0-gtk-2.0 (<< 2.22), + gobject-introspection-repository +Conflicts: gir1.0-atk-1.0 +Description: ATK accessibility toolkit (GObject introspection) ATK is a toolkit providing accessibility interfaces for applications or other toolkits. By implementing these interfaces, those other toolkits or applications can be used with tools such as screen readers, magnifiers, and diff -Nru atk1.0-1.30.0/debian/control.in atk1.0-2.2.0/debian/control.in --- atk1.0-1.30.0/debian/control.in 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/debian/control.in 2011-07-24 23:20:09.000000000 +0000 @@ -6,27 +6,29 @@ Uploaders: @GNOME_TEAM@ Vcs-Browser: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/atk1.0 Vcs-Svn: svn://svn.debian.org/svn/pkg-gnome/desktop/unstable/atk1.0 -Build-Depends: debhelper (>= 5.0.22), +Build-Depends: debhelper (>= 8.1.3~), pkg-config, libglib2.0-dev (>= 2.0.0), gnome-pkg-tools (>= 0.10), - cdbs (>= 0.4.41), - gobject-introspection, - libgirepository1.0-dev, - gir1.0-glib-2.0, - gtk-doc-tools, - docbook-xml + cdbs (>= 0.4.93~), + gtk-doc-tools (>= 1.13), + docbook-xml, + autotools-dev, + gobject-introspection (>= 0.9.12-4~), + libgirepository1.0-dev (>= 0.9.3), + gir1.2-glib-2.0 Build-Depends-Indep: libglib2.0-doc -Standards-Version: 3.8.3 +Standards-Version: 3.9.2 Homepage: http://www.gtk.org/ Package: libatk1.0-0 -Section: libs Architecture: any Depends: ${misc:Depends}, - ${shlibs:Depends} -Recommends: libatk1.0-data -Description: The ATK accessibility toolkit + ${shlibs:Depends}, + libatk1.0-data (= ${source:Version}) +Multi-Arch: same +Pre-Depends: ${misc:Pre-Depends} +Description: ATK accessibility toolkit ATK is a toolkit providing accessibility interfaces for applications or other toolkits. By implementing these interfaces, those other toolkits or applications can be used with tools such as screen readers, magnifiers, and @@ -37,11 +39,10 @@ Package: libatk1.0-udeb XC-Package-Type: udeb Section: debian-installer -Priority: optional Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} -Description: The ATK accessibility toolkit +Description: ATK accessibility toolkit This is a udeb, or a microdeb, for the debian-installer. . ATK is a toolkit providing accessibility interfaces for applications or @@ -54,8 +55,8 @@ Package: libatk1.0-data Section: misc Architecture: all -Depends: ${misc:Depends}, - libatk1.0-0 (>= ${source:Version}) +Depends: ${misc:Depends} +Multi-Arch: foreign Description: Common files for the ATK accessibility toolkit ATK is a toolkit providing accessibility interfaces for applications or other toolkits. By implementing these interfaces, those other toolkits or @@ -69,6 +70,7 @@ Architecture: any Depends: ${misc:Depends}, libatk1.0-0 (= ${binary:Version}), + gir1.2-atk-1.0 (= ${binary:Version}), pkg-config, libglib2.0-dev (>= 2.4.1-2) Replaces: libatk0-dev, @@ -92,7 +94,8 @@ Depends: ${misc:Depends}, libatk1.0-0 (= ${binary:Version}) Replaces: libatk1.0-0 (<< 1.11.4-3) -Description: The ATK libraries and debugging symbols +Multi-Arch: same +Description: ATK libraries and debugging symbols ATK is a toolkit providing accessibility interfaces for applications or other toolkits. By implementing these interfaces, those other toolkits or applications can be used with tools such as screen readers, magnifiers, and @@ -120,14 +123,15 @@ This contains the HTML documentation for the ATK library in /usr/share/doc/libatk1.0-doc/ . -Package: gir1.0-atk-1.0 -Section: libs +Package: gir1.2-atk-1.0 Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends}, ${gir:Depends} -Replaces: gir1.0-gtk-2.0, gobject-introspection-repository -Description: The ATK accessibility toolkit +Replaces: gir1.0-gtk-2.0 (<< 2.22), + gobject-introspection-repository +Conflicts: gir1.0-atk-1.0 +Description: ATK accessibility toolkit (GObject introspection) ATK is a toolkit providing accessibility interfaces for applications or other toolkits. By implementing these interfaces, those other toolkits or applications can be used with tools such as screen readers, magnifiers, and diff -Nru atk1.0-1.30.0/debian/gir1.0-atk-1.0.install atk1.0-2.2.0/debian/gir1.0-atk-1.0.install --- atk1.0-1.30.0/debian/gir1.0-atk-1.0.install 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/debian/gir1.0-atk-1.0.install 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -debian/tmp/usr/lib/girepository-1.0/ diff -Nru atk1.0-1.30.0/debian/gir1.2-atk-1.0.install atk1.0-2.2.0/debian/gir1.2-atk-1.0.install --- atk1.0-1.30.0/debian/gir1.2-atk-1.0.install 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/debian/gir1.2-atk-1.0.install 2011-06-27 14:22:16.000000000 +0000 @@ -0,0 +1 @@ +usr/lib/*/girepository-1.0/ usr/lib diff -Nru atk1.0-1.30.0/debian/libatk1.0-0.install atk1.0-2.2.0/debian/libatk1.0-0.install --- atk1.0-1.30.0/debian/libatk1.0-0.install 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/debian/libatk1.0-0.install 2011-06-27 14:22:16.000000000 +0000 @@ -1 +1 @@ -debian/tmp/usr/lib/lib*.so.* +usr/lib/*/lib*.so.* diff -Nru atk1.0-1.30.0/debian/libatk1.0-0.symbols atk1.0-2.2.0/debian/libatk1.0-0.symbols --- atk1.0-1.30.0/debian/libatk1.0-0.symbols 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/debian/libatk1.0-0.symbols 2011-08-16 22:21:47.000000000 +0000 @@ -0,0 +1,256 @@ +libatk-1.0.so.0 libatk1.0-0 #MINVER# + atk_action_do_action@Base 1.12.4 + atk_action_get_description@Base 1.12.4 + atk_action_get_keybinding@Base 1.12.4 + atk_action_get_localized_name@Base 1.12.4 + atk_action_get_n_actions@Base 1.12.4 + atk_action_get_name@Base 1.12.4 + atk_action_get_type@Base 1.12.4 + atk_action_set_description@Base 1.12.4 + atk_add_focus_tracker@Base 1.12.4 + atk_add_global_event_listener@Base 1.12.4 + atk_add_key_event_listener@Base 1.12.4 + atk_attribute_set_free@Base 1.12.4 + atk_component_add_focus_handler@Base 1.12.4 + atk_component_contains@Base 1.12.4 + atk_component_get_alpha@Base 1.12.4 + atk_component_get_extents@Base 1.12.4 + atk_component_get_layer@Base 1.12.4 + atk_component_get_mdi_zorder@Base 1.12.4 + atk_component_get_position@Base 1.12.4 + atk_component_get_size@Base 1.12.4 + atk_component_get_type@Base 1.12.4 + atk_component_grab_focus@Base 1.12.4 + atk_component_ref_accessible_at_point@Base 1.12.4 + atk_component_remove_focus_handler@Base 1.12.4 + atk_component_set_extents@Base 1.12.4 + atk_component_set_position@Base 1.12.4 + atk_component_set_size@Base 1.12.4 + atk_coord_type_get_type@Base 1.12.4 + atk_document_get_attribute_value@Base 1.12.4 + atk_document_get_attributes@Base 1.12.4 + atk_document_get_document@Base 1.12.4 + atk_document_get_document_type@Base 1.12.4 + atk_document_get_locale@Base 1.12.4 + atk_document_get_type@Base 1.12.4 + atk_document_set_attribute_value@Base 1.12.4 + atk_editable_text_copy_text@Base 1.12.4 + atk_editable_text_cut_text@Base 1.12.4 + atk_editable_text_delete_text@Base 1.12.4 + atk_editable_text_get_type@Base 1.12.4 + atk_editable_text_insert_text@Base 1.12.4 + atk_editable_text_paste_text@Base 1.12.4 + atk_editable_text_set_run_attributes@Base 1.12.4 + atk_editable_text_set_text_contents@Base 1.12.4 + atk_focus_tracker_init@Base 1.12.4 + atk_focus_tracker_notify@Base 1.12.4 + atk_get_default_registry@Base 1.12.4 + atk_get_focus_object@Base 1.12.4 + atk_get_root@Base 1.12.4 + atk_get_toolkit_name@Base 1.12.4 + atk_get_toolkit_version@Base 1.12.4 + atk_get_version@Base 1.20.0 + atk_gobject_accessible_for_object@Base 1.12.4 + atk_gobject_accessible_get_object@Base 1.12.4 + atk_gobject_accessible_get_type@Base 1.12.4 + atk_hyperlink_get_end_index@Base 1.12.4 + atk_hyperlink_get_n_anchors@Base 1.12.4 + atk_hyperlink_get_object@Base 1.12.4 + atk_hyperlink_get_start_index@Base 1.12.4 + atk_hyperlink_get_type@Base 1.12.4 + atk_hyperlink_get_uri@Base 1.12.4 + atk_hyperlink_impl_get_hyperlink@Base 1.12.4 + atk_hyperlink_impl_get_type@Base 1.12.4 + atk_hyperlink_is_inline@Base 1.12.4 + atk_hyperlink_is_selected_link@Base 1.12.4 + atk_hyperlink_is_valid@Base 1.12.4 + atk_hyperlink_state_flags_get_type@Base 1.12.4 + atk_hypertext_get_link@Base 1.12.4 + atk_hypertext_get_link_index@Base 1.12.4 + atk_hypertext_get_n_links@Base 1.12.4 + atk_hypertext_get_type@Base 1.12.4 + atk_image_get_image_description@Base 1.12.4 + atk_image_get_image_locale@Base 1.12.4 + atk_image_get_image_position@Base 1.12.4 + atk_image_get_image_size@Base 1.12.4 + atk_image_get_type@Base 1.12.4 + atk_image_set_image_description@Base 1.12.4 + atk_implementor_get_type@Base 1.12.4 + atk_implementor_ref_accessible@Base 1.12.4 + atk_key_event_type_get_type@Base 1.12.4 + atk_layer_get_type@Base 1.12.4 + atk_marshal_VOID__INT_INT@Base 1.12.4 + atk_marshal_VOID__INT_INT_INT_STRING@Base 2.0.0 + atk_marshal_VOID__INT_INT_STRING@Base 2.0.0 + atk_marshal_VOID__STRING_BOOLEAN@Base 1.12.4 + atk_misc_get_instance@Base 1.18.0 + atk_misc_get_type@Base 1.18.0 + atk_misc_instance@Base 1.18.0 + atk_misc_threads_enter@Base 1.18.0 + atk_misc_threads_leave@Base 1.18.0 + atk_no_op_object_factory_get_type@Base 1.12.4 + atk_no_op_object_factory_new@Base 1.12.4 + atk_no_op_object_get_type@Base 1.12.4 + atk_no_op_object_new@Base 1.12.4 + atk_object_add_relationship@Base 1.12.4 + atk_object_connect_property_change_handler@Base 1.12.4 + atk_object_factory_create_accessible@Base 1.12.4 + atk_object_factory_get_accessible_type@Base 1.12.4 + atk_object_factory_get_type@Base 1.12.4 + atk_object_factory_invalidate@Base 1.12.4 + atk_object_get_attributes@Base 1.12.4 + atk_object_get_description@Base 1.12.4 + atk_object_get_index_in_parent@Base 1.12.4 + atk_object_get_layer@Base 1.12.4 + atk_object_get_mdi_zorder@Base 1.12.4 + atk_object_get_n_accessible_children@Base 1.12.4 + atk_object_get_name@Base 1.12.4 + atk_object_get_parent@Base 1.12.4 + atk_object_get_role@Base 1.12.4 + atk_object_get_type@Base 1.12.4 + atk_object_initialize@Base 1.12.4 + atk_object_notify_state_change@Base 1.12.4 + atk_object_ref_accessible_child@Base 1.12.4 + atk_object_ref_relation_set@Base 1.12.4 + atk_object_ref_state_set@Base 1.12.4 + atk_object_remove_property_change_handler@Base 1.12.4 + atk_object_remove_relationship@Base 1.12.4 + atk_object_set_description@Base 1.12.4 + atk_object_set_name@Base 1.12.4 + atk_object_set_parent@Base 1.12.4 + atk_object_set_role@Base 1.12.4 + atk_plug_get_id@Base 1.32.0 + atk_plug_get_type@Base 1.32.0 + atk_plug_new@Base 1.32.0 + atk_rectangle_get_type@Base 1.12.4 + atk_registry_get_factory@Base 1.12.4 + atk_registry_get_factory_type@Base 1.12.4 + atk_registry_get_type@Base 1.12.4 + atk_registry_set_factory_type@Base 1.12.4 + atk_relation_add_target@Base 1.12.4 + atk_relation_get_relation_type@Base 1.12.4 + atk_relation_get_target@Base 1.12.4 + atk_relation_get_type@Base 1.12.4 + atk_relation_new@Base 1.12.4 + atk_relation_remove_target@Base 1.26.0 + atk_relation_set_add@Base 1.12.4 + atk_relation_set_add_relation_by_type@Base 1.12.4 + atk_relation_set_contains@Base 1.12.4 + atk_relation_set_get_n_relations@Base 1.12.4 + atk_relation_set_get_relation@Base 1.12.4 + atk_relation_set_get_relation_by_type@Base 1.12.4 + atk_relation_set_get_type@Base 1.12.4 + atk_relation_set_new@Base 1.12.4 + atk_relation_set_remove@Base 1.12.4 + atk_relation_type_for_name@Base 1.12.4 + atk_relation_type_get_name@Base 1.12.4 + atk_relation_type_get_type@Base 1.12.4 + atk_relation_type_register@Base 1.12.4 + atk_remove_focus_tracker@Base 1.12.4 + atk_remove_global_event_listener@Base 1.12.4 + atk_remove_key_event_listener@Base 1.12.4 + atk_role_for_name@Base 1.12.4 + atk_role_get_localized_name@Base 1.12.4 + atk_role_get_name@Base 1.12.4 + atk_role_get_type@Base 1.12.4 + atk_role_register@Base 1.12.4 + atk_selection_add_selection@Base 1.12.4 + atk_selection_clear_selection@Base 1.12.4 + atk_selection_get_selection_count@Base 1.12.4 + atk_selection_get_type@Base 1.12.4 + atk_selection_is_child_selected@Base 1.12.4 + atk_selection_ref_selection@Base 1.12.4 + atk_selection_remove_selection@Base 1.12.4 + atk_selection_select_all_selection@Base 1.12.4 + atk_socket_embed@Base 1.32.0 + atk_socket_get_type@Base 1.32.0 + atk_socket_is_occupied@Base 1.32.0 + atk_socket_new@Base 1.32.0 + atk_state_set_add_state@Base 1.12.4 + atk_state_set_add_states@Base 1.12.4 + atk_state_set_and_sets@Base 1.12.4 + atk_state_set_clear_states@Base 1.12.4 + atk_state_set_contains_state@Base 1.12.4 + atk_state_set_contains_states@Base 1.12.4 + atk_state_set_get_type@Base 1.12.4 + atk_state_set_is_empty@Base 1.12.4 + atk_state_set_new@Base 1.12.4 + atk_state_set_or_sets@Base 1.12.4 + atk_state_set_remove_state@Base 1.12.4 + atk_state_set_xor_sets@Base 1.12.4 + atk_state_type_for_name@Base 1.12.4 + atk_state_type_get_name@Base 1.12.4 + atk_state_type_get_type@Base 1.12.4 + atk_state_type_register@Base 1.12.4 + atk_streamable_content_get_mime_type@Base 1.12.4 + atk_streamable_content_get_n_mime_types@Base 1.12.4 + atk_streamable_content_get_stream@Base 1.12.4 + atk_streamable_content_get_type@Base 1.12.4 + atk_streamable_content_get_uri@Base 1.12.4 + atk_table_add_column_selection@Base 1.12.4 + atk_table_add_row_selection@Base 1.12.4 + atk_table_get_caption@Base 1.12.4 + atk_table_get_column_at_index@Base 1.12.4 + atk_table_get_column_description@Base 1.12.4 + atk_table_get_column_extent_at@Base 1.12.4 + atk_table_get_column_header@Base 1.12.4 + atk_table_get_index_at@Base 1.12.4 + atk_table_get_n_columns@Base 1.12.4 + atk_table_get_n_rows@Base 1.12.4 + atk_table_get_row_at_index@Base 1.12.4 + atk_table_get_row_description@Base 1.12.4 + atk_table_get_row_extent_at@Base 1.12.4 + atk_table_get_row_header@Base 1.12.4 + atk_table_get_selected_columns@Base 1.12.4 + atk_table_get_selected_rows@Base 1.12.4 + atk_table_get_summary@Base 1.12.4 + atk_table_get_type@Base 1.12.4 + atk_table_is_column_selected@Base 1.12.4 + atk_table_is_row_selected@Base 1.12.4 + atk_table_is_selected@Base 1.12.4 + atk_table_ref_at@Base 1.12.4 + atk_table_remove_column_selection@Base 1.12.4 + atk_table_remove_row_selection@Base 1.12.4 + atk_table_set_caption@Base 1.12.4 + atk_table_set_column_description@Base 1.12.4 + atk_table_set_column_header@Base 1.12.4 + atk_table_set_row_description@Base 1.12.4 + atk_table_set_row_header@Base 1.12.4 + atk_table_set_summary@Base 1.12.4 + atk_text_add_selection@Base 1.12.4 + atk_text_attribute_for_name@Base 1.12.4 + atk_text_attribute_get_name@Base 1.12.4 + atk_text_attribute_get_type@Base 1.12.4 + atk_text_attribute_get_value@Base 1.12.4 + atk_text_attribute_register@Base 1.12.4 + atk_text_boundary_get_type@Base 1.12.4 + atk_text_clip_type_get_type@Base 1.12.4 + atk_text_free_ranges@Base 1.12.4 + atk_text_get_bounded_ranges@Base 1.12.4 + atk_text_get_caret_offset@Base 1.12.4 + atk_text_get_character_at_offset@Base 1.12.4 + atk_text_get_character_count@Base 1.12.4 + atk_text_get_character_extents@Base 1.12.4 + atk_text_get_default_attributes@Base 1.12.4 + atk_text_get_n_selections@Base 1.12.4 + atk_text_get_offset_at_point@Base 1.12.4 + atk_text_get_range_extents@Base 1.12.4 + atk_text_get_run_attributes@Base 1.12.4 + atk_text_get_selection@Base 1.12.4 + atk_text_get_text@Base 1.12.4 + atk_text_get_text_after_offset@Base 1.12.4 + atk_text_get_text_at_offset@Base 1.12.4 + atk_text_get_text_before_offset@Base 1.12.4 + atk_text_get_type@Base 1.12.4 + atk_text_range_get_type@Base 2.0.0 + atk_text_remove_selection@Base 1.12.4 + atk_text_set_caret_offset@Base 1.12.4 + atk_text_set_selection@Base 1.12.4 + atk_util_get_type@Base 1.12.4 + atk_value_get_current_value@Base 1.12.4 + atk_value_get_maximum_value@Base 1.12.4 + atk_value_get_minimum_increment@Base 1.12.4 + atk_value_get_minimum_value@Base 1.12.4 + atk_value_get_type@Base 1.12.4 + atk_value_set_current_value@Base 1.12.4 + atk_window_get_type@Base 2.1.5 diff -Nru atk1.0-1.30.0/debian/libatk1.0-data.install atk1.0-2.2.0/debian/libatk1.0-data.install --- atk1.0-1.30.0/debian/libatk1.0-data.install 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/debian/libatk1.0-data.install 2011-06-21 20:05:49.000000000 +0000 @@ -1 +1 @@ -debian/tmp/usr/share/locale/ +usr/share/locale/ diff -Nru atk1.0-1.30.0/debian/libatk1.0-dev.install atk1.0-2.2.0/debian/libatk1.0-dev.install --- atk1.0-1.30.0/debian/libatk1.0-dev.install 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/debian/libatk1.0-dev.install 2011-06-27 14:22:16.000000000 +0000 @@ -1,6 +1,6 @@ -debian/tmp/usr/lib/*.la -debian/tmp/usr/lib/*.a -debian/tmp/usr/lib/*.so -debian/tmp/usr/lib/pkgconfig/ -debian/tmp/usr/include -debian/tmp/usr/share/gir-1.0 +usr/lib/*/*.la +usr/lib/*/*.a +usr/lib/*/*.so +usr/lib/*/pkgconfig/ +usr/include +usr/share/gir-1.0 diff -Nru atk1.0-1.30.0/debian/libatk1.0-doc.install atk1.0-2.2.0/debian/libatk1.0-doc.install --- atk1.0-1.30.0/debian/libatk1.0-doc.install 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/debian/libatk1.0-doc.install 2011-06-21 20:06:02.000000000 +0000 @@ -1 +1 @@ -debian/tmp/usr/share/gtk-doc +usr/share/gtk-doc diff -Nru atk1.0-1.30.0/debian/libatk1.0-udeb.install atk1.0-2.2.0/debian/libatk1.0-udeb.install --- atk1.0-1.30.0/debian/libatk1.0-udeb.install 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/debian/libatk1.0-udeb.install 2011-06-27 14:22:16.000000000 +0000 @@ -1 +1 @@ -debian/tmp/usr/lib/lib*.so.* +usr/lib/*/lib*.so.* usr/lib diff -Nru atk1.0-1.30.0/debian/patches/debian-changes-2.2.0-0ubuntu1~lucid0 atk1.0-2.2.0/debian/patches/debian-changes-2.2.0-0ubuntu1~lucid0 --- atk1.0-1.30.0/debian/patches/debian-changes-2.2.0-0ubuntu1~lucid0 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/debian/patches/debian-changes-2.2.0-0ubuntu1~lucid0 2011-12-01 07:11:17.000000000 +0000 @@ -0,0 +1,328 @@ +Description: Upstream changes introduced in version 2.2.0-0ubuntu1~lucid0 + This patch has been created by dpkg-source during the package build. + Here's the last changelog entry, hopefully it gives details on why + those changes were made: + . + atk1.0 (2.2.0-0ubuntu1~lucid0) lucid; urgency=low + . + * Backport to Lucid. + . + The person named in the Author field signed this changelog entry. +Author: An Yang + +--- +The information above should follow the Patch Tagging Guidelines, please +checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here +are templates for supplementary fields that you might want to add: + +Origin: , +Bug: +Bug-Debian: http://bugs.debian.org/ +Bug-Ubuntu: https://launchpad.net/bugs/ +Forwarded: +Reviewed-By: +Last-Update: + +--- /dev/null ++++ atk1.0-2.2.0/atk/atkmarshal.c +@@ -0,0 +1,205 @@ ++ ++#include ++ ++ ++#ifdef G_ENABLE_DEBUG ++#define g_marshal_value_peek_boolean(v) g_value_get_boolean (v) ++#define g_marshal_value_peek_char(v) g_value_get_char (v) ++#define g_marshal_value_peek_uchar(v) g_value_get_uchar (v) ++#define g_marshal_value_peek_int(v) g_value_get_int (v) ++#define g_marshal_value_peek_uint(v) g_value_get_uint (v) ++#define g_marshal_value_peek_long(v) g_value_get_long (v) ++#define g_marshal_value_peek_ulong(v) g_value_get_ulong (v) ++#define g_marshal_value_peek_int64(v) g_value_get_int64 (v) ++#define g_marshal_value_peek_uint64(v) g_value_get_uint64 (v) ++#define g_marshal_value_peek_enum(v) g_value_get_enum (v) ++#define g_marshal_value_peek_flags(v) g_value_get_flags (v) ++#define g_marshal_value_peek_float(v) g_value_get_float (v) ++#define g_marshal_value_peek_double(v) g_value_get_double (v) ++#define g_marshal_value_peek_string(v) (char*) g_value_get_string (v) ++#define g_marshal_value_peek_param(v) g_value_get_param (v) ++#define g_marshal_value_peek_boxed(v) g_value_get_boxed (v) ++#define g_marshal_value_peek_pointer(v) g_value_get_pointer (v) ++#define g_marshal_value_peek_object(v) g_value_get_object (v) ++#define g_marshal_value_peek_variant(v) g_value_get_variant (v) ++#else /* !G_ENABLE_DEBUG */ ++/* WARNING: This code accesses GValues directly, which is UNSUPPORTED API. ++ * Do not access GValues directly in your code. Instead, use the ++ * g_value_get_*() functions ++ */ ++#define g_marshal_value_peek_boolean(v) (v)->data[0].v_int ++#define g_marshal_value_peek_char(v) (v)->data[0].v_int ++#define g_marshal_value_peek_uchar(v) (v)->data[0].v_uint ++#define g_marshal_value_peek_int(v) (v)->data[0].v_int ++#define g_marshal_value_peek_uint(v) (v)->data[0].v_uint ++#define g_marshal_value_peek_long(v) (v)->data[0].v_long ++#define g_marshal_value_peek_ulong(v) (v)->data[0].v_ulong ++#define g_marshal_value_peek_int64(v) (v)->data[0].v_int64 ++#define g_marshal_value_peek_uint64(v) (v)->data[0].v_uint64 ++#define g_marshal_value_peek_enum(v) (v)->data[0].v_long ++#define g_marshal_value_peek_flags(v) (v)->data[0].v_ulong ++#define g_marshal_value_peek_float(v) (v)->data[0].v_float ++#define g_marshal_value_peek_double(v) (v)->data[0].v_double ++#define g_marshal_value_peek_string(v) (v)->data[0].v_pointer ++#define g_marshal_value_peek_param(v) (v)->data[0].v_pointer ++#define g_marshal_value_peek_boxed(v) (v)->data[0].v_pointer ++#define g_marshal_value_peek_pointer(v) (v)->data[0].v_pointer ++#define g_marshal_value_peek_object(v) (v)->data[0].v_pointer ++#define g_marshal_value_peek_variant(v) (v)->data[0].v_pointer ++#endif /* !G_ENABLE_DEBUG */ ++ ++ ++/* VOID:INT,INT (./atkmarshal.list:25) */ ++void ++atk_marshal_VOID__INT_INT (GClosure *closure, ++ GValue *return_value G_GNUC_UNUSED, ++ guint n_param_values, ++ const GValue *param_values, ++ gpointer invocation_hint G_GNUC_UNUSED, ++ gpointer marshal_data) ++{ ++ typedef void (*GMarshalFunc_VOID__INT_INT) (gpointer data1, ++ gint arg_1, ++ gint arg_2, ++ gpointer data2); ++ register GMarshalFunc_VOID__INT_INT callback; ++ register GCClosure *cc = (GCClosure*) closure; ++ register gpointer data1, data2; ++ ++ g_return_if_fail (n_param_values == 3); ++ ++ if (G_CCLOSURE_SWAP_DATA (closure)) ++ { ++ data1 = closure->data; ++ data2 = g_value_peek_pointer (param_values + 0); ++ } ++ else ++ { ++ data1 = g_value_peek_pointer (param_values + 0); ++ data2 = closure->data; ++ } ++ callback = (GMarshalFunc_VOID__INT_INT) (marshal_data ? marshal_data : cc->callback); ++ ++ callback (data1, ++ g_marshal_value_peek_int (param_values + 1), ++ g_marshal_value_peek_int (param_values + 2), ++ data2); ++} ++ ++/* VOID:INT,INT,STRING (./atkmarshal.list:26) */ ++void ++atk_marshal_VOID__INT_INT_STRING (GClosure *closure, ++ GValue *return_value G_GNUC_UNUSED, ++ guint n_param_values, ++ const GValue *param_values, ++ gpointer invocation_hint G_GNUC_UNUSED, ++ gpointer marshal_data) ++{ ++ typedef void (*GMarshalFunc_VOID__INT_INT_STRING) (gpointer data1, ++ gint arg_1, ++ gint arg_2, ++ gpointer arg_3, ++ gpointer data2); ++ register GMarshalFunc_VOID__INT_INT_STRING callback; ++ register GCClosure *cc = (GCClosure*) closure; ++ register gpointer data1, data2; ++ ++ g_return_if_fail (n_param_values == 4); ++ ++ if (G_CCLOSURE_SWAP_DATA (closure)) ++ { ++ data1 = closure->data; ++ data2 = g_value_peek_pointer (param_values + 0); ++ } ++ else ++ { ++ data1 = g_value_peek_pointer (param_values + 0); ++ data2 = closure->data; ++ } ++ callback = (GMarshalFunc_VOID__INT_INT_STRING) (marshal_data ? marshal_data : cc->callback); ++ ++ callback (data1, ++ g_marshal_value_peek_int (param_values + 1), ++ g_marshal_value_peek_int (param_values + 2), ++ g_marshal_value_peek_string (param_values + 3), ++ data2); ++} ++ ++/* VOID:INT,INT,INT,STRING (./atkmarshal.list:27) */ ++void ++atk_marshal_VOID__INT_INT_INT_STRING (GClosure *closure, ++ GValue *return_value G_GNUC_UNUSED, ++ guint n_param_values, ++ const GValue *param_values, ++ gpointer invocation_hint G_GNUC_UNUSED, ++ gpointer marshal_data) ++{ ++ typedef void (*GMarshalFunc_VOID__INT_INT_INT_STRING) (gpointer data1, ++ gint arg_1, ++ gint arg_2, ++ gint arg_3, ++ gpointer arg_4, ++ gpointer data2); ++ register GMarshalFunc_VOID__INT_INT_INT_STRING callback; ++ register GCClosure *cc = (GCClosure*) closure; ++ register gpointer data1, data2; ++ ++ g_return_if_fail (n_param_values == 5); ++ ++ if (G_CCLOSURE_SWAP_DATA (closure)) ++ { ++ data1 = closure->data; ++ data2 = g_value_peek_pointer (param_values + 0); ++ } ++ else ++ { ++ data1 = g_value_peek_pointer (param_values + 0); ++ data2 = closure->data; ++ } ++ callback = (GMarshalFunc_VOID__INT_INT_INT_STRING) (marshal_data ? marshal_data : cc->callback); ++ ++ callback (data1, ++ g_marshal_value_peek_int (param_values + 1), ++ g_marshal_value_peek_int (param_values + 2), ++ g_marshal_value_peek_int (param_values + 3), ++ g_marshal_value_peek_string (param_values + 4), ++ data2); ++} ++ ++/* VOID:STRING,BOOLEAN (./atkmarshal.list:28) */ ++void ++atk_marshal_VOID__STRING_BOOLEAN (GClosure *closure, ++ GValue *return_value G_GNUC_UNUSED, ++ guint n_param_values, ++ const GValue *param_values, ++ gpointer invocation_hint G_GNUC_UNUSED, ++ gpointer marshal_data) ++{ ++ typedef void (*GMarshalFunc_VOID__STRING_BOOLEAN) (gpointer data1, ++ gpointer arg_1, ++ gboolean arg_2, ++ gpointer data2); ++ register GMarshalFunc_VOID__STRING_BOOLEAN callback; ++ register GCClosure *cc = (GCClosure*) closure; ++ register gpointer data1, data2; ++ ++ g_return_if_fail (n_param_values == 3); ++ ++ if (G_CCLOSURE_SWAP_DATA (closure)) ++ { ++ data1 = closure->data; ++ data2 = g_value_peek_pointer (param_values + 0); ++ } ++ else ++ { ++ data1 = g_value_peek_pointer (param_values + 0); ++ data2 = closure->data; ++ } ++ callback = (GMarshalFunc_VOID__STRING_BOOLEAN) (marshal_data ? marshal_data : cc->callback); ++ ++ callback (data1, ++ g_marshal_value_peek_string (param_values + 1), ++ g_marshal_value_peek_boolean (param_values + 2), ++ data2); ++} ++ +--- /dev/null ++++ atk1.0-2.2.0/atk/atkmarshal.h +@@ -0,0 +1,44 @@ ++ ++#ifndef __atk_marshal_MARSHAL_H__ ++#define __atk_marshal_MARSHAL_H__ ++ ++#include ++ ++G_BEGIN_DECLS ++ ++/* VOID:INT,INT (./atkmarshal.list:25) */ ++extern void atk_marshal_VOID__INT_INT (GClosure *closure, ++ GValue *return_value, ++ guint n_param_values, ++ const GValue *param_values, ++ gpointer invocation_hint, ++ gpointer marshal_data); ++ ++/* VOID:INT,INT,STRING (./atkmarshal.list:26) */ ++extern void atk_marshal_VOID__INT_INT_STRING (GClosure *closure, ++ GValue *return_value, ++ guint n_param_values, ++ const GValue *param_values, ++ gpointer invocation_hint, ++ gpointer marshal_data); ++ ++/* VOID:INT,INT,INT,STRING (./atkmarshal.list:27) */ ++extern void atk_marshal_VOID__INT_INT_INT_STRING (GClosure *closure, ++ GValue *return_value, ++ guint n_param_values, ++ const GValue *param_values, ++ gpointer invocation_hint, ++ gpointer marshal_data); ++ ++/* VOID:STRING,BOOLEAN (./atkmarshal.list:28) */ ++extern void atk_marshal_VOID__STRING_BOOLEAN (GClosure *closure, ++ GValue *return_value, ++ guint n_param_values, ++ const GValue *param_values, ++ gpointer invocation_hint, ++ gpointer marshal_data); ++ ++G_END_DECLS ++ ++#endif /* __atk_marshal_MARSHAL_H__ */ ++ +--- atk1.0-2.2.0.orig/docs/tmpl/atkmisc.sgml ++++ atk1.0-2.2.0/docs/tmpl/atkmisc.sgml +@@ -9,13 +9,11 @@ AtkMisc + + + +- + + + + + +- + + + +--- atk1.0-2.2.0.orig/docs/tmpl/atksocket.sgml ++++ atk1.0-2.2.0/docs/tmpl/atksocket.sgml +@@ -9,13 +9,11 @@ AtkSocket + + + +- + + + + + +- + + + +--- atk1.0-2.2.0.orig/docs/tmpl/atkplug.sgml ++++ atk1.0-2.2.0/docs/tmpl/atkplug.sgml +@@ -9,13 +9,11 @@ AtkPlug + + + +- + + + + + +- + + + diff -Nru atk1.0-1.30.0/debian/patches/series atk1.0-2.2.0/debian/patches/series --- atk1.0-1.30.0/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/debian/patches/series 2011-11-12 03:26:26.000000000 +0000 @@ -0,0 +1 @@ +debian-changes-2.2.0-0ubuntu1~lucid0 diff -Nru atk1.0-1.30.0/debian/rules atk1.0-2.2.0/debian/rules --- atk1.0-1.30.0/debian/rules 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/debian/rules 2011-06-27 14:22:16.000000000 +0000 @@ -1,24 +1,16 @@ #! /usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk -include /usr/share/cdbs/1/rules/simple-patchsys.mk include /usr/share/cdbs/1/class/gnome.mk include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk include /usr/share/gnome-pkg-tools/1/rules/clean-la.mk -include /usr/share/gnome-pkg-tools/1/rules/check-dist.mk --include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk +include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk GNOME_MODULE := atk LDFLAGS += -Wl,-O1 -Wl,-z,defs -Wl,--as-needed # build static stuff: -DEB_CONFIGURE_EXTRA_FLAGS += --enable-gtk-doc --enable-static --enable-introspection +DEB_CONFIGURE_EXTRA_FLAGS += --enable-gtk-doc --enable-static --enable-introspection --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) -SHLIB_VERSION := 1.29.3 -DEB_DH_MAKESHLIBS_ARGS_libatk1.0-0 += -V"libatk1.0-0 (>= $(SHLIB_VERSION))" --add-udeb="libatk1.0-udeb" - -DEB_DBG_PACKAGE_ALL := libatk1.0-dbg - -$(patsubst %,binary-predeb/%,$(DEB_ALL_PACKAGES)) :: - dh_girepository -p$(cdbs_curpkg) +DEB_DH_MAKESHLIBS_ARGS_libatk1.0-0 += --add-udeb="libatk1.0-udeb" -V -- -c4 diff -Nru atk1.0-1.30.0/debian/source/format atk1.0-2.2.0/debian/source/format --- atk1.0-1.30.0/debian/source/format 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/debian/source/format 2011-12-01 07:24:40.000000000 +0000 @@ -0,0 +1 @@ +3.0 (quilt) diff -Nru atk1.0-1.30.0/debian/watch atk1.0-2.2.0/debian/watch --- atk1.0-1.30.0/debian/watch 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/debian/watch 2011-06-21 19:46:16.000000000 +0000 @@ -1,2 +1,2 @@ version=3 -http://ftp.gnome.org/pub/GNOME/sources/atk/([\d\.]+)[02468]/ atk-(.*)\.tar\.gz debian uupdate +http://ftp.gnome.org/pub/GNOME/sources/atk/([\d\.]+[02468])/atk-(.*)\.tar\.bz2 diff -Nru atk1.0-1.30.0/docs/atk-docs.sgml atk1.0-2.2.0/docs/atk-docs.sgml --- atk1.0-1.30.0/docs/atk-docs.sgml 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/docs/atk-docs.sgml 2011-09-19 23:45:19.000000000 +0000 @@ -12,12 +12,14 @@ + + @@ -50,10 +52,12 @@ &atk-AtkNoOpObjectFactory; &atk-AtkObject; &atk-AtkObjectFactory; + &atk-AtkPlug; &atk-AtkRegistry; &atk-AtkRelation; &atk-AtkRelationSet; &atk-AtkSelection; + &atk-AtkSocket; &atk-AtkState; &atk-AtkStateSet; &atk-AtkStreamableContent; @@ -63,27 +67,51 @@ &atk-AtkValue; - - Index + + Index of all symbols - + Index of deprecated symbols - - Index of new symbols in ATK 1.3 - - - Index of new symbols in ATK 1.4 - - - Index of new symbols in ATK 1.6 - - - Index of new symbols in ATK 1.9 - - - Index of new symbols in ATK 1.12 - + + Index of new symbols in 1.3 + + + Index of new symbols in 1.4 + + + Index of new symbols in 1.6 + + + Index of new symbols in 1.12 + + + Index of new symbols in 1.13 + + + Index of new symbols in 1.18 + + + Index of new symbols in 1.20 + + + Index of new symbols in 1.22 + + + Index of new symbols in 1.24 + + + Index of new symbols in 1.26 + + + Index of new symbols in 1.28 + + + Index of new symbols in 1.30 + + + Index of new symbols in 1.32 + diff -Nru atk1.0-1.30.0/docs/atk-sections.txt atk1.0-2.2.0/docs/atk-sections.txt --- atk1.0-1.30.0/docs/atk-sections.txt 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/atk-sections.txt 2011-09-26 22:25:58.000000000 +0000 @@ -262,6 +262,7 @@ atk_relation_get_relation_type atk_relation_get_target atk_relation_add_target +atk_relation_remove_target ATK_RELATION ATK_IS_RELATION @@ -547,6 +548,12 @@ atk_get_focus_object atk_get_toolkit_name atk_get_toolkit_version +atk_get_version +ATK_DEFINE_TYPE +ATK_DEFINE_TYPE_EXTENDED +ATK_DEFINE_TYPE_WITH_CODE +ATK_DEFINE_ABSTRACT_TYPE +ATK_DEFINE_ABSTRACT_TYPE_WITH_CODE ATK_UTIL ATK_IS_UTIL @@ -577,6 +584,8 @@ ATK_IS_MISC_CLASS ATK_MISC_GET_CLASS AtkMiscClass +atk_misc_get_type +atk_misc_instance
@@ -595,3 +604,38 @@ ATK_GOBJECT_ACCESSIBLE_GET_CLASS AtkGObjectAccessibleClass
+ +
+atkplug +AtkPlug +AtkPlug +atk_plug_new +atk_plug_get_id + +ATK_IS_PLUG +ATK_IS_PLUG_CLASS +ATK_PLUG +ATK_PLUG_CLASS +ATK_PLUG_GET_CLASS +ATK_TYPE_PLUG +AtkPlugClass +atk_plug_get_type +
+ +
+atksocket +AtkSocket +AtkSocket +atk_socket_new +atk_socket_embed +atk_socket_is_occupied + +ATK_IS_SOCKET +ATK_IS_SOCKET_CLASS +ATK_SOCKET +ATK_SOCKET_CLASS +ATK_SOCKET_GET_CLASS +ATK_TYPE_SOCKET +AtkSocketClass +atk_socket_get_type +
diff -Nru atk1.0-1.30.0/docs/html/api-index-1-12.html atk1.0-2.2.0/docs/html/api-index-1-12.html --- atk1.0-1.30.0/docs/html/api-index-1-12.html 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/docs/html/api-index-1-12.html 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,51 @@ + + + + +Index of new symbols in 1.12 + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 1.12

+
+

A

+
+
atk_component_get_alpha, atk_component_get_alpha () +
+
atk_document_get_attributes, atk_document_get_attributes () +
+
atk_document_get_attribute_value, atk_document_get_attribute_value () +
+
atk_document_set_attribute_value, atk_document_set_attribute_value () +
+
atk_hyperlink_impl_get_hyperlink, atk_hyperlink_impl_get_hyperlink () +
+
atk_object_get_attributes, atk_object_get_attributes () +
+
atk_streamable_content_get_uri, atk_streamable_content_get_uri () +
+
atk_value_get_minimum_increment, atk_value_get_minimum_increment () +
+
+
+
+ + + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/api-index-1-13.html atk1.0-2.2.0/docs/html/api-index-1-13.html --- atk1.0-1.30.0/docs/html/api-index-1-13.html 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/docs/html/api-index-1-13.html 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,31 @@ + + + + +Index of new symbols in 1.13 + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 1.13

+
+
+ + + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/api-index-1-18.html atk1.0-2.2.0/docs/html/api-index-1-18.html --- atk1.0-1.30.0/docs/html/api-index-1-18.html 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/docs/html/api-index-1-18.html 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,31 @@ + + + + +Index of new symbols in 1.18 + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 1.18

+
+
+ + + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/api-index-1-20.html atk1.0-2.2.0/docs/html/api-index-1-20.html --- atk1.0-1.30.0/docs/html/api-index-1-20.html 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/docs/html/api-index-1-20.html 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,35 @@ + + + + +Index of new symbols in 1.20 + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 1.20

+
+

A

+
atk_get_version, atk_get_version () +
+
+
+ + + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/api-index-1-22.html atk1.0-2.2.0/docs/html/api-index-1-22.html --- atk1.0-1.30.0/docs/html/api-index-1-22.html 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/docs/html/api-index-1-22.html 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,45 @@ + + + + +Index of new symbols in 1.22 + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 1.22

+
+

A

+
+
ATK_DEFINE_ABSTRACT_TYPE, ATK_DEFINE_ABSTRACT_TYPE() +
+
ATK_DEFINE_ABSTRACT_TYPE_WITH_CODE, ATK_DEFINE_ABSTRACT_TYPE_WITH_CODE() +
+
ATK_DEFINE_TYPE, ATK_DEFINE_TYPE() +
+
ATK_DEFINE_TYPE_EXTENDED, ATK_DEFINE_TYPE_EXTENDED() +
+
ATK_DEFINE_TYPE_WITH_CODE, ATK_DEFINE_TYPE_WITH_CODE() +
+
+
+
+ + + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/api-index-1-24.html atk1.0-2.2.0/docs/html/api-index-1-24.html --- atk1.0-1.30.0/docs/html/api-index-1-24.html 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/docs/html/api-index-1-24.html 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,31 @@ + + + + +Index of new symbols in 1.24 + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 1.24

+
+
+ + + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/api-index-1-26.html atk1.0-2.2.0/docs/html/api-index-1-26.html --- atk1.0-1.30.0/docs/html/api-index-1-26.html 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/docs/html/api-index-1-26.html 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,31 @@ + + + + +Index of new symbols in 1.26 + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 1.26

+
+
+ + + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/api-index-1-28.html atk1.0-2.2.0/docs/html/api-index-1-28.html --- atk1.0-1.30.0/docs/html/api-index-1-28.html 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/docs/html/api-index-1-28.html 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,31 @@ + + + + +Index of new symbols in 1.28 + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 1.28

+
+
+ + + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/api-index-1-30.html atk1.0-2.2.0/docs/html/api-index-1-30.html --- atk1.0-1.30.0/docs/html/api-index-1-30.html 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/docs/html/api-index-1-30.html 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,39 @@ + + + + +Index of new symbols in 1.30 + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 1.30

+
+

A

+
+
atk_socket_embed, atk_socket_embed () +
+
atk_socket_is_occupied, atk_socket_is_occupied () +
+
+
+
+ + + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/api-index-1-32.html atk1.0-2.2.0/docs/html/api-index-1-32.html --- atk1.0-1.30.0/docs/html/api-index-1-32.html 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/docs/html/api-index-1-32.html 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,30 @@ + + + + +Index of new symbols in 1.32 + + + + + + + + + + + + + + + +
+

+Index of new symbols in 1.32

+
+
+ + + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/api-index-1-3.html atk1.0-2.2.0/docs/html/api-index-1-3.html --- atk1.0-1.30.0/docs/html/api-index-1-3.html 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/docs/html/api-index-1-3.html 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,41 @@ + + + + +Index of new symbols in 1.3 + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 1.3

+
+

A

+
+
atk_text_free_ranges, atk_text_free_ranges () +
+
atk_text_get_bounded_ranges, atk_text_get_bounded_ranges () +
+
atk_text_get_range_extents, atk_text_get_range_extents () +
+
+
+
+ + + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/api-index-1-4.html atk1.0-2.2.0/docs/html/api-index-1-4.html --- atk1.0-1.30.0/docs/html/api-index-1-4.html 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/docs/html/api-index-1-4.html 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,35 @@ + + + + +Index of new symbols in 1.4 + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 1.4

+
+

A

+
atk_hyperlink_is_selected_link, atk_hyperlink_is_selected_link () +
+
+
+ + + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/api-index-1-6.html atk1.0-2.2.0/docs/html/api-index-1-6.html --- atk1.0-1.30.0/docs/html/api-index-1-6.html 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/docs/html/api-index-1-6.html 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,35 @@ + + + + +Index of new symbols in 1.6 + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 1.6

+
+

A

+
atk_get_focus_object, atk_get_focus_object () +
+
+
+ + + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/api-index-deprecated.html atk1.0-2.2.0/docs/html/api-index-deprecated.html --- atk1.0-1.30.0/docs/html/api-index-deprecated.html 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/docs/html/api-index-deprecated.html 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,41 @@ + + + + +Index of deprecated symbols + + + + + + + + + + + + + + + + +
+

+Index of deprecated symbols

+
+

A

+
+
atk_hyperlink_is_selected_link, atk_hyperlink_is_selected_link () +
+
atk_object_get_layer, atk_object_get_layer () +
+
atk_object_get_mdi_zorder, atk_object_get_mdi_zorder () +
+
+
+
+ + + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/api-index-full.html atk1.0-2.2.0/docs/html/api-index-full.html --- atk1.0-1.30.0/docs/html/api-index-full.html 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/docs/html/api-index-full.html 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,651 @@ + + + + +Index of all symbols + + + + + + + + + + + + + + + + +
+

+Index of all symbols

+
+

A

+
+
AtkAction, AtkAction +
+
AtkAttribute, struct AtkAttribute +
+
AtkAttributeSet, AtkAttributeSet +
+
AtkComponent, AtkComponent +
+
AtkComponent::bounds-changed, The "bounds-changed" signal +
+
AtkCoordType, enum AtkCoordType +
+
AtkDocument, AtkDocument +
+
AtkDocument::load-complete, The "load-complete" signal +
+
AtkDocument::load-stopped, The "load-stopped" signal +
+
AtkDocument::reload, The "reload" signal +
+
AtkEditableText, AtkEditableText +
+
AtkEventListener, AtkEventListener () +
+
AtkEventListenerInit, AtkEventListenerInit () +
+
AtkFunction, AtkFunction () +
+
AtkGObjectAccessible, struct AtkGObjectAccessible +
+
AtkHyperlink, struct AtkHyperlink +
+
AtkHyperlink::link-activated, The "link-activated" signal +
+
AtkHyperlink:end-index, The "end-index" property +
+
AtkHyperlink:number-of-anchors, The "number-of-anchors" property +
+
AtkHyperlink:selected-link, The "selected-link" property +
+
AtkHyperlink:start-index, The "start-index" property +
+
AtkHyperlinkImpl, AtkHyperlinkImpl +
+
AtkHyperlinkStateFlags, enum AtkHyperlinkStateFlags +
+
AtkHypertext, AtkHypertext +
+
AtkHypertext::link-selected, The "link-selected" signal +
+
AtkImage, AtkImage +
+
AtkImplementor, AtkImplementor +
+
AtkKeyEventStruct, struct AtkKeyEventStruct +
+
AtkKeyEventType, enum AtkKeyEventType +
+
AtkKeySnoopFunc, AtkKeySnoopFunc () +
+
AtkLayer, enum AtkLayer +
+
AtkNoOpObject, struct AtkNoOpObject +
+
AtkNoOpObjectFactory, struct AtkNoOpObjectFactory +
+
AtkObject, struct AtkObject +
+
AtkObject::active-descendant-changed, The "active-descendant-changed" signal +
+
AtkObject::children-changed, The "children-changed" signal +
+
AtkObject::focus-event, The "focus-event" signal +
+
AtkObject::property-change, The "property-change" signal +
+
AtkObject::state-change, The "state-change" signal +
+
AtkObject::visible-data-changed, The "visible-data-changed" signal +
+
AtkObject:accessible-component-layer, The "accessible-component-layer" property +
+
AtkObject:accessible-component-mdi-zorder, The "accessible-component-mdi-zorder" property +
+
AtkObject:accessible-description, The "accessible-description" property +
+
AtkObject:accessible-hypertext-nlinks, The "accessible-hypertext-nlinks" property +
+
AtkObject:accessible-name, The "accessible-name" property +
+
AtkObject:accessible-parent, The "accessible-parent" property +
+
AtkObject:accessible-role, The "accessible-role" property +
+
AtkObject:accessible-table-caption, The "accessible-table-caption" property +
+
AtkObject:accessible-table-caption-object, The "accessible-table-caption-object" property +
+
AtkObject:accessible-table-column-description, The "accessible-table-column-description" property +
+
AtkObject:accessible-table-column-header, The "accessible-table-column-header" property +
+
AtkObject:accessible-table-row-description, The "accessible-table-row-description" property +
+
AtkObject:accessible-table-row-header, The "accessible-table-row-header" property +
+
AtkObject:accessible-table-summary, The "accessible-table-summary" property +
+
AtkObject:accessible-value, The "accessible-value" property +
+
AtkObjectFactory, struct AtkObjectFactory +
+
AtkPlug, struct AtkPlug +
+
AtkPropertyChangeHandler, AtkPropertyChangeHandler () +
+
AtkPropertyValues, AtkPropertyValues +
+
AtkRegistry, AtkRegistry +
+
AtkRelation, struct AtkRelation +
+
AtkRelation:relation-type, The "relation-type" property +
+
AtkRelation:target, The "target" property +
+
AtkRelationSet, AtkRelationSet +
+
AtkRelationType, enum AtkRelationType +
+
AtkRole, enum AtkRole +
+
AtkSelection, AtkSelection +
+
AtkSelection::selection-changed, The "selection-changed" signal +
+
AtkSocket, struct AtkSocket +
+
AtkState, AtkState +
+
AtkStateSet, AtkStateSet +
+
AtkStateType, enum AtkStateType +
+
AtkStreamableContent, AtkStreamableContent +
+
AtkTable, AtkTable +
+
AtkTable::column-deleted, The "column-deleted" signal +
+
AtkTable::column-inserted, The "column-inserted" signal +
+
AtkTable::column-reordered, The "column-reordered" signal +
+
AtkTable::model-changed, The "model-changed" signal +
+
AtkTable::row-deleted, The "row-deleted" signal +
+
AtkTable::row-inserted, The "row-inserted" signal +
+
AtkTable::row-reordered, The "row-reordered" signal +
+
AtkText, AtkText +
+
AtkText::text-attributes-changed, The "text-attributes-changed" signal +
+
AtkText::text-caret-moved, The "text-caret-moved" signal +
+
AtkText::text-changed, The "text-changed" signal +
+
AtkText::text-insert, The "text-insert" signal +
+
AtkText::text-remove, The "text-remove" signal +
+
AtkText::text-selection-changed, The "text-selection-changed" signal +
+
AtkText::text-update, The "text-update" signal +
+
AtkTextAttribute, enum AtkTextAttribute +
+
AtkTextBoundary, enum AtkTextBoundary +
+
AtkTextClipType, enum AtkTextClipType +
+
AtkTextRange, struct AtkTextRange +
+
AtkTextRectangle, struct AtkTextRectangle +
+
AtkUtil, struct AtkUtil +
+
AtkValue, AtkValue +
+
atk_action_do_action, atk_action_do_action () +
+
atk_action_get_description, atk_action_get_description () +
+
atk_action_get_keybinding, atk_action_get_keybinding () +
+
atk_action_get_localized_name, atk_action_get_localized_name () +
+
atk_action_get_name, atk_action_get_name () +
+
atk_action_get_n_actions, atk_action_get_n_actions () +
+
atk_action_set_description, atk_action_set_description () +
+
atk_add_focus_tracker, atk_add_focus_tracker () +
+
atk_add_global_event_listener, atk_add_global_event_listener () +
+
atk_add_key_event_listener, atk_add_key_event_listener () +
+
atk_attribute_set_free, atk_attribute_set_free () +
+
atk_component_add_focus_handler, atk_component_add_focus_handler () +
+
atk_component_contains, atk_component_contains () +
+
atk_component_get_alpha, atk_component_get_alpha () +
+
atk_component_get_extents, atk_component_get_extents () +
+
atk_component_get_layer, atk_component_get_layer () +
+
atk_component_get_mdi_zorder, atk_component_get_mdi_zorder () +
+
atk_component_get_position, atk_component_get_position () +
+
atk_component_get_size, atk_component_get_size () +
+
atk_component_grab_focus, atk_component_grab_focus () +
+
atk_component_ref_accessible_at_point, atk_component_ref_accessible_at_point () +
+
atk_component_remove_focus_handler, atk_component_remove_focus_handler () +
+
atk_component_set_extents, atk_component_set_extents () +
+
atk_component_set_position, atk_component_set_position () +
+
atk_component_set_size, atk_component_set_size () +
+
ATK_DEFINE_ABSTRACT_TYPE, ATK_DEFINE_ABSTRACT_TYPE() +
+
ATK_DEFINE_ABSTRACT_TYPE_WITH_CODE, ATK_DEFINE_ABSTRACT_TYPE_WITH_CODE() +
+
ATK_DEFINE_TYPE, ATK_DEFINE_TYPE() +
+
ATK_DEFINE_TYPE_EXTENDED, ATK_DEFINE_TYPE_EXTENDED() +
+
ATK_DEFINE_TYPE_WITH_CODE, ATK_DEFINE_TYPE_WITH_CODE() +
+
atk_document_get_attributes, atk_document_get_attributes () +
+
atk_document_get_attribute_value, atk_document_get_attribute_value () +
+
atk_document_get_document, atk_document_get_document () +
+
atk_document_get_document_type, atk_document_get_document_type () +
+
atk_document_get_locale, atk_document_get_locale () +
+
atk_document_set_attribute_value, atk_document_set_attribute_value () +
+
atk_editable_text_copy_text, atk_editable_text_copy_text () +
+
atk_editable_text_cut_text, atk_editable_text_cut_text () +
+
atk_editable_text_delete_text, atk_editable_text_delete_text () +
+
atk_editable_text_insert_text, atk_editable_text_insert_text () +
+
atk_editable_text_paste_text, atk_editable_text_paste_text () +
+
atk_editable_text_set_run_attributes, atk_editable_text_set_run_attributes () +
+
atk_editable_text_set_text_contents, atk_editable_text_set_text_contents () +
+
atk_focus_tracker_init, atk_focus_tracker_init () +
+
atk_focus_tracker_notify, atk_focus_tracker_notify () +
+
atk_get_default_registry, atk_get_default_registry () +
+
atk_get_focus_object, atk_get_focus_object () +
+
atk_get_root, atk_get_root () +
+
atk_get_toolkit_name, atk_get_toolkit_name () +
+
atk_get_toolkit_version, atk_get_toolkit_version () +
+
atk_get_version, atk_get_version () +
+
atk_gobject_accessible_for_object, atk_gobject_accessible_for_object () +
+
atk_gobject_accessible_get_object, atk_gobject_accessible_get_object () +
+
atk_hyperlink_get_end_index, atk_hyperlink_get_end_index () +
+
atk_hyperlink_get_n_anchors, atk_hyperlink_get_n_anchors () +
+
atk_hyperlink_get_object, atk_hyperlink_get_object () +
+
atk_hyperlink_get_start_index, atk_hyperlink_get_start_index () +
+
atk_hyperlink_get_uri, atk_hyperlink_get_uri () +
+
atk_hyperlink_impl_get_hyperlink, atk_hyperlink_impl_get_hyperlink () +
+
atk_hyperlink_is_inline, atk_hyperlink_is_inline () +
+
atk_hyperlink_is_selected_link, atk_hyperlink_is_selected_link () +
+
atk_hyperlink_is_valid, atk_hyperlink_is_valid () +
+
atk_hypertext_get_link, atk_hypertext_get_link () +
+
atk_hypertext_get_link_index, atk_hypertext_get_link_index () +
+
atk_hypertext_get_n_links, atk_hypertext_get_n_links () +
+
atk_image_get_image_description, atk_image_get_image_description () +
+
atk_image_get_image_locale, atk_image_get_image_locale () +
+
atk_image_get_image_position, atk_image_get_image_position () +
+
atk_image_get_image_size, atk_image_get_image_size () +
+
atk_image_set_image_description, atk_image_set_image_description () +
+
atk_implementor_ref_accessible, atk_implementor_ref_accessible () +
+
atk_no_op_object_factory_new, atk_no_op_object_factory_new () +
+
atk_no_op_object_new, atk_no_op_object_new () +
+
atk_object_add_relationship, atk_object_add_relationship () +
+
atk_object_connect_property_change_handler, atk_object_connect_property_change_handler () +
+
atk_object_factory_create_accessible, atk_object_factory_create_accessible () +
+
atk_object_factory_get_accessible_type, atk_object_factory_get_accessible_type () +
+
atk_object_factory_invalidate, atk_object_factory_invalidate () +
+
atk_object_get_attributes, atk_object_get_attributes () +
+
atk_object_get_description, atk_object_get_description () +
+
atk_object_get_index_in_parent, atk_object_get_index_in_parent () +
+
atk_object_get_layer, atk_object_get_layer () +
+
atk_object_get_mdi_zorder, atk_object_get_mdi_zorder () +
+
atk_object_get_name, atk_object_get_name () +
+
atk_object_get_n_accessible_children, atk_object_get_n_accessible_children () +
+
atk_object_get_parent, atk_object_get_parent () +
+
atk_object_get_role, atk_object_get_role () +
+
atk_object_initialize, atk_object_initialize () +
+
atk_object_notify_state_change, atk_object_notify_state_change () +
+
atk_object_ref_accessible_child, atk_object_ref_accessible_child () +
+
atk_object_ref_relation_set, atk_object_ref_relation_set () +
+
atk_object_ref_state_set, atk_object_ref_state_set () +
+
atk_object_remove_property_change_handler, atk_object_remove_property_change_handler () +
+
atk_object_remove_relationship, atk_object_remove_relationship () +
+
atk_object_set_description, atk_object_set_description () +
+
atk_object_set_name, atk_object_set_name () +
+
atk_object_set_parent, atk_object_set_parent () +
+
atk_object_set_role, atk_object_set_role () +
+
atk_plug_get_id, atk_plug_get_id () +
+
atk_plug_new, atk_plug_new () +
+
atk_registry_get_factory, atk_registry_get_factory () +
+
atk_registry_get_factory_type, atk_registry_get_factory_type () +
+
atk_registry_set_factory_type, atk_registry_set_factory_type () +
+
atk_relation_add_target, atk_relation_add_target () +
+
atk_relation_get_relation_type, atk_relation_get_relation_type () +
+
atk_relation_get_target, atk_relation_get_target () +
+
atk_relation_new, atk_relation_new () +
+
atk_relation_remove_target, atk_relation_remove_target () +
+
atk_relation_set_add, atk_relation_set_add () +
+
atk_relation_set_add_relation_by_type, atk_relation_set_add_relation_by_type () +
+
atk_relation_set_contains, atk_relation_set_contains () +
+
atk_relation_set_get_n_relations, atk_relation_set_get_n_relations () +
+
atk_relation_set_get_relation, atk_relation_set_get_relation () +
+
atk_relation_set_get_relation_by_type, atk_relation_set_get_relation_by_type () +
+
atk_relation_set_new, atk_relation_set_new () +
+
atk_relation_set_remove, atk_relation_set_remove () +
+
atk_relation_type_for_name, atk_relation_type_for_name () +
+
atk_relation_type_get_name, atk_relation_type_get_name () +
+
atk_relation_type_register, atk_relation_type_register () +
+
atk_remove_focus_tracker, atk_remove_focus_tracker () +
+
atk_remove_global_event_listener, atk_remove_global_event_listener () +
+
atk_remove_key_event_listener, atk_remove_key_event_listener () +
+
atk_role_for_name, atk_role_for_name () +
+
atk_role_get_localized_name, atk_role_get_localized_name () +
+
atk_role_get_name, atk_role_get_name () +
+
atk_role_register, atk_role_register () +
+
atk_selection_add_selection, atk_selection_add_selection () +
+
atk_selection_clear_selection, atk_selection_clear_selection () +
+
atk_selection_get_selection_count, atk_selection_get_selection_count () +
+
atk_selection_is_child_selected, atk_selection_is_child_selected () +
+
atk_selection_ref_selection, atk_selection_ref_selection () +
+
atk_selection_remove_selection, atk_selection_remove_selection () +
+
atk_selection_select_all_selection, atk_selection_select_all_selection () +
+
atk_socket_embed, atk_socket_embed () +
+
atk_socket_is_occupied, atk_socket_is_occupied () +
+
atk_socket_new, atk_socket_new () +
+
atk_state_set_add_state, atk_state_set_add_state () +
+
atk_state_set_add_states, atk_state_set_add_states () +
+
atk_state_set_and_sets, atk_state_set_and_sets () +
+
atk_state_set_clear_states, atk_state_set_clear_states () +
+
atk_state_set_contains_state, atk_state_set_contains_state () +
+
atk_state_set_contains_states, atk_state_set_contains_states () +
+
atk_state_set_is_empty, atk_state_set_is_empty () +
+
atk_state_set_new, atk_state_set_new () +
+
atk_state_set_or_sets, atk_state_set_or_sets () +
+
atk_state_set_remove_state, atk_state_set_remove_state () +
+
atk_state_set_xor_sets, atk_state_set_xor_sets () +
+
atk_state_type_for_name, atk_state_type_for_name () +
+
atk_state_type_get_name, atk_state_type_get_name () +
+
atk_state_type_register, atk_state_type_register () +
+
atk_streamable_content_get_mime_type, atk_streamable_content_get_mime_type () +
+
atk_streamable_content_get_n_mime_types, atk_streamable_content_get_n_mime_types () +
+
atk_streamable_content_get_stream, atk_streamable_content_get_stream () +
+
atk_streamable_content_get_uri, atk_streamable_content_get_uri () +
+
atk_table_add_column_selection, atk_table_add_column_selection () +
+
atk_table_add_row_selection, atk_table_add_row_selection () +
+
atk_table_get_caption, atk_table_get_caption () +
+
atk_table_get_column_at_index, atk_table_get_column_at_index () +
+
atk_table_get_column_description, atk_table_get_column_description () +
+
atk_table_get_column_extent_at, atk_table_get_column_extent_at () +
+
atk_table_get_column_header, atk_table_get_column_header () +
+
atk_table_get_index_at, atk_table_get_index_at () +
+
atk_table_get_n_columns, atk_table_get_n_columns () +
+
atk_table_get_n_rows, atk_table_get_n_rows () +
+
atk_table_get_row_at_index, atk_table_get_row_at_index () +
+
atk_table_get_row_description, atk_table_get_row_description () +
+
atk_table_get_row_extent_at, atk_table_get_row_extent_at () +
+
atk_table_get_row_header, atk_table_get_row_header () +
+
atk_table_get_selected_columns, atk_table_get_selected_columns () +
+
atk_table_get_selected_rows, atk_table_get_selected_rows () +
+
atk_table_get_summary, atk_table_get_summary () +
+
atk_table_is_column_selected, atk_table_is_column_selected () +
+
atk_table_is_row_selected, atk_table_is_row_selected () +
+
atk_table_is_selected, atk_table_is_selected () +
+
atk_table_ref_at, atk_table_ref_at () +
+
atk_table_remove_column_selection, atk_table_remove_column_selection () +
+
atk_table_remove_row_selection, atk_table_remove_row_selection () +
+
atk_table_set_caption, atk_table_set_caption () +
+
atk_table_set_column_description, atk_table_set_column_description () +
+
atk_table_set_column_header, atk_table_set_column_header () +
+
atk_table_set_row_description, atk_table_set_row_description () +
+
atk_table_set_row_header, atk_table_set_row_header () +
+
atk_table_set_summary, atk_table_set_summary () +
+
atk_text_add_selection, atk_text_add_selection () +
+
atk_text_attribute_for_name, atk_text_attribute_for_name () +
+
atk_text_attribute_get_name, atk_text_attribute_get_name () +
+
atk_text_attribute_get_value, atk_text_attribute_get_value () +
+
atk_text_attribute_register, atk_text_attribute_register () +
+
atk_text_free_ranges, atk_text_free_ranges () +
+
atk_text_get_bounded_ranges, atk_text_get_bounded_ranges () +
+
atk_text_get_caret_offset, atk_text_get_caret_offset () +
+
atk_text_get_character_at_offset, atk_text_get_character_at_offset () +
+
atk_text_get_character_count, atk_text_get_character_count () +
+
atk_text_get_character_extents, atk_text_get_character_extents () +
+
atk_text_get_default_attributes, atk_text_get_default_attributes () +
+
atk_text_get_n_selections, atk_text_get_n_selections () +
+
atk_text_get_offset_at_point, atk_text_get_offset_at_point () +
+
atk_text_get_range_extents, atk_text_get_range_extents () +
+
atk_text_get_run_attributes, atk_text_get_run_attributes () +
+
atk_text_get_selection, atk_text_get_selection () +
+
atk_text_get_text, atk_text_get_text () +
+
atk_text_get_text_after_offset, atk_text_get_text_after_offset () +
+
atk_text_get_text_at_offset, atk_text_get_text_at_offset () +
+
atk_text_get_text_before_offset, atk_text_get_text_before_offset () +
+
atk_text_remove_selection, atk_text_remove_selection () +
+
atk_text_set_caret_offset, atk_text_set_caret_offset () +
+
atk_text_set_selection, atk_text_set_selection () +
+
atk_value_get_current_value, atk_value_get_current_value () +
+
atk_value_get_maximum_value, atk_value_get_maximum_value () +
+
atk_value_get_minimum_increment, atk_value_get_minimum_increment () +
+
atk_value_get_minimum_value, atk_value_get_minimum_value () +
+
atk_value_set_current_value, atk_value_set_current_value () +
+
+
+
+ + + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkAction.html atk1.0-2.2.0/docs/html/AtkAction.html --- atk1.0-1.30.0/docs/html/AtkAction.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkAction.html 2011-09-26 22:25:58.000000000 +0000 @@ -8,16 +8,8 @@ - + - - - - - - - - @@ -30,15 +22,15 @@ -
+
@@ -48,68 +40,39 @@
-
+

Synopsis

-
-                    AtkAction;
-gboolean            atk_action_do_action                (AtkAction *action,
-                                                         gint i);
-gint                atk_action_get_n_actions            (AtkAction *action);
-const gchar*        atk_action_get_description          (AtkAction *action,
-                                                         gint i);
-const gchar*        atk_action_get_name                 (AtkAction *action,
-                                                         gint i);
-const gchar*        atk_action_get_localized_name       (AtkAction *action,
-                                                         gint i);
-const gchar*        atk_action_get_keybinding           (AtkAction *action,
-                                                         gint i);
-gboolean            atk_action_set_description          (AtkAction *action,
-                                                         gint i,
-                                                         const gchar *desc);
+
                    AtkAction;
+gboolean            atk_action_do_action                (AtkAction *action,
+                                                         gint i);
+gint                atk_action_get_n_actions            (AtkAction *action);
+const gchar *       atk_action_get_description          (AtkAction *action,
+                                                         gint i);
+const gchar *       atk_action_get_name                 (AtkAction *action,
+                                                         gint i);
+const gchar *       atk_action_get_localized_name       (AtkAction *action,
+                                                         gint i);
+const gchar *       atk_action_get_keybinding           (AtkAction *action,
+                                                         gint i);
+gboolean            atk_action_set_description          (AtkAction *action,
+                                                         gint i,
+                                                         const gchar *desc);
 
-
+

Object Hierarchy

   GInterface
    +----AtkAction
 
-
+

Known Implementations

AtkAction is implemented by AtkHyperlink and AtkNoOpObject.

-
+

Description

AtkAction should be implemented by instances of AtkObject classes with @@ -120,7 +83,7 @@

Exceptions: when the user interaction is already covered by another appropriate interface such as AtkEditableText (insert/delete -test, etc.) or AtkValue (set value) then these actions should not be +text, etc.) or AtkValue (set value) then these actions should not be exposed by AtkAction as well.

@@ -141,9 +104,9 @@ terminology for AtkAction names.

-
+

Details

-
+

AtkAction

typedef struct _AtkAction AtkAction;

@@ -151,125 +114,88 @@


-
+

atk_action_do_action ()

-
gboolean            atk_action_do_action                (AtkAction *action,
-                                                         gint i);
-

-Perform the specified action on the object.

+
gboolean            atk_action_do_action                (AtkAction *action,
+                                                         gint i);

+Perform the specified action on the object.

- + - + - +

action :

a GObject instance that implements AtkActionIface -a GObject instance that implements AtkActionIface

i :

the action index corresponding to the action to be performed -the action index corresponding to the action to be performed

Returns :

TRUE if success, FALSE otherwise - - +TRUE if success, FALSE otherwise

-
+

atk_action_get_n_actions ()

-
gint                atk_action_get_n_actions            (AtkAction *action);
+
gint                atk_action_get_n_actions            (AtkAction *action);

Gets the number of accessible actions available on the object. If there are more than one, the first one is considered the -"default" action of the object.

-

+"default" action of the object.

- + - +

action :

a GObject instance that implements AtkActionIface -a GObject instance that implements AtkActionIface

Returns :

a the number of actions, or 0 if action does not -implement this interface. -a the number of actions, or 0 if action does not +implement this interface.

-
+

atk_action_get_description ()

-
const gchar*        atk_action_get_description          (AtkAction *action,
-                                                         gint i);
-

-Returns a description of the specified action of the object.

+
const gchar *       atk_action_get_description          (AtkAction *action,
+                                                         gint i);

+Returns a description of the specified action of the object.

- + - + - +

action :

a GObject instance that implements AtkActionIface -a GObject instance that implements AtkActionIface

i :

the action index corresponding to the action to be performed -the action index corresponding to the action to be performed

Returns :

a description string, or NULL -if action does not implement this interface. -a description string, or NULL +if action does not implement this interface.

-
+

atk_action_get_name ()

-
const gchar*        atk_action_get_name                 (AtkAction *action,
-                                                         gint i);
+
const gchar *       atk_action_get_name                 (AtkAction *action,
+                                                         gint i);

Returns a non-localized string naming the specified action of the object. This name is generally not descriptive of the end result @@ -285,83 +211,59 @@ For technical reasons, some toolkits cannot guarantee that the reported action is actually 'bound' to a nontrivial user event; i.e. the result of some actions via atk_action_do_action() may be -NIL.

-

+NIL.

- + - + - +

action :

a GObject instance that implements AtkActionIface -a GObject instance that implements AtkActionIface

i :

the action index corresponding to the action to be performed -the action index corresponding to the action to be performed

Returns :

a name string, or NULL -if action does not implement this interface. -a name string, or NULL +if action does not implement this interface.

-
+

atk_action_get_localized_name ()

-
const gchar*        atk_action_get_localized_name       (AtkAction *action,
-                                                         gint i);
-

-Returns the localized name of the specified action of the object.

+
const gchar *       atk_action_get_localized_name       (AtkAction *action,
+                                                         gint i);

+Returns the localized name of the specified action of the object.

- + - + - +

action :

a GObject instance that implements AtkActionIface -a GObject instance that implements AtkActionIface

i :

the action index corresponding to the action to be performed -the action index corresponding to the action to be performed

Returns :

a name string, or NULL -if action does not implement this interface. -a name string, or NULL +if action does not implement this interface.

-
+

atk_action_get_keybinding ()

-
const gchar*        atk_action_get_keybinding           (AtkAction *action,
-                                                         gint i);
+
const gchar *       atk_action_get_keybinding           (AtkAction *action,
+                                                         gint i);

Returns a keybinding associated with this action, if one exists. The returned string is in the format "<a>;<b>;<c>" @@ -373,76 +275,54 @@ posts the parent menus before invoking). The last token in the above string, if non-empty, represents a keyboard shortcut which invokes the same action without posting the component or its -enclosing menus or dialogs.

-

+enclosing menus or dialogs.

- + - + - +

action :

a GObject instance that implements AtkActionIface -a GObject instance that implements AtkActionIface

i :

the action index corresponding to the action to be performed -the action index corresponding to the action to be performed

Returns :

a string representing the available keybindings, or NULL -if there is no keybinding for this action. - -a string representing the available keybindings, or NULL +if there is no keybinding for this action.

-
+

atk_action_set_description ()

-
gboolean            atk_action_set_description          (AtkAction *action,
-                                                         gint i,
-                                                         const gchar *desc);
-

-Sets a description of the specified action of the object.

+
gboolean            atk_action_set_description          (AtkAction *action,
+                                                         gint i,
+                                                         const gchar *desc);

+Sets a description of the specified action of the object.

- + - + - + - +

action :

a GObject instance that implements AtkActionIface -a GObject instance that implements AtkActionIface

i :

the action index corresponding to the action to be performed -the action index corresponding to the action to be performed

desc :

the description to be assigned to this action -the description to be assigned to this action

Returns :

a gboolean representing if the description was successfully set; -a gboolean representing if the description was successfully set;
@@ -451,6 +331,6 @@
+ Generated by GTK-Doc V1.17.1
- + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/atk-AtkHyperlinkImpl.html atk1.0-2.2.0/docs/html/atk-AtkHyperlinkImpl.html --- atk1.0-1.30.0/docs/html/atk-AtkHyperlinkImpl.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/atk-AtkHyperlinkImpl.html 2011-09-26 22:25:58.000000000 +0000 @@ -8,16 +8,8 @@ - + - - - - - - - - @@ -30,11 +22,11 @@ -
+
@@ -44,14 +36,13 @@
-
+ -
+

Description

AtkHyperlinkImpl allows AtkObjects to @@ -70,9 +61,9 @@ followed by AtkHyperlink:getObject.

-
+

Details

-
+

AtkHyperlinkImpl

typedef struct _AtkHyperlinkImpl AtkHyperlinkImpl;

@@ -84,25 +75,23 @@


-
+

atk_hyperlink_impl_get_hyperlink ()

-
AtkHyperlink *      atk_hyperlink_impl_get_hyperlink    (AtkHyperlinkImpl *obj);
-

-Gets the hyperlink associated with this object.

+
AtkHyperlink *      atk_hyperlink_impl_get_hyperlink    (AtkHyperlinkImpl *obj);

+Gets the hyperlink associated with this object.

- + - @@ -113,6 +102,6 @@ + Generated by GTK-Doc V1.17.1 - + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/atk-AtkPlug.html atk1.0-2.2.0/docs/html/atk-AtkPlug.html --- atk1.0-1.30.0/docs/html/atk-AtkPlug.html 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/docs/html/atk-AtkPlug.html 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,81 @@ + + + + +AtkPlug + + + + + + + + + +

obj :

a GObject instance that implements AtkHyperlinkImplIface -a GObject instance that implements AtkHyperlinkImplIface

Returns :

an AtkHyperlink object which points to this implementing AtkObject. - +an AtkHyperlink object which points to this +implementing AtkObject. [transfer full]
+ + + + + + + + + +
+
+
+ + +
+

AtkPlug

+

AtkPlug

+
+
+

Synopsis

+
struct              AtkPlug;
+AtkObject *         atk_plug_new                        (void);
+gchar *             atk_plug_get_id                     (AtkPlug *plug);
+
+
+
+

Description

+

+

+
+
+

Details

+
+

struct AtkPlug

+
struct AtkPlug {
+  AtkObject parent;
+};
+
+

+

+
+
+
+

atk_plug_new ()

+
AtkObject *         atk_plug_new                        (void);
+

+

+
+
+
+

atk_plug_get_id ()

+
gchar *             atk_plug_get_id                     (AtkPlug *plug);
+

+

+
+
+
+ + + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/atk-AtkSocket.html atk1.0-2.2.0/docs/html/atk-AtkSocket.html --- atk1.0-1.30.0/docs/html/atk-AtkSocket.html 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/docs/html/atk-AtkSocket.html 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,130 @@ + + + + +AtkSocket + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+

AtkSocket

+

AtkSocket

+
+
+

Synopsis

+
struct              AtkSocket;
+AtkObject *         atk_socket_new                      (void);
+void                atk_socket_embed                    (AtkSocket *obj,
+                                                         gchar *plug_id);
+gboolean            atk_socket_is_occupied              (AtkSocket *obj);
+
+
+
+

Description

+

+

+
+
+

Details

+
+

struct AtkSocket

+
struct AtkSocket {
+  AtkObject parent;
+};
+
+

+

+
+
+
+

atk_socket_new ()

+
AtkObject *         atk_socket_new                      (void);
+

+

+
+
+
+

atk_socket_embed ()

+
void                atk_socket_embed                    (AtkSocket *obj,
+                                                         gchar *plug_id);
+

+Embeds the children of an AtkPlug as the children of the AtkSocket. The +plug may be in the same process or in a different process. +THe class item used by this function should be filled in by the IPC layer +(ie, at-spi2-atk). The implementor of the AtkSocket should call this +function and pass the id for the plug as returned by atk_plug_get_id. +It is the responsibility of the application to pass the plug id on to +the process implementing the AtkSocket as needed. +

+
++ + + + + + + + + + +

obj :

an AtkSocket +

plug_id :

the ID of an AtkPlug +
+

Since 1.30

+
+
+
+

atk_socket_is_occupied ()

+
gboolean            atk_socket_is_occupied              (AtkSocket *obj);
+

+Determines whether or not the socket has an embedded plug. +

+
++ + + + + + + + + + +

obj :

an AtkSocket +

Returns :

TRUE if a plug is embedded in the socket
+

Since 1.30

+
+
+
+ + + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/atk-AtkState.html atk1.0-2.2.0/docs/html/atk-AtkState.html --- atk1.0-1.30.0/docs/html/atk-AtkState.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/atk-AtkState.html 2011-09-26 22:25:58.000000000 +0000 @@ -6,23 +6,15 @@ - + - + - - - - - - - - - + @@ -30,11 +22,11 @@ -
+
@@ -43,35 +35,27 @@
-
+ -
+

Description

An AtkState describes a component's particular state. The actual state of an component is described by its AtkStateSet, which is a set of AtkStates.

-
+

Details

-
+

enum AtkStateType

-
typedef enum
-{
+
typedef enum {
   ATK_STATE_INVALID,
   ATK_STATE_ACTIVE,
   ATK_STATE_ARMED,
@@ -116,125 +100,124 @@
 } AtkStateType;
 

-The possible types of states of an object

-

+The possible types of states of an object

- - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - + - - + - - + - - + - - +

ATK_STATE_INVALID

Indicates an invalid state - probably an error condition. +

ATK_STATE_INVALID

Indicates an invalid state - probably an error condition.

ATK_STATE_ACTIVE

Indicates a window is currently the active window, or is an active subelement within a container or table +

ATK_STATE_ACTIVE

Indicates a window is currently the active window, or is an active subelement within a container or table

ATK_STATE_ARMED

Indicates that the object is 'armed', i.e. will be activated by if a pointer button-release event occurs within its bounds. Buttons often enter this state when a pointer click occurs within their bounds, as a precursor to activation. +

ATK_STATE_ARMED

Indicates that the object is 'armed', i.e. will be activated by if a pointer button-release event occurs within its bounds. Buttons often enter this state when a pointer click occurs within their bounds, as a precursor to activation.

ATK_STATE_BUSY

Indicates the current object is busy, i.e. onscreen representation is in the process of changing, or the object is temporarily unavailable for interaction due to activity already in progress. This state may be used by implementors of Document to indicate that content loading is underway. It also may indicate other 'pending' conditions; clients may wish to interrogate this object when the ATK_STATE_BUSY flag is removed. +

ATK_STATE_BUSY

Indicates the current object is busy, i.e. onscreen representation is in the process of changing, or the object is temporarily unavailable for interaction due to activity already in progress. This state may be used by implementors of Document to indicate that content loading is underway. It also may indicate other 'pending' conditions; clients may wish to interrogate this object when the ATK_STATE_BUSY flag is removed.

ATK_STATE_CHECKED

Indicates this object is currently checked, for instance a checkbox is 'non-empty'. +

ATK_STATE_CHECKED

Indicates this object is currently checked, for instance a checkbox is 'non-empty'.

ATK_STATE_DEFUNCT

Indicates that this object no longer has a valid backing widget (for instance, if its peer object has been destroyed) +

ATK_STATE_DEFUNCT

Indicates that this object no longer has a valid backing widget (for instance, if its peer object has been destroyed)

ATK_STATE_EDITABLE

Indicates the user can change the contents of this object +

ATK_STATE_EDITABLE

Indicates the user can change the contents of this object

ATK_STATE_ENABLED

Indicates that this object is enabled, i.e. that it currently reflects some application state. Objects that are "greyed out" may lack this state, and may lack the STATE_SENSITIVE if direct user interaction cannot cause them to acquire STATE_ENABLED. See also: ATK_STATE_SENSITIVE +

ATK_STATE_ENABLED

Indicates that this object is enabled, i.e. that it currently reflects some application state. Objects that are "greyed out" may lack this state, and may lack the STATE_SENSITIVE if direct user interaction cannot cause them to acquire STATE_ENABLED. See also: ATK_STATE_SENSITIVE

ATK_STATE_EXPANDABLE

Indicates this object allows progressive disclosure of its children +

ATK_STATE_EXPANDABLE

Indicates this object allows progressive disclosure of its children

ATK_STATE_EXPANDED

Indicates this object its expanded - see ATK_STATE_EXPANDABLE above +

ATK_STATE_EXPANDED

Indicates this object its expanded - see ATK_STATE_EXPANDABLE above

ATK_STATE_FOCUSABLE

Indicates this object can accept keyboard focus, which means all events resulting from typing on the keyboard will normally be passed to it when it has focus +

ATK_STATE_FOCUSABLE

Indicates this object can accept keyboard focus, which means all events resulting from typing on the keyboard will normally be passed to it when it has focus

ATK_STATE_FOCUSED

Indicates this object currently has the keyboard focus +

ATK_STATE_FOCUSED

Indicates this object currently has the keyboard focus

ATK_STATE_HORIZONTAL

Indicates the orientation of this object is horizontal; used, for instance, by objects of ATK_ROLE_SCROLL_BAR. For objects where vertical/horizontal orientation is especially meaningful. +

ATK_STATE_HORIZONTAL

Indicates the orientation of this object is horizontal; used, for instance, by objects of ATK_ROLE_SCROLL_BAR. For objects where vertical/horizontal orientation is especially meaningful.

ATK_STATE_ICONIFIED

Indicates this object is minimized and is represented only by an icon +

ATK_STATE_ICONIFIED

Indicates this object is minimized and is represented only by an icon

ATK_STATE_MODAL

Indicates something must be done with this object before the user can interact with an object in a different window +

ATK_STATE_MODAL

Indicates something must be done with this object before the user can interact with an object in a different window

ATK_STATE_MULTI_LINE

Indicates this (text) object can contain multiple lines of text +

ATK_STATE_MULTI_LINE

Indicates this (text) object can contain multiple lines of text

ATK_STATE_MULTISELECTABLE

Indicates this object allows more than one of its children to be selected at the same time, or in the case of text objects, that the object supports non-contiguous text selections. +

ATK_STATE_MULTISELECTABLE

Indicates this object allows more than one of its children to be selected at the same time, or in the case of text objects, that the object supports non-contiguous text selections.

ATK_STATE_OPAQUE

Indicates this object paints every pixel within its rectangular region. +

ATK_STATE_OPAQUE

Indicates this object paints every pixel within its rectangular region.

ATK_STATE_PRESSED

Indicates this object is currently pressed; c.f. ATK_STATE_ARMED +

ATK_STATE_PRESSED

Indicates this object is currently pressed; c.f. ATK_STATE_ARMED

ATK_STATE_RESIZABLE

Indicates the size of this object is not fixed +

ATK_STATE_RESIZABLE

Indicates the size of this object is not fixed

ATK_STATE_SELECTABLE

Indicates this object is the child of an object that allows its children to be selected and that this child is one of those children that can be selected +

ATK_STATE_SELECTABLE

Indicates this object is the child of an object that allows its children to be selected and that this child is one of those children that can be selected

ATK_STATE_SELECTED

Indicates this object is the child of an object that allows its children to be selected and that this child is one of those children that has been selected +

ATK_STATE_SELECTED

Indicates this object is the child of an object that allows its children to be selected and that this child is one of those children that has been selected

ATK_STATE_SENSITIVE

Indicates this object is sensitive, e.g. to user interaction. +

ATK_STATE_SENSITIVE

Indicates this object is sensitive, e.g. to user interaction. STATE_SENSITIVE usually accompanies STATE_ENABLED for user-actionable controls, but may be found in the absence of STATE_ENABLED if the current visible state of the control is "disconnected" from the application state. In such cases, direct user interaction @@ -244,20 +227,20 @@

ATK_STATE_SHOWING

Indicates this object, the object's parent, the object's parent's parent, and so on, +

ATK_STATE_SHOWING

Indicates this object, the object's parent, the object's parent's parent, and so on, are all 'shown' to the end-user, i.e. subject to "exposure" if blocking or obscuring objects do not interpose between this object and the top of the window stack.

ATK_STATE_SINGLE_LINE

Indicates this (text) object can contain only a single line of text +

ATK_STATE_SINGLE_LINE

Indicates this (text) object can contain only a single line of text

ATK_STATE_STALE

Indicates that the information returned for this object may no longer be +

ATK_STATE_STALE

Indicates that the information returned for this object may no longer be synchronized with the application state. This is implied if the object has STATE_TRANSIENT, and can also occur towards the end of the object peer's lifecycle. It can also be used to indicate that the index associated with this object has changed since the user accessed the object (in lieu of @@ -265,25 +248,25 @@

ATK_STATE_TRANSIENT

Indicates this object is transient, i.e. a snapshot which may not emit events when its +

ATK_STATE_TRANSIENT

Indicates this object is transient, i.e. a snapshot which may not emit events when its state changes. Data from objects with ATK_STATE_TRANSIENT should not be cached, since there may be no notification given when the cached data becomes obsolete.

ATK_STATE_VERTICAL

Indicates the orientation of this object is vertical +

ATK_STATE_VERTICAL

Indicates the orientation of this object is vertical

ATK_STATE_VISIBLE

Indicates this object is visible, e.g. has been explicitly marked for exposure to the user. +

ATK_STATE_VISIBLE

Indicates this object is visible, e.g. has been explicitly marked for exposure to the user.

ATK_STATE_MANAGES_DESCENDANTS

Indicates that "active-descendant-changed" event +

ATK_STATE_MANAGES_DESCENDANTS

Indicates that "active-descendant-changed" event is sent when children become 'active' (i.e. are selected or navigated to onscreen). Used to prevent need to enumerate all children in very large containers, like tables. The presence of STATE_MANAGES_DESCENDANTS is an indication to the client. @@ -295,8 +278,8 @@

ATK_STATE_INDETERMINATE

Indicates that a check box is in a state other than checked or not checked. +

ATK_STATE_INDETERMINATE

Indicates that a check box is in a state other than checked or not checked. This usually means that the boolean value reflected or controlled by the object does not apply consistently to the entire current context. For example, a checkbox for the "Bold" attribute of text may have STATE_INDETERMINATE @@ -307,23 +290,23 @@

ATK_STATE_TRUNCATED

Indicates that an object is truncated, e.g. a text value in a speradsheet cell. +

ATK_STATE_TRUNCATED

Indicates that an object is truncated, e.g. a text value in a speradsheet cell.

ATK_STATE_REQUIRED

Indicates that explicit user interaction with an object is required by the user interface, e.g. a required field in a "web-form" interface. +

ATK_STATE_REQUIRED

Indicates that explicit user interaction with an object is required by the user interface, e.g. a required field in a "web-form" interface.

ATK_STATE_INVALID_ENTRY

Indicates that the object has encountered an error condition due to failure of input validation. For instance, a form control may acquire this state in response to invalid or malformed user input. +

ATK_STATE_INVALID_ENTRY

Indicates that the object has encountered an error condition due to failure of input validation. For instance, a form control may acquire this state in response to invalid or malformed user input.

ATK_STATE_SUPPORTS_AUTOCOMPLETION

Indicates that the object in question implements some form of ¨typeahead¨ or +

ATK_STATE_SUPPORTS_AUTOCOMPLETION

Indicates that the object in question implements some form of ¨typeahead¨ or pre-selection behavior whereby entering the first character of one or more sub-elements causes those elements to scroll into view or become selected. Subsequent character input may narrow the selection further as long as one or more sub-elements match the string. @@ -334,18 +317,18 @@

ATK_STATE_SELECTABLE_TEXT

ATK_STATE_SELECTABLE_TEXT

Indicates that the object in question supports text selection. It should only be exposed on objects which implement the Text interface, in order to distinguish this state from ATK_STATE_SELECTABLE, which infers that the object in question is a selectable child of an object which implements Selection. While similar, text selection and subelement selection are distinct operations.

ATK_STATE_DEFAULT

Indicates that the object is the "default" active component, i.e. the object which is activated by an end-user press of the "Enter" or "Return" key. Typically a "close" or "submit" button. +

ATK_STATE_DEFAULT

Indicates that the object is the "default" active component, i.e. the object which is activated by an end-user press of the "Enter" or "Return" key. Typically a "close" or "submit" button.

ATK_STATE_ANIMATED

Indicates that the object changes its appearance dynamically as an inherent part of its presentation. This state may come and go if an object is only temporarily animated on the way to a 'final' onscreen presentation. +

ATK_STATE_ANIMATED

Indicates that the object changes its appearance dynamically as an inherent part of its presentation. This state may come and go if an object is only temporarily animated on the way to a 'final' onscreen presentation. note some applications, notably content viewers, may not be able to detect all kinds of animated content. Therefore the absence of this state should not be taken as definitive evidence that the object's visual representation is @@ -353,20 +336,20 @@

ATK_STATE_VISITED

Indicates that the object (typically a hyperlink) has already been 'activated', and/or its backing data has already been downloaded, rendered, or otherwise "visited". +

ATK_STATE_VISITED

Indicates that the object (typically a hyperlink) has already been 'activated', and/or its backing data has already been downloaded, rendered, or otherwise "visited".

ATK_STATE_LAST_DEFINED

Not a valid state, used for finding end of enumeration +

ATK_STATE_LAST_DEFINED

Not a valid state, used for finding end of enumeration

-
+

AtkState

typedef guint64      AtkState;
 
@@ -375,78 +358,64 @@


-
+

atk_state_type_register ()

-
AtkStateType        atk_state_type_register             (const gchar *name);
-

-Register a new object state.

+
AtkStateType        atk_state_type_register             (const gchar *name);

+Register a new object state.

- + - +

name :

a character string describing the new state. -a character string describing the new state.

Returns :

an AtkState value for the new state. -an AtkState value for the new state.

-
+

atk_state_type_get_name ()

-
const gchar*        atk_state_type_get_name             (AtkStateType type);
-

-Gets the description string describing the AtkStateType type.

+
const gchar *       atk_state_type_get_name             (AtkStateType type);

+Gets the description string describing the AtkStateType type.

- + - +

type :

The AtkStateType whose name is required -The AtkStateType whose name is required

Returns :

the string describing the AtkStateType -the string describing the AtkStateType

-
+

atk_state_type_for_name ()

-
AtkStateType        atk_state_type_for_name             (const gchar *name);
-

-Gets the AtkStateType corresponding to the description string name.

+
AtkStateType        atk_state_type_for_name             (const gchar *name);

+Gets the AtkStateType corresponding to the description string name.

- + - @@ -456,6 +425,6 @@ + Generated by GTK-Doc V1.17.1 - + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkComponent.html atk1.0-2.2.0/docs/html/AtkComponent.html --- atk1.0-1.30.0/docs/html/AtkComponent.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkComponent.html 2011-09-26 22:25:58.000000000 +0000 @@ -8,16 +8,8 @@ - + - - - - - - - -

name :

a character string state name -a character string state name

Returns :

an AtkStateType corresponding to name +an AtkStateType corresponding to name
@@ -30,17 +22,17 @@ -
+
@@ -50,133 +42,74 @@
-
+

Synopsis

-
-                    AtkComponent;
-guint               atk_component_add_focus_handler     (AtkComponent *component,
-                                                         AtkFocusHandler handler);
-gboolean            atk_component_contains              (AtkComponent *component,
-                                                         gint x,
-                                                         gint y,
-                                                         AtkCoordType coord_type);
-void                atk_component_get_extents           (AtkComponent *component,
-                                                         gint *x,
-                                                         gint *y,
-                                                         gint *width,
-                                                         gint *height,
-                                                         AtkCoordType coord_type);
-AtkLayer            atk_component_get_layer             (AtkComponent *component);
-gint                atk_component_get_mdi_zorder        (AtkComponent *component);
-void                atk_component_get_position          (AtkComponent *component,
-                                                         gint *x,
-                                                         gint *y,
-                                                         AtkCoordType coord_type);
-void                atk_component_get_size              (AtkComponent *component,
-                                                         gint *width,
-                                                         gint *height);
-gboolean            atk_component_grab_focus            (AtkComponent *component);
-AtkObject*          atk_component_ref_accessible_at_point
-                                                        (AtkComponent *component,
-                                                         gint x,
-                                                         gint y,
-                                                         AtkCoordType coord_type);
-void                atk_component_remove_focus_handler  (AtkComponent *component,
-                                                         guint handler_id);
-gboolean            atk_component_set_extents           (AtkComponent *component,
-                                                         gint x,
-                                                         gint y,
-                                                         gint width,
-                                                         gint height,
-                                                         AtkCoordType coord_type);
-gboolean            atk_component_set_position          (AtkComponent *component,
-                                                         gint x,
-                                                         gint y,
-                                                         AtkCoordType coord_type);
-gboolean            atk_component_set_size              (AtkComponent *component,
-                                                         gint width,
-                                                         gint height);
-gdouble             atk_component_get_alpha             (AtkComponent *component);
+
                    AtkComponent;
+guint               atk_component_add_focus_handler     (AtkComponent *component,
+                                                         AtkFocusHandler handler);
+gboolean            atk_component_contains              (AtkComponent *component,
+                                                         gint x,
+                                                         gint y,
+                                                         AtkCoordType coord_type);
+void                atk_component_get_extents           (AtkComponent *component,
+                                                         gint *x,
+                                                         gint *y,
+                                                         gint *width,
+                                                         gint *height,
+                                                         AtkCoordType coord_type);
+AtkLayer            atk_component_get_layer             (AtkComponent *component);
+gint                atk_component_get_mdi_zorder        (AtkComponent *component);
+void                atk_component_get_position          (AtkComponent *component,
+                                                         gint *x,
+                                                         gint *y,
+                                                         AtkCoordType coord_type);
+void                atk_component_get_size              (AtkComponent *component,
+                                                         gint *width,
+                                                         gint *height);
+gboolean            atk_component_grab_focus            (AtkComponent *component);
+AtkObject *         atk_component_ref_accessible_at_point
+                                                        (AtkComponent *component,
+                                                         gint x,
+                                                         gint y,
+                                                         AtkCoordType coord_type);
+void                atk_component_remove_focus_handler  (AtkComponent *component,
+                                                         guint handler_id);
+gboolean            atk_component_set_extents           (AtkComponent *component,
+                                                         gint x,
+                                                         gint y,
+                                                         gint width,
+                                                         gint height,
+                                                         AtkCoordType coord_type);
+gboolean            atk_component_set_position          (AtkComponent *component,
+                                                         gint x,
+                                                         gint y,
+                                                         AtkCoordType coord_type);
+gboolean            atk_component_set_size              (AtkComponent *component,
+                                                         gint width,
+                                                         gint height);
+gdouble             atk_component_get_alpha             (AtkComponent *component);
 
-
+

Object Hierarchy

   GInterface
    +----AtkComponent
 
-
+

Known Implementations

AtkComponent is implemented by AtkNoOpObject.

-
+

Signals

-  "bounds-changed"                                 : Run Last
+  "bounds-changed"                                 : Run Last
 
-
+

Description

AtkComponent should be implemented by most if not all UI elements with @@ -192,9 +125,9 @@ provided by AtkText.

-
+

Details

-
+

AtkComponent

typedef struct _AtkComponent AtkComponent;

@@ -202,402 +135,315 @@


-
+

atk_component_add_focus_handler ()

-
guint               atk_component_add_focus_handler     (AtkComponent *component,
-                                                         AtkFocusHandler handler);
+
guint               atk_component_add_focus_handler     (AtkComponent *component,
+                                                         AtkFocusHandler handler);

Add the specified handler to the set of functions to be called when this object receives focus events (in or out). If the handler is -already added it is not added again

-

+already added it is not added again

- + - - +

component :

The AtkComponent to attach the handler to -The AtkComponent to attach the handler to

handler :

The AtkFocusHandler to be attached to component +The AtkFocusHandler to be attached to component

Returns :

a handler id which can be used in atk_component_remove_focus_handler -or zero if the handler was already added. -a handler id which can be used in atk_component_remove_focus_handler +or zero if the handler was already added.

-
+

atk_component_contains ()

-
gboolean            atk_component_contains              (AtkComponent *component,
-                                                         gint x,
-                                                         gint y,
-                                                         AtkCoordType coord_type);
-

-Checks whether the specified point is within the extent of the component.

+
gboolean            atk_component_contains              (AtkComponent *component,
+                                                         gint x,
+                                                         gint y,
+                                                         AtkCoordType coord_type);

+Checks whether the specified point is within the extent of the component.

- - + - + - + - +

component :

the AtkComponent +the AtkComponent

x :

x coordinate -x coordinate

y :

y coordinate -y coordinate

coord_type :

specifies whether the coordinates are relative to the screen -or to the components top level window -specifies whether the coordinates are relative to the screen +or to the components top level window

Returns :

TRUE or FALSE indicating whether the specified point is within -the extent of the component or not - +TRUE or FALSE indicating whether the specified point is within +the extent of the component or not

-
+

atk_component_get_extents ()

-
void                atk_component_get_extents           (AtkComponent *component,
-                                                         gint *x,
-                                                         gint *y,
-                                                         gint *width,
-                                                         gint *height,
-                                                         AtkCoordType coord_type);
-

-Gets the rectangle which gives the extent of the component.

+
void                atk_component_get_extents           (AtkComponent *component,
+                                                         gint *x,
+                                                         gint *y,
+                                                         gint *width,
+                                                         gint *height,
+                                                         AtkCoordType coord_type);

+Gets the rectangle which gives the extent of the component.

- - + - + - + - + - +

component :

an AtkComponent +an AtkComponent

x :

address of gint to put x coordinate -address of gint to put x coordinate

y :

address of gint to put y coordinate -address of gint to put y coordinate

width :

address of gint to put width -address of gint to put width

height :

address of gint to put height -address of gint to put height

coord_type :

specifies whether the coordinates are relative to the screen -or to the components top level window -specifies whether the coordinates are relative to the screen +or to the components top level window

-
+

atk_component_get_layer ()

-
AtkLayer            atk_component_get_layer             (AtkComponent *component);
-

-Gets the layer of the component.

+
AtkLayer            atk_component_get_layer             (AtkComponent *component);

+Gets the layer of the component.

- - +

component :

an AtkComponent +an AtkComponent

Returns :

an AtkLayer which is the layer of the component -an AtkLayer which is the layer of the component

-
+

atk_component_get_mdi_zorder ()

-
gint                atk_component_get_mdi_zorder        (AtkComponent *component);
+
gint                atk_component_get_mdi_zorder        (AtkComponent *component);

Gets the zorder of the component. The value G_MININT will be returned -if the layer of the component is not ATK_LAYER_MDI or ATK_LAYER_WINDOW.

-

+if the layer of the component is not ATK_LAYER_MDI or ATK_LAYER_WINDOW.

- - +

component :

an AtkComponent +an AtkComponent

Returns :

a gint which is the zorder of the component, i.e. the depth at -which the component is shown in relation to other components in the same -container. -a gint which is the zorder of the component, i.e. the depth at +which the component is shown in relation to other components in the same +container.

-
+

atk_component_get_position ()

-
void                atk_component_get_position          (AtkComponent *component,
-                                                         gint *x,
-                                                         gint *y,
-                                                         AtkCoordType coord_type);
+
void                atk_component_get_position          (AtkComponent *component,
+                                                         gint *x,
+                                                         gint *y,
+                                                         AtkCoordType coord_type);

Gets the position of component in the form of -a point specifying component's top-left corner.

-

+a point specifying component's top-left corner.

- - + - + - +

component :

an AtkComponent +an AtkComponent

x :

address of gint to put x coordinate position -address of gint to put x coordinate position

y :

address of gint to put y coordinate position -address of gint to put y coordinate position

coord_type :

specifies whether the coordinates are relative to the screen -or to the components top level window -specifies whether the coordinates are relative to the screen +or to the components top level window

-
+

atk_component_get_size ()

-
void                atk_component_get_size              (AtkComponent *component,
-                                                         gint *width,
-                                                         gint *height);
-

-Gets the size of the component in terms of width and height.

+
void                atk_component_get_size              (AtkComponent *component,
+                                                         gint *width,
+                                                         gint *height);

+Gets the size of the component in terms of width and height.

- - -

component :

an AtkComponent +an AtkComponent

width :

address of gint to put width of component +address of gint to put width of component

height :

address of gint to put height of component +address of gint to put height of component

-
+

atk_component_grab_focus ()

-
gboolean            atk_component_grab_focus            (AtkComponent *component);
-

-Grabs focus for this component.

+
gboolean            atk_component_grab_focus            (AtkComponent *component);

+Grabs focus for this component.

- - +

component :

an AtkComponent +an AtkComponent

Returns :

TRUE if successful, FALSE otherwise. - +TRUE if successful, FALSE otherwise.

-
+

atk_component_ref_accessible_at_point ()

-
AtkObject*          atk_component_ref_accessible_at_point
-                                                        (AtkComponent *component,
-                                                         gint x,
-                                                         gint y,
-                                                         AtkCoordType coord_type);
+
AtkObject *         atk_component_ref_accessible_at_point
+                                                        (AtkComponent *component,
+                                                         gint x,
+                                                         gint y,
+                                                         AtkCoordType coord_type);

Gets a reference to the accessible child, if one exists, at the -coordinate point specified by x and y.

-

+coordinate point specified by x and y.

- - + - + - + -

component :

the AtkComponent +the AtkComponent

x :

x coordinate -x coordinate

y :

y coordinate -y coordinate

coord_type :

specifies whether the coordinates are relative to the screen -or to the components top level window -specifies whether the coordinates are relative to the screen +or to the components top level window

Returns :

a reference to the accessible child, if one exists +a reference to the accessible child, if one exists. [transfer full]

-
+

atk_component_remove_focus_handler ()

-
void                atk_component_remove_focus_handler  (AtkComponent *component,
-                                                         guint handler_id);
+
void                atk_component_remove_focus_handler  (AtkComponent *component,
+                                                         guint handler_id);

Remove the handler specified by handler_id from the list of functions to be executed when this object receives focus events -(in or out).

-

+(in or out).

- + - @@ -605,212 +451,163 @@

component :

the AtkComponent to remove the focus handler from -the AtkComponent to remove the focus handler from

handler_id :

the handler id of the focus handler to be removed +the handler id of the focus handler to be removed from component

-
+

atk_component_set_extents ()

-
gboolean            atk_component_set_extents           (AtkComponent *component,
-                                                         gint x,
-                                                         gint y,
-                                                         gint width,
-                                                         gint height,
-                                                         AtkCoordType coord_type);
-

-Sets the extents of component.

+
gboolean            atk_component_set_extents           (AtkComponent *component,
+                                                         gint x,
+                                                         gint y,
+                                                         gint width,
+                                                         gint height,
+                                                         AtkCoordType coord_type);

+Sets the extents of component.

- - + - + - - - + - +

component :

an AtkComponent +an AtkComponent

x :

x coordinate -x coordinate

y :

y coordinate -y coordinate

width :

width to set for component +width to set for component

height :

height to set for component +height to set for component

coord_type :

specifies whether the coordinates are relative to the screen -or to the components top level window -specifies whether the coordinates are relative to the screen +or to the components top level window

Returns :

TRUE or FALSE whether the extents were set or not - +TRUE or FALSE whether the extents were set or not

-
+

atk_component_set_position ()

-
gboolean            atk_component_set_position          (AtkComponent *component,
-                                                         gint x,
-                                                         gint y,
-                                                         AtkCoordType coord_type);
-

-Sets the postition of component.

+
gboolean            atk_component_set_position          (AtkComponent *component,
+                                                         gint x,
+                                                         gint y,
+                                                         AtkCoordType coord_type);

+Sets the postition of component.

- - + - + - + - +

component :

an AtkComponent +an AtkComponent

x :

x coordinate -x coordinate

y :

y coordinate -y coordinate

coord_type :

specifies whether the coordinates are relative to the screen -or to the components top level window -specifies whether the coordinates are relative to the screen +or to the components top level window

Returns :

TRUE or FALSE whether or not the position was set or not - +TRUE or FALSE whether or not the position was set or not

-
+

atk_component_set_size ()

-
gboolean            atk_component_set_size              (AtkComponent *component,
-                                                         gint width,
-                                                         gint height);
-

-Set the size of the component in terms of width and height.

+
gboolean            atk_component_set_size              (AtkComponent *component,
+                                                         gint width,
+                                                         gint height);

+Set the size of the component in terms of width and height.

- - - - +

component :

an AtkComponent +an AtkComponent

width :

width to set for component +width to set for component

height :

height to set for component +height to set for component

Returns :

TRUE or FALSE whether the size was set or not - +TRUE or FALSE whether the size was set or not

-
+

atk_component_get_alpha ()

-
gdouble             atk_component_get_alpha             (AtkComponent *component);
+
gdouble             atk_component_get_alpha             (AtkComponent *component);

Returns the alpha value (i.e. the opacity) for this component, on a scale from 0 (fully transparent) to 1.0 -(fully opaque).

-

+(fully opaque).

- - +

component :

an AtkComponent +an AtkComponent

Returns :

An alpha value from 0 to 1.0, inclusive. -An alpha value from 0 to 1.0, inclusive.

Since 1.12

-
+

Signal Details

-
+

The "bounds-changed" signal

-
void                user_function                      (AtkComponent *atkcomponent,
-                                                        AtkRectangle *arg1,
-                                                        gpointer      user_data)         : Run Last
+
void                user_function                      (AtkComponent *atkcomponent,
+                                                        AtkRectangle *arg1,
+                                                        gpointer      user_data)         : Run Last

The 'bounds-changed" signal is emitted when the bposition or size of the a component changes. @@ -820,13 +617,11 @@

atkcomponent :

-the object which received the signal. - +the object which received the signal.

arg1 :

-The AtkRectangle giving the new position and size. - +The AtkRectangle giving the new position and size.

user_data :

@@ -839,6 +634,6 @@
+ Generated by GTK-Doc V1.17.1
- + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/atk.devhelp atk1.0-2.2.0/docs/html/atk.devhelp --- atk1.0-1.30.0/docs/html/atk.devhelp 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/html/atk.devhelp 1970-01-01 00:00:00.000000000 +0000 @@ -1,332 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru atk1.0-1.30.0/docs/html/atk.devhelp2 atk1.0-2.2.0/docs/html/atk.devhelp2 --- atk1.0-1.30.0/docs/html/atk.devhelp2 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/html/atk.devhelp2 2011-09-26 22:25:58.000000000 +0000 @@ -16,10 +16,12 @@ + + @@ -28,13 +30,21 @@ - - - - - - - + + + + + + + + + + + + + + + @@ -79,10 +89,10 @@ - + - + @@ -110,11 +120,11 @@ - + - + - + @@ -169,16 +179,19 @@ - + + + + - + @@ -187,6 +200,7 @@ + @@ -207,6 +221,10 @@ + + + + @@ -269,9 +287,9 @@ - - - + + + @@ -302,8 +320,11 @@ + + - + + @@ -313,7 +334,7 @@ - + @@ -322,212 +343,231 @@ + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru atk1.0-1.30.0/docs/html/AtkDocument.html atk1.0-2.2.0/docs/html/AtkDocument.html --- atk1.0-1.30.0/docs/html/AtkDocument.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkDocument.html 2011-09-26 22:25:58.000000000 +0000 @@ -8,16 +8,8 @@ - + - - - - - - - - @@ -30,17 +22,17 @@ -
+
@@ -49,59 +41,42 @@
-
+

Synopsis

-
-                    AtkDocument;
-const gchar*        atk_document_get_document_type      (AtkDocument *document);
-gpointer            atk_document_get_document           (AtkDocument *document);
-const gchar*        atk_document_get_attribute_value    (AtkDocument *document,
-                                                         const gchar *attribute_name);
-gboolean            atk_document_set_attribute_value    (AtkDocument *document,
-                                                         const gchar *attribute_name,
-                                                         const gchar *attribute_value);
-AtkAttributeSet*    atk_document_get_attributes         (AtkDocument *document);
-const gchar*        atk_document_get_locale             (AtkDocument *document);
+
                    AtkDocument;
+const gchar *       atk_document_get_document_type      (AtkDocument *document);
+gpointer            atk_document_get_document           (AtkDocument *document);
+const gchar *       atk_document_get_attribute_value    (AtkDocument *document,
+                                                         const gchar *attribute_name);
+gboolean            atk_document_set_attribute_value    (AtkDocument *document,
+                                                         const gchar *attribute_name,
+                                                         const gchar *attribute_value);
+AtkAttributeSet *   atk_document_get_attributes         (AtkDocument *document);
+const gchar *       atk_document_get_locale             (AtkDocument *document);
 
-
+

Object Hierarchy

   GInterface
    +----AtkDocument
 
-
+

Known Implementations

AtkDocument is implemented by AtkNoOpObject.

-
+

Signals

-  "load-complete"                                  : Run Last
-  "load-stopped"                                   : Run Last
-  "reload"                                         : Run Last
+  "load-complete"                                  : Run Last
+  "load-stopped"                                   : Run Last
+  "reload"                                         : Run Last
 
-
+

Description

The AtkDocument interface should be supported by any object whose content is a @@ -112,9 +87,9 @@ which can reasonably be considered a document in its own right.

-
+

Details

-
+

AtkDocument

typedef struct _AtkDocument AtkDocument;

@@ -122,179 +97,129 @@


-
+

atk_document_get_document_type ()

-
const gchar*        atk_document_get_document_type      (AtkDocument *document);
-

-Gets a string indicating the document type.

+
const gchar *       atk_document_get_document_type      (AtkDocument *document);

+Gets a string indicating the document type.

- + - +

document :

a GObject instance that implements AtkDocumentIface -a GObject instance that implements AtkDocumentIface

Returns :

a string indicating the document type -a string indicating the document type

-
+

atk_document_get_document ()

-
gpointer            atk_document_get_document           (AtkDocument *document);
+
gpointer            atk_document_get_document           (AtkDocument *document);

-Gets a gpointer that points to an instance of the DOM. It is +Gets a gpointer that points to an instance of the DOM. It is up to the caller to check atk_document_get_type to determine -how to cast this pointer.

-

+how to cast this pointer.

- + -

document :

a GObject instance that implements AtkDocumentIface -a GObject instance that implements AtkDocumentIface

Returns :

a gpointer that points to an instance of the DOM. +a gpointer that points to an instance of the DOM. [transfer none]

-
+

atk_document_get_attribute_value ()

-
const gchar*        atk_document_get_attribute_value    (AtkDocument *document,
-                                                         const gchar *attribute_name);
-

-

-

-

+
const gchar *       atk_document_get_attribute_value    (AtkDocument *document,
+                                                         const gchar *attribute_name);
- + - + - +

document :

a GObject instance that implements AtkDocumentIface -a GObject instance that implements AtkDocumentIface

attribute_name :

a character string representing the name of the attribute - whose value is being queried. -a character string representing the name of the attribute +whose value is being queried.

Returns :

a string value associated with the named attribute for this - document, or NULL if a value for attribute_name has not been specified - for this document. -a string value associated with the named attribute for this +document, or NULL if a value for attribute_name has not been specified +for this document.

Since 1.12


-
+

atk_document_set_attribute_value ()

-
gboolean            atk_document_set_attribute_value    (AtkDocument *document,
-                                                         const gchar *attribute_name,
-                                                         const gchar *attribute_value);
-

-

-

-

+
gboolean            atk_document_set_attribute_value    (AtkDocument *document,
+                                                         const gchar *attribute_name,
+                                                         const gchar *attribute_value);
- + - + - + - +

document :

a GObject instance that implements AtkDocumentIface -a GObject instance that implements AtkDocumentIface

attribute_name :

a character string representing the name of the attribute - whose value is being set. -a character string representing the name of the attribute +whose value is being set.

attribute_value :

a string value to be associated with attribute_name. -a string value to be associated with attribute_name.

Returns :

TRUE if value is successfully associated with attribute_name - for this document, FALSE otherwise (e.g. if the document does not - allow the attribute to be modified). -TRUE if value is successfully associated with attribute_name +for this document, FALSE otherwise (e.g. if the document does not +allow the attribute to be modified).

Since 1.12


-
+

atk_document_get_attributes ()

-
AtkAttributeSet*    atk_document_get_attributes         (AtkDocument *document);
+
AtkAttributeSet *   atk_document_get_attributes         (AtkDocument *document);

Gets an AtkAttributeSet which describes document-wide - attributes as name-value pairs.

-

+ attributes as name-value pairs.

- + - @@ -302,48 +227,39 @@

Since 1.12


-
+

atk_document_get_locale ()

-
const gchar*        atk_document_get_locale             (AtkDocument *document);
+
const gchar *       atk_document_get_locale             (AtkDocument *document);

Gets a UTF-8 string indicating the POSIX-style LC_MESSAGES locale of the content of this document instance. Individual text substrings or images within this document may have a different locale, see atk_text_get_attributes and - atk_image_get_image_locale.

-

+ atk_image_get_image_locale.

document :

a GObject instance that implements AtkDocumentIface -a GObject instance that implements AtkDocumentIface

Returns :

An AtkAttributeSet containing the explicitly - set name-value-pair attributes associated with this document - as a whole. +An AtkAttributeSet containing the explicitly +set name-value-pair attributes associated with this document +as a whole. [transfer none]
- + - +

document :

a GObject instance that implements AtkDocumentIface -a GObject instance that implements AtkDocumentIface

Returns :

a UTF-8 string indicating the POSIX-style LC_MESSAGES - locale of the document content as a whole, or NULL if - the document content does not specify a locale. -a UTF-8 string indicating the POSIX-style LC_MESSAGES +locale of the document content as a whole, or NULL if +the document content does not specify a locale.
-
+

Signal Details

-
+

The "load-complete" signal

-
void                user_function                      (AtkDocument *atkdocument,
-                                                        gpointer     user_data)        : Run Last
+
void                user_function                      (AtkDocument *atkdocument,
+                                                        gpointer     user_data)        : Run Last

The 'load-complete' signal is emitted when a pending load of a static document has completed. This signal is to be expected by ATK clients @@ -358,8 +274,7 @@

atkdocument :

-the object which received the signal. - +the object which received the signal.

user_data :

@@ -369,12 +284,10 @@

-
+

The "load-stopped" signal

-
void                user_function                      (AtkDocument *atkdocument,
-                                                        gpointer     user_data)        : Run Last
+
void                user_function                      (AtkDocument *atkdocument,
+                                                        gpointer     user_data)        : Run Last

The 'load-stopped' signal is emitted when a pending load of document contents is cancelled, paused, or otherwise interrupted by the user or application @@ -387,8 +300,7 @@

atkdocument :

-the object which received the signal. - +the object which received the signal.

user_data :

@@ -398,12 +310,10 @@

-
+

The "reload" signal

-
void                user_function                      (AtkDocument *atkdocument,
-                                                        gpointer     user_data)        : Run Last
+
void                user_function                      (AtkDocument *atkdocument,
+                                                        gpointer     user_data)        : Run Last

The 'reload' signal is emitted when the contents of a document is refreshed from its source. Once 'reload' has been emitted, a matching 'load-complete' @@ -415,8 +325,7 @@

atkdocument :

-the object which received the signal. - +the object which received the signal.

user_data :

@@ -429,6 +338,6 @@
+ Generated by GTK-Doc V1.17.1
- + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkEditableText.html atk1.0-2.2.0/docs/html/AtkEditableText.html --- atk1.0-1.30.0/docs/html/AtkEditableText.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkEditableText.html 2011-09-26 22:25:58.000000000 +0000 @@ -8,16 +8,8 @@ - + - - - - - - - - @@ -30,15 +22,15 @@ -
+
@@ -47,76 +39,47 @@
-
+

Synopsis

-
-                    AtkEditableText;
-gboolean            atk_editable_text_set_run_attributes
-                                                        (AtkEditableText *text,
-                                                         AtkAttributeSet *attrib_set,
-                                                         gint start_offset,
-                                                         gint end_offset);
-void                atk_editable_text_set_text_contents (AtkEditableText *text,
-                                                         const gchar *string);
-void                atk_editable_text_insert_text       (AtkEditableText *text,
-                                                         const gchar *string,
-                                                         gint length,
-                                                         gint *position);
-void                atk_editable_text_copy_text         (AtkEditableText *text,
-                                                         gint start_pos,
-                                                         gint end_pos);
-void                atk_editable_text_cut_text          (AtkEditableText *text,
-                                                         gint start_pos,
-                                                         gint end_pos);
-void                atk_editable_text_delete_text       (AtkEditableText *text,
-                                                         gint start_pos,
-                                                         gint end_pos);
-void                atk_editable_text_paste_text        (AtkEditableText *text,
-                                                         gint position);
+
                    AtkEditableText;
+gboolean            atk_editable_text_set_run_attributes
+                                                        (AtkEditableText *text,
+                                                         AtkAttributeSet *attrib_set,
+                                                         gint start_offset,
+                                                         gint end_offset);
+void                atk_editable_text_set_text_contents (AtkEditableText *text,
+                                                         const gchar *string);
+void                atk_editable_text_insert_text       (AtkEditableText *text,
+                                                         const gchar *string,
+                                                         gint length,
+                                                         gint *position);
+void                atk_editable_text_copy_text         (AtkEditableText *text,
+                                                         gint start_pos,
+                                                         gint end_pos);
+void                atk_editable_text_cut_text          (AtkEditableText *text,
+                                                         gint start_pos,
+                                                         gint end_pos);
+void                atk_editable_text_delete_text       (AtkEditableText *text,
+                                                         gint start_pos,
+                                                         gint end_pos);
+void                atk_editable_text_paste_text        (AtkEditableText *text,
+                                                         gint position);
 
-
+

Object Hierarchy

   GInterface
    +----AtkEditableText
 
-
+

Known Implementations

AtkEditableText is implemented by AtkNoOpObject.

-
+

Description

AtkEditableText should be implemented by UI components which contain @@ -128,9 +91,9 @@ implements AtkEditableText is by definition an AtkText implementor as well.

-
+

Details

-
+

AtkEditableText

typedef struct _AtkEditableText AtkEditableText;

@@ -138,270 +101,220 @@


-
+

atk_editable_text_set_run_attributes ()

-
gboolean            atk_editable_text_set_run_attributes
-                                                        (AtkEditableText *text,
-                                                         AtkAttributeSet *attrib_set,
-                                                         gint start_offset,
-                                                         gint end_offset);
+
gboolean            atk_editable_text_set_run_attributes
+                                                        (AtkEditableText *text,
+                                                         AtkAttributeSet *attrib_set,
+                                                         gint start_offset,
+                                                         gint end_offset);

Sets the attributes for a specified range. See the ATK_ATTRIBUTE macros (such as ATK_ATTRIBUTE_LEFT_MARGIN) for examples of attributes that can be set. Note that other attributes that do not have corresponding -ATK_ATTRIBUTE macros may also be set for certain text widgets.

-

+ATK_ATTRIBUTE macros may also be set for certain text widgets.

- - - + - + -

text :

an AtkEditableText +an AtkEditableText

attrib_set :

an AtkAttributeSet +an AtkAttributeSet

start_offset :

start of range in which to set attributes -start of range in which to set attributes

end_offset :

end of range in which to set attributes -end of range in which to set attributes

Returns :

TRUE if attributes successfully set for the specified -range, otherwise FALSE + +TRUE if attributes successfully set for the specified +range, otherwise FALSE

-
+

atk_editable_text_set_text_contents ()

-
void                atk_editable_text_set_text_contents (AtkEditableText *text,
-                                                         const gchar *string);
-

-Set text contents of text.

+
void                atk_editable_text_set_text_contents (AtkEditableText *text,
+                                                         const gchar *string);

+Set text contents of text.

- -

text :

an AtkEditableText +an AtkEditableText

string :

string to set for text contents of text +string to set for text contents of text

-
+

atk_editable_text_insert_text ()

-
void                atk_editable_text_insert_text       (AtkEditableText *text,
-                                                         const gchar *string,
-                                                         gint length,
-                                                         gint *position);
-

-Insert text at a given position.

+
void                atk_editable_text_insert_text       (AtkEditableText *text,
+                                                         const gchar *string,
+                                                         gint length,
+                                                         gint *position);

+Insert text at a given position.

- - + - + - +points at the position after the newly inserted text.

text :

an AtkEditableText +an AtkEditableText

string :

the text to insert -the text to insert

length :

the length of text to insert, in bytes -the length of text to insert, in bytes

position :

The caller initializes this to +The caller initializes this to the position at which to insert the text. After the call it -points at the position after the newly inserted text. -

-
+

atk_editable_text_copy_text ()

-
void                atk_editable_text_copy_text         (AtkEditableText *text,
-                                                         gint start_pos,
-                                                         gint end_pos);
+
void                atk_editable_text_copy_text         (AtkEditableText *text,
+                                                         gint start_pos,
+                                                         gint end_pos);

Copy text from start_pos up to, but not including end_pos -to the clipboard.

-

+to the clipboard.

- - + - +

text :

an AtkEditableText +an AtkEditableText

start_pos :

start position -start position

end_pos :

end position -end position

-
+

atk_editable_text_cut_text ()

-
void                atk_editable_text_cut_text          (AtkEditableText *text,
-                                                         gint start_pos,
-                                                         gint end_pos);
+
void                atk_editable_text_cut_text          (AtkEditableText *text,
+                                                         gint start_pos,
+                                                         gint end_pos);

Copy text from start_pos up to, but not including end_pos -to the clipboard and then delete from the widget.

-

+to the clipboard and then delete from the widget.

- - + - +

text :

an AtkEditableText +an AtkEditableText

start_pos :

start position -start position

end_pos :

end position -end position

-
+

atk_editable_text_delete_text ()

-
void                atk_editable_text_delete_text       (AtkEditableText *text,
-                                                         gint start_pos,
-                                                         gint end_pos);
-

-Delete text start_pos up to, but not including end_pos.

+
void                atk_editable_text_delete_text       (AtkEditableText *text,
+                                                         gint start_pos,
+                                                         gint end_pos);

+Delete text start_pos up to, but not including end_pos.

- - + - +

text :

an AtkEditableText +an AtkEditableText

start_pos :

start position -start position

end_pos :

end position -end position

-
+

atk_editable_text_paste_text ()

-
void                atk_editable_text_paste_text        (AtkEditableText *text,
-                                                         gint position);
-

-Paste text from clipboard to specified position.

+
void                atk_editable_text_paste_text        (AtkEditableText *text,
+                                                         gint position);

+Paste text from clipboard to specified position.

- - +

text :

an AtkEditableText +an AtkEditableText

position :

position to paste -position to paste
-
+

See Also

AtkText @@ -410,6 +323,6 @@

+ Generated by GTK-Doc V1.17.1
- + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkGObjectAccessible.html atk1.0-2.2.0/docs/html/AtkGObjectAccessible.html --- atk1.0-1.30.0/docs/html/AtkGObjectAccessible.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkGObjectAccessible.html 2011-09-26 22:25:58.000000000 +0000 @@ -8,16 +8,8 @@ - + - - - - - - - - @@ -30,13 +22,13 @@ -
+
@@ -46,29 +38,22 @@
-
+ -
+

Object Hierarchy

-  GObject
+  GObject
    +----AtkObject
          +----AtkGObjectAccessible
 
-
+

Description

This object class is derived from AtkObject. It can be used as a basis for @@ -77,66 +62,58 @@ for GnomeCanvasItem in the GAIL library.

-
+

Details

-
-

AtkGObjectAccessible

-
typedef struct _AtkGObjectAccessible AtkGObjectAccessible;
+
+

struct AtkGObjectAccessible

+
struct AtkGObjectAccessible;

The AtkGObjectAccessible structure should not be accessed directly.


-
+

atk_gobject_accessible_for_object ()

-
AtkObject *         atk_gobject_accessible_for_object   (GObject *obj);
-

-Gets the accessible object for the specified obj.

+
AtkObject *         atk_gobject_accessible_for_object   (GObject *obj);

+Gets the accessible object for the specified obj.

- -

obj :

a GObject +a GObject

Returns :

a AtkObject which is the accessible object for the obj +a AtkObject which is the accessible object for +the obj. [transfer none]

-
+

atk_gobject_accessible_get_object ()

-
GObject *           atk_gobject_accessible_get_object   (AtkGObjectAccessible *obj);
-

-Gets the GObject for which obj is the accessible object.

+
GObject *           atk_gobject_accessible_get_object   (AtkGObjectAccessible *obj);

+Gets the GObject for which obj is the accessible object.

- - @@ -146,6 +123,6 @@ + Generated by GTK-Doc V1.17.1 - + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/atk.html atk1.0-2.2.0/docs/html/atk.html --- atk1.0-1.30.0/docs/html/atk.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/atk.html 2011-09-26 22:25:58.000000000 +0000 @@ -8,16 +8,8 @@ - + - - - - - - - -

obj :

a AtkGObjectAccessible +a AtkGObjectAccessible

Returns :

a GObject which is the object for which obj is the accessible object +a GObject which is the object for which obj is +the accessible object. [transfer none]
@@ -27,7 +19,7 @@ -
+

ATK Library

@@ -77,6 +69,9 @@ objects of a specific GType.
+AtkPlug +
+
AtkRegistry — An object used to store the GType of the factories used to create an accessible object for an object of a particular GType.
@@ -92,6 +87,9 @@ can be selected.
+AtkSocket +
+
AtkState — An AtkState describes a component's particular state.
@@ -118,6 +116,6 @@
+ Generated by GTK-Doc V1.17.1
- + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkHyperlink.html atk1.0-2.2.0/docs/html/AtkHyperlink.html --- atk1.0-1.30.0/docs/html/AtkHyperlink.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkHyperlink.html 2011-09-26 22:25:58.000000000 +0000 @@ -8,16 +8,8 @@ - + - - - - - - - - @@ -30,19 +22,19 @@ -
+
@@ -51,80 +43,51 @@
-
+ -
+

Object Hierarchy

-  GObject
+  GObject
    +----AtkHyperlink
 
-
+

Implemented Interfaces

AtkHyperlink implements AtkAction.

-
+

Properties

-  "end-index"                gint                  : Read
-  "number-of-anchors"        gint                  : Read
-  "selected-link"            gboolean              : Read
-  "start-index"              gint                  : Read
+  "end-index"                gint                  : Read
+  "number-of-anchors"        gint                  : Read
+  "selected-link"            gboolean              : Read
+  "start-index"              gint                  : Read
 
-
+

Signals

-  "link-activated"                                 : Run Last
+  "link-activated"                                 : Run Last
 
-
+

Description

An ATK object which encapsulates a link or set of links @@ -134,81 +97,70 @@ and end offset within the host AtkHypertext object.

-
+

Details

-
-

AtkHyperlink

-
typedef struct _AtkHyperlink AtkHyperlink;
+
+

struct AtkHyperlink

+
struct AtkHyperlink;

The AtkHyperlink structure should not be accessed directly.


-
+

enum AtkHyperlinkStateFlags

-
typedef enum 
-{
+
typedef enum {
   ATK_HYPERLINK_IS_INLINE = 1 << 0
 } AtkHyperlinkStateFlags;
 

-Describes the type of link

-

+Describes the type of link

- - +

ATK_HYPERLINK_IS_INLINE

Link is inline +

ATK_HYPERLINK_IS_INLINE

Link is inline

-
+

atk_hyperlink_get_uri ()

-
gchar*              atk_hyperlink_get_uri               (AtkHyperlink *link_,
-                                                         gint i);
+
gchar *             atk_hyperlink_get_uri               (AtkHyperlink *link_,
+                                                         gint i);

Get a the URI associated with the anchor specified by i of link_.

-Multiple anchors are primarily used by client-side image maps.

-

+Multiple anchors are primarily used by client-side image maps.

- - + - +

link_ :

an AtkHyperlink +an AtkHyperlink

i :

a (zero-index) integer specifying the desired anchor -a (zero-index) integer specifying the desired anchor

Returns :

a string specifying the URI -a string specifying the URI

-
+

atk_hyperlink_get_object ()

-
AtkObject*          atk_hyperlink_get_object            (AtkHyperlink *link_,
-                                                         gint i);
+
AtkObject *         atk_hyperlink_get_object            (AtkHyperlink *link_,
+                                                         gint i);

Returns the item associated with this hyperlinks nth anchor. For instance, the returned AtkObject will implement AtkText @@ -216,256 +168,212 @@ hyperlink etc.

-Multiple anchors are primarily used by client-side image maps.

-

+Multiple anchors are primarily used by client-side image maps.

- - + -

link_ :

an AtkHyperlink +an AtkHyperlink

i :

a (zero-index) integer specifying the desired anchor -a (zero-index) integer specifying the desired anchor

Returns :

an AtkObject associated with this hyperlinks i-th anchor +an AtkObject associated with this hyperlinks +i-th anchor. [transfer none]

-
+

atk_hyperlink_get_end_index ()

-
gint                atk_hyperlink_get_end_index         (AtkHyperlink *link_);
-

-Gets the index with the hypertext document at which this link ends.

+
gint                atk_hyperlink_get_end_index         (AtkHyperlink *link_);

+Gets the index with the hypertext document at which this link ends.

- - +

link_ :

an AtkHyperlink +an AtkHyperlink

Returns :

the index with the hypertext document at which this link ends -the index with the hypertext document at which this link ends

-
+

atk_hyperlink_get_start_index ()

-
gint                atk_hyperlink_get_start_index       (AtkHyperlink *link_);
-

-Gets the index with the hypertext document at which this link begins.

+
gint                atk_hyperlink_get_start_index       (AtkHyperlink *link_);

+Gets the index with the hypertext document at which this link begins.

- - +

link_ :

an AtkHyperlink +an AtkHyperlink

Returns :

the index with the hypertext document at which this link begins -the index with the hypertext document at which this link begins

-
+

atk_hyperlink_is_valid ()

-
gboolean            atk_hyperlink_is_valid              (AtkHyperlink *link_);
+
gboolean            atk_hyperlink_is_valid              (AtkHyperlink *link_);

Since the document that a link is associated with may have changed -this method returns TRUE if the link is still valid (with -respect to the document it references) and FALSE otherwise.

-

+this method returns TRUE if the link is still valid (with +respect to the document it references) and FALSE otherwise.

- - +

link_ :

an AtkHyperlink +an AtkHyperlink

Returns :

whether or not this link is still valid -whether or not this link is still valid

-
+

atk_hyperlink_is_inline ()

-
gboolean            atk_hyperlink_is_inline             (AtkHyperlink *link_);
+
gboolean            atk_hyperlink_is_inline             (AtkHyperlink *link_);

Indicates whether the link currently displays some or all of its content inline. Ordinary HTML links will usually return - FALSE, but an inline &lt;src&gt; HTML element will return - TRUE. -a *

-

+ FALSE, but an inline &lt;src&gt; HTML element will return + TRUE. +a *

- - +

link_ :

an AtkHyperlink +an AtkHyperlink

Returns :

whether or not this link displays its content inline. - -whether or not this link displays its content inline.

-
+

atk_hyperlink_get_n_anchors ()

-
gint                atk_hyperlink_get_n_anchors         (AtkHyperlink *link_);
-

-Gets the number of anchors associated with this hyperlink.

+
gint                atk_hyperlink_get_n_anchors         (AtkHyperlink *link_);

+Gets the number of anchors associated with this hyperlink.

- - +

link_ :

an AtkHyperlink +an AtkHyperlink

Returns :

the number of anchors associated with this hyperlink -the number of anchors associated with this hyperlink

-
+

atk_hyperlink_is_selected_link ()

-
gboolean            atk_hyperlink_is_selected_link      (AtkHyperlink *link_);
-
+
gboolean            atk_hyperlink_is_selected_link      (AtkHyperlink *link_);
+

Warning

atk_hyperlink_is_selected_link is deprecated and should not be used in newly-written code. Please use ATK_STATE_SELECTED to indicate when a hyperlink within a Hypertext container is selected.

-Determines whether this AtkHyperlink is selected

-

+Determines whether this AtkHyperlink is selected

- - +

link_ :

an AtkHyperlink +an AtkHyperlink

Returns :

True is the AtkHyperlink is selected, False otherwise -True is the AtkHyperlink is selected, False otherwise

Since 1.4

-
+

Property Details

-
+

The "end-index" property

-
  "end-index"                gint                  : Read
+
  "end-index"                gint                  : Read

The end index of the AtkHyperlink object.

Allowed values: >= 0

Default value: 0


-
+

The "number-of-anchors" property

-
  "number-of-anchors"        gint                  : Read
+
  "number-of-anchors"        gint                  : Read

The number of anchors associated with the AtkHyperlink object.

Allowed values: >= 0

Default value: 0


-
+

The "selected-link" property

-
  "selected-link"            gboolean              : Read
+
  "selected-link"            gboolean              : Read

Specifies whether the AtkHyperlink object is selected.

Default value: FALSE


-
+

The "start-index" property

-
  "start-index"              gint                  : Read
+
  "start-index"              gint                  : Read

The start index of the AtkHyperlink object.

Allowed values: >= 0

Default value: 0

-
+

Signal Details

-
+

The "link-activated" signal

-
void                user_function                      (AtkHyperlink *atkhyperlink,
-                                                        gpointer      user_data)         : Run Last
+
void                user_function                      (AtkHyperlink *atkhyperlink,
+                                                        gpointer      user_data)         : Run Last

The signal link-activated is emitted when a link is activated.

@@ -474,8 +382,7 @@

atkhyperlink :

-the object which received the signal. - +the object which received the signal.

user_data :

@@ -488,6 +395,6 @@
+ Generated by GTK-Doc V1.17.1
- + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkHypertext.html atk1.0-2.2.0/docs/html/AtkHypertext.html --- atk1.0-1.30.0/docs/html/AtkHypertext.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkHypertext.html 2011-09-26 22:25:58.000000000 +0000 @@ -8,16 +8,8 @@ - + - - - - - - - - @@ -30,17 +22,17 @@ -
+
@@ -49,45 +41,36 @@
-
+

Synopsis

-
-                    AtkHypertext;
-AtkHyperlink*       atk_hypertext_get_link              (AtkHypertext *hypertext,
-                                                         gint link_index);
-gint                atk_hypertext_get_n_links           (AtkHypertext *hypertext);
-gint                atk_hypertext_get_link_index        (AtkHypertext *hypertext,
-                                                         gint char_index);
+
                    AtkHypertext;
+AtkHyperlink *      atk_hypertext_get_link              (AtkHypertext *hypertext,
+                                                         gint link_index);
+gint                atk_hypertext_get_n_links           (AtkHypertext *hypertext);
+gint                atk_hypertext_get_link_index        (AtkHypertext *hypertext,
+                                                         gint char_index);
 
-
+

Object Hierarchy

   GInterface
    +----AtkHypertext
 
-
+

Known Implementations

AtkHypertext is implemented by AtkNoOpObject.

-
+

Signals

-  "link-selected"                                  : Run Last
+  "link-selected"                                  : Run Last
 
-
+

Description

An interface used for objects which implement linking between multiple @@ -97,9 +80,9 @@ content. While this interface is derived from Text, there is no requirement that Hypertext instances have textual content; they may implement Image as well, and Hyperlinks need not have non-zero text offsets.

-
+

Details

-
+

AtkHypertext

typedef struct _AtkHypertext AtkHypertext;

@@ -107,113 +90,94 @@


-
+

atk_hypertext_get_link ()

-
AtkHyperlink*       atk_hypertext_get_link              (AtkHypertext *hypertext,
-                                                         gint link_index);
+
AtkHyperlink *      atk_hypertext_get_link              (AtkHypertext *hypertext,
+                                                         gint link_index);

Gets the link in this hypertext document at index -link_index

-

+link_index

- - + -

hypertext :

an AtkHypertext +an AtkHypertext

link_index :

an integer specifying the desired link -an integer specifying the desired link

Returns :

the link in this hypertext document at -index link_index +the link in this hypertext document at +index link_index. [transfer none]

-
+

atk_hypertext_get_n_links ()

-
gint                atk_hypertext_get_n_links           (AtkHypertext *hypertext);
-

-Gets the number of links within this hypertext document.

+
gint                atk_hypertext_get_n_links           (AtkHypertext *hypertext);

+Gets the number of links within this hypertext document.

- - +

hypertext :

an AtkHypertext +an AtkHypertext

Returns :

the number of links within this hypertext document -the number of links within this hypertext document

-
+

atk_hypertext_get_link_index ()

-
gint                atk_hypertext_get_link_index        (AtkHypertext *hypertext,
-                                                         gint char_index);
+
gint                atk_hypertext_get_link_index        (AtkHypertext *hypertext,
+                                                         gint char_index);

Gets the index into the array of hyperlinks that is associated with -the character specified by char_index.

-

+the character specified by char_index.

- - + - +

hypertext :

an AtkHypertext +an AtkHypertext

char_index :

a character index -a character index

Returns :

an index into the array of hyperlinks in hypertext, -or -1 if there is no hyperlink associated with this character. -an index into the array of hyperlinks in hypertext, +or -1 if there is no hyperlink associated with this character.
-
+

Signal Details

-
+

The "link-selected" signal

-
void                user_function                      (AtkHypertext *atkhypertext,
-                                                        gint          arg1,
-                                                        gpointer      user_data)         : Run Last
+
void                user_function                      (AtkHypertext *atkhypertext,
+                                                        gint          arg1,
+                                                        gpointer      user_data)         : Run Last

The "link-selected" signal is emitted by an AtkHyperText object when one of the hyperlinks associated with the object is selected. @@ -223,13 +187,11 @@

atkhypertext :

-the object which received the signal. - +the object which received the signal.

arg1 :

-the index of the hyperlink which is selected - +the index of the hyperlink which is selected

user_data :

@@ -239,7 +201,7 @@
-
+

See Also

AtkHyperlink @@ -248,6 +210,6 @@

+ Generated by GTK-Doc V1.17.1
- + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkImage.html atk1.0-2.2.0/docs/html/AtkImage.html --- atk1.0-1.30.0/docs/html/AtkImage.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkImage.html 2011-09-26 22:25:58.000000000 +0000 @@ -8,16 +8,8 @@ - + - - - - - - - - @@ -30,15 +22,15 @@ -
+
@@ -48,53 +40,36 @@
-
+

Synopsis

-
-                    AtkImage;
-void                atk_image_get_image_position        (AtkImage *image,
-                                                         gint *x,
-                                                         gint *y,
-                                                         AtkCoordType coord_type);
-const gchar*        atk_image_get_image_description     (AtkImage *image);
-gboolean            atk_image_set_image_description     (AtkImage *image,
-                                                         const gchar *description);
-void                atk_image_get_image_size            (AtkImage *image,
-                                                         gint *width,
-                                                         gint *height);
-const gchar*        atk_image_get_image_locale          (AtkImage *image);
+
                    AtkImage;
+void                atk_image_get_image_position        (AtkImage *image,
+                                                         gint *x,
+                                                         gint *y,
+                                                         AtkCoordType coord_type);
+const gchar *       atk_image_get_image_description     (AtkImage *image);
+gboolean            atk_image_set_image_description     (AtkImage *image,
+                                                         const gchar *description);
+void                atk_image_get_image_size            (AtkImage *image,
+                                                         gint *width,
+                                                         gint *height);
+const gchar *       atk_image_get_image_locale          (AtkImage *image);
 
-
+

Object Hierarchy

   GInterface
    +----AtkImage
 
-
+

Known Implementations

AtkImage is implemented by AtkNoOpObject.

-
+

Description

AtkImage should be implemented by AtkObject subtypes on behalf of @@ -111,9 +86,9 @@ most significant information present in the image.

-
+

Details

-
+

AtkImage

typedef struct _AtkImage AtkImage;

@@ -121,181 +96,135 @@


-
+

atk_image_get_image_position ()

-
void                atk_image_get_image_position        (AtkImage *image,
-                                                         gint *x,
-                                                         gint *y,
-                                                         AtkCoordType coord_type);
+
void                atk_image_get_image_position        (AtkImage *image,
+                                                         gint *x,
+                                                         gint *y,
+                                                         AtkCoordType coord_type);

Gets the position of the image in the form of a point specifying the -images top-left corner.

-

+images top-left corner.

- + - + - + - +

image :

a GObject instance that implements AtkImageIface -a GObject instance that implements AtkImageIface

x :

address of gint to put x coordinate position; otherwise, -1 if value cannot be obtained. -address of gint to put x coordinate position; otherwise, -1 if value cannot be obtained.

y :

address of gint to put y coordinate position; otherwise, -1 if value cannot be obtained. -address of gint to put y coordinate position; otherwise, -1 if value cannot be obtained.

coord_type :

specifies whether the coordinates are relative to the screen -or to the components top level window -specifies whether the coordinates are relative to the screen +or to the components top level window

-
+

atk_image_get_image_description ()

-
const gchar*        atk_image_get_image_description     (AtkImage *image);
-

-Get a textual description of this image.

+
const gchar *       atk_image_get_image_description     (AtkImage *image);

+Get a textual description of this image.

- + - +

image :

a GObject instance that implements AtkImageIface -a GObject instance that implements AtkImageIface

Returns :

a string representing the image description -a string representing the image description

-
+

atk_image_set_image_description ()

-
gboolean            atk_image_set_image_description     (AtkImage *image,
-                                                         const gchar *description);
-

-Sets the textual description for this image.

+
gboolean            atk_image_set_image_description     (AtkImage *image,
+                                                         const gchar *description);

+Sets the textual description for this image.

- + - - +

image :

a GObject instance that implements AtkImageIface -a GObject instance that implements AtkImageIface

description :

a string description to set for image +a string description to set for image

Returns :

boolean TRUE, or FALSE if operation could -not be completed. -boolean TRUE, or FALSE if operation could +not be completed.

-
+

atk_image_get_image_size ()

-
void                atk_image_get_image_size            (AtkImage *image,
-                                                         gint *width,
-                                                         gint *height);
+
void                atk_image_get_image_size            (AtkImage *image,
+                                                         gint *width,
+                                                         gint *height);

Get the width and height in pixels for the specified image. The values of width and height are returned as -1 if the -values cannot be obtained (for instance, if the object is not onscreen).

-

+values cannot be obtained (for instance, if the object is not onscreen).

- + - + - +

image :

a GObject instance that implements AtkImageIface -a GObject instance that implements AtkImageIface

width :

filled with the image width, or -1 if the value cannot be obtained. -filled with the image width, or -1 if the value cannot be obtained.

height :

filled with the image height, or -1 if the value cannot be obtained. -filled with the image height, or -1 if the value cannot be obtained.

-
+

atk_image_get_image_locale ()

-
const gchar*        atk_image_get_image_locale          (AtkImage *image);
-

-Since ATK 1.12

+
const gchar *       atk_image_get_image_locale          (AtkImage *image);

+Since ATK 1.12

- - +

image :

An AtkImage +An AtkImage

Returns :

a string corresponding to the POSIX LC_MESSAGES locale used by the image description, or NULL if the image does not specify a locale. - -a string corresponding to the POSIX LC_MESSAGES locale used by the image description, or NULL if the image does not specify a locale.
@@ -304,6 +233,6 @@
+ Generated by GTK-Doc V1.17.1
- + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkNoOpObjectFactory.html atk1.0-2.2.0/docs/html/AtkNoOpObjectFactory.html --- atk1.0-1.30.0/docs/html/AtkNoOpObjectFactory.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkNoOpObjectFactory.html 2011-09-26 22:25:58.000000000 +0000 @@ -8,16 +8,8 @@ - + - - - - - - - - @@ -30,13 +22,13 @@ -
+
@@ -45,24 +37,21 @@
-
+ -
+

Object Hierarchy

-  GObject
+  GObject
    +----AtkObjectFactory
          +----AtkNoOpObjectFactory
 
-
+

Description

The AtkObjectFactory which creates an AtkNoOpObject. An instance of this is @@ -70,29 +59,28 @@ create an accessible object of a particular type.

-
+

Details

-
-

AtkNoOpObjectFactory

-
typedef struct _AtkNoOpObjectFactory AtkNoOpObjectFactory;
+
+

struct AtkNoOpObjectFactory

+
struct AtkNoOpObjectFactory;

The AtkNoOpObjectFactory structure should not be accessed directly.


-
+

atk_no_op_object_factory_new ()

-
AtkObjectFactory *  atk_no_op_object_factory_new        (void);
+
AtkObjectFactory *  atk_no_op_object_factory_new        (void);

Creates an instance of an AtkObjectFactory which generates primitive -(non-functioning) AtkObjects.

-

+(non-functioning) AtkObjects.

-

Returns :

an instance of an AtkObjectFactory +an instance of an AtkObjectFactory
@@ -101,6 +89,6 @@
+ Generated by GTK-Doc V1.17.1
- + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkNoOpObject.html atk1.0-2.2.0/docs/html/AtkNoOpObject.html --- atk1.0-1.30.0/docs/html/AtkNoOpObject.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkNoOpObject.html 2011-09-26 22:25:58.000000000 +0000 @@ -8,16 +8,8 @@ - + - - - - - - - - @@ -30,15 +22,15 @@ -
+
@@ -47,32 +39,27 @@
-
+ -
+

Object Hierarchy

-  GObject
+  GObject
    +----AtkObject
          +----AtkNoOpObject
 
-
+ -
+

Description

An AtkNoOpObject is an AtkObject which purports to implement all ATK @@ -80,39 +67,34 @@ object is requested for an object type for which no factory type is specified.

-
+

Details

-
-

AtkNoOpObject

-
typedef struct _AtkNoOpObject AtkNoOpObject;
+
+

struct AtkNoOpObject

+
struct AtkNoOpObject;

The AtkNoOpObject structure should not be accessed directly.


-
+

atk_no_op_object_new ()

-
AtkObject *         atk_no_op_object_new                (GObject *obj);
+
AtkObject *         atk_no_op_object_new                (GObject *obj);

Provides a default (non-functioning stub) AtkObject. -Application maintainers should not use this method.

-

+Application maintainers should not use this method.

- - @@ -122,6 +104,6 @@ + Generated by GTK-Doc V1.17.1 - + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkObjectFactory.html atk1.0-2.2.0/docs/html/AtkObjectFactory.html --- atk1.0-1.30.0/docs/html/AtkObjectFactory.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkObjectFactory.html 2011-09-26 22:25:58.000000000 +0000 @@ -7,17 +7,9 @@ - - + + - - - - - - - -

obj :

a GObject +a GObject

Returns :

a default (non-functioning stub) AtkObject +a default (non-functioning stub) AtkObject
@@ -26,17 +18,17 @@ - + -
+
@@ -46,33 +38,26 @@
-
+ -
+

Object Hierarchy

-  GObject
+  GObject
    +----AtkObjectFactory
          +----AtkNoOpObjectFactory
 
-
+

Description

This class is the base object class for a factory used to create an @@ -82,104 +67,92 @@ particular GType.

-
+

Details

-
-

AtkObjectFactory

-
typedef struct _AtkObjectFactory AtkObjectFactory;
+
+

struct AtkObjectFactory

+
struct AtkObjectFactory;

The AtkObjectFactory structure should not be accessed directly.


-
+

atk_object_factory_create_accessible ()

-
AtkObject*          atk_object_factory_create_accessible
-                                                        (AtkObjectFactory *factory,
-                                                         GObject *obj);
+
AtkObject *         atk_object_factory_create_accessible
+                                                        (AtkObjectFactory *factory,
+                                                         GObject *obj);

Provides an AtkObject that implements an accessibility interface -on behalf of obj

-

+on behalf of obj

- + - -

factory :

The AtkObjectFactory associated with obj's -object type -The AtkObjectFactory associated with obj's +object type

obj :

a GObject +a GObject

Returns :

an AtkObject that implements an accessibility interface -on behalf of obj +an AtkObject that implements an accessibility +interface on behalf of obj. [transfer full]

-
+

atk_object_factory_get_accessible_type ()

-
GType               atk_object_factory_get_accessible_type
-                                                        (AtkObjectFactory *factory);
-

-Gets the GType of the accessible which is created by the factory.

+
GType               atk_object_factory_get_accessible_type
+                                                        (AtkObjectFactory *factory);

+Gets the GType of the accessible which is created by the factory.

- - +

factory :

an AtkObjectFactory +an AtkObjectFactory

Returns :

the type of the accessible which is created by the factory. -The value G_TYPE_INVALID is returned if no type if found. -the type of the accessible which is created by the factory. +The value G_TYPE_INVALID is returned if no type if found.

-
+

atk_object_factory_invalidate ()

-
void                atk_object_factory_invalidate       (AtkObjectFactory *factory);
+
void                atk_object_factory_invalidate       (AtkObjectFactory *factory);

Inform factory that it is no longer being used to create accessibles. When called, factory may need to inform -AtkObjects which it has created that they need to be re-instantiated. -Note: primarily used for runtime replacement of AtkObjectFactorys -in object registries.

-

+AtkObjects which it has created that they need to be re-instantiated. +Note: primarily used for runtime replacement of AtkObjectFactorys +in object registries.

- +

factory :

an AtkObjectFactory to invalidate -an AtkObjectFactory to invalidate
-
+

See Also

AtkRegistry @@ -188,6 +161,6 @@

+ Generated by GTK-Doc V1.17.1
- + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkObject.html atk1.0-2.2.0/docs/html/AtkObject.html --- atk1.0-1.30.0/docs/html/AtkObject.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkObject.html 2011-09-26 22:25:58.000000000 +0000 @@ -8,16 +8,8 @@ - + - - - - - - - - @@ -30,17 +22,17 @@ -
+
@@ -49,166 +41,103 @@
-
+

Synopsis

-
-                    AtkObject;
+
struct              AtkObject;
 enum                AtkRole;
-AtkRole             atk_role_register                   (const gchar *name);
+AtkRole             atk_role_register                   (const gchar *name);
 enum                AtkLayer;
                     AtkImplementor;
                     AtkPropertyValues;
-gboolean            (*AtkFunction)                      (gpointer data);
-void                (*AtkPropertyChangeHandler)         (AtkObject *,
-                                                         AtkPropertyValues *);
-AtkObject*          atk_implementor_ref_accessible      (AtkImplementor *implementor);
-const gchar*        atk_object_get_name                 (AtkObject *accessible);
-const gchar*        atk_object_get_description          (AtkObject *accessible);
-AtkObject*          atk_object_get_parent               (AtkObject *accessible);
-gint                atk_object_get_n_accessible_children
-                                                        (AtkObject *accessible);
-AtkObject*          atk_object_ref_accessible_child     (AtkObject *accessible,
-                                                         gint i);
-AtkRelationSet*     atk_object_ref_relation_set         (AtkObject *accessible);
-AtkLayer            atk_object_get_layer                (AtkObject *accessible);
-gint                atk_object_get_mdi_zorder           (AtkObject *accessible);
-AtkRole             atk_object_get_role                 (AtkObject *accessible);
-AtkStateSet*        atk_object_ref_state_set            (AtkObject *accessible);
-gint                atk_object_get_index_in_parent      (AtkObject *accessible);
-void                atk_object_set_name                 (AtkObject *accessible,
-                                                         const gchar *name);
-void                atk_object_set_description          (AtkObject *accessible,
-                                                         const gchar *description);
-void                atk_object_set_parent               (AtkObject *accessible,
-                                                         AtkObject *parent);
-void                atk_object_set_role                 (AtkObject *accessible,
-                                                         AtkRole role);
-guint               atk_object_connect_property_change_handler
-                                                        (AtkObject *accessible,
-                                                         AtkPropertyChangeHandler *handler);
-void                atk_object_remove_property_change_handler
-                                                        (AtkObject *accessible,
-                                                         guint handler_id);
-void                atk_object_notify_state_change      (AtkObject *accessible,
-                                                         AtkState state,
-                                                         gboolean value);
-void                atk_object_initialize               (AtkObject *accessible,
-                                                         gpointer data);
-gboolean            atk_object_add_relationship         (AtkObject *object,
-                                                         AtkRelationType relationship,
-                                                         AtkObject *target);
-gboolean            atk_object_remove_relationship      (AtkObject *object,
-                                                         AtkRelationType relationship,
-                                                         AtkObject *target);
-AtkAttributeSet*    atk_object_get_attributes           (AtkObject *accessible);
-const gchar*        atk_role_get_name                   (AtkRole role);
-const gchar*        atk_role_get_localized_name         (AtkRole role);
-AtkRole             atk_role_for_name                   (const gchar *name);
+gboolean            (*AtkFunction)                      (gpointer data);
+void                (*AtkPropertyChangeHandler)         (AtkObject *Param1,
+                                                         AtkPropertyValues *Param2);
+AtkObject *         atk_implementor_ref_accessible      (AtkImplementor *implementor);
+const gchar *       atk_object_get_name                 (AtkObject *accessible);
+const gchar *       atk_object_get_description          (AtkObject *accessible);
+AtkObject *         atk_object_get_parent               (AtkObject *accessible);
+gint                atk_object_get_n_accessible_children
+                                                        (AtkObject *accessible);
+AtkObject *         atk_object_ref_accessible_child     (AtkObject *accessible,
+                                                         gint i);
+AtkRelationSet *    atk_object_ref_relation_set         (AtkObject *accessible);
+AtkLayer            atk_object_get_layer                (AtkObject *accessible);
+gint                atk_object_get_mdi_zorder           (AtkObject *accessible);
+AtkRole             atk_object_get_role                 (AtkObject *accessible);
+AtkStateSet *       atk_object_ref_state_set            (AtkObject *accessible);
+gint                atk_object_get_index_in_parent      (AtkObject *accessible);
+void                atk_object_set_name                 (AtkObject *accessible,
+                                                         const gchar *name);
+void                atk_object_set_description          (AtkObject *accessible,
+                                                         const gchar *description);
+void                atk_object_set_parent               (AtkObject *accessible,
+                                                         AtkObject *parent);
+void                atk_object_set_role                 (AtkObject *accessible,
+                                                         AtkRole role);
+guint               atk_object_connect_property_change_handler
+                                                        (AtkObject *accessible,
+                                                         AtkPropertyChangeHandler *handler);
+void                atk_object_remove_property_change_handler
+                                                        (AtkObject *accessible,
+                                                         guint handler_id);
+void                atk_object_notify_state_change      (AtkObject *accessible,
+                                                         AtkState state,
+                                                         gboolean value);
+void                atk_object_initialize               (AtkObject *accessible,
+                                                         gpointer data);
+gboolean            atk_object_add_relationship         (AtkObject *object,
+                                                         AtkRelationType relationship,
+                                                         AtkObject *target);
+gboolean            atk_object_remove_relationship      (AtkObject *object,
+                                                         AtkRelationType relationship,
+                                                         AtkObject *target);
+AtkAttributeSet *   atk_object_get_attributes           (AtkObject *accessible);
+const gchar *       atk_role_get_name                   (AtkRole role);
+const gchar *       atk_role_get_localized_name         (AtkRole role);
+AtkRole             atk_role_for_name                   (const gchar *name);
 
-
+

Object Hierarchy

-  GObject
+  GObject
    +----AtkObject
          +----AtkGObjectAccessible
          +----AtkNoOpObject
 
-
+

Properties

-  "accessible-component-layer" gint                  : Read
-  "accessible-component-mdi-zorder" gint                  : Read
-  "accessible-description"   gchar*                : Read / Write
-  "accessible-hypertext-nlinks" gint                  : Read
-  "accessible-name"          gchar*                : Read / Write
-  "accessible-parent"        AtkObject*            : Read / Write
-  "accessible-role"          gint                  : Read / Write
-  "accessible-table-caption" gchar*                : Read / Write
-  "accessible-table-caption-object" AtkObject*            : Read / Write
-  "accessible-table-column-description" gchar*                : Read / Write
-  "accessible-table-column-header" AtkObject*            : Read / Write
-  "accessible-table-row-description" gchar*                : Read / Write
-  "accessible-table-row-header" AtkObject*            : Read / Write
-  "accessible-table-summary" AtkObject*            : Read / Write
-  "accessible-value"         gdouble               : Read / Write
+  "accessible-component-layer" gint                  : Read
+  "accessible-component-mdi-zorder" gint                  : Read
+  "accessible-description"   gchar*                : Read / Write
+  "accessible-hypertext-nlinks" gint                  : Read
+  "accessible-name"          gchar*                : Read / Write
+  "accessible-parent"        AtkObject*            : Read / Write
+  "accessible-role"          gint                  : Read / Write
+  "accessible-table-caption" gchar*                : Read / Write
+  "accessible-table-caption-object" AtkObject*            : Read / Write
+  "accessible-table-column-description" gchar*                : Read / Write
+  "accessible-table-column-header" AtkObject*            : Read / Write
+  "accessible-table-row-description" gchar*                : Read / Write
+  "accessible-table-row-header" AtkObject*            : Read / Write
+  "accessible-table-summary" AtkObject*            : Read / Write
+  "accessible-value"         gdouble               : Read / Write
 
-
+

Signals

-  "active-descendant-changed"                      : Run Last / Has Details
-  "children-changed"                               : Run Last / Has Details
-  "focus-event"                                    : Run Last
-  "property-change"                                : Run Last / Has Details
-  "state-change"                                   : Run Last / Has Details
-  "visible-data-changed"                           : Run Last
+  "active-descendant-changed"                      : Has Details
+  "children-changed"                               : Has Details
+  "focus-event"                                    : Run Last
+  "property-change"                                : Has Details
+  "state-change"                                   : Has Details
+  "visible-data-changed"                           : Run Last
 
-
+

Description

This class is the primary class for accessibility support via @@ -223,28 +152,25 @@

All UI components in an application which provide useful information or services to the user must provide corresponding AtkObject instances on request (in GTK+, for instance, usually -on a call to #gtk_widget_get_accessible()), either via ATK support +on a call to #gtk_widget_get_accessible()), either via ATK support built into the toolkit for the widget class or ancestor class, or in the case of custom widgets, if the inherited AtkObject implementation is insufficient, via instances of a new AtkObject subclass.

-
+

Details

-
-

AtkObject

-
typedef struct _AtkObject AtkObject;
+
+

struct AtkObject

+
struct AtkObject;

The AtkObject structure should not be accessed directly.


-
+

enum AtkRole

-
typedef enum
-{
+
typedef enum {
   ATK_ROLE_INVALID = 0, 
   ATK_ROLE_ACCEL_LABEL,
   ATK_ROLE_ALERT,
@@ -333,6 +259,19 @@
   ATK_ROLE_FORM,
   ATK_ROLE_LINK,
   ATK_ROLE_INPUT_METHOD_WINDOW,
+  ATK_ROLE_TABLE_ROW,
+  ATK_ROLE_TREE_ITEM,
+  ATK_ROLE_DOCUMENT_SPREADSHEET,
+  ATK_ROLE_DOCUMENT_PRESENTATION,
+  ATK_ROLE_DOCUMENT_TEXT,
+  ATK_ROLE_DOCUMENT_WEB,
+  ATK_ROLE_DOCUMENT_EMAIL,
+  ATK_ROLE_COMMENT,
+  ATK_ROLE_LIST_BOX,
+  ATK_ROLE_GROUPING,
+  ATK_ROLE_IMAGE_MAP,
+  ATK_ROLE_NOTIFICATION,
+  ATK_ROLE_INFO_BAR,
   ATK_ROLE_LAST_DEFINED
 } AtkRole;
 
@@ -342,448 +281,447 @@

These are the built-in enumerated roles that UI components can have in ATK. Other roles may be added at runtime, so an AtkRole >= -ATK_ROLE_LAST_DEFINED is not necessarily an error.

-

+ATK_ROLE_LAST_DEFINED is not necessarily an error.

- - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

ATK_ROLE_INVALID

Invalid role +

ATK_ROLE_INVALID

Invalid role

ATK_ROLE_ACCEL_LABEL

A label which represents an accelerator +

ATK_ROLE_ACCEL_LABEL

A label which represents an accelerator

ATK_ROLE_ALERT

An object which is an alert to the user. Assistive Technologies typically respond to ATK_ROLE_ALERT by reading the entire onscreen contents of containers advertising this role. Should be used for warning dialogs, etc. +

ATK_ROLE_ALERT

An object which is an alert to the user. Assistive Technologies typically respond to ATK_ROLE_ALERT by reading the entire onscreen contents of containers advertising this role. Should be used for warning dialogs, etc.

ATK_ROLE_ANIMATION

An object which is an animated image +

ATK_ROLE_ANIMATION

An object which is an animated image

ATK_ROLE_ARROW

An arrow in one of the four cardinal directions +

ATK_ROLE_ARROW

An arrow in one of the four cardinal directions

ATK_ROLE_CALENDAR

An object that displays a calendar and allows the user to select a date +

ATK_ROLE_CALENDAR

An object that displays a calendar and allows the user to select a date

ATK_ROLE_CANVAS

An object that can be drawn into and is used to trap events +

ATK_ROLE_CANVAS

An object that can be drawn into and is used to trap events

ATK_ROLE_CHECK_BOX

A choice that can be checked or unchecked and provides a separate indicator for the current state +

ATK_ROLE_CHECK_BOX

A choice that can be checked or unchecked and provides a separate indicator for the current state

ATK_ROLE_CHECK_MENU_ITEM

A menu item with a check box +

ATK_ROLE_CHECK_MENU_ITEM

A menu item with a check box

ATK_ROLE_COLOR_CHOOSER

A specialized dialog that lets the user choose a color +

ATK_ROLE_COLOR_CHOOSER

A specialized dialog that lets the user choose a color

ATK_ROLE_COLUMN_HEADER

The header for a column of data +

ATK_ROLE_COLUMN_HEADER

The header for a column of data

ATK_ROLE_COMBO_BOX

A list of choices the user can select from +

ATK_ROLE_COMBO_BOX

A collapsible list of choices the user can select from

ATK_ROLE_DATE_EDITOR

An object whose purpose is to allow a user to edit a date +

ATK_ROLE_DATE_EDITOR

An object whose purpose is to allow a user to edit a date

ATK_ROLE_DESKTOP_ICON

An inconifed internal frame within a DESKTOP_PANE +

ATK_ROLE_DESKTOP_ICON

An inconifed internal frame within a DESKTOP_PANE

ATK_ROLE_DESKTOP_FRAME

A pane that supports internal frames and iconified versions of those internal frames +

ATK_ROLE_DESKTOP_FRAME

A pane that supports internal frames and iconified versions of those internal frames

ATK_ROLE_DIAL

An object whose purpose is to allow a user to set a value +

ATK_ROLE_DIAL

An object whose purpose is to allow a user to set a value

ATK_ROLE_DIALOG

A top level window with title bar and a border +

ATK_ROLE_DIALOG

A top level window with title bar and a border

ATK_ROLE_DIRECTORY_PANE

A pane that allows the user to navigate through and select the contents of a directory +

ATK_ROLE_DIRECTORY_PANE

A pane that allows the user to navigate through and select the contents of a directory

ATK_ROLE_DRAWING_AREA

An object used for drawing custom user interface elements +

ATK_ROLE_DRAWING_AREA

An object used for drawing custom user interface elements

ATK_ROLE_FILE_CHOOSER

A specialized dialog that lets the user choose a file +

ATK_ROLE_FILE_CHOOSER

A specialized dialog that lets the user choose a file

ATK_ROLE_FILLER

A object that fills up space in a user interface +

ATK_ROLE_FILLER

A object that fills up space in a user interface

ATK_ROLE_FONT_CHOOSER

A specialized dialog that lets the user choose a font +

ATK_ROLE_FONT_CHOOSER

A specialized dialog that lets the user choose a font

ATK_ROLE_FRAME

A top level window with a title bar, border, menubar, etc. +

ATK_ROLE_FRAME

A top level window with a title bar, border, menubar, etc.

ATK_ROLE_GLASS_PANE

A pane that is guaranteed to be painted on top of all panes beneath it +

ATK_ROLE_GLASS_PANE

A pane that is guaranteed to be painted on top of all panes beneath it

ATK_ROLE_HTML_CONTAINER

A document container for HTML, whose children represent the document content +

ATK_ROLE_HTML_CONTAINER

A document container for HTML, whose children represent the document content

ATK_ROLE_ICON

A small fixed size picture, typically used to decorate components +

ATK_ROLE_ICON

A small fixed size picture, typically used to decorate components

ATK_ROLE_IMAGE

An object whose primary purpose is to display an image +

ATK_ROLE_IMAGE

An object whose primary purpose is to display an image

ATK_ROLE_INTERNAL_FRAME

A frame-like object that is clipped by a desktop pane +

ATK_ROLE_INTERNAL_FRAME

A frame-like object that is clipped by a desktop pane

ATK_ROLE_LABEL

An object used to present an icon or short string in an interface +

ATK_ROLE_LABEL

An object used to present an icon or short string in an interface

ATK_ROLE_LAYERED_PANE

A specialized pane that allows its children to be drawn in layers, providing a form of stacking order +

ATK_ROLE_LAYERED_PANE

A specialized pane that allows its children to be drawn in layers, providing a form of stacking order

ATK_ROLE_LIST

An object that presents a list of objects to the user and allows the user to select one or more of them +

ATK_ROLE_LIST

An object that presents a list of objects to the user and allows the user to select one or more of them

ATK_ROLE_LIST_ITEM

An object that represents an element of a list +

ATK_ROLE_LIST_ITEM

An object that represents an element of a list

ATK_ROLE_MENU

An object usually found inside a menu bar that contains a list of actions the user can choose from +

ATK_ROLE_MENU

An object usually found inside a menu bar that contains a list of actions the user can choose from

ATK_ROLE_MENU_BAR

An object usually drawn at the top of the primary dialog box of an application that contains a list of menus the user can choose from +

ATK_ROLE_MENU_BAR

An object usually drawn at the top of the primary dialog box of an application that contains a list of menus the user can choose from

ATK_ROLE_MENU_ITEM

An object usually contained in a menu that presents an action the user can choose +

ATK_ROLE_MENU_ITEM

An object usually contained in a menu that presents an action the user can choose

ATK_ROLE_OPTION_PANE

A specialized pane whose primary use is inside a DIALOG +

ATK_ROLE_OPTION_PANE

A specialized pane whose primary use is inside a DIALOG

ATK_ROLE_PAGE_TAB

An object that is a child of a page tab list +

ATK_ROLE_PAGE_TAB

An object that is a child of a page tab list

ATK_ROLE_PAGE_TAB_LIST

An object that presents a series of panels (or page tabs), one at a time, through some mechanism provided by the object +

ATK_ROLE_PAGE_TAB_LIST

An object that presents a series of panels (or page tabs), one at a time, through some mechanism provided by the object

ATK_ROLE_PANEL

A generic container that is often used to group objects +

ATK_ROLE_PANEL

A generic container that is often used to group objects

ATK_ROLE_PASSWORD_TEXT

A text object uses for passwords, or other places where the text content is not shown visibly to the user +

ATK_ROLE_PASSWORD_TEXT

A text object uses for passwords, or other places where the text content is not shown visibly to the user

ATK_ROLE_POPUP_MENU

A temporary window that is usually used to offer the user a list of choices, and then hides when the user selects one of those choices +

ATK_ROLE_POPUP_MENU

A temporary window that is usually used to offer the user a list of choices, and then hides when the user selects one of those choices

ATK_ROLE_PROGRESS_BAR

An object used to indicate how much of a task has been completed +

ATK_ROLE_PROGRESS_BAR

An object used to indicate how much of a task has been completed

ATK_ROLE_PUSH_BUTTON

An object the user can manipulate to tell the application to do something +

ATK_ROLE_PUSH_BUTTON

An object the user can manipulate to tell the application to do something

ATK_ROLE_RADIO_BUTTON

A specialized check box that will cause other radio buttons in the same group to become unchecked when this one is checked +

ATK_ROLE_RADIO_BUTTON

A specialized check box that will cause other radio buttons in the same group to become unchecked when this one is checked

ATK_ROLE_RADIO_MENU_ITEM

A check menu item which belongs to a group. At each instant exactly one of the radio menu items from a group is selected +

ATK_ROLE_RADIO_MENU_ITEM

A check menu item which belongs to a group. At each instant exactly one of the radio menu items from a group is selected

ATK_ROLE_ROOT_PANE

A specialized pane that has a glass pane and a layered pane as its children +

ATK_ROLE_ROOT_PANE

A specialized pane that has a glass pane and a layered pane as its children

ATK_ROLE_ROW_HEADER

The header for a row of data +

ATK_ROLE_ROW_HEADER

The header for a row of data

ATK_ROLE_SCROLL_BAR

An object usually used to allow a user to incrementally view a large amount of data. +

ATK_ROLE_SCROLL_BAR

An object usually used to allow a user to incrementally view a large amount of data.

ATK_ROLE_SCROLL_PANE

An object that allows a user to incrementally view a large amount of information +

ATK_ROLE_SCROLL_PANE

An object that allows a user to incrementally view a large amount of information

ATK_ROLE_SEPARATOR

An object usually contained in a menu to provide a visible and logical separation of the contents in a menu +

ATK_ROLE_SEPARATOR

An object usually contained in a menu to provide a visible and logical separation of the contents in a menu

ATK_ROLE_SLIDER

An object that allows the user to select from a bounded range +

ATK_ROLE_SLIDER

An object that allows the user to select from a bounded range

ATK_ROLE_SPLIT_PANE

A specialized panel that presents two other panels at the same time +

ATK_ROLE_SPLIT_PANE

A specialized panel that presents two other panels at the same time

ATK_ROLE_SPIN_BUTTON

An object used to get an integer or floating point number from the user +

ATK_ROLE_SPIN_BUTTON

An object used to get an integer or floating point number from the user

ATK_ROLE_STATUSBAR

An object which reports messages of minor importance to the user +

ATK_ROLE_STATUSBAR

An object which reports messages of minor importance to the user

ATK_ROLE_TABLE

An object used to represent information in terms of rows and columns +

ATK_ROLE_TABLE

An object used to represent information in terms of rows and columns

ATK_ROLE_TABLE_CELL

A cell in a table +

ATK_ROLE_TABLE_CELL

A cell in a table

ATK_ROLE_TABLE_COLUMN_HEADER

The header for a column of a table +

ATK_ROLE_TABLE_COLUMN_HEADER

The header for a column of a table

ATK_ROLE_TABLE_ROW_HEADER

The header for a row of a table +

ATK_ROLE_TABLE_ROW_HEADER

The header for a row of a table

ATK_ROLE_TEAR_OFF_MENU_ITEM

A menu item used to tear off and reattach its menu +

ATK_ROLE_TEAR_OFF_MENU_ITEM

A menu item used to tear off and reattach its menu

ATK_ROLE_TERMINAL

An object that represents an accessible terminal. Since: ATK-0.6 +

ATK_ROLE_TERMINAL

An object that represents an accessible terminal. Since: ATK-0.6

ATK_ROLE_TEXT

An object that presents text to the user +

ATK_ROLE_TEXT

An object that presents text to the user

ATK_ROLE_TOGGLE_BUTTON

A specialized push button that can be checked or unchecked, but does not provide a separate indicator for the current state +

ATK_ROLE_TOGGLE_BUTTON

A specialized push button that can be checked or unchecked, but does not provide a separate indicator for the current state

ATK_ROLE_TOOL_BAR

A bar or palette usually composed of push buttons or toggle buttons +

ATK_ROLE_TOOL_BAR

A bar or palette usually composed of push buttons or toggle buttons

ATK_ROLE_TOOL_TIP

An object that provides information about another object +

ATK_ROLE_TOOL_TIP

An object that provides information about another object

ATK_ROLE_TREE

An object used to represent hierarchical information to the user +

ATK_ROLE_TREE

An object used to represent hierarchical information to the user

ATK_ROLE_TREE_TABLE

An object capable of expanding and collapsing rows as well as showing multiple columns of data. Since: ATK-0.7 +

ATK_ROLE_TREE_TABLE

An object capable of expanding and collapsing rows as well as showing multiple columns of data. Since: ATK-0.7

ATK_ROLE_UNKNOWN

The object contains some Accessible information, but its role is not known +

ATK_ROLE_UNKNOWN

The object contains some Accessible information, but its role is not known

ATK_ROLE_VIEWPORT

An object usually used in a scroll pane +

ATK_ROLE_VIEWPORT

An object usually used in a scroll pane

ATK_ROLE_WINDOW

A top level window with no title or border. +

ATK_ROLE_WINDOW

A top level window with no title or border.

ATK_ROLE_HEADER

An object that serves as a document header. Since: ATK-1.1.1 +

ATK_ROLE_HEADER

An object that serves as a document header. Since: ATK-1.1.1

ATK_ROLE_FOOTER

An object that serves as a document footer. Since: ATK-1.1.1 +

ATK_ROLE_FOOTER

An object that serves as a document footer. Since: ATK-1.1.1

ATK_ROLE_PARAGRAPH

An object which is contains a paragraph of text content. Since: ATK-1.1.1 +

ATK_ROLE_PARAGRAPH

An object which is contains a paragraph of text content. Since: ATK-1.1.1

ATK_ROLE_RULER

An object which describes margins and tab stops, etc. for text objects which it controls (should have CONTROLLER_FOR relation to such). Since: ATK-1.1.1 +

ATK_ROLE_RULER

An object which describes margins and tab stops, etc. for text objects which it controls (should have CONTROLLER_FOR relation to such). Since: ATK-1.1.1

ATK_ROLE_APPLICATION

The object is an application object, which may contain ATK_ROLE_FRAME objects or other types of accessibles. The root accessible of any application's ATK hierarchy should have ATK_ROLE_APPLICATION. Since: ATK-1.1.4 +

ATK_ROLE_APPLICATION

The object is an application object, which may contain ATK_ROLE_FRAME objects or other types of accessibles. The root accessible of any application's ATK hierarchy should have ATK_ROLE_APPLICATION. Since: ATK-1.1.4

ATK_ROLE_AUTOCOMPLETE

The object is a dialog or list containing items for insertion into an entry widget, for instance a list of words for completion of a text entry. Since: ATK-1.3 +

ATK_ROLE_AUTOCOMPLETE

The object is a dialog or list containing items for insertion into an entry widget, for instance a list of words for completion of a text entry. Since: ATK-1.3

ATK_ROLE_EDITBAR

The object is an editable text object in a toolbar. Since: ATK-1.5 +

ATK_ROLE_EDITBAR

The object is an editable text object in a toolbar. Since: ATK-1.5

ATK_ROLE_EMBEDDED

The object is an embedded container within a document or panel. This role is a grouping "hint" indicating that the contained objects share a context. Since: ATK-1.7.2 +

ATK_ROLE_EMBEDDED

The object is an embedded container within a document or panel. This role is a grouping "hint" indicating that the contained objects share a context. Since: ATK-1.7.2

ATK_ROLE_ENTRY

The object is a component whose textual content may be entered or modified by the user, provided ATK_STATE_EDITABLE is present. Since: ATK-1.11 +

ATK_ROLE_ENTRY

The object is a component whose textual content may be entered or modified by the user, provided ATK_STATE_EDITABLE is present. Since: ATK-1.11

ATK_ROLE_CHART

The object is a graphical depiction of quantitative data. It may contain multiple subelements whose attributes and/or description may be queried to obtain both the quantitative data and information about how the data is being presented. The LABELLED_BY relation is particularly important in interpreting objects of this type, as is the accessible-description property. Since: ATK-1.11 +

ATK_ROLE_CHART

The object is a graphical depiction of quantitative data. It may contain multiple subelements whose attributes and/or description may be queried to obtain both the quantitative data and information about how the data is being presented. The LABELLED_BY relation is particularly important in interpreting objects of this type, as is the accessible-description property. Since: ATK-1.11

ATK_ROLE_CAPTION

The object contains descriptive information, usually textual, about another user interface element such as a table, chart, or image. Since: ATK-1.11 +

ATK_ROLE_CAPTION

The object contains descriptive information, usually textual, about another user interface element such as a table, chart, or image. Since: ATK-1.11

ATK_ROLE_DOCUMENT_FRAME

The object is a visual frame or container which contains a view of document content. Document frames may occur within another Document instance, in which case the second document may be said to be embedded in the containing instance. HTML frames are often ROLE_DOCUMENT_FRAME. Either this object, or a singleton descendant, should implement the Document interface. Since: ATK-1.11 +

ATK_ROLE_DOCUMENT_FRAME

The object is a visual frame or container which contains a view of document content. Document frames may occur within another Document instance, in which case the second document may be said to be embedded in the containing instance. HTML frames are often ROLE_DOCUMENT_FRAME. Either this object, or a singleton descendant, should implement the Document interface. Since: ATK-1.11

ATK_ROLE_HEADING

The object serves as a heading for content which follows it in a document. The 'heading level' of the heading, if availabe, may be obtained by querying the object's attributes. +

ATK_ROLE_HEADING

The object serves as a heading for content which follows it in a document. The 'heading level' of the heading, if availabe, may be obtained by querying the object's attributes.

ATK_ROLE_PAGE

The object is a containing instance which encapsulates a page of information. ATK_ROLE_PAGE is used in documents and content which support a paginated navigation model. Since: ATK-1.11 +

ATK_ROLE_PAGE

The object is a containing instance which encapsulates a page of information. ATK_ROLE_PAGE is used in documents and content which support a paginated navigation model. Since: ATK-1.11

ATK_ROLE_SECTION

The object is a containing instance of document content which constitutes a particular 'logical' section of the document. The type of content within a section, and the nature of the section division itself, may be obtained by querying the object's attributes. Sections may be nested. Since: ATK-1.11 +

ATK_ROLE_SECTION

The object is a containing instance of document content which constitutes a particular 'logical' section of the document. The type of content within a section, and the nature of the section division itself, may be obtained by querying the object's attributes. Sections may be nested. Since: ATK-1.11

ATK_ROLE_REDUNDANT_OBJECT

The object is redundant with another object in the hierarchy, and is exposed for purely technical reasons. Objects of this role should normally be ignored by clients. Since: ATK-1.11 +

ATK_ROLE_REDUNDANT_OBJECT

The object is redundant with another object in the hierarchy, and is exposed for purely technical reasons. Objects of this role should normally be ignored by clients. Since: ATK-1.11

ATK_ROLE_FORM

The object is a container for form controls, for instance as part of a +

ATK_ROLE_FORM

The object is a container for form controls, for instance as part of a web form or user-input form within a document. This role is primarily a tag/convenience for clients when navigating complex documents, it is not expected that ordinary GUI containers will always have ATK_ROLE_FORM. Since: ATK-1.12.0

ATK_ROLE_LINK

The object is a hypertext anchor, i.e. a "link" in a +

ATK_ROLE_LINK

The object is a hypertext anchor, i.e. a "link" in a hypertext document. Such objects are distinct from 'inline' content which may also use the Hypertext/Hyperlink interfaces to indicate the range/location within a text object where @@ -791,51 +729,110 @@

ATK_ROLE_INPUT_METHOD_WINDOW

The object is a window or similar viewport +

ATK_ROLE_INPUT_METHOD_WINDOW

The object is a window or similar viewport which is used to allow composition or input of a 'complex character', in other words it is an "input method window." Since: ATK-1.12.1

ATK_ROLE_LAST_DEFINED

not a valid role, used for finding end of the enumeration +

ATK_ROLE_TABLE_ROW

A row in a table. Since: ATK-2.1.0 +

ATK_ROLE_TREE_ITEM

An object that represents an element of a tree. Since: ATK-2.1.0 +

ATK_ROLE_DOCUMENT_SPREADSHEET

A document frame which contains a spreadsheet. Since: ATK-2.1.0 +

ATK_ROLE_DOCUMENT_PRESENTATION

A document frame which contains a presentation or slide content. Since: ATK-2.1.0 +

ATK_ROLE_DOCUMENT_TEXT

A document frame which contains textual content, such as found in a word processing application. Since: ATK-2.1.0 +

ATK_ROLE_DOCUMENT_WEB

A document frame which contains HTML or other markup suitable for display in a web browser. Since: ATK-2.1.0 +

ATK_ROLE_DOCUMENT_EMAIL

A document frame which contains email content to be displayed or composed either in plain text or HTML. Since: ATK-2.1.0 +

ATK_ROLE_COMMENT

An object found within a document and designed to present a comment, note, or other annotation. In some cases, this object might not be visible until activated. Since: ATK-2.1.0 +

ATK_ROLE_LIST_BOX

A non-collapsible list of choices the user can select from. Since: ATK-2.1.0 +

ATK_ROLE_GROUPING

A group of related widgets. This group typically has a label. Since: ATK-2.1.0 +

ATK_ROLE_IMAGE_MAP

An image map object. Usually a graphic with multiple hotspots, where each hotspot can be activated resulting in the loading of another document or section of a document. Since: ATK-2.1.0 +

ATK_ROLE_NOTIFICATION

A transitory object designed to present a message to the user, typically at the desktop level rather than inside a particular application. Since: ATK-2.1.0 +

ATK_ROLE_INFO_BAR

An object designed to present a message to the user within an existing window. Since: ATK-2.1.0 +

ATK_ROLE_LAST_DEFINED

not a valid role, used for finding end of the enumeration

-
+

atk_role_register ()

-
AtkRole             atk_role_register                   (const gchar *name);
-

-Registers the role specified by name.

+
AtkRole             atk_role_register                   (const gchar *name);

+Registers the role specified by name.

- + - +

name :

a character string describing the new role. -a character string describing the new role.

Returns :

an AtkRole for the new role. -an AtkRole for the new role.

-
+

enum AtkLayer

-
typedef enum
-{
+
typedef enum {
   ATK_LAYER_INVALID,
   ATK_LAYER_BACKGROUND,
   ATK_LAYER_CANVAS,
@@ -852,57 +849,56 @@
 

These enumerated "layer values" are used when determining which UI rendering layer a component is drawn into, which can help in making -determinations of when components occlude one another.

-

+determinations of when components occlude one another.

- - + - - + - - + - - + - - + - - + - - + - - +

ATK_LAYER_INVALID

The object does not have a layer +

ATK_LAYER_INVALID

The object does not have a layer

ATK_LAYER_BACKGROUND

This layer is reserved for the desktop background +

ATK_LAYER_BACKGROUND

This layer is reserved for the desktop background

ATK_LAYER_CANVAS

This layer is used for Canvas components +

ATK_LAYER_CANVAS

This layer is used for Canvas components

ATK_LAYER_WIDGET

This layer is normally used for components +

ATK_LAYER_WIDGET

This layer is normally used for components

ATK_LAYER_MDI

This layer is used for layered components +

ATK_LAYER_MDI

This layer is used for layered components

ATK_LAYER_POPUP

This layer is used for popup components, such as menus +

ATK_LAYER_POPUP

This layer is used for popup components, such as menus

ATK_LAYER_OVERLAY

This layer is reserved for future use. +

ATK_LAYER_OVERLAY

This layer is reserved for future use.

ATK_LAYER_WINDOW

This layer is used for toplevel windows. +

ATK_LAYER_WINDOW

This layer is used for toplevel windows.

-
+

AtkImplementor

typedef struct _AtkImplementor AtkImplementor;

@@ -910,7 +906,7 @@


-
+

AtkPropertyValues

typedef struct {
   const gchar  *property_name;
@@ -929,7 +925,8 @@
 with the old_value containing an AtkState value corresponding to focused
 and the property change handler will be called for the object which
 received the focus with the new_value containing an AtkState value
-corresponding to focused.

+corresponding to focused. +

The Atk PropertyValue structure is used when notifying a change in property. Currently, the only property for which old_value is used is @@ -944,37 +941,24 @@ -

const gchar *property_name;

- The name of the ATK property which is being presented or which has been changed. - +

const gchar *property_name;

+The name of the ATK property which is being presented or which has been changed. -

GValue old_value;

- The old property value, NULL; in some contexts this value is undefined (see note below). - +

GValue old_value;

+The old property value, NULL; in some contexts this value is undefined (see note below). -

GValue new_value;

- The new value of the named property. - +

GValue new_value;

+The new value of the named property.

-
+

AtkFunction ()

-
gboolean            (*AtkFunction)                      (gpointer data);
+
gboolean            (*AtkFunction)                      (gpointer data);

An AtkFunction is a function definition used for padding which has been added to class and interface structures to allow for expansion in the future. @@ -984,22 +968,20 @@

data :

-a gpointer to parameter data. - +a gpointer to parameter data.

Returns :

-Nothing useful, this is only a dummy prototype. - +Nothing useful, this is only a dummy prototype.

-
+

AtkPropertyChangeHandler ()

-
void                (*AtkPropertyChangeHandler)         (AtkObject *,
-                                                         AtkPropertyValues *);
+
void                (*AtkPropertyChangeHandler)         (AtkObject *Param1,
+                                                         AtkPropertyValues *Param2);

An AtkPropertyChangeHandler is a function which is executed when an AtkObject's property changes value. It is specified in a call to atk_object_connect_property_change_handler(). @@ -1009,483 +991,431 @@

Param1 :

- an AtkObject +an AtkObject

Param2 :

- an AtkPropertyValues +an AtkPropertyValues

-
+

atk_implementor_ref_accessible ()

-
AtkObject*          atk_implementor_ref_accessible      (AtkImplementor *implementor);
+
AtkObject *         atk_implementor_ref_accessible      (AtkImplementor *implementor);

Gets a reference to an object's AtkObject implementation, if -the object implements AtkObjectIface

-

+the object implements AtkObjectIface

- + -

implementor :

The GObject instance which should implement AtkImplementorIface -if a non-null return value is required. -The GObject instance which should implement AtkImplementorIface +if a non-null return value is required.

Returns :

a reference to an object's AtkObject implementation +a reference to an object's AtkObject +implementation. [transfer full]

-
+

atk_object_get_name ()

-
const gchar*        atk_object_get_name                 (AtkObject *accessible);
-

-Gets the accessible name of the accessible.

+
const gchar *       atk_object_get_name                 (AtkObject *accessible);

+Gets the accessible name of the accessible.

- - +

accessible :

an AtkObject +an AtkObject

Returns :

a character string representing the accessible name of the object. -a character string representing the accessible name of the object.

-
+

atk_object_get_description ()

-
const gchar*        atk_object_get_description          (AtkObject *accessible);
-

-Gets the accessible description of the accessible.

+
const gchar *       atk_object_get_description          (AtkObject *accessible);

+Gets the accessible description of the accessible.

- - +

accessible :

an AtkObject +an AtkObject

Returns :

a character string representing the accessible description -of the accessible. - -a character string representing the accessible description +of the accessible.

-
+

atk_object_get_parent ()

-
AtkObject*          atk_object_get_parent               (AtkObject *accessible);
-

-Gets the accessible parent of the accessible.

+
AtkObject *         atk_object_get_parent               (AtkObject *accessible);

+Gets the accessible parent of the accessible.

- -

accessible :

an AtkObject +an AtkObject

Returns :

a AtkObject representing the accessible parent of the accessible +a AtkObject representing the accessible parent +of the accessible. [transfer none]

-
+

atk_object_get_n_accessible_children ()

-
gint                atk_object_get_n_accessible_children
-                                                        (AtkObject *accessible);
-

-Gets the number of accessible children of the accessible.

+
gint                atk_object_get_n_accessible_children
+                                                        (AtkObject *accessible);

+Gets the number of accessible children of the accessible.

- - +

accessible :

an AtkObject +an AtkObject

Returns :

an integer representing the number of accessible children -of the accessible. -an integer representing the number of accessible children +of the accessible.

-
+

atk_object_ref_accessible_child ()

-
AtkObject*          atk_object_ref_accessible_child     (AtkObject *accessible,
-                                                         gint i);
+
AtkObject *         atk_object_ref_accessible_child     (AtkObject *accessible,
+                                                         gint i);

Gets a reference to the specified accessible child of the object. The accessible children are 0-based so the first accessible child is -at index 0, the second at index 1 and so on.

-

+at index 0, the second at index 1 and so on.

- - + -

accessible :

an AtkObject +an AtkObject

i :

a gint representing the position of the child, starting from 0 -a gint representing the position of the child, starting from 0

Returns :

an AtkObject representing the specified accessible child -of the accessible. +an AtkObject representing the specified +accessible child of the accessible. [transfer full]

-
+

atk_object_ref_relation_set ()

-
AtkRelationSet*     atk_object_ref_relation_set         (AtkObject *accessible);
-

-Gets the AtkRelationSet associated with the object.

+
AtkRelationSet *    atk_object_ref_relation_set         (AtkObject *accessible);

+Gets the AtkRelationSet associated with the object.

- -

accessible :

an AtkObject +an AtkObject

Returns :

an AtkRelationSet representing the relation set of the object. +an AtkRelationSet representing the relation set +of the object. [transfer full]

-
+

atk_object_get_layer ()

-
AtkLayer            atk_object_get_layer                (AtkObject *accessible);
-
+
AtkLayer            atk_object_get_layer                (AtkObject *accessible);
+

Warning

atk_object_get_layer is deprecated and should not be used in newly-written code. Use atk_component_get_layer instead.

-Gets the layer of the accessible.

-

+Gets the layer of the accessible.

- - +

accessible :

an AtkObject +an AtkObject

Returns :

an AtkLayer which is the layer of the accessible -an AtkLayer which is the layer of the accessible

-
+

atk_object_get_mdi_zorder ()

-
gint                atk_object_get_mdi_zorder           (AtkObject *accessible);
-
+
gint                atk_object_get_mdi_zorder           (AtkObject *accessible);
+

Warning

atk_object_get_mdi_zorder is deprecated and should not be used in newly-written code. Use atk_component_get_mdi_zorder instead.

Gets the zorder of the accessible. The value G_MININT will be returned -if the layer of the accessible is not ATK_LAYER_MDI.

-

+if the layer of the accessible is not ATK_LAYER_MDI.

- - +

accessible :

an AtkObject +an AtkObject

Returns :

a gint which is the zorder of the accessible, i.e. the depth at -which the component is shown in relation to other components in the same -container. - -a gint which is the zorder of the accessible, i.e. the depth at +which the component is shown in relation to other components in the same +container.

-
+

atk_object_get_role ()

-
AtkRole             atk_object_get_role                 (AtkObject *accessible);
-

-Gets the role of the accessible.

+
AtkRole             atk_object_get_role                 (AtkObject *accessible);

+Gets the role of the accessible.

- - +

accessible :

an AtkObject +an AtkObject

Returns :

an AtkRole which is the role of the accessible -an AtkRole which is the role of the accessible

-
+

atk_object_ref_state_set ()

-
AtkStateSet*        atk_object_ref_state_set            (AtkObject *accessible);
+
AtkStateSet *       atk_object_ref_state_set            (AtkObject *accessible);

Gets a reference to the state set of the accessible; the caller must -unreference it when it is no longer needed.

-

+unreference it when it is no longer needed.

- -

accessible :

an AtkObject +an AtkObject

Returns :

a reference to an AtkStateSet which is the state -set of the accessible +a reference to an AtkStateSet which is the state +set of the accessible. [transfer full]

-
+

atk_object_get_index_in_parent ()

-
gint                atk_object_get_index_in_parent      (AtkObject *accessible);
+
gint                atk_object_get_index_in_parent      (AtkObject *accessible);

Gets the 0-based index of this accessible in its parent; returns -1 if the -accessible does not have an accessible parent.

-

+accessible does not have an accessible parent.

- - +

accessible :

an AtkObject +an AtkObject

Returns :

an integer which is the index of the accessible in its parent -an integer which is the index of the accessible in its parent

-
+

atk_object_set_name ()

-
void                atk_object_set_name                 (AtkObject *accessible,
-                                                         const gchar *name);
-

-Sets the accessible name of the accessible.

+
void                atk_object_set_name                 (AtkObject *accessible,
+                                                         const gchar *name);

+Sets the accessible name of the accessible.

- - +

accessible :

an AtkObject +an AtkObject

name :

a character string to be set as the accessible name -a character string to be set as the accessible name

-
+

atk_object_set_description ()

-
void                atk_object_set_description          (AtkObject *accessible,
-                                                         const gchar *description);
-

-Sets the accessible description of the accessible.

+
void                atk_object_set_description          (AtkObject *accessible,
+                                                         const gchar *description);

+Sets the accessible description of the accessible.

- - +

accessible :

an AtkObject +an AtkObject

description :

a character string to be set as the accessible description -a character string to be set as the accessible description

-
+

atk_object_set_parent ()

-
void                atk_object_set_parent               (AtkObject *accessible,
-                                                         AtkObject *parent);
-

-Sets the accessible parent of the accessible.

+
void                atk_object_set_parent               (AtkObject *accessible,
+                                                         AtkObject *parent);

+Sets the accessible parent of the accessible.

- - +

accessible :

an AtkObject +an AtkObject

parent :

an AtkObject to be set as the accessible parent -an AtkObject to be set as the accessible parent

-
+

atk_object_set_role ()

-
void                atk_object_set_role                 (AtkObject *accessible,
-                                                         AtkRole role);
-

-Sets the role of the accessible.

+
void                atk_object_set_role                 (AtkObject *accessible,
+                                                         AtkRole role);

+Sets the role of the accessible.

- - +

accessible :

an AtkObject +an AtkObject

role :

an AtkRole to be set as the role -an AtkRole to be set as the role

-
+

atk_object_connect_property_change_handler ()

-
guint               atk_object_connect_property_change_handler
-                                                        (AtkObject *accessible,
-                                                         AtkPropertyChangeHandler *handler);
-

-Specifies a function to be called when a property changes value.

+
guint               atk_object_connect_property_change_handler
+                                                        (AtkObject *accessible,
+                                                         AtkPropertyChangeHandler *handler);

+Specifies a function to be called when a property changes value.

- - + - @@ -1493,197 +1423,167 @@

accessible :

an AtkObject +an AtkObject

handler :

a function to be called when a property changes its value -a function to be called when a property changes its value

Returns :

a guint which is the handler id used in +a guint which is the handler id used in atk_object_remove_property_change_handler()

-
+

atk_object_remove_property_change_handler ()

-
void                atk_object_remove_property_change_handler
-                                                        (AtkObject *accessible,
-                                                         guint handler_id);
-

-Removes a property change handler.

+
void                atk_object_remove_property_change_handler
+                                                        (AtkObject *accessible,
+                                                         guint handler_id);

+Removes a property change handler.

- - +

accessible :

an AtkObject +an AtkObject

handler_id :

a guint which identifies the handler to be removed. -a guint which identifies the handler to be removed.

-
+

atk_object_notify_state_change ()

-
void                atk_object_notify_state_change      (AtkObject *accessible,
-                                                         AtkState state,
-                                                         gboolean value);
-

-Emits a state-change signal for the specified state.

+
void                atk_object_notify_state_change      (AtkObject *accessible,
+                                                         AtkState state,
+                                                         gboolean value);

+Emits a state-change signal for the specified state.

- - + - +

accessible :

an AtkObject +an AtkObject

state :

an AtkState whose state is changed -an AtkState whose state is changed

value :

a gboolean which indicates whether the state is being set on or off -a gboolean which indicates whether the state is being set on or off

-
+

atk_object_initialize ()

-
void                atk_object_initialize               (AtkObject *accessible,
-                                                         gpointer data);
+
void                atk_object_initialize               (AtkObject *accessible,
+                                                         gpointer data);

This function is called when implementing subclasses of AtkObject. It does initialization required for the new object. It is intended -that this function should called only in the ..._new() functions used -to create an instance of a subclass of AtkObject

-

+that this function should called only in the ..._new() functions used +to create an instance of a subclass of AtkObject

- - +

accessible :

a AtkObject +a AtkObject

data :

a gpointer which identifies the object for which the AtkObject was created. -a gpointer which identifies the object for which the AtkObject was created.

-
+

atk_object_add_relationship ()

-
gboolean            atk_object_add_relationship         (AtkObject *object,
-                                                         AtkRelationType relationship,
-                                                         AtkObject *target);
-

-Adds a relationship of the specified type with the specified target.

+
gboolean            atk_object_add_relationship         (AtkObject *object,
+                                                         AtkRelationType relationship,
+                                                         AtkObject *target);

+Adds a relationship of the specified type with the specified target.

- + - + - + - +

object :

The AtkObject to which an AtkRelation is to be added. -The AtkObject to which an AtkRelation is to be added.

relationship :

The AtkRelationType of the relation -The AtkRelationType of the relation

target :

The AtkObject which is to be the target of the relation. -The AtkObject which is to be the target of the relation.

Returns :

TRUE if the relationship is added. -TRUE if the relationship is added.

-
+

atk_object_remove_relationship ()

-
gboolean            atk_object_remove_relationship      (AtkObject *object,
-                                                         AtkRelationType relationship,
-                                                         AtkObject *target);
-

-Removes a relationship of the specified type with the specified target.

+
gboolean            atk_object_remove_relationship      (AtkObject *object,
+                                                         AtkRelationType relationship,
+                                                         AtkObject *target);

+Removes a relationship of the specified type with the specified target.

- + - + - + - +

object :

The AtkObject from which an AtkRelation is to be removed. -The AtkObject from which an AtkRelation is to be removed.

relationship :

The AtkRelationType of the relation -The AtkRelationType of the relation

target :

The AtkObject which is the target of the relation to be removed. -The AtkObject which is the target of the relation to be removed.

Returns :

TRUE if the relationship is removed. -TRUE if the relationship is removed.

-
+

atk_object_get_attributes ()

-
AtkAttributeSet*    atk_object_get_attributes           (AtkObject *accessible);
+
AtkAttributeSet *   atk_object_get_attributes           (AtkObject *accessible);

Get a list of properties applied to this object as a whole, as an AtkAttributeSet consisting of name-value pairs. As such these attributes may be considered weakly-typed properties or annotations, as distinct from strongly-typed object data available via other get/set methods. -Not all objects have explicit "name-value pair" AtkAttributeSet properties.

-

+Not all objects have explicit "name-value pair" AtkAttributeSet properties.

- + - @@ -1691,223 +1591,184 @@

Since 1.12


-
+

atk_role_get_name ()

-
const gchar*        atk_role_get_name                   (AtkRole role);
-

-Gets the description string describing the AtkRole role.

+
const gchar *       atk_role_get_name                   (AtkRole role);

+Gets the description string describing the AtkRole role.

accessible :

An AtkObject. -An AtkObject.

Returns :

an AtkAttributeSet consisting of all explicit properties/annotations applied to -the object, or an empty set if the object has no name-value pair attributes assigned to it. +an AtkAttributeSet consisting of all explicit +properties/annotations applied to the object, or an empty set if the object +has no name-value pair attributes assigned to it. [transfer none]
- + - +

role :

The AtkRole whose name is required -The AtkRole whose name is required

Returns :

the string describing the AtkRole -the string describing the AtkRole

-
+

atk_role_get_localized_name ()

-
const gchar*        atk_role_get_localized_name         (AtkRole role);
-

-Gets the localized description string describing the AtkRole role.

+
const gchar *       atk_role_get_localized_name         (AtkRole role);

+Gets the localized description string describing the AtkRole role.

- + - +

role :

The AtkRole whose localized name is required -The AtkRole whose localized name is required

Returns :

the localized string describing the AtkRole -the localized string describing the AtkRole

-
+

atk_role_for_name ()

-
AtkRole             atk_role_for_name                   (const gchar *name);
-

-Get the AtkRole type corresponding to a rolew name.

+
AtkRole             atk_role_for_name                   (const gchar *name);

+Get the AtkRole type corresponding to a rolew name.

- + - +or ATK_ROLE_INVALID if no matching role is found.

name :

a string which is the (non-localized) name of an ATK role. -a string which is the (non-localized) name of an ATK role.

Returns :

the AtkRole enumerated type corresponding to the specified +the AtkRole enumerated type corresponding to the specified name, - or ATK_ROLE_INVALID if no matching role is found. -
-
+

Property Details

-
+

The "accessible-component-layer" property

-
  "accessible-component-layer" gint                  : Read
+
  "accessible-component-layer" gint                  : Read

The accessible layer of this object.

Allowed values: >= 0

Default value: 0


-
+

The "accessible-component-mdi-zorder" property

-
  "accessible-component-mdi-zorder" gint                  : Read
+
  "accessible-component-mdi-zorder" gint                  : Read

The accessible MDI value of this object.

Default value: -2147483648


-
+

The "accessible-description" property

-
  "accessible-description"   gchar*                : Read / Write
+
  "accessible-description"   gchar*                : Read / Write

Description of an object, formatted for assistive technology access.

Default value: NULL


-
+

The "accessible-hypertext-nlinks" property

-
  "accessible-hypertext-nlinks" gint                  : Read
+
  "accessible-hypertext-nlinks" gint                  : Read

The number of links which the current AtkHypertext has.

Allowed values: >= 0

Default value: 0


-
+

The "accessible-name" property

-
  "accessible-name"          gchar*                : Read / Write
+
  "accessible-name"          gchar*                : Read / Write

Object instance's name formatted for assistive technology access.

Default value: NULL


-
+

The "accessible-parent" property

-
  "accessible-parent"        AtkObject*            : Read / Write
+
  "accessible-parent"        AtkObject*            : Read / Write

Is used to notify that the parent has changed.


-
+

The "accessible-role" property

-
  "accessible-role"          gint                  : Read / Write
+
  "accessible-role"          gint                  : Read / Write

The accessible role of this object.

Allowed values: >= 0

Default value: 0


-
+

The "accessible-table-caption" property

-
  "accessible-table-caption" gchar*                : Read / Write
+
  "accessible-table-caption" gchar*                : Read / Write

Is used to notify that the table caption has changed; this property should not be used. accessible-table-caption-object should be used instead.

Default value: NULL


-
+

The "accessible-table-caption-object" property

-
  "accessible-table-caption-object" AtkObject*            : Read / Write
+
  "accessible-table-caption-object" AtkObject*            : Read / Write

Is used to notify that the table caption has changed.


-
+

The "accessible-table-column-description" property

-
  "accessible-table-column-description" gchar*                : Read / Write
+
  "accessible-table-column-description" gchar*                : Read / Write

Is used to notify that the table column description has changed.

Default value: NULL


-
+

The "accessible-table-column-header" property

-
  "accessible-table-column-header" AtkObject*            : Read / Write
+
  "accessible-table-column-header" AtkObject*            : Read / Write

Is used to notify that the table column header has changed.


-
+

The "accessible-table-row-description" property

-
  "accessible-table-row-description" gchar*                : Read / Write
+
  "accessible-table-row-description" gchar*                : Read / Write

Is used to notify that the table row description has changed.

Default value: NULL


-
+

The "accessible-table-row-header" property

-
  "accessible-table-row-header" AtkObject*            : Read / Write
+
  "accessible-table-row-header" AtkObject*            : Read / Write

Is used to notify that the table row header has changed.


-
+

The "accessible-table-summary" property

-
  "accessible-table-summary" AtkObject*            : Read / Write
+
  "accessible-table-summary" AtkObject*            : Read / Write

Is used to notify that the table summary has changed.


-
+

The "accessible-value" property

-
  "accessible-value"         gdouble               : Read / Write
+
  "accessible-value"         gdouble               : Read / Write

Is used to notify that the value has changed.

Allowed values: >= 0

Default value: 0

-
+

Signal Details

-
+

The "active-descendant-changed" signal

-
void                user_function                      (AtkObject *atkobject,
-                                                        gpointer   arg1,
-                                                        gpointer   user_data)      : Run Last / Has Details
+
void                user_function                      (AtkObject *atkobject,
+                                                        gpointer   arg1,
+                                                        gpointer   user_data)      : Has Details

The "active-descendant-changed" signal is emitted by an object which has the state ATK_STATE_MANAGES_DESCENDANTS when the focus object in the @@ -1919,13 +1780,11 @@

atkobject :

-the object which received the signal. - +the object which received the signal.

arg1 :

-the newly focused object. - +the newly focused object.

user_data :

@@ -1935,18 +1794,12 @@

-
+

The "children-changed" signal

-
void                user_function                      (AtkObject *atkobject,
-                                                        guint      arg1,
-                                                        gpointer   arg2,
-                                                        gpointer   user_data)      : Run Last / Has Details
+
void                user_function                      (AtkObject *atkobject,
+                                                        guint      arg1,
+                                                        gpointer   arg2,
+                                                        gpointer   user_data)      : Has Details

The signal "children-changed" is emitted when a child is added or removed form an object. It supports two details: "add" and "remove" @@ -1956,18 +1809,15 @@

atkobject :

-the object which received the signal. - +the object which received the signal.

arg1 :

-The index of the added or removed child - +The index of the added or removed child

arg2 :

-A gpointer to the child AtkObject which was added or removed - +A gpointer to the child AtkObject which was added or removed

user_data :

@@ -1977,15 +1827,11 @@

-
+

The "focus-event" signal

-
void                user_function                      (AtkObject *atkobject,
-                                                        gboolean   arg1,
-                                                        gpointer   user_data)      : Run Last
+
void                user_function                      (AtkObject *atkobject,
+                                                        gboolean   arg1,
+                                                        gpointer   user_data)      : Run Last

The signal "focus-event" is emitted when an object gains or loses focus.

@@ -1994,13 +1840,11 @@

atkobject :

-the object which received the signal. - +the object which received the signal.

arg1 :

-A boolean value which indicates whether the object gained or lost focus. - +A boolean value which indicates whether the object gained or lost focus.

user_data :

@@ -2010,15 +1854,11 @@

-
+

The "property-change" signal

-
void                user_function                      (AtkObject *atkobject,
-                                                        gpointer   arg1,
-                                                        gpointer   user_data)      : Run Last / Has Details
+
void                user_function                      (AtkObject *atkobject,
+                                                        gpointer   arg1,
+                                                        gpointer   user_data)      : Has Details

The signal "property-change" is emitted when an object's property value changes. The detail identifies the name of the property whose @@ -2029,13 +1869,11 @@

atkobject :

-the object which received the signal. - +the object which received the signal.

arg1 :

-The new value of the property which changed. - +The new value of the property which changed.

user_data :

@@ -2045,18 +1883,12 @@

-
+

The "state-change" signal

-
void                user_function                      (AtkObject *atkobject,
-                                                        gchar     *arg1,
-                                                        gboolean   arg2,
-                                                        gpointer   user_data)      : Run Last / Has Details
+
void                user_function                      (AtkObject *atkobject,
+                                                        gchar     *arg1,
+                                                        gboolean   arg2,
+                                                        gpointer   user_data)      : Has Details

The "state-change" signal is emitted when an object's state changes. The detail value identifies the state type which has changed. @@ -2066,18 +1898,15 @@

atkobject :

-the object which received the signal. - +the object which received the signal.

arg1 :

-The name of the state which has changed - +The name of the state which has changed

arg2 :

-A boolean which indicates whether the state has been set or unset. - +A boolean which indicates whether the state has been set or unset.

user_data :

@@ -2087,12 +1916,10 @@

-
+

The "visible-data-changed" signal

-
void                user_function                      (AtkObject *atkobject,
-                                                        gpointer   user_data)      : Run Last
+
void                user_function                      (AtkObject *atkobject,
+                                                        gpointer   user_data)      : Run Last

The "visible-data-changed" signal is emitted when the visual appearance of the object changed. @@ -2102,8 +1929,7 @@

atkobject :

-the object which received the signal. - +the object which received the signal.

user_data :

@@ -2113,18 +1939,16 @@
-
+

See Also

See also: AtkObjectFactory, AtkRegistry. -( GTK+ users see also GtkAccessible). +( GTK+ users see also GtkAccessible).

+ Generated by GTK-Doc V1.17.1
- + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkRegistry.html atk1.0-2.2.0/docs/html/AtkRegistry.html --- atk1.0-1.30.0/docs/html/AtkRegistry.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkRegistry.html 2011-09-26 22:25:58.000000000 +0000 @@ -6,23 +6,15 @@ - + - + - - - - - - - - - + @@ -30,13 +22,13 @@ -
+
@@ -46,40 +38,27 @@
-
+

Synopsis

-
-                    AtkRegistry;
-void                atk_registry_set_factory_type       (AtkRegistry *registry,
-                                                         GType type,
-                                                         GType factory_type);
-GType               atk_registry_get_factory_type       (AtkRegistry *registry,
-                                                         GType type);
-AtkObjectFactory*   atk_registry_get_factory            (AtkRegistry *registry,
-                                                         GType type);
-AtkRegistry*        atk_get_default_registry            (void);
+
                    AtkRegistry;
+void                atk_registry_set_factory_type       (AtkRegistry *registry,
+                                                         GType type,
+                                                         GType factory_type);
+GType               atk_registry_get_factory_type       (AtkRegistry *registry,
+                                                         GType type);
+AtkObjectFactory *  atk_registry_get_factory            (AtkRegistry *registry,
+                                                         GType type);
+AtkRegistry *       atk_get_default_registry            (void);
 
-
+

Object Hierarchy

-  GObject
+  GObject
    +----AtkRegistry
 
-
+

Description

The AtkRegistry is normally used to create appropriate ATK "peers" for user @@ -89,9 +68,9 @@ appropriate GType for application custom widget classes.

-
+

Details

-
+

AtkRegistry

typedef struct _AtkRegistry AtkRegistry;

@@ -99,128 +78,101 @@


-
+

atk_registry_set_factory_type ()

-
void                atk_registry_set_factory_type       (AtkRegistry *registry,
-                                                         GType type,
-                                                         GType factory_type);
-

-Associate an AtkObjectFactory subclass with a GType. Note: +

void                atk_registry_set_factory_type       (AtkRegistry *registry,
+                                                         GType type,
+                                                         GType factory_type);
+

+Associate an AtkObjectFactory subclass with a GType. Note: The associated factory_type will thereafter be responsible for the creation of new AtkObject implementations for instances -appropriate for type.

-

+appropriate for type.

- + - + - +

registry :

the AtkRegistry in which to register the type association -the AtkRegistry in which to register the type association

type :

an AtkObject type -an AtkObject type

factory_type :

an AtkObjectFactory type to associate with type. Must -implement AtkObject appropriate for type. -an AtkObjectFactory type to associate with type. Must +implement AtkObject appropriate for type.

-
+

atk_registry_get_factory_type ()

-
GType               atk_registry_get_factory_type       (AtkRegistry *registry,
-                                                         GType type);
-

-Provides a GType indicating the AtkObjectFactory subclass -associated with type.

+
GType               atk_registry_get_factory_type       (AtkRegistry *registry,
+                                                         GType type);

+Provides a GType indicating the AtkObjectFactory subclass +associated with type.

- - + -

registry :

an AtkRegistry +an AtkRegistry

type :

a GType with which to look up the associated AtkObjectFactory -subclass -a GType with which to look up the associated AtkObjectFactory +subclass

Returns :

a GType associated with type type +a GType associated with type type

-
+

atk_registry_get_factory ()

-
AtkObjectFactory*   atk_registry_get_factory            (AtkRegistry *registry,
-                                                         GType type);
-

-Gets an AtkObjectFactory appropriate for creating AtkObjects -appropriate for type.

+
AtkObjectFactory *  atk_registry_get_factory            (AtkRegistry *registry,
+                                                         GType type);

+Gets an AtkObjectFactory appropriate for creating AtkObjects +appropriate for type.

- - -

registry :

an AtkRegistry +an AtkRegistry

type :

a GType with which to look up the associated AtkObjectFactory +a GType with which to look up the associated AtkObjectFactory

Returns :

an AtkObjectFactory appropriate for creating AtkObjects -appropriate for type. +an AtkObjectFactory appropriate for creating +AtkObjects appropriate for type. [transfer none]

-
+

atk_get_default_registry ()

-
AtkRegistry*        atk_get_default_registry            (void);
+
AtkRegistry *       atk_get_default_registry            (void);

Gets a default implementation of the AtkObjectFactory/type registry. @@ -228,15 +180,14 @@ registry for registering new AtkObject factories. Following a call to this function, maintainers may call atk_registry_set_factory_type() to associate an AtkObjectFactory subclass with the GType of objects -for whom accessibility information will be provided.

-

+for whom accessibility information will be provided.

-

Returns :

a default implementation of the AtkObjectFactory/type -registry +a default implementation of the +AtkObjectFactory/type registry. [transfer full]
@@ -245,6 +196,6 @@
+ Generated by GTK-Doc V1.17.1
- + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkRelation.html atk1.0-2.2.0/docs/html/AtkRelation.html --- atk1.0-1.30.0/docs/html/AtkRelation.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkRelation.html 2011-09-26 22:25:58.000000000 +0000 @@ -8,16 +8,8 @@ - + - - - - - - - - @@ -30,15 +22,15 @@ -
+
@@ -48,52 +40,39 @@
-
+ -
+

Object Hierarchy

-  GObject
+  GObject
    +----AtkRelation
 
-
+

Properties

-  "relation-type"            AtkRelationType       : Read / Write
-  "target"                   GValueArray*          : Read / Write
+  "relation-type"            AtkRelationType       : Read / Write
+  "target"                   GValueArray*          : Read / Write
 
-
+

Description

An AtkRelation describes a relation between an object and one or more @@ -101,20 +80,19 @@ are defined as an AtkRelationSet, which is a set of AtkRelations.

-
+

Details

-
-

AtkRelation

-
typedef struct _AtkRelation AtkRelation;
+
+

struct AtkRelation

+
struct AtkRelation;

The AtkRelation structure should not be accessed directly.


-
+

enum AtkRelationType

-
typedef enum
-{
+
typedef enum {
   ATK_RELATION_NULL = 0,
   ATK_RELATION_CONTROLLED_BY,
   ATK_RELATION_CONTROLLER_FOR,
@@ -136,327 +114,330 @@
 } AtkRelationType;
 

-Describes the type of the relation

-

+Describes the type of the relation

- - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - +

ATK_RELATION_NULL

Not used, represens "no relationship" or an error condition. +

ATK_RELATION_NULL

Not used, represens "no relationship" or an error condition.

ATK_RELATION_CONTROLLED_BY

Indicates an object controlled by one or more target objects. +

ATK_RELATION_CONTROLLED_BY

Indicates an object controlled by one or more target objects.

ATK_RELATION_CONTROLLER_FOR

Indicates an object is an controller for one or more target objects. +

ATK_RELATION_CONTROLLER_FOR

Indicates an object is an controller for one or more target objects.

ATK_RELATION_LABEL_FOR

Indicates an object is a label for one or more target objects. +

ATK_RELATION_LABEL_FOR

Indicates an object is a label for one or more target objects.

ATK_RELATION_LABELLED_BY

Indicates an object is labelled by one or more target objects. +

ATK_RELATION_LABELLED_BY

Indicates an object is labelled by one or more target objects.

ATK_RELATION_MEMBER_OF

Indicates an object is a member of a group of one or more target objects. +

ATK_RELATION_MEMBER_OF

Indicates an object is a member of a group of one or more target objects.

ATK_RELATION_NODE_CHILD_OF

Indicates an object is a cell in a treetable which is displayed because a cell in the same column is expanded and identifies that cell. +

ATK_RELATION_NODE_CHILD_OF

Indicates an object is a cell in a treetable which is displayed because a cell in the same column is expanded and identifies that cell.

ATK_RELATION_FLOWS_TO

Indicates that the object has content that flows logically to another +

ATK_RELATION_FLOWS_TO

Indicates that the object has content that flows logically to another AtkObject in a sequential way, (for instance text-flow).

ATK_RELATION_FLOWS_FROM

Indicates that the object has content that flows logically from +

ATK_RELATION_FLOWS_FROM

Indicates that the object has content that flows logically from another AtkObject in a sequential way, (for instance text-flow).

ATK_RELATION_SUBWINDOW_OF

Indicates a subwindow attached to a component but otherwise has no connection in the UI heirarchy to that component. +

ATK_RELATION_SUBWINDOW_OF

Indicates a subwindow attached to a component but otherwise has no connection in the UI heirarchy to that component.

ATK_RELATION_EMBEDS

Indicates that the object visually embeds +

ATK_RELATION_EMBEDS

Indicates that the object visually embeds another object's content, i.e. this object's content flows around another's content.

ATK_RELATION_EMBEDDED_BY

Inverse of ATK_RELATION_EMBEDS, indicates that +

ATK_RELATION_EMBEDDED_BY

Inverse of ATK_RELATION_EMBEDS, indicates that this object's content is visualy embedded in another object.

ATK_RELATION_POPUP_FOR

Indicates that an object is a popup for another object. +

ATK_RELATION_POPUP_FOR

Indicates that an object is a popup for another object.

ATK_RELATION_PARENT_WINDOW_OF

Indicates that an object is a parent window of another object. +

ATK_RELATION_PARENT_WINDOW_OF

Indicates that an object is a parent window of another object.

ATK_RELATION_DESCRIBED_BY

Indicates that another object provides descriptive information about this object; more verbose than ATK_RELATION_LABELLED_BY. +

ATK_RELATION_DESCRIBED_BY

Indicates that another object provides descriptive information about this object; more verbose than ATK_RELATION_LABELLED_BY.

ATK_RELATION_DESCRIPTION_FOR

Indicates that an object provides descriptive information about another object; more verbose than ATK_RELATION_LABEL_FOR. +

ATK_RELATION_DESCRIPTION_FOR

Indicates that an object provides descriptive information about another object; more verbose than ATK_RELATION_LABEL_FOR.

ATK_RELATION_NODE_PARENT_OF

Indicates an object is a cell in a treetable and is expanded to display other cells in the same column. +

ATK_RELATION_NODE_PARENT_OF

Indicates an object is a cell in a treetable and is expanded to display other cells in the same column.

ATK_RELATION_LAST_DEFINED

Not used, this value indicates the end of the enumeration. +

ATK_RELATION_LAST_DEFINED

Not used, this value indicates the end of the enumeration.

-
+

atk_relation_type_register ()

-
AtkRelationType     atk_relation_type_register          (const gchar *name);
-

-Associate name with a new AtkRelationType

+
AtkRelationType     atk_relation_type_register          (const gchar *name);

+Associate name with a new AtkRelationType

- + -

name :

a name string -a name string

Returns :

an AtkRelationType associated with name +an AtkRelationType associated with name

-
+

atk_relation_type_get_name ()

-
const gchar*        atk_relation_type_get_name          (AtkRelationType type);
-

-Gets the description string describing the AtkRelationType type.

+
const gchar *       atk_relation_type_get_name          (AtkRelationType type);

+Gets the description string describing the AtkRelationType type.

- + - +

type :

The AtkRelationType whose name is required -The AtkRelationType whose name is required

Returns :

the string describing the AtkRelationType -the string describing the AtkRelationType

-
+

atk_relation_type_for_name ()

-
AtkRelationType     atk_relation_type_for_name          (const gchar *name);
-

-Get the AtkRelationType type corresponding to a relation name.

+
AtkRelationType     atk_relation_type_for_name          (const gchar *name);

+Get the AtkRelationType type corresponding to a relation name.

- + - +

name :

a string which is the (non-localized) name of an ATK relation type. -a string which is the (non-localized) name of an ATK relation type.

Returns :

the AtkRelationType enumerated type corresponding to the specified name, - or ATK_RELATION_NULL if no matching relation type is found. -the AtkRelationType enumerated type corresponding to the specified name, +or ATK_RELATION_NULL if no matching relation type is found.

-
+

atk_relation_new ()

-
AtkRelation*        atk_relation_new                    (AtkObject **targets,
-                                                         gint n_targets,
-                                                         AtkRelationType relationship);
+
AtkRelation *       atk_relation_new                    (AtkObject **targets,
+                                                         gint n_targets,
+                                                         AtkRelationType relationship);

Create a new relation for the specified key and the specified list -of targets. See also atk_object_add_relationship().

-

+of targets. See also atk_object_add_relationship().

- - - -

targets :

an array of pointers to AtkObjects +an array of pointers to AtkObjects

n_targets :

number of AtkObjects pointed to by targets +number of AtkObjects pointed to by targets

relationship :

an AtkRelationType with which to create the new - AtkRelation +an AtkRelationType with which to create the new +AtkRelation

Returns :

a pointer to a new AtkRelation +a pointer to a new AtkRelation

-
+

atk_relation_get_relation_type ()

-
AtkRelationType     atk_relation_get_relation_type      (AtkRelation *relation);
-

-Gets the type of relation

+
AtkRelationType     atk_relation_get_relation_type      (AtkRelation *relation);

+Gets the type of relation

- -

relation :

an AtkRelation +an AtkRelation

Returns :

the type of relation +the type of relation

-
+

atk_relation_get_target ()

-
GPtrArray*          atk_relation_get_target             (AtkRelation *relation);
-

-Gets the target list of relation

+
GPtrArray *         atk_relation_get_target             (AtkRelation *relation);

+Gets the target list of relation

- -

relation :

an AtkRelation +an AtkRelation

Returns :

the target list of relation +the target list of relation. [transfer none]

-
+

atk_relation_add_target ()

-
void                atk_relation_add_target             (AtkRelation *relation,
-                                                         AtkObject *target);
+
void                atk_relation_add_target             (AtkRelation *relation,
+                                                         AtkObject *target);

Adds the specified AtkObject to the target for the relation, if it is -not already present. See also atk_object_add_relationship().

-

+not already present. See also atk_object_add_relationship().

- -

relation :

an AtkRelation +an AtkRelation

target :

an AtkObject +an AtkObject

Since 1.9

+
+
+

atk_relation_remove_target ()

+
gboolean            atk_relation_remove_target          (AtkRelation *relation,
+                                                         AtkObject *target);
+

+Remove the specified AtkObject from the target for the relation. +

+
++ + + + + + + + + + + + + + +

relation :

an AtkRelation +

target :

an AtkObject +

Returns :

TRUE if the removal is successful.
+
-
+

Property Details

-
+

The "relation-type" property

-
  "relation-type"            AtkRelationType       : Read / Write
+
  "relation-type"            AtkRelationType       : Read / Write

The type of the relation.

Default value: ATK_RELATION_NULL


-
+

The "target" property

-
  "target"                   GValueArray*          : Read / Write
+
  "target"                   GValueArray*          : Read / Write

An array of the targets for the relation.

+ Generated by GTK-Doc V1.17.1
- + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkRelationSet.html atk1.0-2.2.0/docs/html/AtkRelationSet.html --- atk1.0-1.30.0/docs/html/AtkRelationSet.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkRelationSet.html 2011-09-26 22:25:58.000000000 +0000 @@ -8,16 +8,8 @@ - + - - - - - - - - @@ -30,13 +22,13 @@ -
+
@@ -45,45 +37,36 @@
-
+ -
+

Object Hierarchy

-  GObject
+  GObject
    +----AtkRelationSet
 
-
+

Description

The AtkRelationSet held by an object establishes its relationships with @@ -94,9 +77,9 @@ "flows" between them, among other types of possible relationships.

-
+

Details

-
+

AtkRelationSet

typedef struct _AtkRelationSet AtkRelationSet;

@@ -104,235 +87,217 @@


-
+

atk_relation_set_new ()

-
AtkRelationSet*     atk_relation_set_new                (void);
-

-Creates a new empty relation set.

+
AtkRelationSet *    atk_relation_set_new                (void);

+Creates a new empty relation set.

-

Returns :

a new AtkRelationSet +a new AtkRelationSet

-
+

atk_relation_set_contains ()

-
gboolean            atk_relation_set_contains           (AtkRelationSet *set,
-                                                         AtkRelationType relationship);
+
gboolean            atk_relation_set_contains           (AtkRelationSet *set,
+                                                         AtkRelationType relationship);

Determines whether the relation set contains a relation that matches the -specified type.

-

+specified type.

- - - +

set :

an AtkRelationSet +an AtkRelationSet

relationship :

an AtkRelationType +an AtkRelationType

Returns :

TRUE if relationship is the relationship type of a relation -in set, FALSE otherwise - +TRUE if relationship is the relationship type of a relation +in set, FALSE otherwise

-
+

atk_relation_set_remove ()

-
void                atk_relation_set_remove             (AtkRelationSet *set,
-                                                         AtkRelation *relation);
+
void                atk_relation_set_remove             (AtkRelationSet *set,
+                                                         AtkRelation *relation);

Removes a relation from the relation set. This function unref's the AtkRelation so it will be deleted unless there -is another reference to it.

-

+is another reference to it.

- -

set :

an AtkRelationSet +an AtkRelationSet

relation :

an AtkRelation +an AtkRelation

-
+

atk_relation_set_add ()

-
void                atk_relation_set_add                (AtkRelationSet *set,
-                                                         AtkRelation *relation);
+
void                atk_relation_set_add                (AtkRelationSet *set,
+                                                         AtkRelation *relation);

Add a new relation to the current relation set if it is not already present. This function ref's the AtkRelation so the caller of this function should unref it to ensure that it will be destroyed when the AtkRelationSet -is destroyed.

-

+is destroyed.

- -

set :

an AtkRelationSet +an AtkRelationSet

relation :

an AtkRelation +an AtkRelation

-
+

atk_relation_set_get_n_relations ()

-
gint                atk_relation_set_get_n_relations    (AtkRelationSet *set);
-

-Determines the number of relations in a relation set.

+
gint                atk_relation_set_get_n_relations    (AtkRelationSet *set);

+Determines the number of relations in a relation set.

- - +

set :

an AtkRelationSet +an AtkRelationSet

Returns :

an integer representing the number of relations in the set. -an integer representing the number of relations in the set.

-
+

atk_relation_set_get_relation ()

-
AtkRelation*        atk_relation_set_get_relation       (AtkRelationSet *set,
-                                                         gint i);
-

-Determines the relation at the specified position in the relation set.

+
AtkRelation *       atk_relation_set_get_relation       (AtkRelationSet *set,
+                                                         gint i);

+Determines the relation at the specified position in the relation set.

- - + -

set :

an AtkRelationSet +an AtkRelationSet

i :

a gint representing a position in the set, starting from 0. -a gint representing a position in the set, starting from 0.

Returns :

a AtkRelation, which is the relation at position i in the set. +a AtkRelation, which is the relation at +position i in the set. [transfer none]

-
+

atk_relation_set_get_relation_by_type ()

-
AtkRelation*        atk_relation_set_get_relation_by_type
-                                                        (AtkRelationSet *set,
-                                                         AtkRelationType relationship);
-

-Finds a relation that matches the specified type.

+
AtkRelation *       atk_relation_set_get_relation_by_type
+                                                        (AtkRelationSet *set,
+                                                         AtkRelationType relationship);

+Finds a relation that matches the specified type.

- - -

set :

an AtkRelationSet +an AtkRelationSet

relationship :

an AtkRelationType +an AtkRelationType

Returns :

an AtkRelation, which is a relation matching the specified type. +an AtkRelation, which is a relation matching the +specified type. [transfer none]

-
+

atk_relation_set_add_relation_by_type ()

-
void                atk_relation_set_add_relation_by_type
-                                                        (AtkRelationSet *set,
-                                                         AtkRelationType relationship,
-                                                         AtkObject *target);
+
void                atk_relation_set_add_relation_by_type
+                                                        (AtkRelationSet *set,
+                                                         AtkRelationType relationship,
+                                                         AtkObject *target);

Add a new relation of the specified type with the specified target to the current relation set if the relation set does not contain a relation of that type. If it is does contain a relation of that typea the target -is added to the relation.

-

+is added to the relation.

- - - @@ -343,6 +308,6 @@ + Generated by GTK-Doc V1.17.1 - + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkSelection.html atk1.0-2.2.0/docs/html/AtkSelection.html --- atk1.0-1.30.0/docs/html/AtkSelection.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkSelection.html 2011-09-26 22:25:58.000000000 +0000 @@ -7,17 +7,9 @@ - - + + - - - - - - - -

set :

an AtkRelationSet +an AtkRelationSet

relationship :

an AtkRelationType +an AtkRelationType

target :

an AtkObject +an AtkObject
@@ -26,21 +18,21 @@ - + -
+
@@ -50,63 +42,42 @@
-
+ -
+

Object Hierarchy

   GInterface
    +----AtkSelection
 
-
+

Known Implementations

AtkSelection is implemented by AtkNoOpObject.

-
+

Signals

-  "selection-changed"                              : Run Last
+  "selection-changed"                              : Run Last
 
-
+

Description

AtkSelection should be implemented by UI components with children which @@ -121,9 +92,9 @@ selection/deselection of children.

-
+

Details

-
+

AtkSelection

typedef struct _AtkSelection AtkSelection;

@@ -131,277 +102,201 @@


-
+

atk_selection_add_selection ()

-
gboolean            atk_selection_add_selection         (AtkSelection *selection,
-                                                         gint i);
+
gboolean            atk_selection_add_selection         (AtkSelection *selection,
+                                                         gint i);

Adds the specified accessible child of the object to the -object's selection.

-

+object's selection.

- + - + - +

selection :

a GObject instance that implements AtkSelectionIface -a GObject instance that implements AtkSelectionIface

i :

a gint specifying the child index. -a gint specifying the child index.

Returns :

TRUE if success, FALSE otherwise. -TRUE if success, FALSE otherwise.

-
+

atk_selection_clear_selection ()

-
gboolean            atk_selection_clear_selection       (AtkSelection *selection);
+
gboolean            atk_selection_clear_selection       (AtkSelection *selection);

Clears the selection in the object so that no children in the object -are selected.

-

+are selected.

- + - +

selection :

a GObject instance that implements AtkSelectionIface -a GObject instance that implements AtkSelectionIface

Returns :

TRUE if success, FALSE otherwise. -TRUE if success, FALSE otherwise.

-
+

atk_selection_ref_selection ()

-
AtkObject*          atk_selection_ref_selection         (AtkSelection *selection,
-                                                         gint i);
+
AtkObject *         atk_selection_ref_selection         (AtkSelection *selection,
+                                                         gint i);

Gets a reference to the accessible object representing the specified selected child of the object. -Note: callers should not rely on NULL or on a zero value for +Note: callers should not rely on NULL or on a zero value for indication of whether AtkSelectionIface is implemented, they should use type checking/interface checking macros or the -atk_get_accessible_value() convenience method.

-

+atk_get_accessible_value() convenience method.

- + - + -

selection :

a GObject instance that implements AtkSelectionIface -a GObject instance that implements AtkSelectionIface

i :

a gint specifying the index in the selection set. (e.g. the -ith selection as opposed to the ith child). -a gint specifying the index in the selection set. (e.g. the +ith selection as opposed to the ith child).

Returns :

an AtkObject representing the selected accessible , or NULL -if selection does not implement this interface. +an AtkObject representing the selected +accessible , or NULL if selection does not implement this interface. [transfer full]

-
+

atk_selection_get_selection_count ()

-
gint                atk_selection_get_selection_count   (AtkSelection *selection);
+
gint                atk_selection_get_selection_count   (AtkSelection *selection);

Gets the number of accessible children currently selected. -Note: callers should not rely on NULL or on a zero value for +Note: callers should not rely on NULL or on a zero value for indication of whether AtkSelectionIface is implemented, they should use type checking/interface checking macros or the -atk_get_accessible_value() convenience method.

-

+atk_get_accessible_value() convenience method.

- + - +

selection :

a GObject instance that implements AtkSelectionIface -a GObject instance that implements AtkSelectionIface

Returns :

a gint representing the number of items selected, or 0 -if selection does not implement this interface. -a gint representing the number of items selected, or 0 +if selection does not implement this interface.

-
+

atk_selection_is_child_selected ()

-
gboolean            atk_selection_is_child_selected     (AtkSelection *selection,
-                                                         gint i);
+
gboolean            atk_selection_is_child_selected     (AtkSelection *selection,
+                                                         gint i);

Determines if the current child of this object is selected -Note: callers should not rely on NULL or on a zero value for +Note: callers should not rely on NULL or on a zero value for indication of whether AtkSelectionIface is implemented, they should use type checking/interface checking macros or the -atk_get_accessible_value() convenience method.

-

+atk_get_accessible_value() convenience method.

- + - + - +

selection :

a GObject instance that implements AtkSelectionIface -a GObject instance that implements AtkSelectionIface

i :

a gint specifying the child index. -a gint specifying the child index.

Returns :

a gboolean representing the specified child is selected, or 0 -if selection does not implement this interface. -a gboolean representing the specified child is selected, or 0 +if selection does not implement this interface.

-
+

atk_selection_remove_selection ()

-
gboolean            atk_selection_remove_selection      (AtkSelection *selection,
-                                                         gint i);
-

-Removes the specified child of the object from the object's selection.

+
gboolean            atk_selection_remove_selection      (AtkSelection *selection,
+                                                         gint i);

+Removes the specified child of the object from the object's selection.

- + - + - +

selection :

a GObject instance that implements AtkSelectionIface -a GObject instance that implements AtkSelectionIface

i :

a gint specifying the index in the selection set. (e.g. the -ith selection as opposed to the ith child). -a gint specifying the index in the selection set. (e.g. the +ith selection as opposed to the ith child).

Returns :

TRUE if success, FALSE otherwise. -TRUE if success, FALSE otherwise.

-
+

atk_selection_select_all_selection ()

-
gboolean            atk_selection_select_all_selection  (AtkSelection *selection);
+
gboolean            atk_selection_select_all_selection  (AtkSelection *selection);

Causes every child of the object to be selected if the object -supports multiple selections.

-

+supports multiple selections.

- + - +

selection :

a GObject instance that implements AtkSelectionIface -a GObject instance that implements AtkSelectionIface

Returns :

TRUE if success, FALSE otherwise. -TRUE if success, FALSE otherwise.
-
+

Signal Details

-
+

The "selection-changed" signal

-
void                user_function                      (AtkSelection *atkselection,
-                                                        gpointer      user_data)         : Run Last
+
void                user_function                      (AtkSelection *atkselection,
+                                                        gpointer      user_data)         : Run Last

The "selection-changed" signal is emitted by an object which implements AtkSelection interface when the selection changes. @@ -411,8 +306,7 @@

atkselection :

-the object which received the signal. - +the object which received the signal.

user_data :

@@ -422,7 +316,7 @@
-
+

See Also

AtkText @@ -431,6 +325,6 @@

+ Generated by GTK-Doc V1.17.1
- + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkStateSet.html atk1.0-2.2.0/docs/html/AtkStateSet.html --- atk1.0-1.30.0/docs/html/AtkStateSet.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkStateSet.html 2011-09-26 22:25:58.000000000 +0000 @@ -8,16 +8,8 @@ - + - - - - - - - - @@ -30,13 +22,13 @@ -
+
@@ -45,410 +37,350 @@
-
+

Synopsis

-
-                    AtkStateSet;
-AtkStateSet*        atk_state_set_new                   (void);
-gboolean            atk_state_set_is_empty              (AtkStateSet *set);
-gboolean            atk_state_set_add_state             (AtkStateSet *set,
-                                                         AtkStateType type);
-void                atk_state_set_add_states            (AtkStateSet *set,
-                                                         AtkStateType *types,
-                                                         gint n_types);
-void                atk_state_set_clear_states          (AtkStateSet *set);
-gboolean            atk_state_set_contains_state        (AtkStateSet *set,
-                                                         AtkStateType type);
-gboolean            atk_state_set_contains_states       (AtkStateSet *set,
-                                                         AtkStateType *types,
-                                                         gint n_types);
-gboolean            atk_state_set_remove_state          (AtkStateSet *set,
-                                                         AtkStateType type);
-AtkStateSet*        atk_state_set_and_sets              (AtkStateSet *set,
-                                                         AtkStateSet *compare_set);
-AtkStateSet*        atk_state_set_or_sets               (AtkStateSet *set,
-                                                         AtkStateSet *compare_set);
-AtkStateSet*        atk_state_set_xor_sets              (AtkStateSet *set,
-                                                         AtkStateSet *compare_set);
+
                    AtkStateSet;
+AtkStateSet *       atk_state_set_new                   (void);
+gboolean            atk_state_set_is_empty              (AtkStateSet *set);
+gboolean            atk_state_set_add_state             (AtkStateSet *set,
+                                                         AtkStateType type);
+void                atk_state_set_add_states            (AtkStateSet *set,
+                                                         AtkStateType *types,
+                                                         gint n_types);
+void                atk_state_set_clear_states          (AtkStateSet *set);
+gboolean            atk_state_set_contains_state        (AtkStateSet *set,
+                                                         AtkStateType type);
+gboolean            atk_state_set_contains_states       (AtkStateSet *set,
+                                                         AtkStateType *types,
+                                                         gint n_types);
+gboolean            atk_state_set_remove_state          (AtkStateSet *set,
+                                                         AtkStateType type);
+AtkStateSet *       atk_state_set_and_sets              (AtkStateSet *set,
+                                                         AtkStateSet *compare_set);
+AtkStateSet *       atk_state_set_or_sets               (AtkStateSet *set,
+                                                         AtkStateSet *compare_set);
+AtkStateSet *       atk_state_set_xor_sets              (AtkStateSet *set,
+                                                         AtkStateSet *compare_set);
 
-
+

Object Hierarchy

-  GObject
+  GObject
    +----AtkStateSet
 
-
+

Description

An AtkStateSet determines a component's state set. It is composed of a set of AtkStates.

-
+

Details

-
+

AtkStateSet

typedef struct _AtkStateSet AtkStateSet;


-
+

atk_state_set_new ()

-
AtkStateSet*        atk_state_set_new                   (void);
-

-Creates a new empty state set.

+
AtkStateSet *       atk_state_set_new                   (void);

+Creates a new empty state set.

-

Returns :

a new AtkStateSet +a new AtkStateSet

-
+

atk_state_set_is_empty ()

-
gboolean            atk_state_set_is_empty              (AtkStateSet *set);
-

-Checks whether the state set is empty, i.e. has no states set.

+
gboolean            atk_state_set_is_empty              (AtkStateSet *set);

+Checks whether the state set is empty, i.e. has no states set.

- -

set :

an AtkStateType +an AtkStateType

Returns :

TRUE if set has no states set, otherwise FALSE + +TRUE if set has no states set, otherwise FALSE

-
+

atk_state_set_add_state ()

-
gboolean            atk_state_set_add_state             (AtkStateSet *set,
-                                                         AtkStateType type);
+
gboolean            atk_state_set_add_state             (AtkStateSet *set,
+                                                         AtkStateType type);

Add a new state for the specified type to the current state set if -it is not already present.

-

+it is not already present.

- - - +

set :

an AtkStateSet +an AtkStateSet

type :

an AtkStateType +an AtkStateType

Returns :

TRUE if the state for type is not already in set. - +TRUE if the state for type is not already in set.

-
+

atk_state_set_add_states ()

-
void                atk_state_set_add_states            (AtkStateSet *set,
-                                                         AtkStateType *types,
-                                                         gint n_types);
-

-Add the states for the specified types to the current state set.

+
void                atk_state_set_add_states            (AtkStateSet *set,
+                                                         AtkStateType *types,
+                                                         gint n_types);

+Add the states for the specified types to the current state set.

- - - +

set :

an AtkStateSet +an AtkStateSet

types :

an array of AtkStateType +an array of AtkStateType

n_types :

The number of elements in the array -The number of elements in the array

-
+

atk_state_set_clear_states ()

-
void                atk_state_set_clear_states          (AtkStateSet *set);
-

-Removes all states from the state set.

+
void                atk_state_set_clear_states          (AtkStateSet *set);

+Removes all states from the state set.

-

set :

an AtkStateSet +an AtkStateSet

-
+

atk_state_set_contains_state ()

-
gboolean            atk_state_set_contains_state        (AtkStateSet *set,
-                                                         AtkStateType type);
-

-Checks whether the state for the specified type is in the specified set.

+
gboolean            atk_state_set_contains_state        (AtkStateSet *set,
+                                                         AtkStateType type);

+Checks whether the state for the specified type is in the specified set.

- - - +

set :

an AtkStateSet +an AtkStateSet

type :

an AtkStateType +an AtkStateType

Returns :

TRUE if type is the state type is in set. - +TRUE if type is the state type is in set.

-
+

atk_state_set_contains_states ()

-
gboolean            atk_state_set_contains_states       (AtkStateSet *set,
-                                                         AtkStateType *types,
-                                                         gint n_types);
+
gboolean            atk_state_set_contains_states       (AtkStateSet *set,
+                                                         AtkStateType *types,
+                                                         gint n_types);

Checks whether the states for all the specified types are in the -specified set.

-

+specified set.

- - - + - +

set :

an AtkStateSet +an AtkStateSet

types :

an array of AtkStateType +an array of AtkStateType

n_types :

The number of elements in the array -The number of elements in the array

Returns :

TRUE if all the states for type are in set. - +TRUE if all the states for type are in set.

-
+

atk_state_set_remove_state ()

-
gboolean            atk_state_set_remove_state          (AtkStateSet *set,
-                                                         AtkStateType type);
-

-Removes the state for the specified type from the state set.

+
gboolean            atk_state_set_remove_state          (AtkStateSet *set,
+                                                         AtkStateType type);

+Removes the state for the specified type from the state set.

- - - +

set :

an AtkStateSet +an AtkStateSet

type :

an AtkType +an AtkType

Returns :

TRUE if type was the state type is in set. - +TRUE if type was the state type is in set.

-
+

atk_state_set_and_sets ()

-
AtkStateSet*        atk_state_set_and_sets              (AtkStateSet *set,
-                                                         AtkStateSet *compare_set);
-

-Constructs the intersection of the two sets, returning NULL if the -intersection is empty.

+
AtkStateSet *       atk_state_set_and_sets              (AtkStateSet *set,
+                                                         AtkStateSet *compare_set);

+Constructs the intersection of the two sets, returning NULL if the +intersection is empty.

- - -

set :

an AtkStateSet +an AtkStateSet

compare_set :

another AtkStateSet +another AtkStateSet

Returns :

a new AtkStateSet which is the intersection of the two sets. +a new AtkStateSet which is the intersection of +the two sets. [transfer full]

-
+

atk_state_set_or_sets ()

-
AtkStateSet*        atk_state_set_or_sets               (AtkStateSet *set,
-                                                         AtkStateSet *compare_set);
-

-Constructs the union of the two sets.

+
AtkStateSet *       atk_state_set_or_sets               (AtkStateSet *set,
+                                                         AtkStateSet *compare_set);

+Constructs the union of the two sets.

- - -

set :

an AtkStateSet +an AtkStateSet

compare_set :

another AtkStateSet +another AtkStateSet

Returns :

a new AtkStateSet which is the union of the two sets, -returning NULL is empty. +a new AtkStateSet which is the union of the two +sets, returning NULL is empty. [transfer full]

-
+

atk_state_set_xor_sets ()

-
AtkStateSet*        atk_state_set_xor_sets              (AtkStateSet *set,
-                                                         AtkStateSet *compare_set);
+
AtkStateSet *       atk_state_set_xor_sets              (AtkStateSet *set,
+                                                         AtkStateSet *compare_set);

-Constructs the exclusive-or of the two sets, returning NULL is empty. +Constructs the exclusive-or of the two sets, returning NULL is empty. The set returned by this operation contains the states in exactly -one of the two sets.

-

+one of the two sets.

- - - @@ -458,6 +390,6 @@ + Generated by GTK-Doc V1.17.1 - + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkStreamableContent.html atk1.0-2.2.0/docs/html/AtkStreamableContent.html --- atk1.0-1.30.0/docs/html/AtkStreamableContent.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkStreamableContent.html 2011-09-26 22:25:58.000000000 +0000 @@ -8,16 +8,8 @@ - + - - - - - - - -

set :

an AtkStateSet +an AtkStateSet

compare_set :

another AtkStateSet +another AtkStateSet

Returns :

a new AtkStateSet which contains the states which are -in exactly one of the two sets. +a new AtkStateSet which contains the states +which are in exactly one of the two sets. [transfer full]
@@ -30,13 +22,13 @@ -
+
@@ -45,43 +37,28 @@
-
+ -
+

Object Hierarchy

   GInterface
    +----AtkStreamableContent
 
-
+

Description

An interface whereby an object allows its backing content to be streamed to @@ -102,9 +79,9 @@ a particular document, but may in some cases give access to the underlying model data.

-
+

Details

-
+

AtkStreamableContent

typedef struct _AtkStreamableContent AtkStreamableContent;

@@ -112,115 +89,89 @@


-
+

atk_streamable_content_get_n_mime_types ()

-
gint                atk_streamable_content_get_n_mime_types
-                                                        (AtkStreamableContent *streamable);
-

-Gets the number of mime types supported by this object.

+
gint                atk_streamable_content_get_n_mime_types
+                                                        (AtkStreamableContent *streamable);

+Gets the number of mime types supported by this object.

- + - +

streamable :

a GObject instance that implements AtkStreamableContentIface -a GObject instance that implements AtkStreamableContentIface

Returns :

a gint which is the number of mime types supported by the object. -a gint which is the number of mime types supported by the object.

-
+

atk_streamable_content_get_mime_type ()

-
const gchar*        atk_streamable_content_get_mime_type
-                                                        (AtkStreamableContent *streamable,
-                                                         gint i);
+
const gchar *       atk_streamable_content_get_mime_type
+                                                        (AtkStreamableContent *streamable,
+                                                         gint i);

Gets the character string of the specified mime type. The first mime -type is at position 0, the second at position 1, and so on.

-

+type is at position 0, the second at position 1, and so on.

- + - + +should not free the character string.

streamable :

a GObject instance that implements AtkStreamableContent -a GObject instance that implements AtkStreamableContent

i :

a gint representing the position of the mime type starting from 0 -a gint representing the position of the mime type starting from 0

Returns :

: a gchar* representing the specified mime type; the caller -should not free the character string. -

-
+

atk_streamable_content_get_stream ()

-
GIOChannel*         atk_streamable_content_get_stream   (AtkStreamableContent *streamable,
-                                                         const gchar *mime_type);
-

-Gets the content in the specified mime type.

+
GIOChannel *        atk_streamable_content_get_stream   (AtkStreamableContent *streamable,
+                                                         const gchar *mime_type);

+Gets the content in the specified mime type.

- + - + -

streamable :

a GObject instance that implements AtkStreamableContentIface -a GObject instance that implements AtkStreamableContentIface

mime_type :

a gchar* representing the mime type -a gchar* representing the mime type

Returns :

A GIOChannel which contains the content in the specified mime -type. +A GIOChannel which contains the content in the +specified mime type. [transfer full]

-
+

atk_streamable_content_get_uri ()

-
gchar*              atk_streamable_content_get_uri      (AtkStreamableContent *streamable,
-                                                         const gchar *mime_type);
+
const gchar *       atk_streamable_content_get_uri      (AtkStreamableContent *streamable,
+                                                         const gchar *mime_type);

Get a string representing a URI in IETF standard format (see http://www.ietf.org/rfc/rfc2396.txt) from which the object's content @@ -230,29 +181,24 @@

Note that it is possible for get_uri to return NULL but for -get_stream to work nonetheless, since not all GIOChannels connect to URIs.

-

+get_stream to work nonetheless, since not all GIOChannels connect to URIs.

- + - + - +

streamable :

a GObject instance that implements AtkStreamableContentIface -a GObject instance that implements AtkStreamableContentIface

mime_type :

a gchar* representing the mime type, or NULL to request a URI -for the default mime type. -a gchar* representing the mime type, or NULL to request a URI +for the default mime type.

Returns :

Returns a string representing a URI, or NULL if no corresponding URI -can be constructed. - -Returns a string representing a URI, or NULL if no corresponding URI +can be constructed.
@@ -262,6 +208,6 @@
+ Generated by GTK-Doc V1.17.1
- + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkTable.html atk1.0-2.2.0/docs/html/AtkTable.html --- atk1.0-1.30.0/docs/html/AtkTable.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkTable.html 2011-09-26 22:25:58.000000000 +0000 @@ -8,16 +8,8 @@ - + - - - - - - - - @@ -30,17 +22,17 @@ -
+
@@ -50,197 +42,100 @@
-
+

Synopsis

-
-                    AtkTable;
-AtkObject*          atk_table_ref_at                    (AtkTable *table,
-                                                         gint row,
-                                                         gint column);
-gint                atk_table_get_index_at              (AtkTable *table,
-                                                         gint row,
-                                                         gint column);
-gint                atk_table_get_column_at_index       (AtkTable *table,
-                                                         gint index_);
-gint                atk_table_get_row_at_index          (AtkTable *table,
-                                                         gint index_);
-gint                atk_table_get_n_columns             (AtkTable *table);
-gint                atk_table_get_n_rows                (AtkTable *table);
-gint                atk_table_get_column_extent_at      (AtkTable *table,
-                                                         gint row,
-                                                         gint column);
-gint                atk_table_get_row_extent_at         (AtkTable *table,
-                                                         gint row,
-                                                         gint column);
-AtkObject *         atk_table_get_caption               (AtkTable *table);
-const gchar *       atk_table_get_column_description    (AtkTable *table,
-                                                         gint column);
-const gchar *       atk_table_get_row_description       (AtkTable *table,
-                                                         gint row);
-AtkObject*          atk_table_get_column_header         (AtkTable *table,
-                                                         gint column);
-AtkObject*          atk_table_get_row_header            (AtkTable *table,
-                                                         gint row);
-AtkObject*          atk_table_get_summary               (AtkTable *table);
-void                atk_table_set_caption               (AtkTable *table,
-                                                         AtkObject *caption);
-void                atk_table_set_row_description       (AtkTable *table,
-                                                         gint row,
-                                                         const gchar *description);
-void                atk_table_set_column_description    (AtkTable *table,
-                                                         gint column,
-                                                         const gchar *description);
-void                atk_table_set_row_header            (AtkTable *table,
-                                                         gint row,
-                                                         AtkObject *header);
-void                atk_table_set_column_header         (AtkTable *table,
-                                                         gint column,
-                                                         AtkObject *header);
-void                atk_table_set_summary               (AtkTable *table,
-                                                         AtkObject *accessible);
-gint                atk_table_get_selected_columns      (AtkTable *table,
-                                                         gint **selected);
-gint                atk_table_get_selected_rows         (AtkTable *table,
-                                                         gint **selected);
-gboolean            atk_table_is_column_selected        (AtkTable *table,
-                                                         gint column);
-gboolean            atk_table_is_row_selected           (AtkTable *table,
-                                                         gint row);
-gboolean            atk_table_is_selected               (AtkTable *table,
-                                                         gint row,
-                                                         gint column);
-gboolean            atk_table_add_column_selection      (AtkTable *table,
-                                                         gint column);
-gboolean            atk_table_add_row_selection         (AtkTable *table,
-                                                         gint row);
-gboolean            atk_table_remove_column_selection   (AtkTable *table,
-                                                         gint column);
-gboolean            atk_table_remove_row_selection      (AtkTable *table,
-                                                         gint row);
+
                    AtkTable;
+AtkObject *         atk_table_ref_at                    (AtkTable *table,
+                                                         gint row,
+                                                         gint column);
+gint                atk_table_get_index_at              (AtkTable *table,
+                                                         gint row,
+                                                         gint column);
+gint                atk_table_get_column_at_index       (AtkTable *table,
+                                                         gint index_);
+gint                atk_table_get_row_at_index          (AtkTable *table,
+                                                         gint index_);
+gint                atk_table_get_n_columns             (AtkTable *table);
+gint                atk_table_get_n_rows                (AtkTable *table);
+gint                atk_table_get_column_extent_at      (AtkTable *table,
+                                                         gint row,
+                                                         gint column);
+gint                atk_table_get_row_extent_at         (AtkTable *table,
+                                                         gint row,
+                                                         gint column);
+AtkObject *         atk_table_get_caption               (AtkTable *table);
+const gchar *       atk_table_get_column_description    (AtkTable *table,
+                                                         gint column);
+const gchar *       atk_table_get_row_description       (AtkTable *table,
+                                                         gint row);
+AtkObject *         atk_table_get_column_header         (AtkTable *table,
+                                                         gint column);
+AtkObject *         atk_table_get_row_header            (AtkTable *table,
+                                                         gint row);
+AtkObject *         atk_table_get_summary               (AtkTable *table);
+void                atk_table_set_caption               (AtkTable *table,
+                                                         AtkObject *caption);
+void                atk_table_set_row_description       (AtkTable *table,
+                                                         gint row,
+                                                         const gchar *description);
+void                atk_table_set_column_description    (AtkTable *table,
+                                                         gint column,
+                                                         const gchar *description);
+void                atk_table_set_row_header            (AtkTable *table,
+                                                         gint row,
+                                                         AtkObject *header);
+void                atk_table_set_column_header         (AtkTable *table,
+                                                         gint column,
+                                                         AtkObject *header);
+void                atk_table_set_summary               (AtkTable *table,
+                                                         AtkObject *accessible);
+gint                atk_table_get_selected_columns      (AtkTable *table,
+                                                         gint **selected);
+gint                atk_table_get_selected_rows         (AtkTable *table,
+                                                         gint **selected);
+gboolean            atk_table_is_column_selected        (AtkTable *table,
+                                                         gint column);
+gboolean            atk_table_is_row_selected           (AtkTable *table,
+                                                         gint row);
+gboolean            atk_table_is_selected               (AtkTable *table,
+                                                         gint row,
+                                                         gint column);
+gboolean            atk_table_add_column_selection      (AtkTable *table,
+                                                         gint column);
+gboolean            atk_table_add_row_selection         (AtkTable *table,
+                                                         gint row);
+gboolean            atk_table_remove_column_selection   (AtkTable *table,
+                                                         gint column);
+gboolean            atk_table_remove_row_selection      (AtkTable *table,
+                                                         gint row);
 
-
+

Object Hierarchy

   GInterface
    +----AtkTable
 
-
+

Known Implementations

AtkTable is implemented by AtkNoOpObject.

-
+

Signals

-  "column-deleted"                                 : Run Last
-  "column-inserted"                                : Run Last
-  "column-reordered"                               : Run Last
-  "model-changed"                                  : Run Last
-  "row-deleted"                                    : Run Last
-  "row-inserted"                                   : Run Last
-  "row-reordered"                                  : Run Last
+  "column-deleted"                                 : Run Last
+  "column-inserted"                                : Run Last
+  "column-reordered"                               : Run Last
+  "model-changed"                                  : Run Last
+  "row-deleted"                                    : Run Last
+  "row-inserted"                                   : Run Last
+  "row-reordered"                                  : Run Last
 
-
+

Description

AtkTable should be implemented by components which present elements @@ -248,7 +143,7 @@ tree-structured information if the nodes of the trees can be said to contain multiple "columns". Individual elements of an AtkTable are typically referred to as "cells", and these cells are exposed by -AtkTable as child AtkObjects of the AtkTable. Both row/column and +AtkTable as child AtkObjects of the AtkTable. Both row/column and child-index-based access to these children is provided.

@@ -259,14 +154,14 @@

Since tables are often very complex, AtkTable includes provision for offering simplified summary information, as well as row and column -headers and captions. Headers and captions are AtkObjects which may +headers and captions. Headers and captions are AtkObjects which may implement other interfaces (AtkText, AtkImage, etc.) as appropriate. -AtkTable summaries may themselves be (simplified) AtkTables, etc. +AtkTable summaries may themselves be (simplified) AtkTables, etc.

-
+

Details

-
+

AtkTable

typedef struct _AtkTable AtkTable;

@@ -274,592 +169,450 @@


-
+

atk_table_ref_at ()

-
AtkObject*          atk_table_ref_at                    (AtkTable *table,
-                                                         gint row,
-                                                         gint column);
-

-Get a reference to the table cell at row, column.

+
AtkObject *         atk_table_ref_at                    (AtkTable *table,
+                                                         gint row,
+                                                         gint column);

+Get a reference to the table cell at row, column.

- + - - -

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

row :

a gint representing a row in table +a gint representing a row in table

column :

a gint representing a column in table +a gint representing a column in table

Returns :

a AtkObject* representing the referred to accessible +a AtkObject* representing the referred to +accessible. [transfer full]

-
+

atk_table_get_index_at ()

-
gint                atk_table_get_index_at              (AtkTable *table,
-                                                         gint row,
-                                                         gint column);
-

-Gets a gint representing the index at the specified row and column.

+
gint                atk_table_get_index_at              (AtkTable *table,
+                                                         gint row,
+                                                         gint column);

+Gets a gint representing the index at the specified row and column.

- + - - - +of table or table does not implement this interface.

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

row :

a gint representing a row in table +a gint representing a row in table

column :

a gint representing a column in table +a gint representing a column in table

Returns :

a gint representing the index at specified position. +a gint representing the index at specified position. The value -1 is returned if the object at row,column is not a child -of table or table does not implement this interface. -

-
+

atk_table_get_column_at_index ()

-
gint                atk_table_get_column_at_index       (AtkTable *table,
-                                                         gint index_);
-

-Gets a gint representing the column at the specified index_.

+
gint                atk_table_get_column_at_index       (AtkTable *table,
+                                                         gint index_);

+Gets a gint representing the column at the specified index_.

- + - - +

table :

a GObject instance that implements AtkTableInterface -a GObject instance that implements AtkTableInterface

index_ :

a gint representing an index in table +a gint representing an index in table

Returns :

a gint representing the column at the specified index, -or -1 if the table does not implement this interface -a gint representing the column at the specified index, +or -1 if the table does not implement this interface

-
+

atk_table_get_row_at_index ()

-
gint                atk_table_get_row_at_index          (AtkTable *table,
-                                                         gint index_);
-

-Gets a gint representing the row at the specified index_.

+
gint                atk_table_get_row_at_index          (AtkTable *table,
+                                                         gint index_);

+Gets a gint representing the row at the specified index_.

- + - - +

table :

a GObject instance that implements AtkTableInterface -a GObject instance that implements AtkTableInterface

index_ :

a gint representing an index in table +a gint representing an index in table

Returns :

a gint representing the row at the specified index, -or -1 if the table does not implement this interface -a gint representing the row at the specified index, +or -1 if the table does not implement this interface

-
+

atk_table_get_n_columns ()

-
gint                atk_table_get_n_columns             (AtkTable *table);
-

-Gets the number of columns in the table.

+
gint                atk_table_get_n_columns             (AtkTable *table);

+Gets the number of columns in the table.

- + - +

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

Returns :

a gint representing the number of columns, or 0 -if value does not implement this interface. -a gint representing the number of columns, or 0 +if value does not implement this interface.

-
+

atk_table_get_n_rows ()

-
gint                atk_table_get_n_rows                (AtkTable *table);
-

-Gets the number of rows in the table.

+
gint                atk_table_get_n_rows                (AtkTable *table);

+Gets the number of rows in the table.

- + - +

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

Returns :

a gint representing the number of rows, or 0 -if value does not implement this interface. -a gint representing the number of rows, or 0 +if value does not implement this interface.

-
+

atk_table_get_column_extent_at ()

-
gint                atk_table_get_column_extent_at      (AtkTable *table,
-                                                         gint row,
-                                                         gint column);
+
gint                atk_table_get_column_extent_at      (AtkTable *table,
+                                                         gint row,
+                                                         gint column);

Gets the number of columns occupied by the accessible object -at the specified row and column in the table.

-

+at the specified row and column in the table.

- + - - - +

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

row :

a gint representing a row in table +a gint representing a row in table

column :

a gint representing a column in table +a gint representing a column in table

Returns :

a gint representing the column extent at specified position, or 0 -if value does not implement this interface. -a gint representing the column extent at specified position, or 0 +if value does not implement this interface.

-
+

atk_table_get_row_extent_at ()

-
gint                atk_table_get_row_extent_at         (AtkTable *table,
-                                                         gint row,
-                                                         gint column);
+
gint                atk_table_get_row_extent_at         (AtkTable *table,
+                                                         gint row,
+                                                         gint column);

Gets the number of rows occupied by the accessible object -at a specified row and column in the table.

-

+at a specified row and column in the table.

- + - - - +

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

row :

a gint representing a row in table +a gint representing a row in table

column :

a gint representing a column in table +a gint representing a column in table

Returns :

a gint representing the row extent at specified position, or 0 -if value does not implement this interface. -a gint representing the row extent at specified position, or 0 +if value does not implement this interface.

-
+

atk_table_get_caption ()

-
AtkObject *         atk_table_get_caption               (AtkTable *table);
-

-Gets the caption for the table.

+
AtkObject *         atk_table_get_caption               (AtkTable *table);

+Gets the caption for the table.

- + -

table :

a GObject instance that implements AtkTableInterface -a GObject instance that implements AtkTableInterface

Returns :

a AtkObject* representing the table caption, or NULL -if value does not implement this interface. +a AtkObject* representing the table caption, or +NULL if value does not implement this interface. [transfer none]

-
+

atk_table_get_column_description ()

-
const gchar *       atk_table_get_column_description    (AtkTable *table,
-                                                         gint column);
-

-Gets the description text of the specified column in the table

+
const gchar *       atk_table_get_column_description    (AtkTable *table,
+                                                         gint column);

+Gets the description text of the specified column in the table

- + - - +

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

column :

a gint representing a column in table +a gint representing a column in table

Returns :

a gchar* representing the column description, or NULL -if value does not implement this interface. -a gchar* representing the column description, or NULL +if value does not implement this interface.

-
+

atk_table_get_row_description ()

-
const gchar *       atk_table_get_row_description       (AtkTable *table,
-                                                         gint row);
-

-Gets the description text of the specified row in the table

+
const gchar *       atk_table_get_row_description       (AtkTable *table,
+                                                         gint row);

+Gets the description text of the specified row in the table

- + - - +

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

row :

a gint representing a row in table +a gint representing a row in table

Returns :

a gchar* representing the row description, or NULL -if value does not implement this interface. -a gchar* representing the row description, or NULL +if value does not implement this interface.

-
+

atk_table_get_column_header ()

-
AtkObject*          atk_table_get_column_header         (AtkTable *table,
-                                                         gint column);
-

-Gets the column header of a specified column in an accessible table.

+
AtkObject *         atk_table_get_column_header         (AtkTable *table,
+                                                         gint column);

+Gets the column header of a specified column in an accessible table.

- + - + -

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

column :

a gint representing a column in the table -a gint representing a column in the table

Returns :

a AtkObject* representing the specified column header, or -NULL if value does not implement this interface. +a AtkObject* representing the specified column +header, or NULL if value does not implement this interface. [transfer none]

-
+

atk_table_get_row_header ()

-
AtkObject*          atk_table_get_row_header            (AtkTable *table,
-                                                         gint row);
-

-Gets the row header of a specified row in an accessible table.

+
AtkObject *         atk_table_get_row_header            (AtkTable *table,
+                                                         gint row);

+Gets the row header of a specified row in an accessible table.

- + - + -

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

row :

a gint representing a row in the table -a gint representing a row in the table

Returns :

a AtkObject* representing the specified row header, or -NULL if value does not implement this interface. +a AtkObject* representing the specified row +header, or NULL if value does not implement this interface. [transfer none]

-
+

atk_table_get_summary ()

-
AtkObject*          atk_table_get_summary               (AtkTable *table);
-

-Gets the summary description of the table.

+
AtkObject *         atk_table_get_summary               (AtkTable *table);

+Gets the summary description of the table.

- + -

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

Returns :

a AtkObject* representing a summary description of the table, -or zero if value does not implement this interface. +a AtkObject* representing a summary description +of the table, or zero if value does not implement this interface. [transfer full]

-
+

atk_table_set_caption ()

-
void                atk_table_set_caption               (AtkTable *table,
-                                                         AtkObject *caption);
-

-Sets the caption for the table.

+
void                atk_table_set_caption               (AtkTable *table,
+                                                         AtkObject *caption);

+Sets the caption for the table.

- + -

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

caption :

a AtkObject representing the caption to set for table +a AtkObject representing the caption to set for table

-
+

atk_table_set_row_description ()

-
void                atk_table_set_row_description       (AtkTable *table,
-                                                         gint row,
-                                                         const gchar *description);
-

-Sets the description text for the specified row of table.

+
void                atk_table_set_row_description       (AtkTable *table,
+                                                         gint row,
+                                                         const gchar *description);

+Sets the description text for the specified row of table.

- + - - @@ -867,39 +620,29 @@

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

row :

a gint representing a row in table +a gint representing a row in table

description :

a gchar representing the description text +a gchar representing the description text to set for the specified row of table

-
+

atk_table_set_column_description ()

-
void                atk_table_set_column_description    (AtkTable *table,
-                                                         gint column,
-                                                         const gchar *description);
-

-Sets the description text for the specified column of the table.

+
void                atk_table_set_column_description    (AtkTable *table,
+                                                         gint column,
+                                                         const gchar *description);

+Sets the description text for the specified column of the table.

- + - - @@ -907,95 +650,81 @@

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

column :

a gint representing a column in table +a gint representing a column in table

description :

a gchar representing the description text +a gchar representing the description text to set for the specified column of the table

-
+

atk_table_set_row_header ()

-
void                atk_table_set_row_header            (AtkTable *table,
-                                                         gint row,
-                                                         AtkObject *header);
-

-Sets the specified row header to header.

+
void                atk_table_set_row_header            (AtkTable *table,
+                                                         gint row,
+                                                         AtkObject *header);

+Sets the specified row header to header.

- + - -

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

row :

a gint representing a row in table +a gint representing a row in table

header :

an AtkTable +an AtkTable

-
+

atk_table_set_column_header ()

-
void                atk_table_set_column_header         (AtkTable *table,
-                                                         gint column,
-                                                         AtkObject *header);
-

-Sets the specified column header to header.

+
void                atk_table_set_column_header         (AtkTable *table,
+                                                         gint column,
+                                                         AtkObject *header);

+Sets the specified column header to header.

- + - -

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

column :

a gint representing a column in table +a gint representing a column in table

header :

an AtkTable +an AtkTable

-
+

atk_table_set_summary ()

-
void                atk_table_set_summary               (AtkTable *table,
-                                                         AtkObject *accessible);
-

-Sets the summary description of the table.

+
void                atk_table_set_summary               (AtkTable *table,
+                                                         AtkObject *accessible);

+Sets the summary description of the table.

- + - @@ -1003,368 +732,275 @@

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

accessible :

an AtkObject representing the summary description +an AtkObject representing the summary description to set for table

-
+

atk_table_get_selected_columns ()

-
gint                atk_table_get_selected_columns      (AtkTable *table,
-                                                         gint **selected);
+
gint                atk_table_get_selected_columns      (AtkTable *table,
+                                                         gint **selected);

Gets the selected columns of the table by initializing **selected with -the selected column numbers. This array should be freed by the caller.

-

+the selected column numbers. This array should be freed by the caller.

- + - + - +

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

selected :

a gint** that is to contain the selected columns numbers -a gint** that is to contain the selected columns numbers

Returns :

a gint representing the number of selected columns, -or 0 if value does not implement this interface. -a gint representing the number of selected columns, +or 0 if value does not implement this interface.

-
+

atk_table_get_selected_rows ()

-
gint                atk_table_get_selected_rows         (AtkTable *table,
-                                                         gint **selected);
+
gint                atk_table_get_selected_rows         (AtkTable *table,
+                                                         gint **selected);

Gets the selected rows of the table by initializing **selected with -the selected row numbers. This array should be freed by the caller.

-

+the selected row numbers. This array should be freed by the caller.

- + - + - +

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

selected :

a gint** that is to contain the selected row numbers -a gint** that is to contain the selected row numbers

Returns :

a gint representing the number of selected rows, -or zero if value does not implement this interface. -a gint representing the number of selected rows, +or zero if value does not implement this interface.

-
+

atk_table_is_column_selected ()

-
gboolean            atk_table_is_column_selected        (AtkTable *table,
-                                                         gint column);
+
gboolean            atk_table_is_column_selected        (AtkTable *table,
+                                                         gint column);

Gets a boolean value indicating whether the specified column -is selected

-

+is selected

- + - - +

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

column :

a gint representing a column in table +a gint representing a column in table

Returns :

a gboolean representing if the column is selected, or 0 -if value does not implement this interface. -a gboolean representing if the column is selected, or 0 +if value does not implement this interface.

-
+

atk_table_is_row_selected ()

-
gboolean            atk_table_is_row_selected           (AtkTable *table,
-                                                         gint row);
+
gboolean            atk_table_is_row_selected           (AtkTable *table,
+                                                         gint row);

Gets a boolean value indicating whether the specified row -is selected

-

+is selected

- + - - +

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

row :

a gint representing a row in table +a gint representing a row in table

Returns :

a gboolean representing if the row is selected, or 0 -if value does not implement this interface. -a gboolean representing if the row is selected, or 0 +if value does not implement this interface.

-
+

atk_table_is_selected ()

-
gboolean            atk_table_is_selected               (AtkTable *table,
-                                                         gint row,
-                                                         gint column);
+
gboolean            atk_table_is_selected               (AtkTable *table,
+                                                         gint row,
+                                                         gint column);

Gets a boolean value indicating whether the accessible object -at the specified row and column is selected

-

+at the specified row and column is selected

- + - - - +

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

row :

a gint representing a row in table +a gint representing a row in table

column :

a gint representing a column in table +a gint representing a column in table

Returns :

a gboolean representing if the cell is selected, or 0 -if value does not implement this interface. -a gboolean representing if the cell is selected, or 0 +if value does not implement this interface.

-
+

atk_table_add_column_selection ()

-
gboolean            atk_table_add_column_selection      (AtkTable *table,
-                                                         gint column);
-

-Adds the specified column to the selection.

+
gboolean            atk_table_add_column_selection      (AtkTable *table,
+                                                         gint column);

+Adds the specified column to the selection.

- + - - +

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

column :

a gint representing a column in table +a gint representing a column in table

Returns :

a gboolean representing if the column was successfully added to -the selection, or 0 if value does not implement this interface. -a gboolean representing if the column was successfully added to +the selection, or 0 if value does not implement this interface.

-
+

atk_table_add_row_selection ()

-
gboolean            atk_table_add_row_selection         (AtkTable *table,
-                                                         gint row);
-

-Adds the specified row to the selection.

+
gboolean            atk_table_add_row_selection         (AtkTable *table,
+                                                         gint row);

+Adds the specified row to the selection.

- + - - +

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

row :

a gint representing a row in table +a gint representing a row in table

Returns :

a gboolean representing if row was successfully added to selection, -or 0 if value does not implement this interface. -a gboolean representing if row was successfully added to selection, +or 0 if value does not implement this interface.

-
+

atk_table_remove_column_selection ()

-
gboolean            atk_table_remove_column_selection   (AtkTable *table,
-                                                         gint column);
-

-Adds the specified column to the selection.

+
gboolean            atk_table_remove_column_selection   (AtkTable *table,
+                                                         gint column);

+Adds the specified column to the selection.

- + - - +

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

column :

a gint representing a column in table +a gint representing a column in table

Returns :

a gboolean representing if the column was successfully removed from -the selection, or 0 if value does not implement this interface. -a gboolean representing if the column was successfully removed from +the selection, or 0 if value does not implement this interface.

-
+

atk_table_remove_row_selection ()

-
gboolean            atk_table_remove_row_selection      (AtkTable *table,
-                                                         gint row);
-

-Removes the specified row from the selection.

+
gboolean            atk_table_remove_row_selection      (AtkTable *table,
+                                                         gint row);

+Removes the specified row from the selection.

- + - - +

table :

a GObject instance that implements AtkTableIface -a GObject instance that implements AtkTableIface

row :

a gint representing a row in table +a gint representing a row in table

Returns :

a gboolean representing if the row was successfully removed from -the selection, or 0 if value does not implement this interface. -a gboolean representing if the row was successfully removed from +the selection, or 0 if value does not implement this interface.
-
+

Signal Details

-
+

The "column-deleted" signal

-
void                user_function                      (AtkTable *atktable,
-                                                        gint      arg1,
-                                                        gint      arg2,
-                                                        gpointer  user_data)      : Run Last
+
void                user_function                      (AtkTable *atktable,
+                                                        gint      arg1,
+                                                        gint      arg2,
+                                                        gpointer  user_data)      : Run Last

The "column-deleted" signal is emitted by an object which implements the AtkTable interface when a column is deleted. @@ -1374,18 +1010,15 @@

atktable :

-the object which received the signal. - +the object which received the signal.

arg1 :

-The index of the first column deleted. - +The index of the first column deleted.

arg2 :

-The number of columns deleted. - +The number of columns deleted.

user_data :

@@ -1395,18 +1028,12 @@

-
+

The "column-inserted" signal

-
void                user_function                      (AtkTable *atktable,
-                                                        gint      arg1,
-                                                        gint      arg2,
-                                                        gpointer  user_data)      : Run Last
+
void                user_function                      (AtkTable *atktable,
+                                                        gint      arg1,
+                                                        gint      arg2,
+                                                        gpointer  user_data)      : Run Last

The "column-inserted" signal is emitted by an object which implements the AtkTable interface when a column is inserted. @@ -1416,18 +1043,15 @@

atktable :

-the object which received the signal. - +the object which received the signal.

arg1 :

-The index of the column inserted. - +The index of the column inserted.

arg2 :

-The number of colums inserted. - +The number of colums inserted.

user_data :

@@ -1437,12 +1061,10 @@

-
+

The "column-reordered" signal

-
void                user_function                      (AtkTable *atktable,
-                                                        gpointer  user_data)      : Run Last
+
void                user_function                      (AtkTable *atktable,
+                                                        gpointer  user_data)      : Run Last

The "column-reordered" signal is emitted by an object which implements the AtkTable interface when the columns are reordered. @@ -1452,8 +1074,7 @@

atktable :

-the object which received the signal. - +the object which received the signal.

user_data :

@@ -1463,12 +1084,10 @@

-
+

The "model-changed" signal

-
void                user_function                      (AtkTable *atktable,
-                                                        gpointer  user_data)      : Run Last
+
void                user_function                      (AtkTable *atktable,
+                                                        gpointer  user_data)      : Run Last

The "model-changed" signal is emitted by an object which implements the AtkTable interface when the model displayed by the table changes. @@ -1478,8 +1097,7 @@

atktable :

-the object which received the signal. - +the object which received the signal.

user_data :

@@ -1489,18 +1107,12 @@

-
+

The "row-deleted" signal

-
void                user_function                      (AtkTable *atktable,
-                                                        gint      arg1,
-                                                        gint      arg2,
-                                                        gpointer  user_data)      : Run Last
+
void                user_function                      (AtkTable *atktable,
+                                                        gint      arg1,
+                                                        gint      arg2,
+                                                        gpointer  user_data)      : Run Last

The "row-deleted" signal is emitted by an object which implements the AtkTable interface when a column is inserted. @@ -1510,18 +1122,15 @@

atktable :

-the object which received the signal. - +the object which received the signal.

arg1 :

-The index of the first row deleted. - +The index of the first row deleted.

arg2 :

-The number of rows deleted. - +The number of rows deleted.

user_data :

@@ -1531,18 +1140,12 @@

-
+

The "row-inserted" signal

-
void                user_function                      (AtkTable *atktable,
-                                                        gint      arg1,
-                                                        gint      arg2,
-                                                        gpointer  user_data)      : Run Last
+
void                user_function                      (AtkTable *atktable,
+                                                        gint      arg1,
+                                                        gint      arg2,
+                                                        gpointer  user_data)      : Run Last

The "row-inserted" signal is emitted by an object which implements the AtkTable interface when a column is inserted. @@ -1552,18 +1155,15 @@

atktable :

-the object which received the signal. - +the object which received the signal.

arg1 :

-The index of the first row deleted. - +The index of the first row deleted.

arg2 :

-The number of rows deleted. - +The number of rows deleted.

user_data :

@@ -1573,12 +1173,10 @@

-
+

The "row-reordered" signal

-
void                user_function                      (AtkTable *atktable,
-                                                        gpointer  user_data)      : Run Last
+
void                user_function                      (AtkTable *atktable,
+                                                        gpointer  user_data)      : Run Last

The "row-reordered" signal is emitted by an object which implements the AtkTable interface when the columns are reordered. @@ -1588,8 +1186,7 @@

atktable :

-the object which received the signal. - +the object which received the signal.

user_data :

@@ -1599,15 +1196,15 @@
- + Generated by GTK-Doc V1.17.1
- + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkText.html atk1.0-2.2.0/docs/html/AtkText.html --- atk1.0-1.30.0/docs/html/AtkText.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkText.html 2011-09-26 22:25:58.000000000 +0000 @@ -8,16 +8,8 @@ - + - - - - - - - - @@ -30,17 +22,17 @@ -
+
@@ -49,224 +41,120 @@
-
+

Synopsis

-
-                    AtkText;
+
                    AtkText;
 enum                AtkTextBoundary;
 enum                AtkTextClipType;
-                    AtkTextRange;
-                    AtkTextRectangle;
-                    AtkAttribute;
+struct              AtkTextRange;
+struct              AtkTextRectangle;
+struct              AtkAttribute;
 typedef             AtkAttributeSet;
 enum                AtkTextAttribute;
-gchar*              atk_text_get_text                   (AtkText *text,
-                                                         gint start_offset,
-                                                         gint end_offset);
-gunichar            atk_text_get_character_at_offset    (AtkText *text,
-                                                         gint offset);
-gchar*              atk_text_get_text_after_offset      (AtkText *text,
-                                                         gint offset,
-                                                         AtkTextBoundary boundary_type,
-                                                         gint *start_offset,
-                                                         gint *end_offset);
-gchar*              atk_text_get_text_at_offset         (AtkText *text,
-                                                         gint offset,
-                                                         AtkTextBoundary boundary_type,
-                                                         gint *start_offset,
-                                                         gint *end_offset);
-gchar*              atk_text_get_text_before_offset     (AtkText *text,
-                                                         gint offset,
-                                                         AtkTextBoundary boundary_type,
-                                                         gint *start_offset,
-                                                         gint *end_offset);
-gint                atk_text_get_caret_offset           (AtkText *text);
-void                atk_text_get_character_extents      (AtkText *text,
-                                                         gint offset,
-                                                         gint *x,
-                                                         gint *y,
-                                                         gint *width,
-                                                         gint *height,
-                                                         AtkCoordType coords);
-AtkAttributeSet*    atk_text_get_run_attributes         (AtkText *text,
-                                                         gint offset,
-                                                         gint *start_offset,
-                                                         gint *end_offset);
-AtkAttributeSet*    atk_text_get_default_attributes     (AtkText *text);
-gint                atk_text_get_character_count        (AtkText *text);
-gint                atk_text_get_offset_at_point        (AtkText *text,
-                                                         gint x,
-                                                         gint y,
-                                                         AtkCoordType coords);
-AtkTextRange**      atk_text_get_bounded_ranges         (AtkText *text,
-                                                         AtkTextRectangle *rect,
-                                                         AtkCoordType coord_type,
-                                                         AtkTextClipType x_clip_type,
-                                                         AtkTextClipType y_clip_type);
-void                atk_text_get_range_extents          (AtkText *text,
-                                                         gint start_offset,
-                                                         gint end_offset,
-                                                         AtkCoordType coord_type,
-                                                         AtkTextRectangle *rect);
-void                atk_text_free_ranges                (AtkTextRange **ranges);
-gint                atk_text_get_n_selections           (AtkText *text);
-gchar*              atk_text_get_selection              (AtkText *text,
-                                                         gint selection_num,
-                                                         gint *start_offset,
-                                                         gint *end_offset);
-gboolean            atk_text_add_selection              (AtkText *text,
-                                                         gint start_offset,
-                                                         gint end_offset);
-gboolean            atk_text_remove_selection           (AtkText *text,
-                                                         gint selection_num);
-gboolean            atk_text_set_selection              (AtkText *text,
-                                                         gint selection_num,
-                                                         gint start_offset,
-                                                         gint end_offset);
-gboolean            atk_text_set_caret_offset           (AtkText *text,
-                                                         gint offset);
-void                atk_attribute_set_free              (AtkAttributeSet *attrib_set);
-AtkTextAttribute    atk_text_attribute_register         (const gchar *name);
-const gchar*        atk_text_attribute_get_name         (AtkTextAttribute attr);
-AtkTextAttribute    atk_text_attribute_for_name         (const gchar *name);
-const gchar*        atk_text_attribute_get_value        (AtkTextAttribute attr,
-                                                         gint index_);
+gchar *             atk_text_get_text                   (AtkText *text,
+                                                         gint start_offset,
+                                                         gint end_offset);
+gunichar            atk_text_get_character_at_offset    (AtkText *text,
+                                                         gint offset);
+gchar *             atk_text_get_text_after_offset      (AtkText *text,
+                                                         gint offset,
+                                                         AtkTextBoundary boundary_type,
+                                                         gint *start_offset,
+                                                         gint *end_offset);
+gchar *             atk_text_get_text_at_offset         (AtkText *text,
+                                                         gint offset,
+                                                         AtkTextBoundary boundary_type,
+                                                         gint *start_offset,
+                                                         gint *end_offset);
+gchar *             atk_text_get_text_before_offset     (AtkText *text,
+                                                         gint offset,
+                                                         AtkTextBoundary boundary_type,
+                                                         gint *start_offset,
+                                                         gint *end_offset);
+gint                atk_text_get_caret_offset           (AtkText *text);
+void                atk_text_get_character_extents      (AtkText *text,
+                                                         gint offset,
+                                                         gint *x,
+                                                         gint *y,
+                                                         gint *width,
+                                                         gint *height,
+                                                         AtkCoordType coords);
+AtkAttributeSet *   atk_text_get_run_attributes         (AtkText *text,
+                                                         gint offset,
+                                                         gint *start_offset,
+                                                         gint *end_offset);
+AtkAttributeSet *   atk_text_get_default_attributes     (AtkText *text);
+gint                atk_text_get_character_count        (AtkText *text);
+gint                atk_text_get_offset_at_point        (AtkText *text,
+                                                         gint x,
+                                                         gint y,
+                                                         AtkCoordType coords);
+AtkTextRange **     atk_text_get_bounded_ranges         (AtkText *text,
+                                                         AtkTextRectangle *rect,
+                                                         AtkCoordType coord_type,
+                                                         AtkTextClipType x_clip_type,
+                                                         AtkTextClipType y_clip_type);
+void                atk_text_get_range_extents          (AtkText *text,
+                                                         gint start_offset,
+                                                         gint end_offset,
+                                                         AtkCoordType coord_type,
+                                                         AtkTextRectangle *rect);
+void                atk_text_free_ranges                (AtkTextRange **ranges);
+gint                atk_text_get_n_selections           (AtkText *text);
+gchar *             atk_text_get_selection              (AtkText *text,
+                                                         gint selection_num,
+                                                         gint *start_offset,
+                                                         gint *end_offset);
+gboolean            atk_text_add_selection              (AtkText *text,
+                                                         gint start_offset,
+                                                         gint end_offset);
+gboolean            atk_text_remove_selection           (AtkText *text,
+                                                         gint selection_num);
+gboolean            atk_text_set_selection              (AtkText *text,
+                                                         gint selection_num,
+                                                         gint start_offset,
+                                                         gint end_offset);
+gboolean            atk_text_set_caret_offset           (AtkText *text,
+                                                         gint offset);
+void                atk_attribute_set_free              (AtkAttributeSet *attrib_set);
+AtkTextAttribute    atk_text_attribute_register         (const gchar *name);
+const gchar *       atk_text_attribute_get_name         (AtkTextAttribute attr);
+AtkTextAttribute    atk_text_attribute_for_name         (const gchar *name);
+const gchar *       atk_text_attribute_get_value        (AtkTextAttribute attr,
+                                                         gint index_);
 
-
+

Object Hierarchy

   GInterface
    +----AtkText
 
-
+

Known Implementations

AtkText is implemented by AtkNoOpObject.

-
+

Signals

-  "text-attributes-changed"                        : Run Last
-  "text-caret-moved"                               : Run Last
-  "text-changed"                                   : Run Last / Has Details
-  "text-selection-changed"                         : Run Last
+  "text-attributes-changed"                        : Run Last
+  "text-caret-moved"                               : Run Last
+  "text-changed"                                   : Has Details
+  "text-insert"                                    : Has Details
+  "text-remove"                                    : Has Details
+  "text-selection-changed"                         : Run Last
+  "text-update"                                    : Has Details
 
-
+

Description

-AtkText should be implemented by AtkObjects on behalf of widgets that +AtkText should be implemented by AtkObjects on behalf of widgets that have text content which is either attributed or otherwise non-trivial. -AtkObjects whose text content is simple, unattributed, and very brief +AtkObjects whose text content is simple, unattributed, and very brief may expose that content via atk_object_get_name instead; however if the text is editable, multi-line, typically longer than three or four words, attributed, selectable, or if the object already uses the 'name' ATK @@ -284,9 +172,9 @@ glyph-to-offset mapping may be complex for languages which use ligatures.

-
+

Details

-
+

AtkText

typedef struct _AtkText AtkText;

@@ -294,7 +182,7 @@


-
+

enum AtkTextBoundary

typedef enum {
   ATK_TEXT_BOUNDARY_CHAR,
@@ -307,56 +195,55 @@
 } AtkTextBoundary;
 

-Text boundary types used for specifying boundaries for regions of text

-

+Text boundary types used for specifying boundaries for regions of text

- - + - - + - - + - - + - - + - - + - - +

ATK_TEXT_BOUNDARY_CHAR

Boundary is the boundary between characters +

ATK_TEXT_BOUNDARY_CHAR

Boundary is the boundary between characters (including non-printing characters)

ATK_TEXT_BOUNDARY_WORD_START

Boundary is the start (i.e. first character) of a word. +

ATK_TEXT_BOUNDARY_WORD_START

Boundary is the start (i.e. first character) of a word.

ATK_TEXT_BOUNDARY_WORD_END

Boundary is the end (i.e. last character) of a word. +

ATK_TEXT_BOUNDARY_WORD_END

Boundary is the end (i.e. last character) of a word.

ATK_TEXT_BOUNDARY_SENTENCE_START

Boundary is the first character in a sentence. +

ATK_TEXT_BOUNDARY_SENTENCE_START

Boundary is the first character in a sentence.

ATK_TEXT_BOUNDARY_SENTENCE_END

Boundary is the last (terminal) character in a sentence; +

ATK_TEXT_BOUNDARY_SENTENCE_END

Boundary is the last (terminal) character in a sentence; in languages which use "sentence stop" punctuation such as English, the boundary is thus the '.', '?', or similar terminal punctuation character.

ATK_TEXT_BOUNDARY_LINE_START

Boundary is the initial character of the content or a +

ATK_TEXT_BOUNDARY_LINE_START

Boundary is the initial character of the content or a character immediately following a newline, linefeed, or return character.

ATK_TEXT_BOUNDARY_LINE_END

Boundary is the linefeed, or return character. +

ATK_TEXT_BOUNDARY_LINE_END

Boundary is the linefeed, or return character.

-
+

enum AtkTextClipType

typedef enum {
     ATK_TEXT_CLIP_NONE,
@@ -366,183 +253,148 @@
 } AtkTextClipType;
 

-Describes the type of clipping required.

-

+Describes the type of clipping required.

- - + - - + - - + - - +

ATK_TEXT_CLIP_NONE

No clipping to be done +

ATK_TEXT_CLIP_NONE

No clipping to be done

ATK_TEXT_CLIP_MIN

Text clipped by min coordinate is omitted +

ATK_TEXT_CLIP_MIN

Text clipped by min coordinate is omitted

ATK_TEXT_CLIP_MAX

Text clipped by max coordinate is omitted +

ATK_TEXT_CLIP_MAX

Text clipped by max coordinate is omitted

ATK_TEXT_CLIP_BOTH

Only text fully within mix/max bound is retained +

ATK_TEXT_CLIP_BOTH

Only text fully within mix/max bound is retained

-
-

AtkTextRange

-
typedef struct {
+
+

struct AtkTextRange

+
struct AtkTextRange {
   AtkTextRectangle bounds;
   gint start_offset;
   gint end_offset;
   gchar* content;
-} AtkTextRange;
+};
 

-A structure used to describe a text range.

-

+A structure used to describe a text range.

- - + + - - + + - - + + - - + +

AtkTextRectangle bounds;

A rectangle giving the bounds of the text range -

AtkTextRectangle bounds;

A rectangle giving the bounds of the text range

gint start_offset;

The start offset of a AtkTextRange -

gint start_offset;

The start offset of a AtkTextRange

gint end_offset;

The end offset of a AtkTextRange -

gint end_offset;

The end offset of a AtkTextRange

gchar *content;

The text in the text range -

gchar *content;

The text in the text range

-
-

AtkTextRectangle

-
typedef struct {
+
+

struct AtkTextRectangle

+
struct AtkTextRectangle {
   gint x;
   gint y;
   gint width;
   gint height;
-} AtkTextRectangle;
+};
 

-A structure used to store a rectangle used by AtkText.

-

+A structure used to store a rectangle used by AtkText.

- - + + - - + + - - + + - - + +

gint x;

The horizontal coordinate of a rectangle -

gint x;

The horizontal coordinate of a rectangle

gint y;

The vertical coordinate of a rectangle -

gint y;

The vertical coordinate of a rectangle

gint width;

The width of a rectangle -

gint width;

The width of a rectangle

gint height;

The height of a rectangle -

gint height;

The height of a rectangle

-
-

AtkAttribute

-
typedef struct {
+
+

struct AtkAttribute

+
struct AtkAttribute {
   gchar* name;
   gchar* value;
-} AtkAttribute;
+};
 

-A string name/value pair representing a text attribute.

-

+A string name/value pair representing a text attribute.

- - + - - + +For values which are numbers, the string representation of the number +is in value.

gchar *name;

The attribute name. Call atk_text_attr_get_name() +

gchar *name;

The attribute name. Call atk_text_attr_get_name()

gchar *value;

the value of the attribute, represented as a string. +

gchar *value;

the value of the attribute, represented as a string. Call atk_text_attr_get_value() for those which are strings. -For values which are numbers, the string representation of the number -is in value. -

-
+

AtkAttributeSet

typedef GSList AtkAttributeSet;
 

-This is a singly-linked list (a GSList) of AtkAttribute. It is +This is a singly-linked list (a GSList) of AtkAttribute. It is used by atk_text_get_run_attributes(), atk_text_get_default_attributes() -and atk_editable_text_set_run_attributes()

-

+and atk_editable_text_set_run_attributes()


-
+

enum AtkTextAttribute

-
typedef enum
-{
+
typedef enum {
   ATK_TEXT_ATTR_INVALID = 0,
   ATK_TEXT_ATTR_LEFT_MARGIN,
   ATK_TEXT_ATTR_RIGHT_MARGIN,
@@ -575,256 +427,227 @@
 } AtkTextAttribute;
 

-Describes the text attributes supported

-

+Describes the text attributes supported

- - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - + - - + - - + - - + - - + - - + - - + - - + - - + - - +

ATK_TEXT_ATTR_INVALID

Invalid attribute +

ATK_TEXT_ATTR_INVALID

Invalid attribute

ATK_TEXT_ATTR_LEFT_MARGIN

The pixel width of the left margin +

ATK_TEXT_ATTR_LEFT_MARGIN

The pixel width of the left margin

ATK_TEXT_ATTR_RIGHT_MARGIN

The pixel width of the right margin +

ATK_TEXT_ATTR_RIGHT_MARGIN

The pixel width of the right margin

ATK_TEXT_ATTR_INDENT

The number of pixels that the text is indented +

ATK_TEXT_ATTR_INDENT

The number of pixels that the text is indented

ATK_TEXT_ATTR_INVISIBLE

Either "true" or "false" indicating whether text is visible or not +

ATK_TEXT_ATTR_INVISIBLE

Either "true" or "false" indicating whether text is visible or not

ATK_TEXT_ATTR_EDITABLE

Either "true" or "false" indicating whether text is editable or not +

ATK_TEXT_ATTR_EDITABLE

Either "true" or "false" indicating whether text is editable or not

ATK_TEXT_ATTR_PIXELS_ABOVE_LINES

Pixels of blank space to leave above each newline-terminated line. +

ATK_TEXT_ATTR_PIXELS_ABOVE_LINES

Pixels of blank space to leave above each newline-terminated line.

ATK_TEXT_ATTR_PIXELS_BELOW_LINES

Pixels of blank space to leave below each newline-terminated line. +

ATK_TEXT_ATTR_PIXELS_BELOW_LINES

Pixels of blank space to leave below each newline-terminated line.

ATK_TEXT_ATTR_PIXELS_INSIDE_WRAP

Pixels of blank space to leave between wrapped lines inside the same newline-terminated line (paragraph). +

ATK_TEXT_ATTR_PIXELS_INSIDE_WRAP

Pixels of blank space to leave between wrapped lines inside the same newline-terminated line (paragraph).

ATK_TEXT_ATTR_BG_FULL_HEIGHT

"true" or "false" whether to make the background color for each character the height of the highest font used on the current line, or the height of the font used for the current character. +

ATK_TEXT_ATTR_BG_FULL_HEIGHT

"true" or "false" whether to make the background color for each character the height of the highest font used on the current line, or the height of the font used for the current character.

ATK_TEXT_ATTR_RISE

Number of pixels that the characters are risen above the baseline +

ATK_TEXT_ATTR_RISE

Number of pixels that the characters are risen above the baseline

ATK_TEXT_ATTR_UNDERLINE

"none", "single", "double" or "low" +

ATK_TEXT_ATTR_UNDERLINE

"none", "single", "double", "low", or "error"

ATK_TEXT_ATTR_STRIKETHROUGH

"true" or "false" whether the text is strikethrough +

ATK_TEXT_ATTR_STRIKETHROUGH

"true" or "false" whether the text is strikethrough

ATK_TEXT_ATTR_SIZE

The size of the characters. +

ATK_TEXT_ATTR_SIZE

The size of the characters.

ATK_TEXT_ATTR_SCALE

The scale of the characters. The value is a string representation of a double +

ATK_TEXT_ATTR_SCALE

The scale of the characters. The value is a string representation of a double

ATK_TEXT_ATTR_WEIGHT

The weight of the characters. +

ATK_TEXT_ATTR_WEIGHT

The weight of the characters.

ATK_TEXT_ATTR_LANGUAGE

The language used +

ATK_TEXT_ATTR_LANGUAGE

The language used

ATK_TEXT_ATTR_FAMILY_NAME

The font family name +

ATK_TEXT_ATTR_FAMILY_NAME

The font family name

ATK_TEXT_ATTR_BG_COLOR

The background color. The value is an RGB value of the format "u,u,u" +

ATK_TEXT_ATTR_BG_COLOR

The background color. The value is an RGB value of the format "u,u,u"

ATK_TEXT_ATTR_FG_COLOR

ATK_TEXT_ATTR_FG_COLOR

The foreground color. The value is an RGB value of the format "u,u,u"

ATK_TEXT_ATTR_BG_STIPPLE

"true" if a GdkBitmap is set for stippling the background color. +

ATK_TEXT_ATTR_BG_STIPPLE

"true" if a GdkBitmap is set for stippling the background color.

ATK_TEXT_ATTR_FG_STIPPLE

"true" if a GdkBitmap is set for stippling the foreground color. +

ATK_TEXT_ATTR_FG_STIPPLE

"true" if a GdkBitmap is set for stippling the foreground color.

ATK_TEXT_ATTR_WRAP_MODE

The wrap mode of the text, if any. Values are "none", "char", "word", or "word_char". +

ATK_TEXT_ATTR_WRAP_MODE

The wrap mode of the text, if any. Values are "none", "char", "word", or "word_char".

ATK_TEXT_ATTR_DIRECTION

The direction of the text, if set. Values are "none", "ltr" or "rtl" +

ATK_TEXT_ATTR_DIRECTION

The direction of the text, if set. Values are "none", "ltr" or "rtl"

ATK_TEXT_ATTR_JUSTIFICATION

The justification of the text, if set. Values are "left", "right", "center" or "fill" +

ATK_TEXT_ATTR_JUSTIFICATION

The justification of the text, if set. Values are "left", "right", "center" or "fill"

ATK_TEXT_ATTR_STRETCH

The stretch of the text, if set. Values are "ultra_condensed", "extra_condensed", "condensed", "semi_condensed", "normal", "semi_expanded", "expanded", "extra_expanded" or "ultra_expanded" +

ATK_TEXT_ATTR_STRETCH

The stretch of the text, if set. Values are "ultra_condensed", "extra_condensed", "condensed", "semi_condensed", "normal", "semi_expanded", "expanded", "extra_expanded" or "ultra_expanded"

ATK_TEXT_ATTR_VARIANT

The capitalization variant of the text, if set. Values are "normal" or "small_caps" +

ATK_TEXT_ATTR_VARIANT

The capitalization variant of the text, if set. Values are "normal" or "small_caps"

ATK_TEXT_ATTR_STYLE

The slant style of the text, if set. Values are "normal", "oblique" or "italic" +

ATK_TEXT_ATTR_STYLE

The slant style of the text, if set. Values are "normal", "oblique" or "italic"

ATK_TEXT_ATTR_LAST_DEFINED

not a valid text attribute, used for finding end of enumeration +

ATK_TEXT_ATTR_LAST_DEFINED

not a valid text attribute, used for finding end of enumeration

-
+

atk_text_get_text ()

-
gchar*              atk_text_get_text                   (AtkText *text,
-                                                         gint start_offset,
-                                                         gint end_offset);
-

-Gets the specified text.

+
gchar *             atk_text_get_text                   (AtkText *text,
+                                                         gint start_offset,
+                                                         gint end_offset);

+Gets the specified text.

- - + - + - +

text :

an AtkText +an AtkText

start_offset :

start position -start position

end_offset :

end position -end position

Returns :

the text from start_offset up to, but not including end_offset. -a newly allocated string containing the text from start_offset up +to, but not including end_offset. Use g_free() to free the returned string.

-
+

atk_text_get_character_at_offset ()

-
gunichar            atk_text_get_character_at_offset    (AtkText *text,
-                                                         gint offset);
-

-Gets the specified text.

+
gunichar            atk_text_get_character_at_offset    (AtkText *text,
+                                                         gint offset);

+Gets the specified text.

- - + - +

text :

an AtkText +an AtkText

offset :

position -position

Returns :

the character at offset. -the character at offset.

-
+

atk_text_get_text_after_offset ()

-
gchar*              atk_text_get_text_after_offset      (AtkText *text,
-                                                         gint offset,
-                                                         AtkTextBoundary boundary_type,
-                                                         gint *start_offset,
-                                                         gint *end_offset);
+
gchar *             atk_text_get_text_after_offset      (AtkText *text,
+                                                         gint offset,
+                                                         AtkTextBoundary boundary_type,
+                                                         gint *start_offset,
+                                                         gint *end_offset);

Gets the specified text.

@@ -873,62 +696,50 @@

If the boundary_type is ATK_TEXT_BOUNDARY_LINE_END the returned string -is from the line end at or after the offset to the next line start.

-

+is from the line end at or after the offset to the next line end.

- - + - - + - + - +

text :

an AtkText +an AtkText

offset :

position -position

boundary_type :

An AtkTextBoundary +An AtkTextBoundary

start_offset :

the start offset of the returned string -the start offset of the returned string

end_offset :

the offset of the first character after the - returned substring -the offset of the first character after the +returned substring

Returns :

the text after offset bounded by the specified boundary_type. -a newly allocated string containing the text after offset bounded +by the specified boundary_type. Use g_free() to free the returned string.

-
+

atk_text_get_text_at_offset ()

-
gchar*              atk_text_get_text_at_offset         (AtkText *text,
-                                                         gint offset,
-                                                         AtkTextBoundary boundary_type,
-                                                         gint *start_offset,
-                                                         gint *end_offset);
+
gchar *             atk_text_get_text_at_offset         (AtkText *text,
+                                                         gint offset,
+                                                         AtkTextBoundary boundary_type,
+                                                         gint *start_offset,
+                                                         gint *end_offset);

Gets the specified text.

@@ -984,62 +795,50 @@

If the boundary_type is ATK_TEXT_BOUNDARY_LINE_END the returned string is from the line end before the offset to the line end at or after -the offset.

-

+the offset.

- - + - - + - + - +

text :

an AtkText +an AtkText

offset :

position -position

boundary_type :

An AtkTextBoundary +An AtkTextBoundary

start_offset :

the start offset of the returned string -the start offset of the returned string

end_offset :

the offset of the first character after the - returned substring -the offset of the first character after the +returned substring

Returns :

the text at offset bounded by the specified boundary_type. -a newly allocated string containing the text at offset bounded by +the specified boundary_type. Use g_free() to free the returned string.

-
+

atk_text_get_text_before_offset ()

-
gchar*              atk_text_get_text_before_offset     (AtkText *text,
-                                                         gint offset,
-                                                         AtkTextBoundary boundary_type,
-                                                         gint *start_offset,
-                                                         gint *end_offset);
+
gchar *             atk_text_get_text_before_offset     (AtkText *text,
+                                                         gint offset,
+                                                         AtkTextBoundary boundary_type,
+                                                         gint *start_offset,
+                                                         gint *end_offset);

Gets the specified text.

@@ -1049,8 +848,8 @@

If the boundary_type is ATK_TEXT_BOUNDARY_WORD_START the returned string -is from the word start before the word start before the offset to -the word start before the offset. +is from the word start before the word start before or at the offset to +the word start before or at the offset.

The returned string will contain the word before the offset if the offset @@ -1059,8 +858,8 @@

If the boundary_type is ATK_TEXT_BOUNDARY_WORD_END the returned string -is from the word end before the word end at or before the offset to the -word end at or before the offset. +is from the word end before the word end before the offset to the word +end before the offset.

The returned string will contain the word before the offset if the offset @@ -1093,151 +892,120 @@

If the boundary_type is ATK_TEXT_BOUNDARY_LINE_END the returned string is from the line end before the line end before the offset to the -line end before the offset.

-

+line end before the offset.

- - + - - + - + - +

text :

an AtkText +an AtkText

offset :

position -position

boundary_type :

An AtkTextBoundary +An AtkTextBoundary

start_offset :

the start offset of the returned string -the start offset of the returned string

end_offset :

the offset of the first character after the - returned substring -the offset of the first character after the +returned substring

Returns :

the text before offset bounded by the specified boundary_type. -a newly allocated string containing the text before offset bounded +by the specified boundary_type. Use g_free() to free the returned string.

-
+

atk_text_get_caret_offset ()

-
gint                atk_text_get_caret_offset           (AtkText *text);
-

-Gets the offset position of the caret (cursor).

+
gint                atk_text_get_caret_offset           (AtkText *text);

+Gets the offset position of the caret (cursor).

- - +

text :

an AtkText +an AtkText

Returns :

the offset position of the caret (cursor). -the offset position of the caret (cursor).

-
+

atk_text_get_character_extents ()

-
void                atk_text_get_character_extents      (AtkText *text,
-                                                         gint offset,
-                                                         gint *x,
-                                                         gint *y,
-                                                         gint *width,
-                                                         gint *height,
-                                                         AtkCoordType coords);
+
void                atk_text_get_character_extents      (AtkText *text,
+                                                         gint offset,
+                                                         gint *x,
+                                                         gint *y,
+                                                         gint *width,
+                                                         gint *height,
+                                                         AtkCoordType coords);

Get the bounding box containing the glyph representing the character at - a particular text offset.

-

+ a particular text offset.

- - + - + - + - + - + - +

text :

an AtkText +an AtkText

offset :

The offset of the text character for which bounding information is required. -The offset of the text character for which bounding information is required.

x :

Pointer for the x cordinate of the bounding box -Pointer for the x cordinate of the bounding box

y :

Pointer for the y cordinate of the bounding box -Pointer for the y cordinate of the bounding box

width :

Pointer for the width of the bounding box -Pointer for the width of the bounding box

height :

Pointer for the height of the bounding box -Pointer for the height of the bounding box

coords :

specify whether coordinates are relative to the screen or widget window -specify whether coordinates are relative to the screen or widget window

-
+

atk_text_get_run_attributes ()

-
AtkAttributeSet*    atk_text_get_run_attributes         (AtkText *text,
-                                                         gint offset,
-                                                         gint *start_offset,
-                                                         gint *end_offset);
+
AtkAttributeSet *   atk_text_get_run_attributes         (AtkText *text,
+                                                         gint offset,
+                                                         gint *start_offset,
+                                                         gint *end_offset);

Creates an AtkAttributeSet which consists of the attributes explicitly set at the position offset in the text. start_offset and end_offset are @@ -1245,194 +1013,169 @@ invariant. Note that end_offset is the offset of the first character after the range. See the enum AtkTextAttribute for types of text attributes that can be returned. Note that other attributes may also be -returned.

-

+returned.

- - + - + - + -

text :

an AtkText +an AtkText

offset :

the offset at which to get the attributes, -1 means the offset of -the character to be inserted at the caret location. -the offset at which to get the attributes, -1 means the offset of +the character to be inserted at the caret location.

start_offset :

the address to put the start offset of the range -the address to put the start offset of the range

end_offset :

the address to put the end offset of the range -the address to put the end offset of the range

Returns :

an AtkAttributeSet which contains the attributes explicitly set -at offset. This AtkAttributeSet should be freed by a call to -atk_attribute_set_free(). +an AtkAttributeSet which contains the attributes +explicitly set at offset. This AtkAttributeSet should be freed by a call +to atk_attribute_set_free(). [transfer full]

-
+

atk_text_get_default_attributes ()

-
AtkAttributeSet*    atk_text_get_default_attributes     (AtkText *text);
+
AtkAttributeSet *   atk_text_get_default_attributes     (AtkText *text);

Creates an AtkAttributeSet which consists of the default values of attributes for the text. See the enum AtkTextAttribute for types of text attributes that can be returned. Note that other attributes may also be -returned.

-

+returned.

- -

text :

an AtkText +an AtkText

Returns :

an AtkAttributeSet which contains the default values of attributes. -at offset. This AtkAttributeSet should be freed by a call to -atk_attribute_set_free(). +an AtkAttributeSet which contains the default +values of attributes. at offset. this atkattributeset should be freed by +a call to atk_attribute_set_free(). [transfer full]

-
+

atk_text_get_character_count ()

-
gint                atk_text_get_character_count        (AtkText *text);
-

-Gets the character count.

+
gint                atk_text_get_character_count        (AtkText *text);

+Gets the character count.

- - +

text :

an AtkText +an AtkText

Returns :

the number of characters. -the number of characters.

-
+

atk_text_get_offset_at_point ()

-
gint                atk_text_get_offset_at_point        (AtkText *text,
-                                                         gint x,
-                                                         gint y,
-                                                         AtkCoordType coords);
+
gint                atk_text_get_offset_at_point        (AtkText *text,
+                                                         gint x,
+                                                         gint y,
+                                                         AtkCoordType coords);

Gets the offset of the character located at coordinates x and y. x and y are interpreted as being relative to the screen or this widget's window -depending on coords.

-

+depending on coords.

- - + - + - + - +

text :

an AtkText +an AtkText

x :

screen x-position of character -screen x-position of character

y :

screen y-position of character -screen y-position of character

coords :

specify whether coordinates are relative to the screen or -widget window -specify whether coordinates are relative to the screen or +widget window

Returns :

the offset to the character which is located at -the specified x and y coordinates. -the offset to the character which is located at +the specified x and y coordinates.

-
+

atk_text_get_bounded_ranges ()

-
AtkTextRange**      atk_text_get_bounded_ranges         (AtkText *text,
-                                                         AtkTextRectangle *rect,
-                                                         AtkCoordType coord_type,
-                                                         AtkTextClipType x_clip_type,
-                                                         AtkTextClipType y_clip_type);
-

-Get the ranges of text in the specified bounding box.

+
AtkTextRange **     atk_text_get_bounded_ranges         (AtkText *text,
+                                                         AtkTextRectangle *rect,
+                                                         AtkCoordType coord_type,
+                                                         AtkTextClipType x_clip_type,
+                                                         AtkTextClipType y_clip_type);

+Get the ranges of text in the specified bounding box.

- - + - + - + - + - @@ -1440,484 +1183,382 @@

Since 1.3


-
+

atk_text_get_range_extents ()

-
void                atk_text_get_range_extents          (AtkText *text,
-                                                         gint start_offset,
-                                                         gint end_offset,
-                                                         AtkCoordType coord_type,
-                                                         AtkTextRectangle *rect);
-

-Get the bounding box for text within the specified range.

+
void                atk_text_get_range_extents          (AtkText *text,
+                                                         gint start_offset,
+                                                         gint end_offset,
+                                                         AtkCoordType coord_type,
+                                                         AtkTextRectangle *rect);

+Get the bounding box for text within the specified range.

text :

an AtkText +an AtkText

rect :

An AtkTextRectagle giving the dimensions of the bounding box. -An AtkTextRectangle giving the dimensions of the bounding box.

coord_type :

Specify whether coordinates are relative to the screen or widget window. -Specify whether coordinates are relative to the screen or widget window.

x_clip_type :

Specify the horizontal clip type. -Specify the horizontal clip type.

y_clip_type :

Specify the vertical clip type. -Specify the vertical clip type.

Returns :

Array of AtkTextRange. The last element of the array returned - by this function will be NULL. +Array of AtkTextRange. The last +element of the array returned by this function will be NULL. [array zero-terminated=1]
- - + - + - + - +

text :

an AtkText +an AtkText

start_offset :

The offset of the first text character for which boundary - information is required. -The offset of the first text character for which boundary +information is required.

end_offset :

The offset of the text character after the last character - for which boundary information is required. -The offset of the text character after the last character +for which boundary information is required.

coord_type :

Specify whether coordinates are relative to the screen or widget window. -Specify whether coordinates are relative to the screen or widget window.

rect :

A pointer to a AtkTextRectangle which is filled in by this function. -A pointer to a AtkTextRectangle which is filled in by this function.

Since 1.3


-
+

atk_text_free_ranges ()

-
void                atk_text_free_ranges                (AtkTextRange **ranges);
+
void                atk_text_free_ranges                (AtkTextRange **ranges);

Frees the memory associated with an array of AtkTextRange. It is assumed that the array was returned by the function atk_text_get_bounded_ranges -and is NULL terminated.

-

+and is NULL terminated.

- +

ranges :

A pointer to an array of AtkTextRange which is to be freed. -A pointer to an array of AtkTextRange which is to be freed.

Since 1.3


-
+

atk_text_get_n_selections ()

-
gint                atk_text_get_n_selections           (AtkText *text);
-

-Gets the number of selected regions.

+
gint                atk_text_get_n_selections           (AtkText *text);

+Gets the number of selected regions.

- - +

text :

an AtkText +an AtkText

Returns :

The number of selected regions, or -1 if a failure - occurred. -The number of selected regions, or -1 if a failure +occurred.

-
+

atk_text_get_selection ()

-
gchar*              atk_text_get_selection              (AtkText *text,
-                                                         gint selection_num,
-                                                         gint *start_offset,
-                                                         gint *end_offset);
-

-Gets the text from the specified selection.

+
gchar *             atk_text_get_selection              (AtkText *text,
+                                                         gint selection_num,
+                                                         gint *start_offset,
+                                                         gint *end_offset);

+Gets the text from the specified selection.

- - +moving or deleting a selected region can change the numbering. - + - + - +

text :

an AtkText +an AtkText

selection_num :

The selection number. The selected regions are +The selection number. The selected regions are assigned numbers that correspond to how far the region is from the start of the text. The selected region closest to the beginning of the text region is assigned the number 0, etc. Note that adding, -moving or deleting a selected region can change the numbering. -

start_offset :

passes back the start position of the selected region -passes back the start position of the selected region

end_offset :

passes back the end position of (e.g. offset immediately past) -the selected region -passes back the end position of (e.g. offset immediately past) +the selected region

Returns :

the selected text. -a newly allocated string containing the selected text. Use g_free() +to free the returned string.

-
+

atk_text_add_selection ()

-
gboolean            atk_text_add_selection              (AtkText *text,
-                                                         gint start_offset,
-                                                         gint end_offset);
-

-Adds a selection bounded by the specified offsets.

+
gboolean            atk_text_add_selection              (AtkText *text,
+                                                         gint start_offset,
+                                                         gint end_offset);

+Adds a selection bounded by the specified offsets.

- - + - + - +

text :

an AtkText +an AtkText

start_offset :

the start position of the selected region -the start position of the selected region

end_offset :

the offset of the first character after the selected region. -the offset of the first character after the selected region.

Returns :

TRUE if success, FALSE otherwise - +TRUE if success, FALSE otherwise

-
+

atk_text_remove_selection ()

-
gboolean            atk_text_remove_selection           (AtkText *text,
-                                                         gint selection_num);
-

-Removes the specified selection.

+
gboolean            atk_text_remove_selection           (AtkText *text,
+                                                         gint selection_num);

+Removes the specified selection.

- - +moving or deleting a selected region can change the numbering. - +

text :

an AtkText +an AtkText

selection_num :

The selection number. The selected regions are +The selection number. The selected regions are assigned numbers that correspond to how far the region is from the start of the text. The selected region closest to the beginning of the text region is assigned the number 0, etc. Note that adding, -moving or deleting a selected region can change the numbering. -

Returns :

TRUE if success, FALSE otherwise - +TRUE if success, FALSE otherwise

-
+

atk_text_set_selection ()

-
gboolean            atk_text_set_selection              (AtkText *text,
-                                                         gint selection_num,
-                                                         gint start_offset,
-                                                         gint end_offset);
-

-Changes the start and end offset of the specified selection.

+
gboolean            atk_text_set_selection              (AtkText *text,
+                                                         gint selection_num,
+                                                         gint start_offset,
+                                                         gint end_offset);

+Changes the start and end offset of the specified selection.

- - +moving or deleting a selected region can change the numbering. - + - + - +

text :

an AtkText +an AtkText

selection_num :

The selection number. The selected regions are +The selection number. The selected regions are assigned numbers that correspond to how far the region is from the start of the text. The selected region closest to the beginning of the text region is assigned the number 0, etc. Note that adding, -moving or deleting a selected region can change the numbering. -

start_offset :

the new start position of the selection -the new start position of the selection

end_offset :

the new end position of (e.g. offset immediately past) -the selection -the new end position of (e.g. offset immediately past) +the selection

Returns :

TRUE if success, FALSE otherwise - +TRUE if success, FALSE otherwise

-
+

atk_text_set_caret_offset ()

-
gboolean            atk_text_set_caret_offset           (AtkText *text,
-                                                         gint offset);
-

-Sets the caret (cursor) position to the specified offset.

+
gboolean            atk_text_set_caret_offset           (AtkText *text,
+                                                         gint offset);

+Sets the caret (cursor) position to the specified offset.

- - + - +

text :

an AtkText +an AtkText

offset :

position -position

Returns :

TRUE if success, FALSE otherwise. - +TRUE if success, FALSE otherwise.

-
+

atk_attribute_set_free ()

-
void                atk_attribute_set_free              (AtkAttributeSet *attrib_set);
+
void                atk_attribute_set_free              (AtkAttributeSet *attrib_set);

Frees the memory used by an AtkAttributeSet, including all its -AtkAttributes.

-

+AtkAttributes.

- +

attrib_set :

The AtkAttributeSet to free -The AtkAttributeSet to free

-
+

atk_text_attribute_register ()

-
AtkTextAttribute    atk_text_attribute_register         (const gchar *name);
-

-Associate name with a new AtkTextAttribute

+
AtkTextAttribute    atk_text_attribute_register         (const gchar *name);

+Associate name with a new AtkTextAttribute

- + -

name :

a name string -a name string

Returns :

an AtkTextAttribute associated with name +an AtkTextAttribute associated with name

-
+

atk_text_attribute_get_name ()

-
const gchar*        atk_text_attribute_get_name         (AtkTextAttribute attr);
-

-Gets the name corresponding to the AtkTextAttribute

+
const gchar *       atk_text_attribute_get_name         (AtkTextAttribute attr);

+Gets the name corresponding to the AtkTextAttribute

- + - +

attr :

The AtkTextAttribute whose name is required -The AtkTextAttribute whose name is required

Returns :

a string containing the name; this string should not be freed -a string containing the name; this string should not be freed

-
+

atk_text_attribute_for_name ()

-
AtkTextAttribute    atk_text_attribute_for_name         (const gchar *name);
-

-Get the AtkTextAttribute type corresponding to a text attribute name.

+
AtkTextAttribute    atk_text_attribute_for_name         (const gchar *name);

+Get the AtkTextAttribute type corresponding to a text attribute name.

- + - +or ATK_TEXT_ATTRIBUTE_INVALID if no matching text attribute is found.

name :

a string which is the (non-localized) name of an ATK text attribute. -a string which is the (non-localized) name of an ATK text attribute.

Returns :

the AtkTextAttribute enumerated type corresponding to the specified +the AtkTextAttribute enumerated type corresponding to the specified name, - or ATK_TEXT_ATTRIBUTE_INVALID if no matching text attribute is found. -

-
+

atk_text_attribute_get_value ()

-
const gchar*        atk_text_attribute_get_value        (AtkTextAttribute attr,
-                                                         gint index_);
-

-Gets the value for the index of the AtkTextAttribute

+
const gchar *       atk_text_attribute_get_value        (AtkTextAttribute attr,
+                                                         gint index_);

+Gets the value for the index of the AtkTextAttribute

- + - + - +

attr :

The AtkTextAttribute for which a value is required -The AtkTextAttribute for which a value is required

index_ :

The index of the required value -The index of the required value

Returns :

a string containing the value; this string should not be freed; -NULL is returned if there are no values maintained for the attr value. -a string containing the value; this string should not be freed; +NULL is returned if there are no values maintained for the attr value.
-
+

Signal Details

-
+

The "text-attributes-changed" signal

-
void                user_function                      (AtkText *atktext,
-                                                        gpointer user_data)      : Run Last
+
void                user_function                      (AtkText *atktext,
+                                                        gpointer user_data)      : Run Last

The "text-attributes-changed" signal is emitted when the text attributes of the text of an object which implements AtkText changes. @@ -1927,8 +1568,7 @@

atktext :

-the object which received the signal. - +the object which received the signal.

user_data :

@@ -1938,15 +1578,11 @@

-
+

The "text-caret-moved" signal

-
void                user_function                      (AtkText *atktext,
-                                                        gint     arg1,
-                                                        gpointer user_data)      : Run Last
+
void                user_function                      (AtkText *atktext,
+                                                        gint     arg1,
+                                                        gpointer user_data)      : Run Last

The "text-caret-moved" signal is emitted when the caret position of the text of an object which implements AtkText changes. @@ -1956,13 +1592,11 @@

atktext :

-the object which received the signal. - +the object which received the signal.

arg1 :

-The new position of the text caret. - +The new position of the text caret.

user_data :

@@ -1972,18 +1606,12 @@

-
+

The "text-changed" signal

-
void                user_function                      (AtkText *atktext,
-                                                        gint     arg1,
-                                                        gint     arg2,
-                                                        gpointer user_data)      : Run Last / Has Details
+
void                user_function                      (AtkText *atktext,
+                                                        gint     arg1,
+                                                        gint     arg2,
+                                                        gpointer user_data)      : Has Details

The "text-changed" signal is emitted when the text of the object which implements the AtkText interface changes, This signal will have a detail @@ -1995,18 +1623,15 @@

atktext :

-the object which received the signal. - +the object which received the signal.

arg1 :

-The position (character offset) of the insertion or deletion. - +The position (character offset) of the insertion or deletion.

arg2 :

-The length (in characters) of text inserted or deleted. - +The length (in characters) of text inserted or deleted.

user_data :

@@ -2016,12 +1641,58 @@

-
+
+

The "text-insert" signal

+
void                user_function                      (AtkText *atktext,
+                                                        gint     arg1,
+                                                        gint     arg2,
+                                                        gchar   *arg3,
+                                                        gpointer user_data)      : Has Details
+

+

+
++ + + + + + + + + + +

atktext :

the object which received the signal.

user_data :

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

The "text-remove" signal

+
void                user_function                      (AtkText *atktext,
+                                                        gint     arg1,
+                                                        gint     arg2,
+                                                        gchar   *arg3,
+                                                        gpointer user_data)      : Has Details
+

+

+
++ + + + + + + + + + +

atktext :

the object which received the signal.

user_data :

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

The "text-selection-changed" signal

-
void                user_function                      (AtkText *atktext,
-                                                        gpointer user_data)      : Run Last
+
void                user_function                      (AtkText *atktext,
+                                                        gpointer user_data)      : Run Last

The "text-selection-changed" signal is emitted when the selected text of an object which implements AtkText changes. @@ -2031,8 +1702,32 @@

atktext :

-the object which received the signal. - +the object which received the signal. + + +

user_data :

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

The "text-update" signal

+
void                user_function                      (AtkText *atktext,
+                                                        gint     arg1,
+                                                        gint     arg2,
+                                                        gint     arg3,
+                                                        gchar   *arg4,
+                                                        gpointer user_data)      : Has Details
+

+

+
++ + + + @@ -2045,6 +1740,6 @@ + Generated by GTK-Doc V1.17.1 - + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkUtil.html atk1.0-2.2.0/docs/html/AtkUtil.html --- atk1.0-1.30.0/docs/html/AtkUtil.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkUtil.html 2011-09-26 22:25:58.000000000 +0000 @@ -8,16 +8,8 @@ - + - - - - - - - -

atktext :

the object which received the signal.

user_data :

@@ -30,13 +22,13 @@ -
+
@@ -45,69 +37,60 @@
-
+

Synopsis

-
-                    AtkUtil;
+
struct              AtkUtil;
 enum                AtkCoordType;
-guint               atk_add_focus_tracker               (AtkEventListener focus_tracker);
-void                atk_remove_focus_tracker            (guint tracker_id);
-void                atk_focus_tracker_init              (AtkEventListenerInit init);
-void                atk_focus_tracker_notify            (AtkObject *object);
-void                (*AtkEventListener)                 (AtkObject *obj);
-void                (*AtkEventListenerInit)             (void);
-guint               atk_add_global_event_listener       (GSignalEmissionHook listener,
-                                                         const gchar *event_type);
-void                atk_remove_global_event_listener    (guint listener_id);
-                    AtkKeyEventStruct;
+guint               atk_add_focus_tracker               (AtkEventListener focus_tracker);
+void                atk_remove_focus_tracker            (guint tracker_id);
+void                atk_focus_tracker_init              (AtkEventListenerInit init);
+void                atk_focus_tracker_notify            (AtkObject *object);
+void                (*AtkEventListener)                 (AtkObject *obj);
+void                (*AtkEventListenerInit)             (void);
+guint               atk_add_global_event_listener       (GSignalEmissionHook listener,
+                                                         const gchar *event_type);
+void                atk_remove_global_event_listener    (guint listener_id);
+struct              AtkKeyEventStruct;
 enum                AtkKeyEventType;
-gint                (*AtkKeySnoopFunc)                  (AtkKeyEventStruct *event,
-                                                         gpointer func_data);
-guint               atk_add_key_event_listener          (AtkKeySnoopFunc listener,
-                                                         gpointer data);
-void                atk_remove_key_event_listener       (guint listener_id);
-AtkObject*          atk_get_root                        (void);
-AtkObject*          atk_get_focus_object                (void);
-const gchar *       atk_get_toolkit_name                (void);
-const gchar *       atk_get_toolkit_version             (void);
+gint                (*AtkKeySnoopFunc)                  (AtkKeyEventStruct *event,
+                                                         gpointer func_data);
+guint               atk_add_key_event_listener          (AtkKeySnoopFunc listener,
+                                                         gpointer data);
+void                atk_remove_key_event_listener       (guint listener_id);
+AtkObject *         atk_get_root                        (void);
+AtkObject *         atk_get_focus_object                (void);
+const gchar *       atk_get_toolkit_name                (void);
+const gchar *       atk_get_toolkit_version             (void);
+const gchar *       atk_get_version                     (void);
+#define             ATK_DEFINE_TYPE                     (TN,
+                                                         t_n,
+                                                         T_P)
+#define             ATK_DEFINE_TYPE_EXTENDED            (TN,
+                                                         t_n,
+                                                         T_P,
+                                                         _f_,
+                                                         _C_)
+#define             ATK_DEFINE_TYPE_WITH_CODE           (TN,
+                                                         t_n,
+                                                         T_P,
+                                                         _C_)
+#define             ATK_DEFINE_ABSTRACT_TYPE            (TN,
+                                                         t_n,
+                                                         T_P)
+#define             ATK_DEFINE_ABSTRACT_TYPE_WITH_CODE  (TN,
+                                                         t_n,
+                                                         T_P,
+                                                         _C_)
 
-
+

Object Hierarchy

-  GObject
+  GObject
    +----AtkUtil
 
-
+

Description

A set of ATK utility functions which are used to support event registration of @@ -115,39 +98,38 @@ information about the current ATK implementation and toolkit version.

-
+

Details

-
-

AtkUtil

-
typedef struct _AtkUtil AtkUtil;
+
+

struct AtkUtil

+
struct AtkUtil;

The AtkUtil struct does not contain any fields.


-
+

enum AtkCoordType

typedef enum {
   ATK_XY_SCREEN,
   ATK_XY_WINDOW
-}AtkCoordType;
+} AtkCoordType;
 

Specifies how xy coordinates are to be interpreted. Used by functions such -as atk_component_get_position() and atk_text_get_character_extents()

-

+as atk_component_get_position() and atk_text_get_character_extents()

- - + - - + @@ -155,95 +137,83 @@

ATK_XY_SCREEN

specifies xy coordinates relative to the screen +

ATK_XY_SCREEN

specifies xy coordinates relative to the screen

ATK_XY_WINDOW

specifies xy coordinates relative to the widget's +

ATK_XY_WINDOW

specifies xy coordinates relative to the widget's top-level window

-
+

atk_add_focus_tracker ()

-
guint               atk_add_focus_tracker               (AtkEventListener focus_tracker);
+
guint               atk_add_focus_tracker               (AtkEventListener focus_tracker);

Adds the specified function to the list of functions to be called -when an object receives focus.

-

+when an object receives focus.

- + - +

focus_tracker :

Function to be added to the list of functions to be called -when an object receives focus. -Function to be added to the list of functions to be called +when an object receives focus.

Returns :

added focus tracker id, or 0 on failure. -added focus tracker id, or 0 on failure.

-
+

atk_remove_focus_tracker ()

-
void                atk_remove_focus_tracker            (guint tracker_id);
+
void                atk_remove_focus_tracker            (guint tracker_id);

Removes the specified focus tracker from the list of functions -to be called when any object receives focus.

-

+to be called when any object receives focus.

- +

tracker_id :

the id of the focus tracker to remove -the id of the focus tracker to remove

-
+

atk_focus_tracker_init ()

-
void                atk_focus_tracker_init              (AtkEventListenerInit init);
+
void                atk_focus_tracker_init              (AtkEventListenerInit init);

Specifies the function to be called for focus tracker initialization. This function should be called by an implementation of the ATK interface if any specific work needs to be done to enable -focus tracking.

-

+focus tracking.

- +

init :

Function to be called for focus tracker initialization -Function to be called for focus tracker initialization

-
+

atk_focus_tracker_notify ()

-
void                atk_focus_tracker_notify            (AtkObject *object);
+
void                atk_focus_tracker_notify            (AtkObject *object);

Cause the focus tracker functions which have been specified to be -executed for the object.

-

+executed for the object.

-

object :

an AtkObject +an AtkObject

-
+

AtkEventListener ()

-
void                (*AtkEventListener)                 (AtkObject *obj);
+
void                (*AtkEventListener)                 (AtkObject *obj);

A function which is called when an object emits a matching event, as used in atk_add_focus_tracker. @@ -252,93 +222,90 @@ attach signal handlers for the various ATK signals instead.

-see: atk_add_focus_tracker.

-

+see atk_add_focus_tracker.

- +

obj :

An AtkObject instance for whom the callback will be called when -the specified event (e.g. 'focus:') takes place. -An AtkObject instance for whom the callback will be called when +the specified event (e.g. 'focus:') takes place.

-
+

AtkEventListenerInit ()

-
void                (*AtkEventListenerInit)             (void);
+
void                (*AtkEventListenerInit)             (void);

An AtkEventListenerInit function is a special function that is called in order to initialize the per-object event registration system used by AtkEventListener, if any preparation is required.

-see: atk_focus_tracker_init.

-

+see atk_focus_tracker_init.


-
+

atk_add_global_event_listener ()

-
guint               atk_add_global_event_listener       (GSignalEmissionHook listener,
-                                                         const gchar *event_type);
+
guint               atk_add_global_event_listener       (GSignalEmissionHook listener,
+                                                         const gchar *event_type);

Adds the specified function to the list of functions to be called -when an event of type event_type occurs.

+when an ATK event of type event_type occurs. +

+

+The format of event_type is the following: + "ATK:<atk_type>:<atk_event> +

+Where "ATK" works as the namespace, <atk_interface> is the name of +the ATK type (interface or object) and <atk_event> is the name of +the signal defined on that interface. +

+

+For example: + ATK:AtkObject:state-change + ATK:AtkText:text-selection-changed

- + - + - +

listener :

the listener to notify -the listener to notify

event_type :

the type of event for which notification is requested -the type of event for which notification is requested

Returns :

added event listener id, or 0 on failure. -added event listener id, or 0 on failure.

-
+

atk_remove_global_event_listener ()

-
void                atk_remove_global_event_listener    (guint listener_id);
-

-Removes the specified event listener

+
void                atk_remove_global_event_listener    (guint listener_id);

+Removes the specified event listener

- +

listener_id :

the id of the event listener to remove -the id of the event listener to remove

-
-

AtkKeyEventStruct

-
typedef struct {
+
+

struct AtkKeyEventStruct

+
struct AtkKeyEventStruct {
   gint type;
   guint state;
   guint keyval;
@@ -346,289 +313,411 @@
   gchar *string;
   guint16 keycode;
   guint32 timestamp;	
-} AtkKeyEventStruct;
+};
 

-Encapsulates information about a key event.

-

+Encapsulates information about a key event.

- - + + - - + - - + + - - + + - - + +Alphanumeric and printable keys will have the symbolic key name in this string member, for instance "A". "0", +"semicolon", "aacute". Keypad keys have the prefix "KP". - - + + - - + +

gint type;

An AtkKeyEventType, generally one of ATK_KEY_EVENT_PRESS or ATK_KEY_EVENT_RELEASE -

gint type;

An AtkKeyEventType, generally one of ATK_KEY_EVENT_PRESS or ATK_KEY_EVENT_RELEASE

guint state;

A bitmask representing the state of the modifier keys immediately after the event takes place. +

guint state;

A bitmask representing the state of the modifier keys immediately after the event takes place. The meaning of the bits is currently defined to match the bitmask used by GDK in -GdkEventType.state, see -http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.htmlGdkEventKey +GdkEventType.state, see +http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.htmlGdkEventKey

guint keyval;

A guint representing a keysym value corresponding to those used by GDK and X11: see -/usr/X11/include/keysymdef.h. -

guint keyval;

A guint representing a keysym value corresponding to those used by GDK and X11: see +/usr/X11/include/keysymdef.h.

gint length;

The length of member string. -

gint length;

The length of member string.

gchar *string;

A string containing one of the following: either a string approximating the text that would +

gchar *string;

A string containing one of the following: either a string approximating the text that would result from this keypress, if the key is a control or graphic character, or a symbolic name for this keypress. -Alphanumeric and printable keys will have the symbolic key name in this string member, for instance "A". "0", -"semicolon", "aacute". Keypad keys have the prefix "KP". -

guint16 keycode;

The raw hardware code that generated the key event. This field is raraly useful. -

guint16 keycode;

The raw hardware code that generated the key event. This field is raraly useful.

guint32 timestamp;

A timestamp in milliseconds indicating when the event occurred. -These timestamps are relative to a starting point which should be considered arbitrary, -and only used to compare the dispatch times of events to one another. -

guint32 timestamp;

A timestamp in milliseconds indicating when the event occurred. +These timestamps are relative to a starting point which should be considered arbitrary, +and only used to compare the dispatch times of events to one another.

-
+

enum AtkKeyEventType

-
typedef enum
-{
+
typedef enum {
   ATK_KEY_EVENT_PRESS,
   ATK_KEY_EVENT_RELEASE,
   ATK_KEY_EVENT_LAST_DEFINED
 } AtkKeyEventType;
 

-Specifies the type of a keyboard evemt.

-

+Specifies the type of a keyboard evemt.

- - + - - + - - +

ATK_KEY_EVENT_PRESS

specifies a key press event +

ATK_KEY_EVENT_PRESS

specifies a key press event

ATK_KEY_EVENT_RELEASE

specifies a key release event +

ATK_KEY_EVENT_RELEASE

specifies a key release event

ATK_KEY_EVENT_LAST_DEFINED

Not a valid value; specifies end of enumeration +

ATK_KEY_EVENT_LAST_DEFINED

Not a valid value; specifies end of enumeration

-
+

AtkKeySnoopFunc ()

-
gint                (*AtkKeySnoopFunc)                  (AtkKeyEventStruct *event,
-                                                         gpointer func_data);
+
gint                (*AtkKeySnoopFunc)                  (AtkKeyEventStruct *event,
+                                                         gpointer func_data);

An AtkKeySnoopFunc is a type of callback which is called whenever a key event occurs, if registered via atk_add_key_event_listener. It allows for pre-emptive -interception of key events via the return code as described below.

-

+interception of key events via the return code as described below.

- + - + - +see atk_add_key_event_listener.

event :

an AtkKeyEventStruct containing information about the key event for which -notification is being given. -an AtkKeyEventStruct containing information about the key event for which +notification is being given.

func_data :

a block of data which will be passed to the event listener, on notification. -a block of data which will be passed to the event listener, on notification.

Returns :

TRUE (nonzero) if the event emission should be stopped and the event -discarded without being passed to the normal GUI recipient; FALSE (zero) if the +TRUE (nonzero) if the event emission should be stopped and the event +discarded without being passed to the normal GUI recipient; FALSE (zero) if the event dispatch to the client application should proceed as normal. - -see: atk_add_key_event_listener. -

-
+

atk_add_key_event_listener ()

-
guint               atk_add_key_event_listener          (AtkKeySnoopFunc listener,
-                                                         gpointer data);
+
guint               atk_add_key_event_listener          (AtkKeySnoopFunc listener,
+                                                         gpointer data);

Adds the specified function to the list of functions to be called when a key event occurs. The data element will be passed to the - AtkKeySnoopFunc (listener) as the func_data param, on notification.

-

+ AtkKeySnoopFunc (listener) as the func_data param, on notification.

- + - + - +

listener :

the listener to notify -the listener to notify

data :

a gpointer that points to a block of data that should be sent to the registered listeners, - along with the event notification, when it occurs. -a gpointer that points to a block of data that should be sent to the registered listeners, +along with the event notification, when it occurs.

Returns :

added event listener id, or 0 on failure. -added event listener id, or 0 on failure.

-
+

atk_remove_key_event_listener ()

-
void                atk_remove_key_event_listener       (guint listener_id);
-

-Removes the specified event listener

+
void                atk_remove_key_event_listener       (guint listener_id);

+Removes the specified event listener

- +

listener_id :

the id of the event listener to remove -the id of the event listener to remove

-
+

atk_get_root ()

-
AtkObject*          atk_get_root                        (void);
-

-Gets the root accessible container for the current application.

+
AtkObject *         atk_get_root                        (void);

+Gets the root accessible container for the current application.

-

Returns :

the root accessible container for the current application +the root accessible container for the current +application. [transfer none]

-
+

atk_get_focus_object ()

-
AtkObject*          atk_get_focus_object                (void);
-

-Gets the currently focused object.

+
AtkObject *         atk_get_focus_object                (void);

+Gets the currently focused object.

-

Returns :

the currently focused object for the current application +the currently focused object for the current +application. [transfer none]

Since 1.6


-
+

atk_get_toolkit_name ()

-
const gchar *       atk_get_toolkit_name                (void);
-

-Gets name string for the GUI toolkit implementing ATK for this application.

+
const gchar *       atk_get_toolkit_name                (void);

+Gets name string for the GUI toolkit implementing ATK for this application.

- +

Returns :

name string for the GUI toolkit implementing ATK for this application -name string for the GUI toolkit implementing ATK for this application

-
+

atk_get_toolkit_version ()

-
const gchar *       atk_get_toolkit_version             (void);
+
const gchar *       atk_get_toolkit_version             (void);

-Gets version string for the GUI toolkit implementing ATK for this application.

+Gets version string for the GUI toolkit implementing ATK for this application. +

+
++ + + + +

Returns :

version string for the GUI toolkit implementing ATK for this application
+
+
+
+

atk_get_version ()

+
const gchar *       atk_get_version                     (void);

+Gets the current version for ATK.

- +

Returns :

version string for the GUI toolkit implementing ATK for this application -version string for ATK
+

Since 1.20

+
+
+
+

ATK_DEFINE_TYPE()

+
#define ATK_DEFINE_TYPE(TN, t_n, T_P)			       ATK_DEFINE_TYPE_EXTENDED (TN, t_n, T_P, 0, {})
+
+

+A convenience macro for type ATK implementations, which declares a class +initialization function, an instance initialization function (see GTypeInfo +for information about these) and a static variable named +t_n _parent_class pointing to the parent class. Furthermore, it +defines a _get_type() function. +

+
++ + + + + + + + + + + + + + +

TN :

The name of the new type, in Camel case.

t_n :

The name of the new type, in lowercase, with words separated by '_'.

T_P :

The GType of the parent type.
+

Since 1.22

+
+
+
+

ATK_DEFINE_TYPE_EXTENDED()

+
#define ATK_DEFINE_TYPE_EXTENDED(TN, t_n, T_P, _f_, _C_)      _ATK_DEFINE_TYPE_EXTENDED_BEGIN (TN, t_n, T_P, _f_) {_C_;} _ATK_DEFINE_TYPE_EXTENDED_END()
+
+

+The most general convenience macro for ATK type implementations, on which +ATK_DEFINE_TYPE(), etc are based. +

+
++ + + + + + + + + + + + + + + + + + + + + + +

TN :

The name of the new type, in Camel case.

t_n :

The name of the new type, in lowercase, with words separated by '_'.

T_P :

The GType of the parent type.

_f_ :

+GTypeFlags to pass to g_type_register_static() +

_C_ :

Custom code that gets inserted in the _get_type() function.
+

Since 1.22

+
+
+
+

ATK_DEFINE_TYPE_WITH_CODE()

+
#define ATK_DEFINE_TYPE_WITH_CODE(TN, t_n, T_P, _C_)	      _ATK_DEFINE_TYPE_EXTENDED_BEGIN (TN, t_n, T_P, 0) {_C_;} _ATK_DEFINE_TYPE_EXTENDED_END()
+
+

+A convenience macro for ATK type implementations. +Similar to ATK_DEFINE_TYPE(), but allows you to insert custom code into the +_get_type() function, e.g. interface implementations via G_IMPLEMENT_INTERFACE(). +

+
++ + + + + + + + + + + + + + + + + + +

TN :

The name of the new type, in Camel case.

t_n :

The name of the new type in lowercase, with words separated by '_'.

T_P :

The GType of the parent type.

_C_ :

Custom code that gets inserted in the _get_type() function.
+

Since 1.22

+
+
+
+

ATK_DEFINE_ABSTRACT_TYPE()

+
#define ATK_DEFINE_ABSTRACT_TYPE(TN, t_n, T_P)		       ATK_DEFINE_TYPE_EXTENDED (TN, t_n, T_P, G_TYPE_FLAG_ABSTRACT, {})
+
+

+A convenience macro for ATK type implementations. +Similar to ATK_DEFINE_TYPE(), but defines an abstract type. +

+
++ + + + + + + + + + + + + + +

TN :

The name of the new type, in Camel case.

t_n :

The name of the new type, in lowercase, with words separated by '_'.

T_P :

The GType of the parent type.
+

Since 1.22

+
+
+
+

ATK_DEFINE_ABSTRACT_TYPE_WITH_CODE()

+
#define ATK_DEFINE_ABSTRACT_TYPE_WITH_CODE(TN, t_n, T_P, _C_) _ATK_DEFINE_TYPE_EXTENDED_BEGIN (TN, t_n, T_P, G_TYPE_FLAG_ABSTRACT) {_C_;} _ATK_DEFINE_TYPE_EXTENDED_END()
+
+

+A convenience macro for ATK type implementations. +Similar to ATK_DEFINE_TYPE_WITH_CODE(), but defines an abstract type. +

+
++ + + + + + + + + + + + + + + + + + +

TN :

The name of the new type, in Camel case.

t_n :

The name of the new type, in lowercase, with words separated by '_'.

T_P :

The GType of the parent type.

_C_ :

Custom code that gets inserted in the _get_type() function.
+

Since 1.22

+ Generated by GTK-Doc V1.17.1
- + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/AtkValue.html atk1.0-2.2.0/docs/html/AtkValue.html --- atk1.0-1.30.0/docs/html/AtkValue.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/AtkValue.html 2011-09-26 22:25:58.000000000 +0000 @@ -7,17 +7,9 @@ - - + + - - - - - - - - @@ -26,19 +18,19 @@ - + -
+
@@ -48,48 +40,35 @@
-
+

Synopsis

-
-                    AtkValue;
-void                atk_value_get_current_value         (AtkValue *obj,
-                                                         GValue *value);
-void                atk_value_get_maximum_value         (AtkValue *obj,
-                                                         GValue *value);
-void                atk_value_get_minimum_value         (AtkValue *obj,
-                                                         GValue *value);
-gboolean            atk_value_set_current_value         (AtkValue *obj,
-                                                         const GValue *value);
-void                atk_value_get_minimum_increment     (AtkValue *obj,
-                                                         GValue *value);
+
                    AtkValue;
+void                atk_value_get_current_value         (AtkValue *obj,
+                                                         GValue *value);
+void                atk_value_get_maximum_value         (AtkValue *obj,
+                                                         GValue *value);
+void                atk_value_get_minimum_value         (AtkValue *obj,
+                                                         GValue *value);
+gboolean            atk_value_set_current_value         (AtkValue *obj,
+                                                         const GValue *value);
+void                atk_value_get_minimum_increment     (AtkValue *obj,
+                                                         GValue *value);
 
-
+

Object Hierarchy

   GInterface
    +----AtkValue
 
-
+

Known Implementations

AtkValue is implemented by AtkNoOpObject.

-
+

Description

AtkValue should be implemented for components which either display a @@ -101,9 +80,9 @@ indicate failure.

-
+

Details

-
+

AtkValue

typedef struct _AtkValue AtkValue;

@@ -111,159 +90,118 @@


-
+

atk_value_get_current_value ()

-
void                atk_value_get_current_value         (AtkValue *obj,
-                                                         GValue *value);
-

-Gets the value of this object.

+
void                atk_value_get_current_value         (AtkValue *obj,
+                                                         GValue *value);

+Gets the value of this object.

- + - +

obj :

a GObject instance that implements AtkValueIface -a GObject instance that implements AtkValueIface

value :

a GValue representing the current accessible value -a GValue representing the current accessible value

-
+

atk_value_get_maximum_value ()

-
void                atk_value_get_maximum_value         (AtkValue *obj,
-                                                         GValue *value);
-

-Gets the maximum value of this object.

+
void                atk_value_get_maximum_value         (AtkValue *obj,
+                                                         GValue *value);

+Gets the maximum value of this object.

- + - +

obj :

a GObject instance that implements AtkValueIface -a GObject instance that implements AtkValueIface

value :

a GValue representing the maximum accessible value -a GValue representing the maximum accessible value

-
+

atk_value_get_minimum_value ()

-
void                atk_value_get_minimum_value         (AtkValue *obj,
-                                                         GValue *value);
-

-Gets the minimum value of this object.

+
void                atk_value_get_minimum_value         (AtkValue *obj,
+                                                         GValue *value);

+Gets the minimum value of this object.

- + - +

obj :

a GObject instance that implements AtkValueIface -a GObject instance that implements AtkValueIface

value :

a GValue representing the minimum accessible value -a GValue representing the minimum accessible value

-
+

atk_value_set_current_value ()

-
gboolean            atk_value_set_current_value         (AtkValue *obj,
-                                                         const GValue *value);
-

-Sets the value of this object.

+
gboolean            atk_value_set_current_value         (AtkValue *obj,
+                                                         const GValue *value);

+Sets the value of this object.

- + - + - +

obj :

a GObject instance that implements AtkValueIface -a GObject instance that implements AtkValueIface

value :

a GValue which is the desired new accessible value. -a GValue which is the desired new accessible value.

Returns :

TRUE if new value is successfully set, FALSE otherwise. - +TRUE if new value is successfully set, FALSE otherwise.

-
+

atk_value_get_minimum_increment ()

-
void                atk_value_get_minimum_increment     (AtkValue *obj,
-                                                         GValue *value);
+
void                atk_value_get_minimum_increment     (AtkValue *obj,
+                                                         GValue *value);

Gets the minimum increment by which the value of this object may be changed. If zero, the minimum increment is undefined, which may mean that it is limited only by the -floating point precision of the platform.

-

+floating point precision of the platform.

- + - +

obj :

a GObject instance that implements AtkValueIface -a GObject instance that implements AtkValueIface

value :

a GValue representing the minimum increment by which the accessible value may be changed -a GValue representing the minimum increment by which the accessible value may be changed
@@ -273,6 +211,6 @@
+ Generated by GTK-Doc V1.17.1
- + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/index.html atk1.0-2.2.0/docs/html/index.html --- atk1.0-1.30.0/docs/html/index.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/index.html 2011-09-26 22:25:58.000000000 +0000 @@ -6,23 +6,15 @@ - + - - - - - - - - -
+
-

for ATK 1.30.0 +

for ATK 2.2.0


@@ -76,6 +68,9 @@ objects of a specific GType.
+AtkPlug +
+
AtkRegistry — An object used to store the GType of the factories used to create an accessible object for an object of a particular GType.
@@ -91,6 +86,9 @@ can be selected.
+AtkSocket +
+
AtkState — An AtkState describes a component's particular state.
@@ -114,17 +112,25 @@ select a value from a bounded range of values.
-
Index
-
Index of deprecated symbols
-
Index of new symbols in ATK 1.3
-
Index of new symbols in ATK 1.4
-
Index of new symbols in ATK 1.6
-
Index of new symbols in ATK 1.9
-
Index of new symbols in ATK 1.12
+
Index of all symbols
+
Index of deprecated symbols
+
Index of new symbols in 1.3
+
Index of new symbols in 1.4
+
Index of new symbols in 1.6
+
Index of new symbols in 1.12
+
Index of new symbols in 1.13
+
Index of new symbols in 1.18
+
Index of new symbols in 1.20
+
Index of new symbols in 1.22
+
Index of new symbols in 1.24
+
Index of new symbols in 1.26
+
Index of new symbols in 1.28
+
Index of new symbols in 1.30
+
Index of new symbols in 1.32
+ Generated by GTK-Doc V1.17.1
- + \ No newline at end of file diff -Nru atk1.0-1.30.0/docs/html/index.sgml atk1.0-2.2.0/docs/html/index.sgml --- atk1.0-1.30.0/docs/html/index.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/html/index.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -87,6 +87,7 @@ + @@ -158,8 +159,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -224,6 +335,13 @@ + + + + + + + @@ -242,6 +360,24 @@ + + + + + + + + + + + + + + + + + + @@ -249,6 +385,7 @@ + @@ -284,11 +421,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -375,12 +560,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -410,7 +635,10 @@ + + + @@ -418,6 +646,8 @@ + + @@ -428,6 +658,9 @@ + + + @@ -435,6 +668,12 @@ + + + + + + diff -Nru atk1.0-1.30.0/docs/html/ix01.html atk1.0-2.2.0/docs/html/ix01.html --- atk1.0-1.30.0/docs/html/ix01.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/ix01.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,625 +0,0 @@ - - - - -Index - - - - - - - - - - - - - - - - - - - - - - - - -
-

-Index

-
-

A

-
-
AtkAction, AtkAction -
-
AtkAttribute, AtkAttribute -
-
AtkAttributeSet, AtkAttributeSet -
-
AtkComponent, AtkComponent -
-
AtkComponent::bounds-changed, The "bounds-changed" signal -
-
AtkCoordType, enum AtkCoordType -
-
AtkDocument, AtkDocument -
-
AtkDocument::load-complete, The "load-complete" signal -
-
AtkDocument::load-stopped, The "load-stopped" signal -
-
AtkDocument::reload, The "reload" signal -
-
AtkEditableText, AtkEditableText -
-
AtkEventListener, AtkEventListener () -
-
AtkEventListenerInit, AtkEventListenerInit () -
-
AtkFunction, AtkFunction () -
-
AtkGObjectAccessible, AtkGObjectAccessible -
-
AtkHyperlink, AtkHyperlink -
-
AtkHyperlink::link-activated, The "link-activated" signal -
-
AtkHyperlink:end-index, The "end-index" property -
-
AtkHyperlink:number-of-anchors, The "number-of-anchors" property -
-
AtkHyperlink:selected-link, The "selected-link" property -
-
AtkHyperlink:start-index, The "start-index" property -
-
AtkHyperlinkImpl, AtkHyperlinkImpl -
-
AtkHyperlinkStateFlags, enum AtkHyperlinkStateFlags -
-
AtkHypertext, AtkHypertext -
-
AtkHypertext::link-selected, The "link-selected" signal -
-
AtkImage, AtkImage -
-
AtkImplementor, AtkImplementor -
-
AtkKeyEventStruct, AtkKeyEventStruct -
-
AtkKeyEventType, enum AtkKeyEventType -
-
AtkKeySnoopFunc, AtkKeySnoopFunc () -
-
AtkLayer, enum AtkLayer -
-
AtkNoOpObject, AtkNoOpObject -
-
AtkNoOpObjectFactory, AtkNoOpObjectFactory -
-
AtkObject, AtkObject -
-
AtkObject::active-descendant-changed, The "active-descendant-changed" signal -
-
AtkObject::children-changed, The "children-changed" signal -
-
AtkObject::focus-event, The "focus-event" signal -
-
AtkObject::property-change, The "property-change" signal -
-
AtkObject::state-change, The "state-change" signal -
-
AtkObject::visible-data-changed, The "visible-data-changed" signal -
-
AtkObject:accessible-component-layer, The "accessible-component-layer" property -
-
AtkObject:accessible-component-mdi-zorder, The "accessible-component-mdi-zorder" property -
-
AtkObject:accessible-description, The "accessible-description" property -
-
AtkObject:accessible-hypertext-nlinks, The "accessible-hypertext-nlinks" property -
-
AtkObject:accessible-name, The "accessible-name" property -
-
AtkObject:accessible-parent, The "accessible-parent" property -
-
AtkObject:accessible-role, The "accessible-role" property -
-
AtkObject:accessible-table-caption, The "accessible-table-caption" property -
-
AtkObject:accessible-table-caption-object, The "accessible-table-caption-object" property -
-
AtkObject:accessible-table-column-description, The "accessible-table-column-description" property -
-
AtkObject:accessible-table-column-header, The "accessible-table-column-header" property -
-
AtkObject:accessible-table-row-description, The "accessible-table-row-description" property -
-
AtkObject:accessible-table-row-header, The "accessible-table-row-header" property -
-
AtkObject:accessible-table-summary, The "accessible-table-summary" property -
-
AtkObject:accessible-value, The "accessible-value" property -
-
AtkObjectFactory, AtkObjectFactory -
-
AtkPropertyChangeHandler, AtkPropertyChangeHandler () -
-
AtkPropertyValues, AtkPropertyValues -
-
AtkRegistry, AtkRegistry -
-
AtkRelation, AtkRelation -
-
AtkRelation:relation-type, The "relation-type" property -
-
AtkRelation:target, The "target" property -
-
AtkRelationSet, AtkRelationSet -
-
AtkRelationType, enum AtkRelationType -
-
AtkRole, enum AtkRole -
-
AtkSelection, AtkSelection -
-
AtkSelection::selection-changed, The "selection-changed" signal -
-
AtkState, AtkState -
-
AtkStateSet, AtkStateSet -
-
AtkStateType, enum AtkStateType -
-
AtkStreamableContent, AtkStreamableContent -
-
AtkTable, AtkTable -
-
AtkTable::column-deleted, The "column-deleted" signal -
-
AtkTable::column-inserted, The "column-inserted" signal -
-
AtkTable::column-reordered, The "column-reordered" signal -
-
AtkTable::model-changed, The "model-changed" signal -
-
AtkTable::row-deleted, The "row-deleted" signal -
-
AtkTable::row-inserted, The "row-inserted" signal -
-
AtkTable::row-reordered, The "row-reordered" signal -
-
AtkText, AtkText -
-
AtkText::text-attributes-changed, The "text-attributes-changed" signal -
-
AtkText::text-caret-moved, The "text-caret-moved" signal -
-
AtkText::text-changed, The "text-changed" signal -
-
AtkText::text-selection-changed, The "text-selection-changed" signal -
-
AtkTextAttribute, enum AtkTextAttribute -
-
AtkTextBoundary, enum AtkTextBoundary -
-
AtkTextClipType, enum AtkTextClipType -
-
AtkTextRange, AtkTextRange -
-
AtkTextRectangle, AtkTextRectangle -
-
AtkUtil, AtkUtil -
-
AtkValue, AtkValue -
-
atk_action_do_action, atk_action_do_action () -
-
atk_action_get_description, atk_action_get_description () -
-
atk_action_get_keybinding, atk_action_get_keybinding () -
-
atk_action_get_localized_name, atk_action_get_localized_name () -
-
atk_action_get_name, atk_action_get_name () -
-
atk_action_get_n_actions, atk_action_get_n_actions () -
-
atk_action_set_description, atk_action_set_description () -
-
atk_add_focus_tracker, atk_add_focus_tracker () -
-
atk_add_global_event_listener, atk_add_global_event_listener () -
-
atk_add_key_event_listener, atk_add_key_event_listener () -
-
atk_attribute_set_free, atk_attribute_set_free () -
-
atk_component_add_focus_handler, atk_component_add_focus_handler () -
-
atk_component_contains, atk_component_contains () -
-
atk_component_get_alpha, atk_component_get_alpha () -
-
atk_component_get_extents, atk_component_get_extents () -
-
atk_component_get_layer, atk_component_get_layer () -
-
atk_component_get_mdi_zorder, atk_component_get_mdi_zorder () -
-
atk_component_get_position, atk_component_get_position () -
-
atk_component_get_size, atk_component_get_size () -
-
atk_component_grab_focus, atk_component_grab_focus () -
-
atk_component_ref_accessible_at_point, atk_component_ref_accessible_at_point () -
-
atk_component_remove_focus_handler, atk_component_remove_focus_handler () -
-
atk_component_set_extents, atk_component_set_extents () -
-
atk_component_set_position, atk_component_set_position () -
-
atk_component_set_size, atk_component_set_size () -
-
atk_document_get_attributes, atk_document_get_attributes () -
-
atk_document_get_attribute_value, atk_document_get_attribute_value () -
-
atk_document_get_document, atk_document_get_document () -
-
atk_document_get_document_type, atk_document_get_document_type () -
-
atk_document_get_locale, atk_document_get_locale () -
-
atk_document_set_attribute_value, atk_document_set_attribute_value () -
-
atk_editable_text_copy_text, atk_editable_text_copy_text () -
-
atk_editable_text_cut_text, atk_editable_text_cut_text () -
-
atk_editable_text_delete_text, atk_editable_text_delete_text () -
-
atk_editable_text_insert_text, atk_editable_text_insert_text () -
-
atk_editable_text_paste_text, atk_editable_text_paste_text () -
-
atk_editable_text_set_run_attributes, atk_editable_text_set_run_attributes () -
-
atk_editable_text_set_text_contents, atk_editable_text_set_text_contents () -
-
atk_focus_tracker_init, atk_focus_tracker_init () -
-
atk_focus_tracker_notify, atk_focus_tracker_notify () -
-
atk_get_default_registry, atk_get_default_registry () -
-
atk_get_focus_object, atk_get_focus_object () -
-
atk_get_root, atk_get_root () -
-
atk_get_toolkit_name, atk_get_toolkit_name () -
-
atk_get_toolkit_version, atk_get_toolkit_version () -
-
atk_gobject_accessible_for_object, atk_gobject_accessible_for_object () -
-
atk_gobject_accessible_get_object, atk_gobject_accessible_get_object () -
-
atk_hyperlink_get_end_index, atk_hyperlink_get_end_index () -
-
atk_hyperlink_get_n_anchors, atk_hyperlink_get_n_anchors () -
-
atk_hyperlink_get_object, atk_hyperlink_get_object () -
-
atk_hyperlink_get_start_index, atk_hyperlink_get_start_index () -
-
atk_hyperlink_get_uri, atk_hyperlink_get_uri () -
-
atk_hyperlink_impl_get_hyperlink, atk_hyperlink_impl_get_hyperlink () -
-
atk_hyperlink_is_inline, atk_hyperlink_is_inline () -
-
atk_hyperlink_is_selected_link, atk_hyperlink_is_selected_link () -
-
atk_hyperlink_is_valid, atk_hyperlink_is_valid () -
-
atk_hypertext_get_link, atk_hypertext_get_link () -
-
atk_hypertext_get_link_index, atk_hypertext_get_link_index () -
-
atk_hypertext_get_n_links, atk_hypertext_get_n_links () -
-
atk_image_get_image_description, atk_image_get_image_description () -
-
atk_image_get_image_locale, atk_image_get_image_locale () -
-
atk_image_get_image_position, atk_image_get_image_position () -
-
atk_image_get_image_size, atk_image_get_image_size () -
-
atk_image_set_image_description, atk_image_set_image_description () -
-
atk_implementor_ref_accessible, atk_implementor_ref_accessible () -
-
atk_no_op_object_factory_new, atk_no_op_object_factory_new () -
-
atk_no_op_object_new, atk_no_op_object_new () -
-
atk_object_add_relationship, atk_object_add_relationship () -
-
atk_object_connect_property_change_handler, atk_object_connect_property_change_handler () -
-
atk_object_factory_create_accessible, atk_object_factory_create_accessible () -
-
atk_object_factory_get_accessible_type, atk_object_factory_get_accessible_type () -
-
atk_object_factory_invalidate, atk_object_factory_invalidate () -
-
atk_object_get_attributes, atk_object_get_attributes () -
-
atk_object_get_description, atk_object_get_description () -
-
atk_object_get_index_in_parent, atk_object_get_index_in_parent () -
-
atk_object_get_layer, atk_object_get_layer () -
-
atk_object_get_mdi_zorder, atk_object_get_mdi_zorder () -
-
atk_object_get_name, atk_object_get_name () -
-
atk_object_get_n_accessible_children, atk_object_get_n_accessible_children () -
-
atk_object_get_parent, atk_object_get_parent () -
-
atk_object_get_role, atk_object_get_role () -
-
atk_object_initialize, atk_object_initialize () -
-
atk_object_notify_state_change, atk_object_notify_state_change () -
-
atk_object_ref_accessible_child, atk_object_ref_accessible_child () -
-
atk_object_ref_relation_set, atk_object_ref_relation_set () -
-
atk_object_ref_state_set, atk_object_ref_state_set () -
-
atk_object_remove_property_change_handler, atk_object_remove_property_change_handler () -
-
atk_object_remove_relationship, atk_object_remove_relationship () -
-
atk_object_set_description, atk_object_set_description () -
-
atk_object_set_name, atk_object_set_name () -
-
atk_object_set_parent, atk_object_set_parent () -
-
atk_object_set_role, atk_object_set_role () -
-
atk_registry_get_factory, atk_registry_get_factory () -
-
atk_registry_get_factory_type, atk_registry_get_factory_type () -
-
atk_registry_set_factory_type, atk_registry_set_factory_type () -
-
atk_relation_add_target, atk_relation_add_target () -
-
atk_relation_get_relation_type, atk_relation_get_relation_type () -
-
atk_relation_get_target, atk_relation_get_target () -
-
atk_relation_new, atk_relation_new () -
-
atk_relation_set_add, atk_relation_set_add () -
-
atk_relation_set_add_relation_by_type, atk_relation_set_add_relation_by_type () -
-
atk_relation_set_contains, atk_relation_set_contains () -
-
atk_relation_set_get_n_relations, atk_relation_set_get_n_relations () -
-
atk_relation_set_get_relation, atk_relation_set_get_relation () -
-
atk_relation_set_get_relation_by_type, atk_relation_set_get_relation_by_type () -
-
atk_relation_set_new, atk_relation_set_new () -
-
atk_relation_set_remove, atk_relation_set_remove () -
-
atk_relation_type_for_name, atk_relation_type_for_name () -
-
atk_relation_type_get_name, atk_relation_type_get_name () -
-
atk_relation_type_register, atk_relation_type_register () -
-
atk_remove_focus_tracker, atk_remove_focus_tracker () -
-
atk_remove_global_event_listener, atk_remove_global_event_listener () -
-
atk_remove_key_event_listener, atk_remove_key_event_listener () -
-
atk_role_for_name, atk_role_for_name () -
-
atk_role_get_localized_name, atk_role_get_localized_name () -
-
atk_role_get_name, atk_role_get_name () -
-
atk_role_register, atk_role_register () -
-
atk_selection_add_selection, atk_selection_add_selection () -
-
atk_selection_clear_selection, atk_selection_clear_selection () -
-
atk_selection_get_selection_count, atk_selection_get_selection_count () -
-
atk_selection_is_child_selected, atk_selection_is_child_selected () -
-
atk_selection_ref_selection, atk_selection_ref_selection () -
-
atk_selection_remove_selection, atk_selection_remove_selection () -
-
atk_selection_select_all_selection, atk_selection_select_all_selection () -
-
atk_state_set_add_state, atk_state_set_add_state () -
-
atk_state_set_add_states, atk_state_set_add_states () -
-
atk_state_set_and_sets, atk_state_set_and_sets () -
-
atk_state_set_clear_states, atk_state_set_clear_states () -
-
atk_state_set_contains_state, atk_state_set_contains_state () -
-
atk_state_set_contains_states, atk_state_set_contains_states () -
-
atk_state_set_is_empty, atk_state_set_is_empty () -
-
atk_state_set_new, atk_state_set_new () -
-
atk_state_set_or_sets, atk_state_set_or_sets () -
-
atk_state_set_remove_state, atk_state_set_remove_state () -
-
atk_state_set_xor_sets, atk_state_set_xor_sets () -
-
atk_state_type_for_name, atk_state_type_for_name () -
-
atk_state_type_get_name, atk_state_type_get_name () -
-
atk_state_type_register, atk_state_type_register () -
-
atk_streamable_content_get_mime_type, atk_streamable_content_get_mime_type () -
-
atk_streamable_content_get_n_mime_types, atk_streamable_content_get_n_mime_types () -
-
atk_streamable_content_get_stream, atk_streamable_content_get_stream () -
-
atk_streamable_content_get_uri, atk_streamable_content_get_uri () -
-
atk_table_add_column_selection, atk_table_add_column_selection () -
-
atk_table_add_row_selection, atk_table_add_row_selection () -
-
atk_table_get_caption, atk_table_get_caption () -
-
atk_table_get_column_at_index, atk_table_get_column_at_index () -
-
atk_table_get_column_description, atk_table_get_column_description () -
-
atk_table_get_column_extent_at, atk_table_get_column_extent_at () -
-
atk_table_get_column_header, atk_table_get_column_header () -
-
atk_table_get_index_at, atk_table_get_index_at () -
-
atk_table_get_n_columns, atk_table_get_n_columns () -
-
atk_table_get_n_rows, atk_table_get_n_rows () -
-
atk_table_get_row_at_index, atk_table_get_row_at_index () -
-
atk_table_get_row_description, atk_table_get_row_description () -
-
atk_table_get_row_extent_at, atk_table_get_row_extent_at () -
-
atk_table_get_row_header, atk_table_get_row_header () -
-
atk_table_get_selected_columns, atk_table_get_selected_columns () -
-
atk_table_get_selected_rows, atk_table_get_selected_rows () -
-
atk_table_get_summary, atk_table_get_summary () -
-
atk_table_is_column_selected, atk_table_is_column_selected () -
-
atk_table_is_row_selected, atk_table_is_row_selected () -
-
atk_table_is_selected, atk_table_is_selected () -
-
atk_table_ref_at, atk_table_ref_at () -
-
atk_table_remove_column_selection, atk_table_remove_column_selection () -
-
atk_table_remove_row_selection, atk_table_remove_row_selection () -
-
atk_table_set_caption, atk_table_set_caption () -
-
atk_table_set_column_description, atk_table_set_column_description () -
-
atk_table_set_column_header, atk_table_set_column_header () -
-
atk_table_set_row_description, atk_table_set_row_description () -
-
atk_table_set_row_header, atk_table_set_row_header () -
-
atk_table_set_summary, atk_table_set_summary () -
-
atk_text_add_selection, atk_text_add_selection () -
-
atk_text_attribute_for_name, atk_text_attribute_for_name () -
-
atk_text_attribute_get_name, atk_text_attribute_get_name () -
-
atk_text_attribute_get_value, atk_text_attribute_get_value () -
-
atk_text_attribute_register, atk_text_attribute_register () -
-
atk_text_free_ranges, atk_text_free_ranges () -
-
atk_text_get_bounded_ranges, atk_text_get_bounded_ranges () -
-
atk_text_get_caret_offset, atk_text_get_caret_offset () -
-
atk_text_get_character_at_offset, atk_text_get_character_at_offset () -
-
atk_text_get_character_count, atk_text_get_character_count () -
-
atk_text_get_character_extents, atk_text_get_character_extents () -
-
atk_text_get_default_attributes, atk_text_get_default_attributes () -
-
atk_text_get_n_selections, atk_text_get_n_selections () -
-
atk_text_get_offset_at_point, atk_text_get_offset_at_point () -
-
atk_text_get_range_extents, atk_text_get_range_extents () -
-
atk_text_get_run_attributes, atk_text_get_run_attributes () -
-
atk_text_get_selection, atk_text_get_selection () -
-
atk_text_get_text, atk_text_get_text () -
-
atk_text_get_text_after_offset, atk_text_get_text_after_offset () -
-
atk_text_get_text_at_offset, atk_text_get_text_at_offset () -
-
atk_text_get_text_before_offset, atk_text_get_text_before_offset () -
-
atk_text_remove_selection, atk_text_remove_selection () -
-
atk_text_set_caret_offset, atk_text_set_caret_offset () -
-
atk_text_set_selection, atk_text_set_selection () -
-
atk_value_get_current_value, atk_value_get_current_value () -
-
atk_value_get_maximum_value, atk_value_get_maximum_value () -
-
atk_value_get_minimum_increment, atk_value_get_minimum_increment () -
-
atk_value_get_minimum_value, atk_value_get_minimum_value () -
-
atk_value_set_current_value, atk_value_set_current_value () -
-
-
-
- - - diff -Nru atk1.0-1.30.0/docs/html/ix02.html atk1.0-2.2.0/docs/html/ix02.html --- atk1.0-1.30.0/docs/html/ix02.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/ix02.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,49 +0,0 @@ - - - - -Index of deprecated symbols - - - - - - - - - - - - - - - - - - - - - - - - -
-

-Index of deprecated symbols

-
-

A

-
-
atk_hyperlink_is_selected_link, atk_hyperlink_is_selected_link () -
-
atk_object_get_layer, atk_object_get_layer () -
-
atk_object_get_mdi_zorder, atk_object_get_mdi_zorder () -
-
-
-
- - - diff -Nru atk1.0-1.30.0/docs/html/ix03.html atk1.0-2.2.0/docs/html/ix03.html --- atk1.0-1.30.0/docs/html/ix03.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/ix03.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ - - - - -Index of new symbols in ATK 1.3 - - - - - - - - - - - - - - - - - - - - - - - - -
-

-Index of new symbols in ATK 1.3

-
-
- - - diff -Nru atk1.0-1.30.0/docs/html/ix04.html atk1.0-2.2.0/docs/html/ix04.html --- atk1.0-1.30.0/docs/html/ix04.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/ix04.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ - - - - -Index of new symbols in ATK 1.4 - - - - - - - - - - - - - - - - - - - - - - - - -
-

-Index of new symbols in ATK 1.4

-
-
- - - diff -Nru atk1.0-1.30.0/docs/html/ix05.html atk1.0-2.2.0/docs/html/ix05.html --- atk1.0-1.30.0/docs/html/ix05.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/ix05.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ - - - - -Index of new symbols in ATK 1.6 - - - - - - - - - - - - - - - - - - - - - - - - -
-

-Index of new symbols in ATK 1.6

-
-
- - - diff -Nru atk1.0-1.30.0/docs/html/ix06.html atk1.0-2.2.0/docs/html/ix06.html --- atk1.0-1.30.0/docs/html/ix06.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/ix06.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ - - - - -Index of new symbols in ATK 1.9 - - - - - - - - - - - - - - - - - - - - - - - - -
-

-Index of new symbols in ATK 1.9

-
-
- - - diff -Nru atk1.0-1.30.0/docs/html/ix07.html atk1.0-2.2.0/docs/html/ix07.html --- atk1.0-1.30.0/docs/html/ix07.html 2011-12-01 07:24:39.000000000 +0000 +++ atk1.0-2.2.0/docs/html/ix07.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ - - - - -Index of new symbols in ATK 1.12 - - - - - - - - - - - - - - - - - - - - - - - -
-

-Index of new symbols in ATK 1.12

-
-
- - - diff -Nru atk1.0-1.30.0/docs/html/style.css atk1.0-2.2.0/docs/html/style.css --- atk1.0-1.30.0/docs/html/style.css 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/html/style.css 2011-09-26 22:25:58.000000000 +0000 @@ -1,13 +1,15 @@ .synopsis, .classsynopsis { - background: #eeeeee; - border: solid 1px #aaaaaa; + /* tango:aluminium 1/2 */ + background: #eeeeec; + border: solid 1px #d3d7cf; padding: 0.5em; } .programlisting { - background: #eeeeff; - border: solid 1px #aaaaff; + /* tango:sky blue 0/1 */ + background: #e6f3ff; + border: solid 1px #729fcf; padding: 0.5em; } .variablelist @@ -20,64 +22,64 @@ vertical-align: top; } -/* this is needed so that the local anchors are displayed below the naviagtion */ @media screen { sup a.footnote { position: relative; top: 0em ! important; + } - div.refnamediv a[name], div.refsect1 a[name] + /* this is needed so that the local anchors are displayed below the naviagtion */ + div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name] { + display: inline-block; position: relative; - top: -4.5em; + top:-5em; } + /* this seems to be a bug in the xsl style sheets when generating indexes */ + div.index div.index + { + top: 0em; + } + /* make space for the fixed navigation bar and add space at the bottom so that + * link targets appear somewhat close to top + */ + body + { + padding-top: 3.2em; + padding-bottom: 20em; + } + /* style and size the navigation bar */ table.navigation#top { - background: #ffeeee; - border: solid 1px #ffaaaa; + position: fixed; + /* tango:scarlet red 0/1 */ + background: #ffe6e6; + border: solid 1px #ef2929; margin-top: 0; margin-bottom: 0; - position: fixed; top: 0; left: 0; - height: 2em; - z-index: 1; + height: 3em; + z-index: 10; } - .navigation a + .navigation a, .navigation a:visited { - color: #770000; + /* tango:scarlet red 3 */ + color: #a40000; } - .navigation a:visited + .navigation a:hover { - color: #550000; + /* tango:scarlet red 1 */ + color: #ef2929; } td.shortcuts { - color: #770000; + /* tango:scarlet red 1 */ + color: #ef2929; font-size: 80%; white-space: nowrap; } - div.refentry, div.chapter, div.reference, div.part, div.book, div.glossary, div.sect1, div.appendix, div.preface - { - position: relative; - top: 3em; - z-index: 0; - } - div.glossary, div.index - { - position: relative; - top: 2em; - z-index: 0; - } - div.refnamediv - { - margin-top: 2em; - } - body - { - padding-bottom: 20em; - } } @media print { table.navigation { @@ -87,13 +89,14 @@ div.titlepage table.navigation { visibility: visible; display: table; - background: #ffeeee; - border: solid 1px #ffaaaa; + /* tango:scarlet red 0/1 */ + background: #ffe6e6; + border: solid 1px #ef2929; margin-top: 0; margin-bottom: 0; top: 0; left: 0; - height: 2em; + height: 3em; } } @@ -102,7 +105,6 @@ font-size: 200%; } - div.gallery-float { float: left; @@ -116,44 +118,48 @@ { clear: both; } -a + +a, a:visited { text-decoration: none; + /* tango:sky blue 2 */ + color: #3465a4; } a:hover { text-decoration: underline; - color: #FF0000; + /* tango:sky blue 1 */ + color: #729fcf; } div.table table { border-collapse: collapse; border-spacing: 0px; - border-style: solid; - border-color: #777777; - border-width: 1px; + /* tango:aluminium 3 */ + border: solid 1px #babdb6; } div.table table td, div.table table th { - border-style: solid; - border-color: #777777; - border-width: 1px; + /* tango:aluminium 3 */ + border: solid 1px #babdb6; padding: 3px; vertical-align: top; } div.table table th { - background-color: #eeeeee; + /* tango:aluminium 2 */ + background-color: #d3d7cf; } hr { - color: #777777; - background: #777777; - border: 0; + /* tango:aluminium 3 */ + color: #babdb6; + background: #babdb6; + border: none 0px; height: 1px; clear: both; } @@ -161,7 +167,100 @@ .footer { padding-top: 3.5em; - color: #777777; + /* tango:aluminium 3 */ + color: #babdb6; text-align: center; font-size: 80%; } + +.warning +{ + /* tango:orange 0/1 */ + background: #ffeed9; + border-color: #ffb04f; +} +.note +{ + /* tango:chameleon 0/0.5 */ + background: #d8ffb2; + border-color: #abf562; +} +.note, .warning +{ + padding: 0.5em; + border-width: 1px; + border-style: solid; +} +.note h3, .warning h3 +{ + margin-top: 0.0em +} +.note p, .warning p +{ + margin-bottom: 0.0em +} + +/* blob links */ +h2 .extralinks, h3 .extralinks +{ + float: right; + /* tango:aluminium 3 */ + color: #babdb6; + font-size: 80%; + font-weight: normal; +} + +.annotation +{ + /* tango:aluminium 5 */ + color: #555753; + font-size: 80%; + font-weight: normal; +} + +/* code listings */ + +.listing_code .programlisting .cbracket { color: #a40000; } /* tango: scarlet red 3 */ +.listing_code .programlisting .comment { color: #a1a39d; } /* tango: aluminium 4 */ +.listing_code .programlisting .function { color: #000000; font-weight: bold; } +.listing_code .programlisting .function a { color: #11326b; font-weight: bold; } /* tango: sky blue 4 */ +.listing_code .programlisting .keyword { color: #4e9a06; } /* tango: chameleon 3 */ +.listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */ +.listing_code .programlisting .normal { color: #000000; } +.listing_code .programlisting .number { color: #75507b; } /* tango: plum 2 */ +.listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */ +.listing_code .programlisting .string { color: #c17d11; } /* tango: chocolate 2 */ +.listing_code .programlisting .type { color: #000000; } +.listing_code .programlisting .type a { color: #11326b; } /* tango: sky blue 4 */ +.listing_code .programlisting .symbol { color: #ce5c00; } /* tango: orange 3 */ + +.listing_frame { + /* tango:sky blue 1 */ + border: solid 1px #729fcf; + padding: 0px; +} + +.listing_lines, .listing_code { + margin-top: 0px; + margin-bottom: 0px; + padding: 0.5em; +} +.listing_lines { + /* tango:sky blue 0.5 */ + background: #a6c5e3; + /* tango:aluminium 6 */ + color: #2e3436; +} +.listing_code { + /* tango:sky blue 0 */ + background: #e6f3ff; +} +.listing_code .programlisting { + /* override from previous */ + border: none 0px; + padding: 0px; +} +.listing_lines pre, .listing_code pre { + margin: 0px; +} + diff -Nru atk1.0-1.30.0/docs/Makefile.am atk1.0-2.2.0/docs/Makefile.am --- atk1.0-1.30.0/docs/Makefile.am 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/docs/Makefile.am 2011-09-19 23:45:19.000000000 +0000 @@ -25,7 +25,8 @@ -I$(top_builddir) \ $(DEP_CFLAGS) -GTKDOC_LIBS = $(top_builddir)/atk/libatk-$(ATK_API_VERSION).la +GTKDOC_LIBS = $(top_builddir)/atk/libatk-$(ATK_API_VERSION).la \ + $(DEP_LIBS) # gtkdoc-mkdb related varaibles MKDB_OPTIONS = diff -Nru atk1.0-1.30.0/docs/Makefile.in atk1.0-2.2.0/docs/Makefile.in --- atk1.0-1.30.0/docs/Makefile.in 2010-03-29 22:53:48.000000000 +0000 +++ atk1.0-2.2.0/docs/Makefile.in 2011-09-26 22:25:00.000000000 +0000 @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.11 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, @@ -47,18 +47,25 @@ $(top_srcdir)/m4/introspection.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.in + $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = version.xml CONFIG_CLEAN_VPATH_FILES = +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AS = @AS@ ATK_API_VERSION = @ATK_API_VERSION@ @@ -106,6 +113,10 @@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@ +GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@ +GTKDOC_MKPDF = @GTKDOC_MKPDF@ +GTKDOC_REBASE = @GTKDOC_REBASE@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ @@ -154,6 +165,8 @@ PATH_SEPARATOR = @PATH_SEPARATOR@ PERL = @PERL@ 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@ @@ -246,7 +259,9 @@ -I$(top_builddir) \ $(DEP_CFLAGS) -GTKDOC_LIBS = $(top_builddir)/atk/libatk-$(ATK_API_VERSION).la +GTKDOC_LIBS = $(top_builddir)/atk/libatk-$(ATK_API_VERSION).la \ + $(DEP_LIBS) + # gtkdoc-mkdb related varaibles MKDB_OPTIONS = @@ -254,11 +269,11 @@ version.xml HTML_IMAGES = -@GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -@GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -@GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -@GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -@GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_RUN = sh -c +@GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +@GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +@GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_LD = $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) +@GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_LD = $(LIBTOOL) --tag=CC --mode=link $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) +@GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_RUN = @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_RUN = $(LIBTOOL) --mode=execute # We set GPATH here; this gives us semantics for GNU make @@ -268,13 +283,18 @@ # GPATH = $(srcdir) TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) +SETUP_FILES = \ + $(content_files) \ + $(DOC_MAIN_SGML_FILE) \ + $(DOC_MODULE)-sections.txt \ + $(DOC_MODULE)-overrides.txt + # Other files to distribute -EXTRA_DIST = $(content_files) $(HTML_IMAGES) $(DOC_MAIN_SGML_FILE) \ - $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt \ - version.xml.in -DOC_STAMPS = scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ - $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp +EXTRA_DIST = $(HTML_IMAGES) $(SETUP_FILES) version.xml.in +DOC_STAMPS = setup-build.stamp scan-build.stamp tmpl-build.stamp sgml-build.stamp \ + html-build.stamp pdf-build.stamp \ + tmpl.stamp sgml.stamp html.stamp pdf.stamp SCANOBJ_FILES = \ $(DOC_MODULE).args \ @@ -289,6 +309,10 @@ $(DOC_MODULE)-unused.txt CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) +@ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_HTML_FALSE@HTML_BUILD_STAMP = +@ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_HTML_TRUE@HTML_BUILD_STAMP = html-build.stamp +@ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_PDF_FALSE@PDF_BUILD_STAMP = +@ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_PDF_TRUE@PDF_BUILD_STAMP = pdf-build.stamp all: all-am .SUFFIXES: @@ -484,55 +508,90 @@ uninstall-local -@ENABLE_GTK_DOC_TRUE@all-local: html-build.stamp +@ENABLE_GTK_DOC_TRUE@all-local: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP) @ENABLE_GTK_DOC_FALSE@all-local: -docs: html-build.stamp +docs: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP) $(REPORT_FILES): sgml-build.stamp +#### setup #### + +setup-build.stamp: + -@if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ + echo ' DOC Preparing build'; \ + files=`echo $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types`; \ + if test "x$$files" != "x" ; then \ + for file in $$files ; do \ + test -f $(abs_srcdir)/$$file && \ + cp -pu $(abs_srcdir)/$$file $(abs_builddir)/ || true; \ + done; \ + fi; \ + test -d $(abs_srcdir)/tmpl && \ + { cp -rp $(abs_srcdir)/tmpl $(abs_builddir)/; \ + chmod -R u+w $(abs_builddir)/tmpl; } \ + fi + @touch setup-build.stamp + #### scan #### scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB) - @echo 'gtk-doc: Scanning header files' - @-chmod -R u+w $(srcdir) - cd $(srcdir) && \ - gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="$(IGNORE_HFILES)" $(SCAN_OPTIONS) $(EXTRA_HFILES) - if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null 2>&1 ; then \ - CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \ + @echo ' DOC Scanning header files' + @_source_dir='' ; \ + for i in $(DOC_SOURCE_DIR) ; do \ + _source_dir="$${_source_dir} --source-dir=$$i" ; \ + done ; \ + gtkdoc-scan --module=$(DOC_MODULE) --ignore-headers="$(IGNORE_HFILES)" $${_source_dir} $(SCAN_OPTIONS) $(EXTRA_HFILES) + @if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \ + echo " DOC Introspecting gobjects"; \ + scanobj_options=""; \ + gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \ + if test "$(?)" = "0"; then \ + if test "x$(V)" = "x1"; then \ + scanobj_options="--verbose"; \ + fi; \ + fi; \ + CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \ + gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \ else \ - cd $(srcdir) ; \ for i in $(SCANOBJ_FILES) ; do \ - test -f $$i || touch $$i ; \ + test -f $$i || touch $$i ; \ done \ fi - touch scan-build.stamp + @touch scan-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt: scan-build.stamp @true #### templates #### -tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt - @echo 'gtk-doc: Rebuilding template files' - @-chmod -R u+w $(srcdir) - cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) - touch tmpl-build.stamp +tmpl-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt + @echo ' DOC Rebuilding template files' + @gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) + @if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ + if test -w $(abs_srcdir) ; then \ + cp -rp $(abs_builddir)/tmpl $(abs_srcdir)/; \ + fi \ + fi + @touch tmpl-build.stamp tmpl.stamp: tmpl-build.stamp @true -tmpl/*.sgml: +$(srcdir)/tmpl/*.sgml: @true #### xml #### -sgml-build.stamp: tmpl.stamp $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files) - @echo 'gtk-doc: Building XML' +sgml-build.stamp: tmpl.stamp $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files) + @echo ' DOC Building XML' @-chmod -R u+w $(srcdir) - cd $(srcdir) && \ - gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $(MKDB_OPTIONS) - touch sgml-build.stamp + @_source_dir='' ; \ + for i in $(DOC_SOURCE_DIR) ; do \ + _source_dir="$${_source_dir} --source-dir=$$i" ; \ + done ; \ + gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $${_source_dir} $(MKDB_OPTIONS) + @touch sgml-build.stamp sgml.stamp: sgml-build.stamp @true @@ -540,39 +599,79 @@ #### html #### html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) - @echo 'gtk-doc: Building HTML' - @-chmod -R u+w $(srcdir) - rm -rf $(srcdir)/html - mkdir $(srcdir)/html - mkhtml_options=""; \ + @echo ' DOC Building HTML' + @rm -rf html + @mkdir html + @mkhtml_options=""; \ + gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-verbose"; \ + if test "$(?)" = "0"; then \ + if test "x$(V)" = "x1"; then \ + mkhtml_options="$$mkhtml_options --verbose"; \ + fi; \ + fi; \ gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-path"; \ if test "$(?)" = "0"; then \ - mkhtml_options=--path="$(srcdir)"; \ - fi - cd $(srcdir)/html && gtkdoc-mkhtml $(mkhtml_options) $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) - test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html ) - @echo 'gtk-doc: Fixing cross-references' - cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) - touch html-build.stamp + mkhtml_options="$$mkhtml_options --path=\"$(abs_srcdir)\""; \ + fi; \ + cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) + -@test "x$(HTML_IMAGES)" = "x" || \ + for file in $(HTML_IMAGES) ; do \ + if test -f $(abs_srcdir)/$$file ; then \ + cp $(abs_srcdir)/$$file $(abs_builddir)/html; \ + fi; \ + if test -f $(abs_builddir)/$$file ; then \ + cp $(abs_builddir)/$$file $(abs_builddir)/html; \ + fi; \ + done; + @echo ' DOC Fixing cross-references' + @gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) + @touch html-build.stamp + +#### pdf #### + +pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) + @echo ' DOC Building PDF' + @rm -f $(DOC_MODULE).pdf + @mkpdf_options=""; \ + gtkdoc-mkpdf 2>&1 --help | grep >/dev/null "\-\-verbose"; \ + if test "$(?)" = "0"; then \ + if test "x$(V)" = "x1"; then \ + mkpdf_options="$$mkpdf_options --verbose"; \ + fi; \ + fi; \ + if test "x$(HTML_IMAGES)" != "x"; then \ + for img in $(HTML_IMAGES); do \ + part=`dirname $$img`; \ + echo $$mkpdf_options | grep >/dev/null "\-\-imgdir=$$part "; \ + if test $$? != 0; then \ + mkpdf_options="$$mkpdf_options --imgdir=$$part"; \ + fi; \ + done; \ + fi; \ + gtkdoc-mkpdf --path="$(abs_srcdir)" $$mkpdf_options $(DOC_MODULE) $(DOC_MAIN_SGML_FILE) $(MKPDF_OPTIONS) + @touch pdf-build.stamp ############## clean-local: - rm -f *~ *.bak - rm -rf .libs + @rm -f *~ *.bak + @rm -rf .libs distclean-local: - cd $(srcdir) && \ - rm -rf xml $(REPORT_FILES) \ - $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt + @rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \ + $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt + @if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ + rm -f $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types; \ + rm -rf tmpl; \ + fi maintainer-clean-local: clean - cd $(srcdir) && rm -rf xml html + @rm -rf xml html install-data-local: - installfiles=`echo $(srcdir)/html/*`; \ - if test "$$installfiles" = '$(srcdir)/html/*'; \ - then echo '-- Nothing to install' ; \ + @installfiles=`echo $(builddir)/html/*`; \ + if test "$$installfiles" = '$(builddir)/html/*'; \ + then echo 1>&2 'Nothing to install' ; \ else \ if test -n "$(DOC_MODULE_VERSION)"; then \ installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \ @@ -581,21 +680,18 @@ fi; \ $(mkinstalldirs) $${installdir} ; \ for i in $$installfiles; do \ - echo '-- Installing '$$i ; \ + echo ' $(INSTALL_DATA) '$$i ; \ $(INSTALL_DATA) $$i $${installdir}; \ done; \ if test -n "$(DOC_MODULE_VERSION)"; then \ mv -f $${installdir}/$(DOC_MODULE).devhelp2 \ $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp2; \ - mv -f $${installdir}/$(DOC_MODULE).devhelp \ - $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp; \ fi; \ - ! which gtkdoc-rebase >/dev/null 2>&1 || \ - gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ + $(GTKDOC_REBASE) --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir}; \ fi uninstall-local: - if test -n "$(DOC_MODULE_VERSION)"; then \ + @if test -n "$(DOC_MODULE_VERSION)"; then \ installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \ else \ installdir="$(DESTDIR)$(TARGET_DIR)"; \ @@ -611,17 +707,15 @@ @ENABLE_GTK_DOC_FALSE@ @false dist-hook: dist-check-gtkdoc dist-hook-local - mkdir $(distdir)/tmpl - mkdir $(distdir)/xml - mkdir $(distdir)/html - -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl - -cp $(srcdir)/xml/*.xml $(distdir)/xml - cp $(srcdir)/html/* $(distdir)/html - -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ - -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ - cd $(distdir) && rm -f $(DISTCLEANFILES) - ! which gtkdoc-rebase >/dev/null 2>&1 || \ - gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + @mkdir $(distdir)/tmpl + @mkdir $(distdir)/html + @-cp ./tmpl/*.sgml $(distdir)/tmpl + @cp ./html/* $(distdir)/html + @-cp ./$(DOC_MODULE).pdf $(distdir)/ + @-cp ./$(DOC_MODULE).types $(distdir)/ + @-cp ./$(DOC_MODULE)-sections.txt $(distdir)/ + @cd $(distdir) && rm -f $(DISTCLEANFILES) + @$(GTKDOC_REBASE) --online --relative --html-dir=$(distdir)/html .PHONY : dist-hook-local docs diff -Nru atk1.0-1.30.0/docs/tmpl/atkaction.sgml atk1.0-2.2.0/docs/tmpl/atkaction.sgml --- atk1.0-1.30.0/docs/tmpl/atkaction.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkaction.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -15,7 +15,7 @@ Exceptions: when the user interaction is already covered by another appropriate interface such as #AtkEditableText (insert/delete -test, etc.) or #AtkValue (set value) then these actions should not be +text, etc.) or #AtkValue (set value) then these actions should not be exposed by #AtkAction as well. @@ -44,6 +44,9 @@ + + + The AtkAction structure does not contain any fields. diff -Nru atk1.0-1.30.0/docs/tmpl/atkcomponent.sgml atk1.0-2.2.0/docs/tmpl/atkcomponent.sgml --- atk1.0-1.30.0/docs/tmpl/atkcomponent.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkcomponent.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -28,6 +28,9 @@ + + + The AtkComponent structure does not contain any fields. diff -Nru atk1.0-1.30.0/docs/tmpl/atkdocument.sgml atk1.0-2.2.0/docs/tmpl/atkdocument.sgml --- atk1.0-1.30.0/docs/tmpl/atkdocument.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkdocument.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -22,6 +22,9 @@ + + + The AtkDocument structure does not contain any fields. diff -Nru atk1.0-1.30.0/docs/tmpl/atkeditabletext.sgml atk1.0-2.2.0/docs/tmpl/atkeditabletext.sgml --- atk1.0-1.30.0/docs/tmpl/atkeditabletext.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkeditabletext.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -23,6 +23,9 @@ + + + The AtkEditableText structure does not contain any fields. diff -Nru atk1.0-1.30.0/docs/tmpl/atkgobjectaccessible.sgml atk1.0-2.2.0/docs/tmpl/atkgobjectaccessible.sgml --- atk1.0-1.30.0/docs/tmpl/atkgobjectaccessible.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkgobjectaccessible.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -22,6 +22,9 @@ + + + The AtkGObjectAccessible structure should not be accessed directly. diff -Nru atk1.0-1.30.0/docs/tmpl/atkhyperlinkimpl.sgml atk1.0-2.2.0/docs/tmpl/atkhyperlinkimpl.sgml --- atk1.0-1.30.0/docs/tmpl/atkhyperlinkimpl.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkhyperlinkimpl.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -31,6 +31,9 @@ + + + A queryable interface which allows AtkHyperlink instances associated with an diff -Nru atk1.0-1.30.0/docs/tmpl/atkhyperlink.sgml atk1.0-2.2.0/docs/tmpl/atkhyperlink.sgml --- atk1.0-1.30.0/docs/tmpl/atkhyperlink.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkhyperlink.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -21,6 +21,9 @@ + + + The AtkHyperlink structure should not be accessed directly. diff -Nru atk1.0-1.30.0/docs/tmpl/atkhypertext.sgml atk1.0-2.2.0/docs/tmpl/atkhypertext.sgml --- atk1.0-1.30.0/docs/tmpl/atkhypertext.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkhypertext.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -21,6 +21,9 @@ + + + The AtkHypertext structure does not contain any fields. diff -Nru atk1.0-1.30.0/docs/tmpl/atkimage.sgml atk1.0-2.2.0/docs/tmpl/atkimage.sgml --- atk1.0-1.30.0/docs/tmpl/atkimage.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkimage.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -29,6 +29,9 @@ + + + The AtkImage structure does not contain any fields. diff -Nru atk1.0-1.30.0/docs/tmpl/atkmisc.sgml atk1.0-2.2.0/docs/tmpl/atkmisc.sgml --- atk1.0-1.30.0/docs/tmpl/atkmisc.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkmisc.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -9,14 +9,19 @@ + + + + + @@ -45,6 +50,7 @@ +@void: @Returns: diff -Nru atk1.0-1.30.0/docs/tmpl/atknoopobjectfactory.sgml atk1.0-2.2.0/docs/tmpl/atknoopobjectfactory.sgml --- atk1.0-1.30.0/docs/tmpl/atknoopobjectfactory.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atknoopobjectfactory.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -19,6 +19,9 @@ + + + The AtkNoOpObjectFactory structure should not be accessed directly. @@ -31,6 +34,7 @@ +@void: @Returns: diff -Nru atk1.0-1.30.0/docs/tmpl/atknoopobject.sgml atk1.0-2.2.0/docs/tmpl/atknoopobject.sgml --- atk1.0-1.30.0/docs/tmpl/atknoopobject.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atknoopobject.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -19,6 +19,9 @@ + + + The AtkNoOpObject structure should not be accessed directly. diff -Nru atk1.0-1.30.0/docs/tmpl/atkobjectfactory.sgml atk1.0-2.2.0/docs/tmpl/atkobjectfactory.sgml --- atk1.0-1.30.0/docs/tmpl/atkobjectfactory.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkobjectfactory.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -23,6 +23,9 @@ + + + The AtkObjectFactory structure should not be accessed directly. diff -Nru atk1.0-1.30.0/docs/tmpl/atkobject.sgml atk1.0-2.2.0/docs/tmpl/atkobject.sgml --- atk1.0-1.30.0/docs/tmpl/atkobject.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkobject.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -34,6 +34,9 @@ + + + The AtkObject structure should not be accessed directly. @@ -265,6 +268,19 @@ @ATK_ROLE_FORM: @ATK_ROLE_LINK: @ATK_ROLE_INPUT_METHOD_WINDOW: +@ATK_ROLE_TABLE_ROW: +@ATK_ROLE_TREE_ITEM: +@ATK_ROLE_DOCUMENT_SPREADSHEET: +@ATK_ROLE_DOCUMENT_PRESENTATION: +@ATK_ROLE_DOCUMENT_TEXT: +@ATK_ROLE_DOCUMENT_WEB: +@ATK_ROLE_DOCUMENT_EMAIL: +@ATK_ROLE_COMMENT: +@ATK_ROLE_LIST_BOX: +@ATK_ROLE_GROUPING: +@ATK_ROLE_IMAGE_MAP: +@ATK_ROLE_NOTIFICATION: +@ATK_ROLE_INFO_BAR: @ATK_ROLE_LAST_DEFINED: diff -Nru atk1.0-1.30.0/docs/tmpl/atkplug.sgml atk1.0-2.2.0/docs/tmpl/atkplug.sgml --- atk1.0-1.30.0/docs/tmpl/atkplug.sgml 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkplug.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,49 @@ + +AtkPlug + + + + + + + + + + + + + + + + + + + + + + + + + + + +@parent: + + + + + + +@void: +@Returns: + + + + + + + +@plug: +@Returns: + + diff -Nru atk1.0-1.30.0/docs/tmpl/atkregistry.sgml atk1.0-2.2.0/docs/tmpl/atkregistry.sgml --- atk1.0-1.30.0/docs/tmpl/atkregistry.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkregistry.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -22,6 +22,9 @@ + + + The AtkRegistry structure should not be accessed directly. @@ -64,6 +67,7 @@ +@void: @Returns: diff -Nru atk1.0-1.30.0/docs/tmpl/atkrelationset.sgml atk1.0-2.2.0/docs/tmpl/atkrelationset.sgml --- atk1.0-1.30.0/docs/tmpl/atkrelationset.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkrelationset.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -22,6 +22,9 @@ + + + The AtkRelationSet structure should not be accessed directly. @@ -34,6 +37,7 @@ +@void: @Returns: diff -Nru atk1.0-1.30.0/docs/tmpl/atkrelation.sgml atk1.0-2.2.0/docs/tmpl/atkrelation.sgml --- atk1.0-1.30.0/docs/tmpl/atkrelation.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkrelation.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -22,6 +22,9 @@ + + + The AtkRelation structure should not be accessed directly. @@ -128,3 +131,13 @@ @target: + + + + + +@relation: +@target: +@Returns: + + diff -Nru atk1.0-1.30.0/docs/tmpl/atkselection.sgml atk1.0-2.2.0/docs/tmpl/atkselection.sgml --- atk1.0-1.30.0/docs/tmpl/atkselection.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkselection.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -28,6 +28,9 @@ + + + The AtkAction structure does not contain any fields. diff -Nru atk1.0-1.30.0/docs/tmpl/atksocket.sgml atk1.0-2.2.0/docs/tmpl/atksocket.sgml --- atk1.0-1.30.0/docs/tmpl/atksocket.sgml 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atksocket.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -0,0 +1,58 @@ + +AtkSocket + + + + + + + + + + + + + + + + + + + + + + + + + + + +@parent: + + + + + + +@void: +@Returns: + + + + + + + +@obj: +@plug_id: + + + + + + + +@obj: +@Returns: + + diff -Nru atk1.0-1.30.0/docs/tmpl/atkstateset.sgml atk1.0-2.2.0/docs/tmpl/atkstateset.sgml --- atk1.0-1.30.0/docs/tmpl/atkstateset.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkstateset.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -18,6 +18,9 @@ + + + @@ -29,6 +32,7 @@ +@void: @Returns: diff -Nru atk1.0-1.30.0/docs/tmpl/atkstate.sgml atk1.0-2.2.0/docs/tmpl/atkstate.sgml --- atk1.0-1.30.0/docs/tmpl/atkstate.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkstate.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -18,6 +18,9 @@ + + + diff -Nru atk1.0-1.30.0/docs/tmpl/atkstreamablecontent.sgml atk1.0-2.2.0/docs/tmpl/atkstreamablecontent.sgml --- atk1.0-1.30.0/docs/tmpl/atkstreamablecontent.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkstreamablecontent.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -32,6 +32,9 @@ + + + The AtkStreamableContent structure does not contain any fields. diff -Nru atk1.0-1.30.0/docs/tmpl/atktable.sgml atk1.0-2.2.0/docs/tmpl/atktable.sgml --- atk1.0-1.30.0/docs/tmpl/atktable.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atktable.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -36,6 +36,9 @@ + + + The AtkTable structure does not contain any fields. diff -Nru atk1.0-1.30.0/docs/tmpl/atktext.sgml atk1.0-2.2.0/docs/tmpl/atktext.sgml --- atk1.0-1.30.0/docs/tmpl/atktext.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atktext.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -34,6 +34,9 @@ + + + The AtkText structure does not contain any fields. @@ -70,6 +73,26 @@ @arg1: The position (character offset) of the insertion or deletion. @arg2: The length (in characters) of text inserted or deleted. + + + + + +@atktext: the object which received the signal. +@arg1: +@arg2: +@arg3: + + + + + + +@atktext: the object which received the signal. +@arg1: +@arg2: +@arg3: + The "text-selection-changed" signal is emitted when the selected text of @@ -79,6 +102,17 @@ @atktext: the object which received the signal. + + + + + +@atktext: the object which received the signal. +@arg1: +@arg2: +@arg3: +@arg4: + diff -Nru atk1.0-1.30.0/docs/tmpl/atkutil.sgml atk1.0-2.2.0/docs/tmpl/atkutil.sgml --- atk1.0-1.30.0/docs/tmpl/atkutil.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkutil.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -19,6 +19,9 @@ + + + The AtkUtil struct does not contain any fields. @@ -79,6 +82,7 @@ +@void: @@ -154,6 +158,7 @@ +@void: @Returns: @@ -162,6 +167,7 @@ +@void: @Returns: @@ -170,6 +176,7 @@ +@void: @Returns: @@ -178,6 +185,70 @@ +@void: +@Returns: + + + + + + + +@void: @Returns: + + + + + +@TN: +@t_n: +@T_P: + + + + + + + +@TN: +@t_n: +@T_P: +@_f_: +@_C_: + + + + + + + +@TN: +@t_n: +@T_P: +@_C_: + + + + + + + +@TN: +@t_n: +@T_P: + + + + + + + +@TN: +@t_n: +@T_P: +@_C_: + + diff -Nru atk1.0-1.30.0/docs/tmpl/atkvalue.sgml atk1.0-2.2.0/docs/tmpl/atkvalue.sgml --- atk1.0-1.30.0/docs/tmpl/atkvalue.sgml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/tmpl/atkvalue.sgml 2011-09-26 22:25:58.000000000 +0000 @@ -24,6 +24,9 @@ + + + The AtkValue structure does not contain any fields. diff -Nru atk1.0-1.30.0/docs/version.xml atk1.0-2.2.0/docs/version.xml --- atk1.0-1.30.0/docs/version.xml 2010-03-29 22:53:53.000000000 +0000 +++ atk1.0-2.2.0/docs/version.xml 2011-09-26 22:25:09.000000000 +0000 @@ -1 +1 @@ -1.30.0 +2.2.0 diff -Nru atk1.0-1.30.0/docs/xml/api-index-1.12.xml atk1.0-2.2.0/docs/xml/api-index-1.12.xml --- atk1.0-1.30.0/docs/xml/api-index-1.12.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/api-index-1.12.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,12 +0,0 @@ - -A -atk_component_get_alpha -atk_document_get_attributes -atk_document_get_attribute_value -atk_document_set_attribute_value -atk_hyperlink_impl_get_hyperlink -atk_object_get_attributes -atk_streamable_content_get_uri -atk_value_get_minimum_increment - - diff -Nru atk1.0-1.30.0/docs/xml/api-index-1.13.xml atk1.0-2.2.0/docs/xml/api-index-1.13.xml --- atk1.0-1.30.0/docs/xml/api-index-1.13.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/api-index-1.13.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ - -A -atk_misc_get_instance -atk_misc_threads_enter -atk_misc_threads_leave - - diff -Nru atk1.0-1.30.0/docs/xml/api-index-1.3.xml atk1.0-2.2.0/docs/xml/api-index-1.3.xml --- atk1.0-1.30.0/docs/xml/api-index-1.3.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/api-index-1.3.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ - -A -atk_text_free_ranges -atk_text_get_bounded_ranges -atk_text_get_range_extents - - diff -Nru atk1.0-1.30.0/docs/xml/api-index-1.4.xml atk1.0-2.2.0/docs/xml/api-index-1.4.xml --- atk1.0-1.30.0/docs/xml/api-index-1.4.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/api-index-1.4.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,5 +0,0 @@ - -A -atk_hyperlink_is_selected_link - - diff -Nru atk1.0-1.30.0/docs/xml/api-index-1.6.xml atk1.0-2.2.0/docs/xml/api-index-1.6.xml --- atk1.0-1.30.0/docs/xml/api-index-1.6.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/api-index-1.6.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,5 +0,0 @@ - -A -atk_get_focus_object - - diff -Nru atk1.0-1.30.0/docs/xml/api-index-1.9.xml atk1.0-2.2.0/docs/xml/api-index-1.9.xml --- atk1.0-1.30.0/docs/xml/api-index-1.9.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/api-index-1.9.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ - -A -atk_relation_add_target -atk_relation_set_add_relation_by_type - - diff -Nru atk1.0-1.30.0/docs/xml/api-index-deprecated.xml atk1.0-2.2.0/docs/xml/api-index-deprecated.xml --- atk1.0-1.30.0/docs/xml/api-index-deprecated.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/api-index-deprecated.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ - -A -atk_hyperlink_is_selected_link -atk_object_get_layer -atk_object_get_mdi_zorder - - diff -Nru atk1.0-1.30.0/docs/xml/api-index-full.xml atk1.0-2.2.0/docs/xml/api-index-full.xml --- atk1.0-1.30.0/docs/xml/api-index-full.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/api-index-full.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,299 +0,0 @@ - -A -AtkAction -AtkAttribute -AtkAttributeSet -AtkComponent -AtkComponent::bounds-changed -AtkCoordType -AtkDocument -AtkDocument::load-complete -AtkDocument::load-stopped -AtkDocument::reload -AtkEditableText -AtkEventListener -AtkEventListenerInit -AtkFunction -AtkGObjectAccessible -AtkHyperlink -AtkHyperlink::link-activated -AtkHyperlink:end-index -AtkHyperlink:number-of-anchors -AtkHyperlink:selected-link -AtkHyperlink:start-index -AtkHyperlinkImpl -AtkHyperlinkStateFlags -AtkHypertext -AtkHypertext::link-selected -AtkImage -AtkImplementor -AtkKeyEventStruct -AtkKeyEventType -AtkKeySnoopFunc -AtkLayer -AtkMisc -AtkNoOpObject -AtkNoOpObjectFactory -AtkObject -AtkObject::active-descendant-changed -AtkObject::children-changed -AtkObject::focus-event -AtkObject::property-change -AtkObject::state-change -AtkObject::visible-data-changed -AtkObject:accessible-component-layer -AtkObject:accessible-component-mdi-zorder -AtkObject:accessible-description -AtkObject:accessible-hypertext-nlinks -AtkObject:accessible-name -AtkObject:accessible-parent -AtkObject:accessible-role -AtkObject:accessible-table-caption -AtkObject:accessible-table-caption-object -AtkObject:accessible-table-column-description -AtkObject:accessible-table-column-header -AtkObject:accessible-table-row-description -AtkObject:accessible-table-row-header -AtkObject:accessible-table-summary -AtkObject:accessible-value -AtkObjectFactory -AtkPropertyChangeHandler -AtkPropertyValues -AtkRegistry -AtkRelation -AtkRelation:relation-type -AtkRelation:target -AtkRelationSet -AtkRelationType -AtkRole -AtkSelection -AtkSelection::selection-changed -AtkState -AtkStateSet -AtkStateType -AtkStreamableContent -AtkTable -AtkTable::column-deleted -AtkTable::column-inserted -AtkTable::column-reordered -AtkTable::model-changed -AtkTable::row-deleted -AtkTable::row-inserted -AtkTable::row-reordered -AtkText -AtkText::text-attributes-changed -AtkText::text-caret-moved -AtkText::text-changed -AtkText::text-selection-changed -AtkTextAttribute -AtkTextBoundary -AtkTextClipType -AtkTextRange -AtkTextRectangle -AtkUtil -AtkValue -atk_action_do_action -atk_action_get_description -atk_action_get_keybinding -atk_action_get_localized_name -atk_action_get_name -atk_action_get_n_actions -atk_action_set_description -atk_add_focus_tracker -atk_add_global_event_listener -atk_add_key_event_listener -atk_attribute_set_free -atk_component_add_focus_handler -atk_component_contains -atk_component_get_alpha -atk_component_get_extents -atk_component_get_layer -atk_component_get_mdi_zorder -atk_component_get_position -atk_component_get_size -atk_component_grab_focus -atk_component_ref_accessible_at_point -atk_component_remove_focus_handler -atk_component_set_extents -atk_component_set_position -atk_component_set_size -atk_document_get_attributes -atk_document_get_attribute_value -atk_document_get_document -atk_document_get_document_type -atk_document_get_locale -atk_document_set_attribute_value -atk_editable_text_copy_text -atk_editable_text_cut_text -atk_editable_text_delete_text -atk_editable_text_insert_text -atk_editable_text_paste_text -atk_editable_text_set_run_attributes -atk_editable_text_set_text_contents -atk_focus_tracker_init -atk_focus_tracker_notify -atk_get_default_registry -atk_get_focus_object -atk_get_root -atk_get_toolkit_name -atk_get_toolkit_version -atk_gobject_accessible_for_object -atk_gobject_accessible_get_object -atk_hyperlink_get_end_index -atk_hyperlink_get_n_anchors -atk_hyperlink_get_object -atk_hyperlink_get_start_index -atk_hyperlink_get_uri -atk_hyperlink_impl_get_hyperlink -atk_hyperlink_is_inline -atk_hyperlink_is_selected_link -atk_hyperlink_is_valid -atk_hypertext_get_link -atk_hypertext_get_link_index -atk_hypertext_get_n_links -atk_image_get_image_description -atk_image_get_image_locale -atk_image_get_image_position -atk_image_get_image_size -atk_image_set_image_description -atk_implementor_ref_accessible -atk_misc_get_instance -atk_misc_threads_enter -atk_misc_threads_leave -atk_no_op_object_factory_new -atk_no_op_object_new -atk_object_add_relationship -atk_object_connect_property_change_handler -atk_object_factory_create_accessible -atk_object_factory_get_accessible_type -atk_object_factory_invalidate -atk_object_get_attributes -atk_object_get_description -atk_object_get_index_in_parent -atk_object_get_layer -atk_object_get_mdi_zorder -atk_object_get_name -atk_object_get_n_accessible_children -atk_object_get_parent -atk_object_get_role -atk_object_initialize -atk_object_notify_state_change -atk_object_ref_accessible_child -atk_object_ref_relation_set -atk_object_ref_state_set -atk_object_remove_property_change_handler -atk_object_remove_relationship -atk_object_set_description -atk_object_set_name -atk_object_set_parent -atk_object_set_role -atk_registry_get_factory -atk_registry_get_factory_type -atk_registry_set_factory_type -atk_relation_add_target -atk_relation_get_relation_type -atk_relation_get_target -atk_relation_new -atk_relation_set_add -atk_relation_set_add_relation_by_type -atk_relation_set_contains -atk_relation_set_get_n_relations -atk_relation_set_get_relation -atk_relation_set_get_relation_by_type -atk_relation_set_new -atk_relation_set_remove -atk_relation_type_for_name -atk_relation_type_get_name -atk_relation_type_register -atk_remove_focus_tracker -atk_remove_global_event_listener -atk_remove_key_event_listener -atk_role_for_name -atk_role_get_localized_name -atk_role_get_name -atk_role_register -atk_selection_add_selection -atk_selection_clear_selection -atk_selection_get_selection_count -atk_selection_is_child_selected -atk_selection_ref_selection -atk_selection_remove_selection -atk_selection_select_all_selection -atk_state_set_add_state -atk_state_set_add_states -atk_state_set_and_sets -atk_state_set_clear_states -atk_state_set_contains_state -atk_state_set_contains_states -atk_state_set_is_empty -atk_state_set_new -atk_state_set_or_sets -atk_state_set_remove_state -atk_state_set_xor_sets -atk_state_type_for_name -atk_state_type_get_name -atk_state_type_register -atk_streamable_content_get_mime_type -atk_streamable_content_get_n_mime_types -atk_streamable_content_get_stream -atk_streamable_content_get_uri -atk_table_add_column_selection -atk_table_add_row_selection -atk_table_get_caption -atk_table_get_column_at_index -atk_table_get_column_description -atk_table_get_column_extent_at -atk_table_get_column_header -atk_table_get_index_at -atk_table_get_n_columns -atk_table_get_n_rows -atk_table_get_row_at_index -atk_table_get_row_description -atk_table_get_row_extent_at -atk_table_get_row_header -atk_table_get_selected_columns -atk_table_get_selected_rows -atk_table_get_summary -atk_table_is_column_selected -atk_table_is_row_selected -atk_table_is_selected -atk_table_ref_at -atk_table_remove_column_selection -atk_table_remove_row_selection -atk_table_set_caption -atk_table_set_column_description -atk_table_set_column_header -atk_table_set_row_description -atk_table_set_row_header -atk_table_set_summary -atk_text_add_selection -atk_text_attribute_for_name -atk_text_attribute_get_name -atk_text_attribute_get_value -atk_text_attribute_register -atk_text_free_ranges -atk_text_get_bounded_ranges -atk_text_get_caret_offset -atk_text_get_character_at_offset -atk_text_get_character_count -atk_text_get_character_extents -atk_text_get_default_attributes -atk_text_get_n_selections -atk_text_get_offset_at_point -atk_text_get_range_extents -atk_text_get_run_attributes -atk_text_get_selection -atk_text_get_text -atk_text_get_text_after_offset -atk_text_get_text_at_offset -atk_text_get_text_before_offset -atk_text_remove_selection -atk_text_set_caret_offset -atk_text_set_selection -atk_value_get_current_value -atk_value_get_maximum_value -atk_value_get_minimum_increment -atk_value_get_minimum_value -atk_value_set_current_value - - diff -Nru atk1.0-1.30.0/docs/xml/atkaction.xml atk1.0-2.2.0/docs/xml/atkaction.xml --- atk1.0-1.30.0/docs/xml/atkaction.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkaction.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,256 +0,0 @@ - - -AtkAction -3 -ATK Library - - - -AtkAction -The ATK interface provided by UI components which the user can -activate/interact with, - - - -Synopsis - - - AtkAction; -gboolean atk_action_do_action (AtkAction *action, - gint i); -gint atk_action_get_n_actions (AtkAction *action); -const gchar* atk_action_get_description (AtkAction *action, - gint i); -const gchar* atk_action_get_name (AtkAction *action, - gint i); -const gchar* atk_action_get_localized_name (AtkAction *action, - gint i); -const gchar* atk_action_get_keybinding (AtkAction *action, - gint i); -gboolean atk_action_set_description (AtkAction *action, - gint i, - const gchar *desc); - - - - -Object Hierarchy - - GInterface - +----AtkAction - - - - - - - -Known Implementations - -AtkAction is implemented by - AtkHyperlink and AtkNoOpObject. - - - - - - -Description - -AtkAction should be implemented by instances of AtkObject classes with -which the user can interact directly, i.e. buttons, checkboxes, -scrollbars, e.g. components which are not "passive" -providers of UI information. - - -Exceptions: when the user interaction is already covered by -another appropriate interface such as AtkEditableText (insert/delete -test, etc.) or AtkValue (set value) then these actions should not be -exposed by AtkAction as well. - - -Also note that the AtkAction API is limited in that parameters may not -be passed to the object being activated; thus the action must be -self-contained and specifiable via only a single "verb". Concrete -examples include "press", "release", "click" for buttons, "drag" -(meaning initiate drag) and "drop" for drag sources and drop targets, -etc. - - -Though most UI interactions on components should be invocable via -keyboard as well as mouse, there will generally be a close mapping -between "mouse actions" that are possible on a component and the -AtkActions. Where mouse and keyboard actions are redundant in effect, -AtkAction should expose only one action rather than exposing redundant -actions if possible. By convention we have been using "mouse centric" -terminology for AtkAction names. - - - - -Details - -AtkAction -AtkActiontypedef struct _AtkAction AtkAction; - -The AtkAction structure does not contain any fields. - - -atk_action_do_action () -atk_action_do_actiongboolean atk_action_do_action (AtkAction *action, - gint i); - -Perform the specified action on the object. - - -action : - a GObject instance that implements AtkActionIface - -i : - the action index corresponding to the action to be performed - -Returns : TRUE if success, FALSE otherwise - - - - -atk_action_get_n_actions () -atk_action_get_n_actionsgint atk_action_get_n_actions (AtkAction *action); - -Gets the number of accessible actions available on the object. -If there are more than one, the first one is considered the -"default" action of the object. - - -action : - a GObject instance that implements AtkActionIface - -Returns : a the number of actions, or 0 if action does not -implement this interface. - - - -atk_action_get_description () -atk_action_get_descriptionconst gchar* atk_action_get_description (AtkAction *action, - gint i); - -Returns a description of the specified action of the object. - - -action : - a GObject instance that implements AtkActionIface - -i : - the action index corresponding to the action to be performed - -Returns :a description string, or NULL -if action does not implement this interface. - - - -atk_action_get_name () -atk_action_get_nameconst gchar* atk_action_get_name (AtkAction *action, - gint i); - -Returns a non-localized string naming the specified action of the -object. This name is generally not descriptive of the end result -of the action, but instead names the 'interaction type' which the -object supports. By convention, the above strings should be used to -represent the actions which correspond to the common point-and-click -interaction techniques of the same name: i.e. -"click", "press", "release", "drag", "drop", "popup", etc. -The "popup" action should be used to pop up a context menu for the -object, if one exists. - - -For technical reasons, some toolkits cannot guarantee that the -reported action is actually 'bound' to a nontrivial user event; -i.e. the result of some actions via atk_action_do_action() may be -NIL. - - -action : - a GObject instance that implements AtkActionIface - -i : - the action index corresponding to the action to be performed - -Returns :a name string, or NULL -if action does not implement this interface. - - - -atk_action_get_localized_name () -atk_action_get_localized_nameconst gchar* atk_action_get_localized_name (AtkAction *action, - gint i); - -Returns the localized name of the specified action of the object. - - -action : - a GObject instance that implements AtkActionIface - -i : - the action index corresponding to the action to be performed - -Returns :a name string, or NULL -if action does not implement this interface. - - - -atk_action_get_keybinding () -atk_action_get_keybindingconst gchar* atk_action_get_keybinding (AtkAction *action, - gint i); - -Returns a keybinding associated with this action, if one exists. -The returned string is in the format "<a>;<b>;<c>" -(i.e. semicolon-delimited), where <a> is the keybinding which -activates the object if it is presently enabled onscreen, -<b> corresponds to the keybinding or sequence of keys -which invokes the action even if the relevant element is not -currently posted on screen (for instance, for a menu item it -posts the parent menus before invoking). The last token in the -above string, if non-empty, represents a keyboard shortcut which -invokes the same action without posting the component or its -enclosing menus or dialogs. - - -action : - a GObject instance that implements AtkActionIface - -i : - the action index corresponding to the action to be performed - -Returns :a string representing the available keybindings, or NULL -if there is no keybinding for this action. - - - - -atk_action_set_description () -atk_action_set_descriptiongboolean atk_action_set_description (AtkAction *action, - gint i, - const gchar *desc); - -Sets a description of the specified action of the object. - - -action : - a GObject instance that implements AtkActionIface - -i : - the action index corresponding to the action to be performed - -desc : - the description to be assigned to this action - -Returns : a gboolean representing if the description was successfully set; - - - - - - - - - diff -Nru atk1.0-1.30.0/docs/xml/atkcomponent.xml atk1.0-2.2.0/docs/xml/atkcomponent.xml --- atk1.0-1.30.0/docs/xml/atkcomponent.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkcomponent.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,450 +0,0 @@ - - -AtkComponent -3 -ATK Library - - - -AtkComponent -The ATK interface provided by UI components which occupy a physical area on -the screen. - - - -Synopsis - - - AtkComponent; -guint atk_component_add_focus_handler (AtkComponent *component, - AtkFocusHandler handler); -gboolean atk_component_contains (AtkComponent *component, - gint x, - gint y, - AtkCoordType coord_type); -void atk_component_get_extents (AtkComponent *component, - gint *x, - gint *y, - gint *width, - gint *height, - AtkCoordType coord_type); -AtkLayer atk_component_get_layer (AtkComponent *component); -gint atk_component_get_mdi_zorder (AtkComponent *component); -void atk_component_get_position (AtkComponent *component, - gint *x, - gint *y, - AtkCoordType coord_type); -void atk_component_get_size (AtkComponent *component, - gint *width, - gint *height); -gboolean atk_component_grab_focus (AtkComponent *component); -AtkObject* atk_component_ref_accessible_at_point - (AtkComponent *component, - gint x, - gint y, - AtkCoordType coord_type); -void atk_component_remove_focus_handler (AtkComponent *component, - guint handler_id); -gboolean atk_component_set_extents (AtkComponent *component, - gint x, - gint y, - gint width, - gint height, - AtkCoordType coord_type); -gboolean atk_component_set_position (AtkComponent *component, - gint x, - gint y, - AtkCoordType coord_type); -gboolean atk_component_set_size (AtkComponent *component, - gint width, - gint height); -gdouble atk_component_get_alpha (AtkComponent *component); - - - - -Object Hierarchy - - GInterface - +----AtkComponent - - - - - - - -Known Implementations - -AtkComponent is implemented by - AtkNoOpObject. - - - - -Signals - - "bounds-changed" : Run Last - - - - - -Description - -AtkComponent should be implemented by most if not all UI elements with -an actual on-screen presence, i.e. components which can be said to have -a screen-coordinate bounding box. Virtually all widgets will need to -have AtkComponent implementations provided for their corresponding -AtkObject class. In short, only UI elements which are *not* GUI -elements will omit this ATK interface. - - -A possible exception might be textual information with a transparent -background, in which case text glyph bounding box information is -provided by AtkText. - - - - -Details - -AtkComponent -AtkComponenttypedef struct _AtkComponent AtkComponent; - -The AtkComponent structure does not contain any fields. - - -atk_component_add_focus_handler () -atk_component_add_focus_handlerguint atk_component_add_focus_handler (AtkComponent *component, - AtkFocusHandler handler); - -Add the specified handler to the set of functions to be called -when this object receives focus events (in or out). If the handler is -already added it is not added again - - -component : - The AtkComponent to attach the handler to - -handler : - The AtkFocusHandler to be attached to component - -Returns : a handler id which can be used in atk_component_remove_focus_handler -or zero if the handler was already added. - - - -atk_component_contains () -atk_component_containsgboolean atk_component_contains (AtkComponent *component, - gint x, - gint y, - AtkCoordType coord_type); - -Checks whether the specified point is within the extent of the component. - - -component : - the AtkComponent - -x : - x coordinate - -y : - y coordinate - -coord_type : - specifies whether the coordinates are relative to the screen -or to the components top level window - -Returns : TRUE or FALSE indicating whether the specified point is within -the extent of the component or not - - - -atk_component_get_extents () -atk_component_get_extentsvoid atk_component_get_extents (AtkComponent *component, - gint *x, - gint *y, - gint *width, - gint *height, - AtkCoordType coord_type); - -Gets the rectangle which gives the extent of the component. - - -component : - an AtkComponent - -x : - address of gint to put x coordinate - -y : - address of gint to put y coordinate - -width : - address of gint to put width - -height : - address of gint to put height - -coord_type : - specifies whether the coordinates are relative to the screen -or to the components top level window - - - -atk_component_get_layer () -atk_component_get_layerAtkLayer atk_component_get_layer (AtkComponent *component); - -Gets the layer of the component. - - -component : - an AtkComponent - -Returns : an AtkLayer which is the layer of the component - - - -atk_component_get_mdi_zorder () -atk_component_get_mdi_zordergint atk_component_get_mdi_zorder (AtkComponent *component); - -Gets the zorder of the component. The value G_MININT will be returned -if the layer of the component is not ATK_LAYER_MDI or ATK_LAYER_WINDOW. - - -component : - an AtkComponent - -Returns : a gint which is the zorder of the component, i.e. the depth at -which the component is shown in relation to other components in the same -container. - - - -atk_component_get_position () -atk_component_get_positionvoid atk_component_get_position (AtkComponent *component, - gint *x, - gint *y, - AtkCoordType coord_type); - -Gets the position of component in the form of -a point specifying component's top-left corner. - - -component : - an AtkComponent - -x : - address of gint to put x coordinate position - -y : - address of gint to put y coordinate position - -coord_type : - specifies whether the coordinates are relative to the screen -or to the components top level window - - - -atk_component_get_size () -atk_component_get_sizevoid atk_component_get_size (AtkComponent *component, - gint *width, - gint *height); - -Gets the size of the component in terms of width and height. - - -component : - an AtkComponent - -width : - address of gint to put width of component - -height : - address of gint to put height of component - - - -atk_component_grab_focus () -atk_component_grab_focusgboolean atk_component_grab_focus (AtkComponent *component); - -Grabs focus for this component. - - -component : - an AtkComponent - -Returns : TRUE if successful, FALSE otherwise. - - - -atk_component_ref_accessible_at_point () -atk_component_ref_accessible_at_pointAtkObject* atk_component_ref_accessible_at_point - (AtkComponent *component, - gint x, - gint y, - AtkCoordType coord_type); - -Gets a reference to the accessible child, if one exists, at the -coordinate point specified by x and y. - - -component : - the AtkComponent - -x : - x coordinate - -y : - y coordinate - -coord_type : - specifies whether the coordinates are relative to the screen -or to the components top level window - -Returns : a reference to the accessible child, if one exists - - - -atk_component_remove_focus_handler () -atk_component_remove_focus_handlervoid atk_component_remove_focus_handler (AtkComponent *component, - guint handler_id); - -Remove the handler specified by handler_id from the list of -functions to be executed when this object receives focus events -(in or out). - - -component : - the AtkComponent to remove the focus handler from - -handler_id : - the handler id of the focus handler to be removed -from component - - - -atk_component_set_extents () -atk_component_set_extentsgboolean atk_component_set_extents (AtkComponent *component, - gint x, - gint y, - gint width, - gint height, - AtkCoordType coord_type); - -Sets the extents of component. - - -component : - an AtkComponent - -x : - x coordinate - -y : - y coordinate - -width : - width to set for component - -height : - height to set for component - -coord_type : - specifies whether the coordinates are relative to the screen -or to the components top level window - -Returns : TRUE or FALSE whether the extents were set or not - - - -atk_component_set_position () -atk_component_set_positiongboolean atk_component_set_position (AtkComponent *component, - gint x, - gint y, - AtkCoordType coord_type); - -Sets the postition of component. - - -component : - an AtkComponent - -x : - x coordinate - -y : - y coordinate - -coord_type : - specifies whether the coordinates are relative to the screen -or to the components top level window - -Returns : TRUE or FALSE whether or not the position was set or not - - - -atk_component_set_size () -atk_component_set_sizegboolean atk_component_set_size (AtkComponent *component, - gint width, - gint height); - -Set the size of the component in terms of width and height. - - -component : - an AtkComponent - -width : - width to set for component - -height : - height to set for component - -Returns : TRUE or FALSE whether the size was set or not - - - -atk_component_get_alpha () -atk_component_get_alphagdouble atk_component_get_alpha (AtkComponent *component); - -Returns the alpha value (i.e. the opacity) for this -component, on a scale from 0 (fully transparent) to 1.0 -(fully opaque). - - -component : - an AtkComponent - -Returns : An alpha value from 0 to 1.0, inclusive. - -Since 1.12 - - - - -Signal Details -The <literal>"bounds-changed"</literal> signal -AtkComponent::bounds-changedvoid user_function (AtkComponent *atkcomponent, - AtkRectangle *arg1, - gpointer user_data) : Run Last - -The 'bounds-changed" signal is emitted when the bposition or size of the -a component changes. - -atkcomponent : -the object which received the signal. - -arg1 : -The AtkRectangle giving the new position and size. - -user_data : -user data set when the signal handler was connected. - - - - - - diff -Nru atk1.0-1.30.0/docs/xml/atkdocument.xml atk1.0-2.2.0/docs/xml/atkdocument.xml --- atk1.0-1.30.0/docs/xml/atkdocument.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkdocument.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,242 +0,0 @@ - - -AtkDocument -3 -ATK Library - - - -AtkDocument -The ATK interface which represents the toplevel container for document content. - - - -Synopsis - - - AtkDocument; -const gchar* atk_document_get_document_type (AtkDocument *document); -gpointer atk_document_get_document (AtkDocument *document); -const gchar* atk_document_get_attribute_value (AtkDocument *document, - const gchar *attribute_name); -gboolean atk_document_set_attribute_value (AtkDocument *document, - const gchar *attribute_name, - const gchar *attribute_value); -AtkAttributeSet* atk_document_get_attributes (AtkDocument *document); -const gchar* atk_document_get_locale (AtkDocument *document); - - - - -Object Hierarchy - - GInterface - +----AtkDocument - - - - - - - -Known Implementations - -AtkDocument is implemented by - AtkNoOpObject. - - - - -Signals - - "load-complete" : Run Last - "load-stopped" : Run Last - "reload" : Run Last - - - - - -Description - -The AtkDocument interface should be supported by any object whose content is a -representation or view of a document. The AtkDocument interface should appear -on the toplevel container for the document content; however AtkDocument -instances may be nested (i.e. an AtkDocument may be a descendant of another -AtkDocument) in those cases where one document contains "embedded content" -which can reasonably be considered a document in its own right. - - - - -Details - -AtkDocument -AtkDocumenttypedef struct _AtkDocument AtkDocument; - -The AtkDocument structure does not contain any fields. - - -atk_document_get_document_type () -atk_document_get_document_typeconst gchar* atk_document_get_document_type (AtkDocument *document); - -Gets a string indicating the document type. - - -document : - a GObject instance that implements AtkDocumentIface - -Returns : a string indicating the document type - - - -atk_document_get_document () -atk_document_get_documentgpointer atk_document_get_document (AtkDocument *document); - -Gets a gpointer that points to an instance of the DOM. It is -up to the caller to check atk_document_get_type to determine -how to cast this pointer. - - -document : - a GObject instance that implements AtkDocumentIface - -Returns : a gpointer that points to an instance of the DOM. - - - -atk_document_get_attribute_value () -atk_document_get_attribute_valueconst gchar* atk_document_get_attribute_value (AtkDocument *document, - const gchar *attribute_name); - - - - -document : - a GObject instance that implements AtkDocumentIface - -attribute_name : - a character string representing the name of the attribute - whose value is being queried. - -Returns : a string value associated with the named attribute for this - document, or NULL if a value for attribute_name has not been specified - for this document. - -Since 1.12 - -atk_document_set_attribute_value () -atk_document_set_attribute_valuegboolean atk_document_set_attribute_value (AtkDocument *document, - const gchar *attribute_name, - const gchar *attribute_value); - - - - -document : - a GObject instance that implements AtkDocumentIface - -attribute_name : - a character string representing the name of the attribute - whose value is being set. - -attribute_value : - a string value to be associated with attribute_name. - -Returns : TRUE if value is successfully associated with attribute_name - for this document, FALSE otherwise (e.g. if the document does not - allow the attribute to be modified). - -Since 1.12 - -atk_document_get_attributes () -atk_document_get_attributesAtkAttributeSet* atk_document_get_attributes (AtkDocument *document); - -Gets an AtkAttributeSet which describes document-wide - attributes as name-value pairs. - - -document : - a GObject instance that implements AtkDocumentIface - -Returns : An AtkAttributeSet containing the explicitly - set name-value-pair attributes associated with this document - as a whole. - -Since 1.12 - -atk_document_get_locale () -atk_document_get_localeconst gchar* atk_document_get_locale (AtkDocument *document); - -Gets a UTF-8 string indicating the POSIX-style LC_MESSAGES locale - of the content of this document instance. Individual - text substrings or images within this document may have - a different locale, see atk_text_get_attributes and - atk_image_get_image_locale. - - -document : - a GObject instance that implements AtkDocumentIface - -Returns : a UTF-8 string indicating the POSIX-style LC_MESSAGES - locale of the document content as a whole, or NULL if - the document content does not specify a locale. - - - - - - -Signal Details -The <literal>"load-complete"</literal> signal -AtkDocument::load-completevoid user_function (AtkDocument *atkdocument, - gpointer user_data) : Run Last - -The 'load-complete' signal is emitted when a pending load of a static -document has completed. This signal is to be expected by ATK clients -if and when AtkDocument implementors expose ATK_STATE_BUSY. If the state -of an AtkObject which implements AtkDocument does not include ATK_STATE_BUSY, -it should be safe for clients to assume that the AtkDocument's static contents -are fully loaded into the container. (Dynamic document contents should -be exposed via other signals.) - -atkdocument : -the object which received the signal. - -user_data : -user data set when the signal handler was connected. -The <literal>"load-stopped"</literal> signal -AtkDocument::load-stoppedvoid user_function (AtkDocument *atkdocument, - gpointer user_data) : Run Last - -The 'load-stopped' signal is emitted when a pending load of document contents -is cancelled, paused, or otherwise interrupted by the user or application -logic. It should not however be -emitted while waiting for a resource (for instance while blocking on a file or -network read) unless a user-significant timeout has occurred. - -atkdocument : -the object which received the signal. - -user_data : -user data set when the signal handler was connected. -The <literal>"reload"</literal> signal -AtkDocument::reloadvoid user_function (AtkDocument *atkdocument, - gpointer user_data) : Run Last - -The 'reload' signal is emitted when the contents of a document is refreshed -from its source. Once 'reload' has been emitted, a matching 'load-complete' -or 'load-stopped' signal should follow, which clients may await before -interrogating ATK for the latest document content. - -atkdocument : -the object which received the signal. - -user_data : -user data set when the signal handler was connected. - - - - - - diff -Nru atk1.0-1.30.0/docs/xml/atkeditabletext.xml atk1.0-2.2.0/docs/xml/atkeditabletext.xml --- atk1.0-1.30.0/docs/xml/atkeditabletext.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkeditabletext.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,241 +0,0 @@ - - -AtkEditableText -3 -ATK Library - - - -AtkEditableText -The ATK interface implemented by components containing user-editable text content. - - - -Synopsis - - - AtkEditableText; -gboolean atk_editable_text_set_run_attributes - (AtkEditableText *text, - AtkAttributeSet *attrib_set, - gint start_offset, - gint end_offset); -void atk_editable_text_set_text_contents (AtkEditableText *text, - const gchar *string); -void atk_editable_text_insert_text (AtkEditableText *text, - const gchar *string, - gint length, - gint *position); -void atk_editable_text_copy_text (AtkEditableText *text, - gint start_pos, - gint end_pos); -void atk_editable_text_cut_text (AtkEditableText *text, - gint start_pos, - gint end_pos); -void atk_editable_text_delete_text (AtkEditableText *text, - gint start_pos, - gint end_pos); -void atk_editable_text_paste_text (AtkEditableText *text, - gint position); - - - - -Object Hierarchy - - GInterface - +----AtkEditableText - - - - - - - -Known Implementations - -AtkEditableText is implemented by - AtkNoOpObject. - - - - - - -Description - -AtkEditableText should be implemented by UI components which contain -text which the user can edit, via the AtkObject corresponding to that -component (see AtkObject). - - -AtkEditableText is a subclass of AtkText, and as such, an object which -implements AtkEditableText is by definition an AtkText implementor as well. - - - - -Details - -AtkEditableText -AtkEditableTexttypedef struct _AtkEditableText AtkEditableText; - -The AtkEditableText structure does not contain any fields. - - -atk_editable_text_set_run_attributes () -atk_editable_text_set_run_attributesgboolean atk_editable_text_set_run_attributes - (AtkEditableText *text, - AtkAttributeSet *attrib_set, - gint start_offset, - gint end_offset); - -Sets the attributes for a specified range. See the ATK_ATTRIBUTE -macros (such as ATK_ATTRIBUTE_LEFT_MARGIN) for examples of attributes -that can be set. Note that other attributes that do not have corresponding -ATK_ATTRIBUTE macros may also be set for certain text widgets. - - -text : - an AtkEditableText - -attrib_set : - an AtkAttributeSet - -start_offset : - start of range in which to set attributes - -end_offset : - end of range in which to set attributes - -Returns : TRUE if attributes successfully set for the specified -range, otherwise FALSE - - - -atk_editable_text_set_text_contents () -atk_editable_text_set_text_contentsvoid atk_editable_text_set_text_contents (AtkEditableText *text, - const gchar *string); - -Set text contents of text. - - -text : - an AtkEditableText - -string : - string to set for text contents of text - - - -atk_editable_text_insert_text () -atk_editable_text_insert_textvoid atk_editable_text_insert_text (AtkEditableText *text, - const gchar *string, - gint length, - gint *position); - -Insert text at a given position. - - -text : - an AtkEditableText - -string : - the text to insert - -length : - the length of text to insert, in bytes - -position : - The caller initializes this to -the position at which to insert the text. After the call it -points at the position after the newly inserted text. - - - -atk_editable_text_copy_text () -atk_editable_text_copy_textvoid atk_editable_text_copy_text (AtkEditableText *text, - gint start_pos, - gint end_pos); - -Copy text from start_pos up to, but not including end_pos -to the clipboard. - - -text : - an AtkEditableText - -start_pos : - start position - -end_pos : - end position - - - -atk_editable_text_cut_text () -atk_editable_text_cut_textvoid atk_editable_text_cut_text (AtkEditableText *text, - gint start_pos, - gint end_pos); - -Copy text from start_pos up to, but not including end_pos -to the clipboard and then delete from the widget. - - -text : - an AtkEditableText - -start_pos : - start position - -end_pos : - end position - - - -atk_editable_text_delete_text () -atk_editable_text_delete_textvoid atk_editable_text_delete_text (AtkEditableText *text, - gint start_pos, - gint end_pos); - -Delete text start_pos up to, but not including end_pos. - - -text : - an AtkEditableText - -start_pos : - start position - -end_pos : - end position - - - -atk_editable_text_paste_text () -atk_editable_text_paste_textvoid atk_editable_text_paste_text (AtkEditableText *text, - gint position); - -Paste text from clipboard to specified position. - - -text : - an AtkEditableText - -position : - position to paste - - - - - - - - -See Also - -AtkText - - - - diff -Nru atk1.0-1.30.0/docs/xml/atkgobjectaccessible.xml atk1.0-2.2.0/docs/xml/atkgobjectaccessible.xml --- atk1.0-1.30.0/docs/xml/atkgobjectaccessible.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkgobjectaccessible.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,90 +0,0 @@ - - -AtkGObjectAccessible -3 -ATK Library - - - -AtkGObjectAccessible -This object class is derived from AtkObject and can be used as a basis -implementing accessible objects. - - - -Synopsis - - - AtkGObjectAccessible; -AtkObject * atk_gobject_accessible_for_object (GObject *obj); -GObject * atk_gobject_accessible_get_object (AtkGObjectAccessible *obj); - - - - -Object Hierarchy - - GObject - +----AtkObject - +----AtkGObjectAccessible - - - - - - - - - - - -Description - -This object class is derived from AtkObject. It can be used as a basis for -implementing accessible objects for GObjects which are not derived from -GtkWidget. One example of its use is in providing an accessible object -for GnomeCanvasItem in the GAIL library. - - - - -Details - -AtkGObjectAccessible -AtkGObjectAccessibletypedef struct _AtkGObjectAccessible AtkGObjectAccessible; - -The AtkGObjectAccessible structure should not be accessed directly. - - -atk_gobject_accessible_for_object () -atk_gobject_accessible_for_objectAtkObject * atk_gobject_accessible_for_object (GObject *obj); - -Gets the accessible object for the specified obj. - - -obj : - a GObject - -Returns : a AtkObject which is the accessible object for the obj - - - -atk_gobject_accessible_get_object () -atk_gobject_accessible_get_objectGObject * atk_gobject_accessible_get_object (AtkGObjectAccessible *obj); - -Gets the GObject for which obj is the accessible object. - - -obj : - a AtkGObjectAccessible - -Returns : a GObject which is the object for which obj is the accessible object - - - - - - - - - diff -Nru atk1.0-1.30.0/docs/xml/atkhyperlinkimpl.xml atk1.0-2.2.0/docs/xml/atkhyperlinkimpl.xml --- atk1.0-1.30.0/docs/xml/atkhyperlinkimpl.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkhyperlinkimpl.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,83 +0,0 @@ - - -AtkHyperlinkImpl -3 -ATK Library - - - -AtkHyperlinkImpl -An interface from which the AtkHyperlink associated with an -AtkObject may be obtained. - - - -Synopsis - - - AtkHyperlinkImpl; -AtkHyperlink * atk_hyperlink_impl_get_hyperlink (AtkHyperlinkImpl *obj); - - - - - - - - - - - - -Description - -AtkHyperlinkImpl allows AtkObjects to -refer to their associated AtkHyperlink instance, if one -exists. AtkHyperlinkImpl differs from AtkHyperlink in that -AtkHyperlinkImpl is an interface, whereas AtkHyperlink is -a object type. The AtkHyperlinkImpl interface allows -a client to query an AtkObject for the availability of -an associated AtkHyperlink instance, and obtain that -instance. It is thus particularly useful in cases where -embedded content or inline content within a text object -is present, since the embedding text object implements -AtkHypertext and the inline/embedded objects are -exposed as children which implement AtkHyperlinkImpl, -in addition to their being obtainable via AtkHypertext:getLink -followed by AtkHyperlink:getObject. - - - - -Details - -AtkHyperlinkImpl -AtkHyperlinkImpltypedef struct _AtkHyperlinkImpl AtkHyperlinkImpl; - -A queryable interface which allows AtkHyperlink instances associated with an -AtkObject to be obtained. AtkHyperlinkImpl corresponds to AT-SPI's -Hyperlink interface, and differs from AtkHyperlink in that AtkHyperlink -is an object type, rather than an interface, and thus cannot be directly -queried. - - -atk_hyperlink_impl_get_hyperlink () -atk_hyperlink_impl_get_hyperlinkAtkHyperlink * atk_hyperlink_impl_get_hyperlink (AtkHyperlinkImpl *obj); - -Gets the hyperlink associated with this object. - - -obj : - a GObject instance that implements AtkHyperlinkImplIface - -Returns :an AtkHyperlink object which points to this implementing AtkObject. - - -Since 1.12 - - - - - - - diff -Nru atk1.0-1.30.0/docs/xml/atkhyperlink.xml atk1.0-2.2.0/docs/xml/atkhyperlink.xml --- atk1.0-1.30.0/docs/xml/atkhyperlink.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkhyperlink.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,277 +0,0 @@ - - -AtkHyperlink -3 -ATK Library - - - -AtkHyperlink -An ATK object which encapsulates a link or set of links in a hypertext document. - - - -Synopsis - - - AtkHyperlink; -enum AtkHyperlinkStateFlags; -gchar* atk_hyperlink_get_uri (AtkHyperlink *link_, - gint i); -AtkObject* atk_hyperlink_get_object (AtkHyperlink *link_, - gint i); -gint atk_hyperlink_get_end_index (AtkHyperlink *link_); -gint atk_hyperlink_get_start_index (AtkHyperlink *link_); -gboolean atk_hyperlink_is_valid (AtkHyperlink *link_); -gboolean atk_hyperlink_is_inline (AtkHyperlink *link_); -gint atk_hyperlink_get_n_anchors (AtkHyperlink *link_); -gboolean atk_hyperlink_is_selected_link (AtkHyperlink *link_); - - - - -Object Hierarchy - - GObject - +----AtkHyperlink - - - - - - -Implemented Interfaces - -AtkHyperlink implements - AtkAction. - - - - -Properties - - "end-index" gint : Read - "number-of-anchors" gint : Read - "selected-link" gboolean : Read - "start-index" gint : Read - - - - -Signals - - "link-activated" : Run Last - - - - - -Description - -An ATK object which encapsulates a link or set of links -(for instance in the case of client-side image maps) in a hypertext document. -It may implement the AtkAction interface. AtkHyperlink may also be used -to refer to inline embedded content, since it allows specification of a start -and end offset within the host AtkHypertext object. - - - - -Details - -AtkHyperlink -AtkHyperlinktypedef struct _AtkHyperlink AtkHyperlink; - -The AtkHyperlink structure should not be accessed directly. - - -enum AtkHyperlinkStateFlags -AtkHyperlinkStateFlagstypedef enum -{ - ATK_HYPERLINK_IS_INLINE = 1 << 0 -} AtkHyperlinkStateFlags; - - -Describes the type of link - - - -ATK_HYPERLINK_IS_INLINE - Link is inline - - - - -atk_hyperlink_get_uri () -atk_hyperlink_get_urigchar* atk_hyperlink_get_uri (AtkHyperlink *link_, - gint i); - -Get a the URI associated with the anchor specified -by i of link_. - - -Multiple anchors are primarily used by client-side image maps. - - -link_ : - an AtkHyperlink - -i : - a (zero-index) integer specifying the desired anchor - -Returns : a string specifying the URI - - - -atk_hyperlink_get_object () -atk_hyperlink_get_objectAtkObject* atk_hyperlink_get_object (AtkHyperlink *link_, - gint i); - -Returns the item associated with this hyperlinks nth anchor. -For instance, the returned AtkObject will implement AtkText -if link_ is a text hyperlink, AtkImage if link_ is an image -hyperlink etc. - - -Multiple anchors are primarily used by client-side image maps. - - -link_ : - an AtkHyperlink - -i : - a (zero-index) integer specifying the desired anchor - -Returns : an AtkObject associated with this hyperlinks i-th anchor - - - -atk_hyperlink_get_end_index () -atk_hyperlink_get_end_indexgint atk_hyperlink_get_end_index (AtkHyperlink *link_); - -Gets the index with the hypertext document at which this link ends. - - -link_ : - an AtkHyperlink - -Returns : the index with the hypertext document at which this link ends - - - -atk_hyperlink_get_start_index () -atk_hyperlink_get_start_indexgint atk_hyperlink_get_start_index (AtkHyperlink *link_); - -Gets the index with the hypertext document at which this link begins. - - -link_ : - an AtkHyperlink - -Returns : the index with the hypertext document at which this link begins - - - -atk_hyperlink_is_valid () -atk_hyperlink_is_validgboolean atk_hyperlink_is_valid (AtkHyperlink *link_); - -Since the document that a link is associated with may have changed -this method returns TRUE if the link is still valid (with -respect to the document it references) and FALSE otherwise. - - -link_ : - an AtkHyperlink - -Returns : whether or not this link is still valid - - - -atk_hyperlink_is_inline () -atk_hyperlink_is_inlinegboolean atk_hyperlink_is_inline (AtkHyperlink *link_); - -Indicates whether the link currently displays some or all of its - content inline. Ordinary HTML links will usually return - FALSE, but an inline &lt;src&gt; HTML element will return - TRUE. -a * - - -link_ : - an AtkHyperlink - -Returns : whether or not this link displays its content inline. - - - - -atk_hyperlink_get_n_anchors () -atk_hyperlink_get_n_anchorsgint atk_hyperlink_get_n_anchors (AtkHyperlink *link_); - -Gets the number of anchors associated with this hyperlink. - - -link_ : - an AtkHyperlink - -Returns : the number of anchors associated with this hyperlink - - - -atk_hyperlink_is_selected_link () -atk_hyperlink_is_selected_linkatk_hyperlink_is_selected_linkgboolean atk_hyperlink_is_selected_link (AtkHyperlink *link_); -atk_hyperlink_is_selected_link is deprecated and should not be used in newly-written code. Please use ATK_STATE_SELECTED to indicate when a hyperlink within a Hypertext container is selected. - -Determines whether this AtkHyperlink is selected - - -link_ : - an AtkHyperlink - -Returns : True is the AtkHyperlink is selected, False otherwise - -Since 1.4 - - - -Property Details -The <literal>"end-index"</literal> property -AtkHyperlink:end-index "end-index" gint : Read -The end index of the AtkHyperlink object.Allowed values: >= 0 -Default value: 0 - -The <literal>"number-of-anchors"</literal> property -AtkHyperlink:number-of-anchors "number-of-anchors" gint : Read -The number of anchors associated with the AtkHyperlink object.Allowed values: >= 0 -Default value: 0 - -The <literal>"selected-link"</literal> property -AtkHyperlink:selected-link "selected-link" gboolean : Read -Specifies whether the AtkHyperlink object is selected.Default value: FALSE - -The <literal>"start-index"</literal> property -AtkHyperlink:start-index "start-index" gint : Read -The start index of the AtkHyperlink object.Allowed values: >= 0 -Default value: 0 - - - - -Signal Details -The <literal>"link-activated"</literal> signal -AtkHyperlink::link-activatedvoid user_function (AtkHyperlink *atkhyperlink, - gpointer user_data) : Run Last - -The signal link-activated is emitted when a link is activated. - -atkhyperlink : -the object which received the signal. - -user_data : -user data set when the signal handler was connected. - - - - - - diff -Nru atk1.0-1.30.0/docs/xml/atkhypertext.xml atk1.0-2.2.0/docs/xml/atkhypertext.xml --- atk1.0-1.30.0/docs/xml/atkhypertext.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkhypertext.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,155 +0,0 @@ - - -AtkHypertext -3 -ATK Library - - - -AtkHypertext -The ATK interface which provides standard mechanism for manipulating hyperlinks. - - - -Synopsis - - - AtkHypertext; -AtkHyperlink* atk_hypertext_get_link (AtkHypertext *hypertext, - gint link_index); -gint atk_hypertext_get_n_links (AtkHypertext *hypertext); -gint atk_hypertext_get_link_index (AtkHypertext *hypertext, - gint char_index); - - - - -Object Hierarchy - - GInterface - +----AtkHypertext - - - - - - - -Known Implementations - -AtkHypertext is implemented by - AtkNoOpObject. - - - - -Signals - - "link-selected" : Run Last - - - - - -Description - -An interface used for objects which implement linking between multiple -resource or content locations, or multiple 'markers' within a single -document. A Hypertext instance is associated with one or more Hyperlinks, -which are associated with particular offsets within the Hypertext's included -content. While this interface is derived from Text, there is no requirement that Hypertext instances have textual content; they may implement Image as well, and Hyperlinks need not have non-zero text offsets. - - - - -Details - -AtkHypertext -AtkHypertexttypedef struct _AtkHypertext AtkHypertext; - -The AtkHypertext structure does not contain any fields. - - -atk_hypertext_get_link () -atk_hypertext_get_linkAtkHyperlink* atk_hypertext_get_link (AtkHypertext *hypertext, - gint link_index); - -Gets the link in this hypertext document at index -link_index - - -hypertext : - an AtkHypertext - -link_index : - an integer specifying the desired link - -Returns : the link in this hypertext document at -index link_index - - - -atk_hypertext_get_n_links () -atk_hypertext_get_n_linksgint atk_hypertext_get_n_links (AtkHypertext *hypertext); - -Gets the number of links within this hypertext document. - - -hypertext : - an AtkHypertext - -Returns : the number of links within this hypertext document - - - -atk_hypertext_get_link_index () -atk_hypertext_get_link_indexgint atk_hypertext_get_link_index (AtkHypertext *hypertext, - gint char_index); - -Gets the index into the array of hyperlinks that is associated with -the character specified by char_index. - - -hypertext : - an AtkHypertext - -char_index : - a character index - -Returns : an index into the array of hyperlinks in hypertext, -or -1 if there is no hyperlink associated with this character. - - - - - - -Signal Details -The <literal>"link-selected"</literal> signal -AtkHypertext::link-selectedvoid user_function (AtkHypertext *atkhypertext, - gint arg1, - gpointer user_data) : Run Last - -The "link-selected" signal is emitted by an AtkHyperText object when one of -the hyperlinks associated with the object is selected. - -atkhypertext : -the object which received the signal. - -arg1 : -the index of the hyperlink which is selected - -user_data : -user data set when the signal handler was connected. - - - - - -See Also - -AtkHyperlink - - - - diff -Nru atk1.0-1.30.0/docs/xml/atkimage.xml atk1.0-2.2.0/docs/xml/atkimage.xml --- atk1.0-1.30.0/docs/xml/atkimage.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkimage.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,177 +0,0 @@ - - -AtkImage -3 -ATK Library - - - -AtkImage -The ATK Interface implemented by components which expose image or pixmap -content on-screen. - - - -Synopsis - - - AtkImage; -void atk_image_get_image_position (AtkImage *image, - gint *x, - gint *y, - AtkCoordType coord_type); -const gchar* atk_image_get_image_description (AtkImage *image); -gboolean atk_image_set_image_description (AtkImage *image, - const gchar *description); -void atk_image_get_image_size (AtkImage *image, - gint *width, - gint *height); -const gchar* atk_image_get_image_locale (AtkImage *image); - - - - -Object Hierarchy - - GInterface - +----AtkImage - - - - - - - -Known Implementations - -AtkImage is implemented by - AtkNoOpObject. - - - - - - -Description - -AtkImage should be implemented by AtkObject subtypes on behalf of -components which display image/pixmap information onscreen, and which -provide information (other than just widget borders, etc.) via that -image content. For instance, icons, buttons with icons, toolbar -elements, and image viewing panes typically should implement AtkImage. - - -AtkImage primarily provides two types of information: coordinate -information (useful for screen review mode of screenreaders, and for use -by onscreen magnifiers), and descriptive information. The descriptive -information is provided for alternative, text-only presentation of the -most significant information present in the image. - - - - -Details - -AtkImage -AtkImagetypedef struct _AtkImage AtkImage; - -The AtkImage structure does not contain any fields. - - -atk_image_get_image_position () -atk_image_get_image_positionvoid atk_image_get_image_position (AtkImage *image, - gint *x, - gint *y, - AtkCoordType coord_type); - -Gets the position of the image in the form of a point specifying the -images top-left corner. - - -image : - a GObject instance that implements AtkImageIface - -x : - address of gint to put x coordinate position; otherwise, -1 if value cannot be obtained. - -y : - address of gint to put y coordinate position; otherwise, -1 if value cannot be obtained. - -coord_type : - specifies whether the coordinates are relative to the screen -or to the components top level window - - - -atk_image_get_image_description () -atk_image_get_image_descriptionconst gchar* atk_image_get_image_description (AtkImage *image); - -Get a textual description of this image. - - -image : - a GObject instance that implements AtkImageIface - -Returns : a string representing the image description - - - -atk_image_set_image_description () -atk_image_set_image_descriptiongboolean atk_image_set_image_description (AtkImage *image, - const gchar *description); - -Sets the textual description for this image. - - -image : - a GObject instance that implements AtkImageIface - -description : - a string description to set for image - -Returns : boolean TRUE, or FALSE if operation could -not be completed. - - - -atk_image_get_image_size () -atk_image_get_image_sizevoid atk_image_get_image_size (AtkImage *image, - gint *width, - gint *height); - -Get the width and height in pixels for the specified image. -The values of width and height are returned as -1 if the -values cannot be obtained (for instance, if the object is not onscreen). - - -image : - a GObject instance that implements AtkImageIface - -width : - filled with the image width, or -1 if the value cannot be obtained. - -height : - filled with the image height, or -1 if the value cannot be obtained. - - - -atk_image_get_image_locale () -atk_image_get_image_localeconst gchar* atk_image_get_image_locale (AtkImage *image); - -Since ATK 1.12 - - -image : - An AtkImage - -Returns :a string corresponding to the POSIX LC_MESSAGES locale used by the image description, or NULL if the image does not specify a locale. - - - - - - - - - - diff -Nru atk1.0-1.30.0/docs/xml/atkmisc.xml atk1.0-2.2.0/docs/xml/atkmisc.xml --- atk1.0-1.30.0/docs/xml/atkmisc.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkmisc.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,98 +0,0 @@ - - -AtkMisc -3 -ATK Library - - - -AtkMisc - - - - -Synopsis - - - AtkMisc; -void atk_misc_threads_enter (AtkMisc *misc); -void atk_misc_threads_leave (AtkMisc *misc); -const AtkMisc * atk_misc_get_instance (void); - - - - - - - - - - - - -Description - - - - - -Details - -AtkMisc -AtkMisctypedef struct { - GObject parent; -} AtkMisc; - - - - -atk_misc_threads_enter () -atk_misc_threads_entervoid atk_misc_threads_enter (AtkMisc *misc); - -Take the thread mutex for the GUI toolkit, -if one exists. -(This method is implemented by the toolkit ATK implementation layer; - for instance, for GTK+, GAIL implements this via GDK_THREADS_ENTER). - - -misc : - an AtkMisc instance for this application. - -Since 1.13 - -atk_misc_threads_leave () -atk_misc_threads_leavevoid atk_misc_threads_leave (AtkMisc *misc); - -Release the thread mutex for the GUI toolkit, -if one exists. This method, and atk_misc_threads_enter, -are needed in some situations by threaded application code which -services ATK requests, since fulfilling ATK requests often -requires calling into the GUI toolkit. If a long-running or -potentially blocking call takes place inside such a block, it should -be bracketed by atk_misc_threads_leave/atk_misc_threads_enter calls. -(This method is implemented by the toolkit ATK implementation layer; - for instance, for GTK+, GAIL implements this via GDK_THREADS_LEAVE). - - -misc : - an AtkMisc instance for this application. - -Since 1.13 - -atk_misc_get_instance () -atk_misc_get_instanceconst AtkMisc * atk_misc_get_instance (void); - -Obtain the singleton instance of AtkMisc for this application. - - -Returns : The singleton instance of AtkMisc for this application. - - -Since 1.13 - - - - - - - diff -Nru atk1.0-1.30.0/docs/xml/atknoopobjectfactory.xml atk1.0-2.2.0/docs/xml/atknoopobjectfactory.xml --- atk1.0-1.30.0/docs/xml/atknoopobjectfactory.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atknoopobjectfactory.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,72 +0,0 @@ - - -AtkNoOpObjectFactory -3 -ATK Library - - - -AtkNoOpObjectFactory -The AtkObjectFactory which creates an AtkNoOpObject. - - - -Synopsis - - - AtkNoOpObjectFactory; -AtkObjectFactory * atk_no_op_object_factory_new (void); - - - - -Object Hierarchy - - GObject - +----AtkObjectFactory - +----AtkNoOpObjectFactory - - - - - - - - - - - -Description - -The AtkObjectFactory which creates an AtkNoOpObject. An instance of this is -created by an AtkRegistry if no factory type has not been specified to -create an accessible object of a particular type. - - - - -Details - -AtkNoOpObjectFactory -AtkNoOpObjectFactorytypedef struct _AtkNoOpObjectFactory AtkNoOpObjectFactory; - -The AtkNoOpObjectFactory structure should not be accessed directly. - - -atk_no_op_object_factory_new () -atk_no_op_object_factory_newAtkObjectFactory * atk_no_op_object_factory_new (void); - -Creates an instance of an AtkObjectFactory which generates primitive -(non-functioning) AtkObjects. - - -Returns : an instance of an AtkObjectFactory - - - - - - - - - diff -Nru atk1.0-1.30.0/docs/xml/atknoopobject.xml atk1.0-2.2.0/docs/xml/atknoopobject.xml --- atk1.0-1.30.0/docs/xml/atknoopobject.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atknoopobject.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,81 +0,0 @@ - - -AtkNoOpObject -3 -ATK Library - - - -AtkNoOpObject -An AtkObject which purports to implement all ATK interfaces. - - - -Synopsis - - - AtkNoOpObject; -AtkObject * atk_no_op_object_new (GObject *obj); - - - - -Object Hierarchy - - GObject - +----AtkObject - +----AtkNoOpObject - - - - - - -Implemented Interfaces - -AtkNoOpObject implements - AtkComponent, AtkAction, AtkEditableText, AtkImage, AtkSelection, AtkTable, AtkText, AtkHypertext, AtkValue and AtkDocument. - - - - - - - -Description - -An AtkNoOpObject is an AtkObject which purports to implement all ATK -interfaces. It is the type of AtkObject which is created if an accessible -object is requested for an object type for which no factory type is specified. - - - - -Details - -AtkNoOpObject -AtkNoOpObjecttypedef struct _AtkNoOpObject AtkNoOpObject; - -The AtkNoOpObject structure should not be accessed directly. - - -atk_no_op_object_new () -atk_no_op_object_newAtkObject * atk_no_op_object_new (GObject *obj); - -Provides a default (non-functioning stub) AtkObject. -Application maintainers should not use this method. - - -obj : - a GObject - -Returns : a default (non-functioning stub) AtkObject - - - - - - - - - diff -Nru atk1.0-1.30.0/docs/xml/atkobjectfactory.xml atk1.0-2.2.0/docs/xml/atkobjectfactory.xml --- atk1.0-1.30.0/docs/xml/atkobjectfactory.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkobjectfactory.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,126 +0,0 @@ - - -AtkObjectFactory -3 -ATK Library - - - -AtkObjectFactory -The base object class for a factory used to create accessible objects for -objects of a specific GType. - - - -Synopsis - - - AtkObjectFactory; -AtkObject* atk_object_factory_create_accessible - (AtkObjectFactory *factory, - GObject *obj); -GType atk_object_factory_get_accessible_type - (AtkObjectFactory *factory); -void atk_object_factory_invalidate (AtkObjectFactory *factory); - - - - -Object Hierarchy - - GObject - +----AtkObjectFactory - +----AtkNoOpObjectFactory - - - - - - - - - - - -Description - -This class is the base object class for a factory used to create an -accessible object for a specific GType. The function -atk_registry_set_factory_type() is normally called to store -in the registry the factory type to be used to create an accessible of a -particular GType. - - - - -Details - -AtkObjectFactory -AtkObjectFactorytypedef struct _AtkObjectFactory AtkObjectFactory; - -The AtkObjectFactory structure should not be accessed directly. - - -atk_object_factory_create_accessible () -atk_object_factory_create_accessibleAtkObject* atk_object_factory_create_accessible - (AtkObjectFactory *factory, - GObject *obj); - -Provides an AtkObject that implements an accessibility interface -on behalf of obj - - -factory : - The AtkObjectFactory associated with obj's -object type - -obj : - a GObject - -Returns : an AtkObject that implements an accessibility interface -on behalf of obj - - - -atk_object_factory_get_accessible_type () -atk_object_factory_get_accessible_typeGType atk_object_factory_get_accessible_type - (AtkObjectFactory *factory); - -Gets the GType of the accessible which is created by the factory. - - -factory : - an AtkObjectFactory - -Returns : the type of the accessible which is created by the factory. -The value G_TYPE_INVALID is returned if no type if found. - - - -atk_object_factory_invalidate () -atk_object_factory_invalidatevoid atk_object_factory_invalidate (AtkObjectFactory *factory); - -Inform factory that it is no longer being used to create -accessibles. When called, factory may need to inform -AtkObjects which it has created that they need to be re-instantiated. -Note: primarily used for runtime replacement of AtkObjectFactorys -in object registries. - - -factory : - an AtkObjectFactory to invalidate - - - - - - - - -See Also - -AtkRegistry - - - - diff -Nru atk1.0-1.30.0/docs/xml/atkobject.xml atk1.0-2.2.0/docs/xml/atkobject.xml --- atk1.0-1.30.0/docs/xml/atkobject.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkobject.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1457 +0,0 @@ - - -AtkObject -3 -ATK Library - - - -AtkObject -The base object class for the Accessibility Toolkit API. - - - -Synopsis - - - AtkObject; -enum AtkRole; -AtkRole atk_role_register (const gchar *name); -enum AtkLayer; - AtkImplementor; - AtkPropertyValues; -gboolean (*AtkFunction) (gpointer data); -void (*AtkPropertyChangeHandler) (AtkObject *, - AtkPropertyValues *); -AtkObject* atk_implementor_ref_accessible (AtkImplementor *implementor); -const gchar* atk_object_get_name (AtkObject *accessible); -const gchar* atk_object_get_description (AtkObject *accessible); -AtkObject* atk_object_get_parent (AtkObject *accessible); -gint atk_object_get_n_accessible_children - (AtkObject *accessible); -AtkObject* atk_object_ref_accessible_child (AtkObject *accessible, - gint i); -AtkRelationSet* atk_object_ref_relation_set (AtkObject *accessible); -AtkLayer atk_object_get_layer (AtkObject *accessible); -gint atk_object_get_mdi_zorder (AtkObject *accessible); -AtkRole atk_object_get_role (AtkObject *accessible); -AtkStateSet* atk_object_ref_state_set (AtkObject *accessible); -gint atk_object_get_index_in_parent (AtkObject *accessible); -void atk_object_set_name (AtkObject *accessible, - const gchar *name); -void atk_object_set_description (AtkObject *accessible, - const gchar *description); -void atk_object_set_parent (AtkObject *accessible, - AtkObject *parent); -void atk_object_set_role (AtkObject *accessible, - AtkRole role); -guint atk_object_connect_property_change_handler - (AtkObject *accessible, - AtkPropertyChangeHandler *handler); -void atk_object_remove_property_change_handler - (AtkObject *accessible, - guint handler_id); -void atk_object_notify_state_change (AtkObject *accessible, - AtkState state, - gboolean value); -void atk_object_initialize (AtkObject *accessible, - gpointer data); -gboolean atk_object_add_relationship (AtkObject *object, - AtkRelationType relationship, - AtkObject *target); -gboolean atk_object_remove_relationship (AtkObject *object, - AtkRelationType relationship, - AtkObject *target); -AtkAttributeSet* atk_object_get_attributes (AtkObject *accessible); -const gchar* atk_role_get_name (AtkRole role); -const gchar* atk_role_get_localized_name (AtkRole role); -AtkRole atk_role_for_name (const gchar *name); - - - - -Object Hierarchy - - GObject - +----AtkObject - +----AtkGObjectAccessible - +----AtkNoOpObject - - - - - - - - -Properties - - "accessible-component-layer" gint : Read - "accessible-component-mdi-zorder" gint : Read - "accessible-description" gchar* : Read / Write - "accessible-hypertext-nlinks" gint : Read - "accessible-name" gchar* : Read / Write - "accessible-parent" AtkObject* : Read / Write - "accessible-role" gint : Read / Write - "accessible-table-caption" gchar* : Read / Write - "accessible-table-caption-object" AtkObject* : Read / Write - "accessible-table-column-description" gchar* : Read / Write - "accessible-table-column-header" AtkObject* : Read / Write - "accessible-table-row-description" gchar* : Read / Write - "accessible-table-row-header" AtkObject* : Read / Write - "accessible-table-summary" AtkObject* : Read / Write - "accessible-value" gdouble : Read / Write - - - - -Signals - - "active-descendant-changed" : Run Last / Has Details - "children-changed" : Run Last / Has Details - "focus-event" : Run Last - "property-change" : Run Last / Has Details - "state-change" : Run Last / Has Details - "visible-data-changed" : Run Last - - - - - -Description - -This class is the primary class for accessibility support via -the Accessibility ToolKit (ATK). Objects which are instances -of AtkObject (or instances of AtkObject-derived types) are -queried for properties which relate basic (and generic) properties of a -UI component such as name and description. Instances of AtkObject -may also be queried as to whether they implement other ATK interfaces -(e.g. AtkAction, AtkComponent, etc.), as appropriate to the role -which a given UI component plays in a user interface. - -All UI components in an application which provide useful -information or services to the user must provide corresponding -AtkObject instances on request (in GTK+, for instance, usually -on a call to #gtk_widget_get_accessible()), either via ATK support -built into the toolkit for the widget class or ancestor class, or in -the case of custom widgets, if the inherited AtkObject implementation -is insufficient, via instances of a new AtkObject subclass. - - - - -Details - -AtkObject -AtkObjecttypedef struct _AtkObject AtkObject; - -The AtkObject structure should not be accessed directly. - - -enum AtkRole -AtkRoletypedef enum -{ - ATK_ROLE_INVALID = 0, - ATK_ROLE_ACCEL_LABEL, - ATK_ROLE_ALERT, - ATK_ROLE_ANIMATION, - ATK_ROLE_ARROW, - ATK_ROLE_CALENDAR, - ATK_ROLE_CANVAS, - ATK_ROLE_CHECK_BOX, - ATK_ROLE_CHECK_MENU_ITEM, - ATK_ROLE_COLOR_CHOOSER, - ATK_ROLE_COLUMN_HEADER, - ATK_ROLE_COMBO_BOX, - ATK_ROLE_DATE_EDITOR, - ATK_ROLE_DESKTOP_ICON, - ATK_ROLE_DESKTOP_FRAME, - ATK_ROLE_DIAL, - ATK_ROLE_DIALOG, - ATK_ROLE_DIRECTORY_PANE, - ATK_ROLE_DRAWING_AREA, - ATK_ROLE_FILE_CHOOSER, - ATK_ROLE_FILLER, - ATK_ROLE_FONT_CHOOSER, - ATK_ROLE_FRAME, - ATK_ROLE_GLASS_PANE, - ATK_ROLE_HTML_CONTAINER, - ATK_ROLE_ICON, - ATK_ROLE_IMAGE, - ATK_ROLE_INTERNAL_FRAME, - ATK_ROLE_LABEL, - ATK_ROLE_LAYERED_PANE, - ATK_ROLE_LIST, - ATK_ROLE_LIST_ITEM, - ATK_ROLE_MENU, - ATK_ROLE_MENU_BAR, - ATK_ROLE_MENU_ITEM, - ATK_ROLE_OPTION_PANE, - ATK_ROLE_PAGE_TAB, - ATK_ROLE_PAGE_TAB_LIST, - ATK_ROLE_PANEL, - ATK_ROLE_PASSWORD_TEXT, - ATK_ROLE_POPUP_MENU, - ATK_ROLE_PROGRESS_BAR, - ATK_ROLE_PUSH_BUTTON, - ATK_ROLE_RADIO_BUTTON, - ATK_ROLE_RADIO_MENU_ITEM, - ATK_ROLE_ROOT_PANE, - ATK_ROLE_ROW_HEADER, - ATK_ROLE_SCROLL_BAR, - ATK_ROLE_SCROLL_PANE, - ATK_ROLE_SEPARATOR, - ATK_ROLE_SLIDER, - ATK_ROLE_SPLIT_PANE, - ATK_ROLE_SPIN_BUTTON, - ATK_ROLE_STATUSBAR, - ATK_ROLE_TABLE, - ATK_ROLE_TABLE_CELL, - ATK_ROLE_TABLE_COLUMN_HEADER, - ATK_ROLE_TABLE_ROW_HEADER, - ATK_ROLE_TEAR_OFF_MENU_ITEM, - ATK_ROLE_TERMINAL, - ATK_ROLE_TEXT, - ATK_ROLE_TOGGLE_BUTTON, - ATK_ROLE_TOOL_BAR, - ATK_ROLE_TOOL_TIP, - ATK_ROLE_TREE, - ATK_ROLE_TREE_TABLE, - ATK_ROLE_UNKNOWN, - ATK_ROLE_VIEWPORT, - ATK_ROLE_WINDOW, - ATK_ROLE_HEADER, - ATK_ROLE_FOOTER, - ATK_ROLE_PARAGRAPH, - ATK_ROLE_RULER, - ATK_ROLE_APPLICATION, - ATK_ROLE_AUTOCOMPLETE, - ATK_ROLE_EDITBAR, - ATK_ROLE_EMBEDDED, - ATK_ROLE_ENTRY, - ATK_ROLE_CHART, - ATK_ROLE_CAPTION, - ATK_ROLE_DOCUMENT_FRAME, - ATK_ROLE_HEADING, - ATK_ROLE_PAGE, - ATK_ROLE_SECTION, - ATK_ROLE_REDUNDANT_OBJECT, - ATK_ROLE_FORM, - ATK_ROLE_LINK, - ATK_ROLE_INPUT_METHOD_WINDOW, - ATK_ROLE_LAST_DEFINED -} AtkRole; - - -Describes the role of an object - - -These are the built-in enumerated roles that UI components can have in -ATK. Other roles may be added at runtime, so an AtkRole >= -ATK_ROLE_LAST_DEFINED is not necessarily an error. - - - -ATK_ROLE_INVALID - Invalid role - - - -ATK_ROLE_ACCEL_LABEL - A label which represents an accelerator - - - -ATK_ROLE_ALERT - An object which is an alert to the user. Assistive Technologies typically respond to ATK_ROLE_ALERT by reading the entire onscreen contents of containers advertising this role. Should be used for warning dialogs, etc. - - - -ATK_ROLE_ANIMATION - An object which is an animated image - - - -ATK_ROLE_ARROW - An arrow in one of the four cardinal directions - - - -ATK_ROLE_CALENDAR - An object that displays a calendar and allows the user to select a date - - - -ATK_ROLE_CANVAS - An object that can be drawn into and is used to trap events - - - -ATK_ROLE_CHECK_BOX - A choice that can be checked or unchecked and provides a separate indicator for the current state - - - -ATK_ROLE_CHECK_MENU_ITEM - A menu item with a check box - - - -ATK_ROLE_COLOR_CHOOSER - A specialized dialog that lets the user choose a color - - - -ATK_ROLE_COLUMN_HEADER - The header for a column of data - - - -ATK_ROLE_COMBO_BOX - A list of choices the user can select from - - - -ATK_ROLE_DATE_EDITOR - An object whose purpose is to allow a user to edit a date - - - -ATK_ROLE_DESKTOP_ICON - An inconifed internal frame within a DESKTOP_PANE - - - -ATK_ROLE_DESKTOP_FRAME - A pane that supports internal frames and iconified versions of those internal frames - - - -ATK_ROLE_DIAL - An object whose purpose is to allow a user to set a value - - - -ATK_ROLE_DIALOG - A top level window with title bar and a border - - - -ATK_ROLE_DIRECTORY_PANE - A pane that allows the user to navigate through and select the contents of a directory - - - -ATK_ROLE_DRAWING_AREA - An object used for drawing custom user interface elements - - - -ATK_ROLE_FILE_CHOOSER - A specialized dialog that lets the user choose a file - - - -ATK_ROLE_FILLER - A object that fills up space in a user interface - - - -ATK_ROLE_FONT_CHOOSER - A specialized dialog that lets the user choose a font - - - -ATK_ROLE_FRAME - A top level window with a title bar, border, menubar, etc. - - - -ATK_ROLE_GLASS_PANE - A pane that is guaranteed to be painted on top of all panes beneath it - - - -ATK_ROLE_HTML_CONTAINER - A document container for HTML, whose children represent the document content - - - -ATK_ROLE_ICON - A small fixed size picture, typically used to decorate components - - - -ATK_ROLE_IMAGE - An object whose primary purpose is to display an image - - - -ATK_ROLE_INTERNAL_FRAME - A frame-like object that is clipped by a desktop pane - - - -ATK_ROLE_LABEL - An object used to present an icon or short string in an interface - - - -ATK_ROLE_LAYERED_PANE - A specialized pane that allows its children to be drawn in layers, providing a form of stacking order - - - -ATK_ROLE_LIST - An object that presents a list of objects to the user and allows the user to select one or more of them - - - -ATK_ROLE_LIST_ITEM - An object that represents an element of a list - - - -ATK_ROLE_MENU - An object usually found inside a menu bar that contains a list of actions the user can choose from - - - -ATK_ROLE_MENU_BAR - An object usually drawn at the top of the primary dialog box of an application that contains a list of menus the user can choose from - - - -ATK_ROLE_MENU_ITEM - An object usually contained in a menu that presents an action the user can choose - - - -ATK_ROLE_OPTION_PANE - A specialized pane whose primary use is inside a DIALOG - - - -ATK_ROLE_PAGE_TAB - An object that is a child of a page tab list - - - -ATK_ROLE_PAGE_TAB_LIST - An object that presents a series of panels (or page tabs), one at a time, through some mechanism provided by the object - - - -ATK_ROLE_PANEL - A generic container that is often used to group objects - - - -ATK_ROLE_PASSWORD_TEXT - A text object uses for passwords, or other places where the text content is not shown visibly to the user - - - -ATK_ROLE_POPUP_MENU - A temporary window that is usually used to offer the user a list of choices, and then hides when the user selects one of those choices - - - -ATK_ROLE_PROGRESS_BAR - An object used to indicate how much of a task has been completed - - - -ATK_ROLE_PUSH_BUTTON - An object the user can manipulate to tell the application to do something - - - -ATK_ROLE_RADIO_BUTTON - A specialized check box that will cause other radio buttons in the same group to become unchecked when this one is checked - - - -ATK_ROLE_RADIO_MENU_ITEM - A check menu item which belongs to a group. At each instant exactly one of the radio menu items from a group is selected - - - -ATK_ROLE_ROOT_PANE - A specialized pane that has a glass pane and a layered pane as its children - - - -ATK_ROLE_ROW_HEADER - The header for a row of data - - - -ATK_ROLE_SCROLL_BAR - An object usually used to allow a user to incrementally view a large amount of data. - - - -ATK_ROLE_SCROLL_PANE - An object that allows a user to incrementally view a large amount of information - - - -ATK_ROLE_SEPARATOR - An object usually contained in a menu to provide a visible and logical separation of the contents in a menu - - - -ATK_ROLE_SLIDER - An object that allows the user to select from a bounded range - - - -ATK_ROLE_SPLIT_PANE - A specialized panel that presents two other panels at the same time - - - -ATK_ROLE_SPIN_BUTTON - An object used to get an integer or floating point number from the user - - - -ATK_ROLE_STATUSBAR - An object which reports messages of minor importance to the user - - - -ATK_ROLE_TABLE - An object used to represent information in terms of rows and columns - - - -ATK_ROLE_TABLE_CELL - A cell in a table - - - -ATK_ROLE_TABLE_COLUMN_HEADER - The header for a column of a table - - - -ATK_ROLE_TABLE_ROW_HEADER - The header for a row of a table - - - -ATK_ROLE_TEAR_OFF_MENU_ITEM - A menu item used to tear off and reattach its menu - - - -ATK_ROLE_TERMINAL - An object that represents an accessible terminal. Since: ATK-0.6 - - - -ATK_ROLE_TEXT - An object that presents text to the user - - - -ATK_ROLE_TOGGLE_BUTTON - A specialized push button that can be checked or unchecked, but does not provide a separate indicator for the current state - - - -ATK_ROLE_TOOL_BAR - A bar or palette usually composed of push buttons or toggle buttons - - - -ATK_ROLE_TOOL_TIP - An object that provides information about another object - - - -ATK_ROLE_TREE - An object used to represent hierarchical information to the user - - - -ATK_ROLE_TREE_TABLE - An object capable of expanding and collapsing rows as well as showing multiple columns of data. Since: ATK-0.7 - - - -ATK_ROLE_UNKNOWN - The object contains some Accessible information, but its role is not known - - - -ATK_ROLE_VIEWPORT - An object usually used in a scroll pane - - - -ATK_ROLE_WINDOW - A top level window with no title or border. - - - -ATK_ROLE_HEADER - An object that serves as a document header. Since: ATK-1.1.1 - - - -ATK_ROLE_FOOTER - An object that serves as a document footer. Since: ATK-1.1.1 - - - -ATK_ROLE_PARAGRAPH - An object which is contains a paragraph of text content. Since: ATK-1.1.1 - - - -ATK_ROLE_RULER - An object which describes margins and tab stops, etc. for text objects which it controls (should have CONTROLLER_FOR relation to such). Since: ATK-1.1.1 - - - -ATK_ROLE_APPLICATION - The object is an application object, which may contain ATK_ROLE_FRAME objects or other types of accessibles. The root accessible of any application's ATK hierarchy should have ATK_ROLE_APPLICATION. Since: ATK-1.1.4 - - - -ATK_ROLE_AUTOCOMPLETE - The object is a dialog or list containing items for insertion into an entry widget, for instance a list of words for completion of a text entry. Since: ATK-1.3 - - - -ATK_ROLE_EDITBAR - The object is an editable text object in a toolbar. Since: ATK-1.5 - - - -ATK_ROLE_EMBEDDED - The object is an embedded container within a document or panel. This role is a grouping "hint" indicating that the contained objects share a context. Since: ATK-1.7.2 - - - -ATK_ROLE_ENTRY - The object is a component whose textual content may be entered or modified by the user, provided ATK_STATE_EDITABLE is present. Since: ATK-1.11 - - - -ATK_ROLE_CHART - The object is a graphical depiction of quantitative data. It may contain multiple subelements whose attributes and/or description may be queried to obtain both the quantitative data and information about how the data is being presented. The LABELLED_BY relation is particularly important in interpreting objects of this type, as is the accessible-description property. Since: ATK-1.11 - - - -ATK_ROLE_CAPTION - The object contains descriptive information, usually textual, about another user interface element such as a table, chart, or image. Since: ATK-1.11 - - - -ATK_ROLE_DOCUMENT_FRAME - The object is a visual frame or container which contains a view of document content. Document frames may occur within another Document instance, in which case the second document may be said to be embedded in the containing instance. HTML frames are often ROLE_DOCUMENT_FRAME. Either this object, or a singleton descendant, should implement the Document interface. Since: ATK-1.11 - - - -ATK_ROLE_HEADING - The object serves as a heading for content which follows it in a document. The 'heading level' of the heading, if availabe, may be obtained by querying the object's attributes. - - - -ATK_ROLE_PAGE - The object is a containing instance which encapsulates a page of information. ATK_ROLE_PAGE is used in documents and content which support a paginated navigation model. Since: ATK-1.11 - - - -ATK_ROLE_SECTION - The object is a containing instance of document content which constitutes a particular 'logical' section of the document. The type of content within a section, and the nature of the section division itself, may be obtained by querying the object's attributes. Sections may be nested. Since: ATK-1.11 - - - -ATK_ROLE_REDUNDANT_OBJECT - The object is redundant with another object in the hierarchy, and is exposed for purely technical reasons. Objects of this role should normally be ignored by clients. Since: ATK-1.11 - - - -ATK_ROLE_FORM - The object is a container for form controls, for instance as part of a -web form or user-input form within a document. This role is primarily a tag/convenience for -clients when navigating complex documents, it is not expected that ordinary GUI containers will -always have ATK_ROLE_FORM. Since: ATK-1.12.0 - - - -ATK_ROLE_LINK - The object is a hypertext anchor, i.e. a "link" in a -hypertext document. Such objects are distinct from 'inline' -content which may also use the Hypertext/Hyperlink interfaces -to indicate the range/location within a text object where -an inline or embedded object lies. Since: ATK-1.12.1 - - - -ATK_ROLE_INPUT_METHOD_WINDOW - The object is a window or similar viewport -which is used to allow composition or input of a 'complex character', -in other words it is an "input method window." Since: ATK-1.12.1 - - - -ATK_ROLE_LAST_DEFINED - not a valid role, used for finding end of the enumeration - - - - -atk_role_register () -atk_role_registerAtkRole atk_role_register (const gchar *name); - -Registers the role specified by name. - - -name : - a character string describing the new role. - -Returns : an AtkRole for the new role. - - - -enum AtkLayer -AtkLayertypedef enum -{ - ATK_LAYER_INVALID, - ATK_LAYER_BACKGROUND, - ATK_LAYER_CANVAS, - ATK_LAYER_WIDGET, - ATK_LAYER_MDI, - ATK_LAYER_POPUP, - ATK_LAYER_OVERLAY, - ATK_LAYER_WINDOW -} AtkLayer; - - -Describes the layer of a component - - -These enumerated "layer values" are used when determining which UI -rendering layer a component is drawn into, which can help in making -determinations of when components occlude one another. - - - -ATK_LAYER_INVALID - The object does not have a layer - - - -ATK_LAYER_BACKGROUND - This layer is reserved for the desktop background - - - -ATK_LAYER_CANVAS - This layer is used for Canvas components - - - -ATK_LAYER_WIDGET - This layer is normally used for components - - - -ATK_LAYER_MDI - This layer is used for layered components - - - -ATK_LAYER_POPUP - This layer is used for popup components, such as menus - - - -ATK_LAYER_OVERLAY - This layer is reserved for future use. - - - -ATK_LAYER_WINDOW - This layer is used for toplevel windows. - - - - -AtkImplementor -AtkImplementortypedef struct _AtkImplementor AtkImplementor; - -The AtkImplementor interface is implemented by objects for which AtkObject peers may be obtained via calls to iface->(ref_accessible)(implementor); - - -AtkPropertyValues -AtkPropertyValuestypedef struct { - const gchar *property_name; - GValue old_value; - GValue new_value; -} AtkPropertyValues; - - -note: For most properties the old_value field of AtkPropertyValues will -not contain a valid value. - - -Currently, the only property for which old_value is used is -accessible-state; for instance if there is a focus state the -property change handler will be called for the object which lost the focus -with the old_value containing an AtkState value corresponding to focused -and the property change handler will be called for the object which -received the focus with the new_value containing an AtkState value -corresponding to focused. - -The Atk PropertyValue structure is used when notifying a change in property. -Currently, the only property for which old_value is used is -accessible-state; for instance if there is a focus change the -property change handler will be called for the object which lost the focus -with the old_value containing the AtkState value corresponding to focused -and the property change handler will be called for the object which -received the focus with the new_value containing the AtkState value -corresponding to focused. - - -const gchar *property_name; - The name of the ATK property which is being presented or which has been changed. - - - -GValue old_value; - The old property value, NULL; in some contexts this value is undefined (see note below). - - - -GValue new_value; - The new value of the named property. - - - - -AtkFunction () -AtkFunctiongboolean (*AtkFunction) (gpointer data); - -An AtkFunction is a function definition used for padding which has been added -to class and interface structures to allow for expansion in the future. - -data : -a gpointer to parameter data. - -Returns :Nothing useful, this is only a dummy prototype. - - - -AtkPropertyChangeHandler () -AtkPropertyChangeHandlervoid (*AtkPropertyChangeHandler) (AtkObject *, - AtkPropertyValues *); - -An AtkPropertyChangeHandler is a function which is executed when an AtkObject's property changes value. It is specified in a call to -atk_object_connect_property_change_handler(). - -Param1 : - an AtkObject - -Param2 : - an AtkPropertyValues - - - -atk_implementor_ref_accessible () -atk_implementor_ref_accessibleAtkObject* atk_implementor_ref_accessible (AtkImplementor *implementor); - -Gets a reference to an object's AtkObject implementation, if -the object implements AtkObjectIface - - -implementor : - The GObject instance which should implement AtkImplementorIface -if a non-null return value is required. - -Returns : a reference to an object's AtkObject implementation - - - -atk_object_get_name () -atk_object_get_nameconst gchar* atk_object_get_name (AtkObject *accessible); - -Gets the accessible name of the accessible. - - -accessible : - an AtkObject - -Returns : a character string representing the accessible name of the object. - - - -atk_object_get_description () -atk_object_get_descriptionconst gchar* atk_object_get_description (AtkObject *accessible); - -Gets the accessible description of the accessible. - - -accessible : - an AtkObject - -Returns : a character string representing the accessible description -of the accessible. - - - - -atk_object_get_parent () -atk_object_get_parentAtkObject* atk_object_get_parent (AtkObject *accessible); - -Gets the accessible parent of the accessible. - - -accessible : - an AtkObject - -Returns : a AtkObject representing the accessible parent of the accessible - - - -atk_object_get_n_accessible_children () -atk_object_get_n_accessible_childrengint atk_object_get_n_accessible_children - (AtkObject *accessible); - -Gets the number of accessible children of the accessible. - - -accessible : - an AtkObject - -Returns : an integer representing the number of accessible children -of the accessible. - - - -atk_object_ref_accessible_child () -atk_object_ref_accessible_childAtkObject* atk_object_ref_accessible_child (AtkObject *accessible, - gint i); - -Gets a reference to the specified accessible child of the object. -The accessible children are 0-based so the first accessible child is -at index 0, the second at index 1 and so on. - - -accessible : - an AtkObject - -i : - a gint representing the position of the child, starting from 0 - -Returns : an AtkObject representing the specified accessible child -of the accessible. - - - -atk_object_ref_relation_set () -atk_object_ref_relation_setAtkRelationSet* atk_object_ref_relation_set (AtkObject *accessible); - -Gets the AtkRelationSet associated with the object. - - -accessible : - an AtkObject - -Returns : an AtkRelationSet representing the relation set of the object. - - - -atk_object_get_layer () -atk_object_get_layerAtkLayer atk_object_get_layer (AtkObject *accessible); -atk_object_get_layer is deprecated and should not be used in newly-written code. Use atk_component_get_layer instead. - -Gets the layer of the accessible. - - -accessible : - an AtkObject - -Returns : an AtkLayer which is the layer of the accessible - - - -atk_object_get_mdi_zorder () -atk_object_get_mdi_zordergint atk_object_get_mdi_zorder (AtkObject *accessible); -atk_object_get_mdi_zorder is deprecated and should not be used in newly-written code. Use atk_component_get_mdi_zorder instead. - -Gets the zorder of the accessible. The value G_MININT will be returned -if the layer of the accessible is not ATK_LAYER_MDI. - - -accessible : - an AtkObject - -Returns : a gint which is the zorder of the accessible, i.e. the depth at -which the component is shown in relation to other components in the same -container. - - - - -atk_object_get_role () -atk_object_get_roleAtkRole atk_object_get_role (AtkObject *accessible); - -Gets the role of the accessible. - - -accessible : - an AtkObject - -Returns : an AtkRole which is the role of the accessible - - - -atk_object_ref_state_set () -atk_object_ref_state_setAtkStateSet* atk_object_ref_state_set (AtkObject *accessible); - -Gets a reference to the state set of the accessible; the caller must -unreference it when it is no longer needed. - - -accessible : - an AtkObject - -Returns : a reference to an AtkStateSet which is the state -set of the accessible - - - -atk_object_get_index_in_parent () -atk_object_get_index_in_parentgint atk_object_get_index_in_parent (AtkObject *accessible); - -Gets the 0-based index of this accessible in its parent; returns -1 if the -accessible does not have an accessible parent. - - -accessible : - an AtkObject - -Returns : an integer which is the index of the accessible in its parent - - - -atk_object_set_name () -atk_object_set_namevoid atk_object_set_name (AtkObject *accessible, - const gchar *name); - -Sets the accessible name of the accessible. - - -accessible : - an AtkObject - -name : - a character string to be set as the accessible name - - - -atk_object_set_description () -atk_object_set_descriptionvoid atk_object_set_description (AtkObject *accessible, - const gchar *description); - -Sets the accessible description of the accessible. - - -accessible : - an AtkObject - -description : - a character string to be set as the accessible description - - - -atk_object_set_parent () -atk_object_set_parentvoid atk_object_set_parent (AtkObject *accessible, - AtkObject *parent); - -Sets the accessible parent of the accessible. - - -accessible : - an AtkObject - -parent : - an AtkObject to be set as the accessible parent - - - -atk_object_set_role () -atk_object_set_rolevoid atk_object_set_role (AtkObject *accessible, - AtkRole role); - -Sets the role of the accessible. - - -accessible : - an AtkObject - -role : - an AtkRole to be set as the role - - - -atk_object_connect_property_change_handler () -atk_object_connect_property_change_handlerguint atk_object_connect_property_change_handler - (AtkObject *accessible, - AtkPropertyChangeHandler *handler); - -Specifies a function to be called when a property changes value. - - -accessible : - an AtkObject - -handler : - a function to be called when a property changes its value - -Returns : a guint which is the handler id used in -atk_object_remove_property_change_handler() - - - -atk_object_remove_property_change_handler () -atk_object_remove_property_change_handlervoid atk_object_remove_property_change_handler - (AtkObject *accessible, - guint handler_id); - -Removes a property change handler. - - -accessible : - an AtkObject - -handler_id : - a guint which identifies the handler to be removed. - - - -atk_object_notify_state_change () -atk_object_notify_state_changevoid atk_object_notify_state_change (AtkObject *accessible, - AtkState state, - gboolean value); - -Emits a state-change signal for the specified state. - - -accessible : - an AtkObject - -state : - an AtkState whose state is changed - -value : - a gboolean which indicates whether the state is being set on or off - - - -atk_object_initialize () -atk_object_initializevoid atk_object_initialize (AtkObject *accessible, - gpointer data); - -This function is called when implementing subclasses of AtkObject. -It does initialization required for the new object. It is intended -that this function should called only in the ..._new() functions used -to create an instance of a subclass of AtkObject - - -accessible : - a AtkObject - -data : - a gpointer which identifies the object for which the AtkObject was created. - - - -atk_object_add_relationship () -atk_object_add_relationshipgboolean atk_object_add_relationship (AtkObject *object, - AtkRelationType relationship, - AtkObject *target); - -Adds a relationship of the specified type with the specified target. - - -object : - The AtkObject to which an AtkRelation is to be added. - -relationship : - The AtkRelationType of the relation - -target : - The AtkObject which is to be the target of the relation. - -Returns :TRUE if the relationship is added. - - - -atk_object_remove_relationship () -atk_object_remove_relationshipgboolean atk_object_remove_relationship (AtkObject *object, - AtkRelationType relationship, - AtkObject *target); - -Removes a relationship of the specified type with the specified target. - - -object : - The AtkObject from which an AtkRelation is to be removed. - -relationship : - The AtkRelationType of the relation - -target : - The AtkObject which is the target of the relation to be removed. - -Returns :TRUE if the relationship is removed. - - - -atk_object_get_attributes () -atk_object_get_attributesAtkAttributeSet* atk_object_get_attributes (AtkObject *accessible); - -Get a list of properties applied to this object as a whole, as an AtkAttributeSet consisting of -name-value pairs. As such these attributes may be considered weakly-typed properties or annotations, -as distinct from strongly-typed object data available via other get/set methods. -Not all objects have explicit "name-value pair" AtkAttributeSet properties. - - -accessible : - An AtkObject. - -Returns : an AtkAttributeSet consisting of all explicit properties/annotations applied to -the object, or an empty set if the object has no name-value pair attributes assigned to it. - -Since 1.12 - -atk_role_get_name () -atk_role_get_nameconst gchar* atk_role_get_name (AtkRole role); - -Gets the description string describing the AtkRole role. - - -role : - The AtkRole whose name is required - -Returns : the string describing the AtkRole - - - -atk_role_get_localized_name () -atk_role_get_localized_nameconst gchar* atk_role_get_localized_name (AtkRole role); - -Gets the localized description string describing the AtkRole role. - - -role : - The AtkRole whose localized name is required - -Returns : the localized string describing the AtkRole - - - -atk_role_for_name () -atk_role_for_nameAtkRole atk_role_for_name (const gchar *name); - -Get the AtkRole type corresponding to a rolew name. - - -name : - a string which is the (non-localized) name of an ATK role. - -Returns : the AtkRole enumerated type corresponding to the specified -name, - or ATK_ROLE_INVALID if no matching role is found. - - - - - -Property Details -The <literal>"accessible-component-layer"</literal> property -AtkObject:accessible-component-layer "accessible-component-layer" gint : Read -The accessible layer of this object.Allowed values: >= 0 -Default value: 0 - -The <literal>"accessible-component-mdi-zorder"</literal> property -AtkObject:accessible-component-mdi-zorder "accessible-component-mdi-zorder" gint : Read -The accessible MDI value of this object.Default value: -2147483648 - -The <literal>"accessible-description"</literal> property -AtkObject:accessible-description "accessible-description" gchar* : Read / Write -Description of an object, formatted for assistive technology access.Default value: NULL - -The <literal>"accessible-hypertext-nlinks"</literal> property -AtkObject:accessible-hypertext-nlinks "accessible-hypertext-nlinks" gint : Read -The number of links which the current AtkHypertext has.Allowed values: >= 0 -Default value: 0 - -The <literal>"accessible-name"</literal> property -AtkObject:accessible-name "accessible-name" gchar* : Read / Write -Object instance's name formatted for assistive technology access.Default value: NULL - -The <literal>"accessible-parent"</literal> property -AtkObject:accessible-parent "accessible-parent" AtkObject* : Read / Write -Is used to notify that the parent has changed. -The <literal>"accessible-role"</literal> property -AtkObject:accessible-role "accessible-role" gint : Read / Write -The accessible role of this object.Allowed values: >= 0 -Default value: 0 - -The <literal>"accessible-table-caption"</literal> property -AtkObject:accessible-table-caption "accessible-table-caption" gchar* : Read / Write -Is used to notify that the table caption has changed; this property should not be used. accessible-table-caption-object should be used instead.Default value: NULL - -The <literal>"accessible-table-caption-object"</literal> property -AtkObject:accessible-table-caption-object "accessible-table-caption-object" AtkObject* : Read / Write -Is used to notify that the table caption has changed. -The <literal>"accessible-table-column-description"</literal> property -AtkObject:accessible-table-column-description "accessible-table-column-description" gchar* : Read / Write -Is used to notify that the table column description has changed.Default value: NULL - -The <literal>"accessible-table-column-header"</literal> property -AtkObject:accessible-table-column-header "accessible-table-column-header" AtkObject* : Read / Write -Is used to notify that the table column header has changed. -The <literal>"accessible-table-row-description"</literal> property -AtkObject:accessible-table-row-description "accessible-table-row-description" gchar* : Read / Write -Is used to notify that the table row description has changed.Default value: NULL - -The <literal>"accessible-table-row-header"</literal> property -AtkObject:accessible-table-row-header "accessible-table-row-header" AtkObject* : Read / Write -Is used to notify that the table row header has changed. -The <literal>"accessible-table-summary"</literal> property -AtkObject:accessible-table-summary "accessible-table-summary" AtkObject* : Read / Write -Is used to notify that the table summary has changed. -The <literal>"accessible-value"</literal> property -AtkObject:accessible-value "accessible-value" gdouble : Read / Write -Is used to notify that the value has changed.Allowed values: >= 0 -Default value: 0 - - - - -Signal Details -The <literal>"active-descendant-changed"</literal> signal -AtkObject::active-descendant-changedvoid user_function (AtkObject *atkobject, - gpointer arg1, - gpointer user_data) : Run Last / Has Details - -The "active-descendant-changed" signal is emitted by an object which has -the state ATK_STATE_MANAGES_DESCENDANTS when the focus object in the -object changes. For instance, a table will emit the signal when the cell -in the table which has focus changes. - -atkobject : -the object which received the signal. - -arg1 : -the newly focused object. - -user_data : -user data set when the signal handler was connected. -The <literal>"children-changed"</literal> signal -AtkObject::children-changedvoid user_function (AtkObject *atkobject, - guint arg1, - gpointer arg2, - gpointer user_data) : Run Last / Has Details - -The signal "children-changed" is emitted when a child is added or -removed form an object. It supports two details: "add" and "remove" - -atkobject : -the object which received the signal. - -arg1 : -The index of the added or removed child - -arg2 : -A gpointer to the child AtkObject which was added or removed - -user_data : -user data set when the signal handler was connected. -The <literal>"focus-event"</literal> signal -AtkObject::focus-eventvoid user_function (AtkObject *atkobject, - gboolean arg1, - gpointer user_data) : Run Last - -The signal "focus-event" is emitted when an object gains or loses focus. - -atkobject : -the object which received the signal. - -arg1 : -A boolean value which indicates whether the object gained or lost focus. - -user_data : -user data set when the signal handler was connected. -The <literal>"property-change"</literal> signal -AtkObject::property-changevoid user_function (AtkObject *atkobject, - gpointer arg1, - gpointer user_data) : Run Last / Has Details - -The signal "property-change" is emitted when an object's property -value changes. The detail identifies the name of the property whose -value has changed. - -atkobject : -the object which received the signal. - -arg1 : -The new value of the property which changed. - -user_data : -user data set when the signal handler was connected. -The <literal>"state-change"</literal> signal -AtkObject::state-changevoid user_function (AtkObject *atkobject, - gchar *arg1, - gboolean arg2, - gpointer user_data) : Run Last / Has Details - -The "state-change" signal is emitted when an object's state changes. -The detail value identifies the state type which has changed. - -atkobject : -the object which received the signal. - -arg1 : -The name of the state which has changed - -arg2 : -A boolean which indicates whether the state has been set or unset. - -user_data : -user data set when the signal handler was connected. -The <literal>"visible-data-changed"</literal> signal -AtkObject::visible-data-changedvoid user_function (AtkObject *atkobject, - gpointer user_data) : Run Last - -The "visible-data-changed" signal is emitted when the visual appearance of -the object changed. - -atkobject : -the object which received the signal. - -user_data : -user data set when the signal handler was connected. - - - - - -See Also - -See also: AtkObjectFactory, AtkRegistry. -( GTK+ users see also GtkAccessible). - - - - diff -Nru atk1.0-1.30.0/docs/xml/atkregistry.xml atk1.0-2.2.0/docs/xml/atkregistry.xml --- atk1.0-1.30.0/docs/xml/atkregistry.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkregistry.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,148 +0,0 @@ - - -AtkRegistry -3 -ATK Library - - - -AtkRegistry -An object used to store the GType of the factories used to create an accessible -object for an object of a particular GType. - - - -Synopsis - - - AtkRegistry; -void atk_registry_set_factory_type (AtkRegistry *registry, - GType type, - GType factory_type); -GType atk_registry_get_factory_type (AtkRegistry *registry, - GType type); -AtkObjectFactory* atk_registry_get_factory (AtkRegistry *registry, - GType type); -AtkRegistry* atk_get_default_registry (void); - - - - -Object Hierarchy - - GObject - +----AtkRegistry - - - - - - - - - - - -Description - -The AtkRegistry is normally used to create appropriate ATK "peers" for user -interface components. Application developers usually need only interact with -the AtkRegistry by associating appropriate ATK implementation classes with -GObject classes via the atk_registry_set_factory_type call, passing the -appropriate GType for application custom widget classes. - - - - -Details - -AtkRegistry -AtkRegistrytypedef struct _AtkRegistry AtkRegistry; - -The AtkRegistry structure should not be accessed directly. - - -atk_registry_set_factory_type () -atk_registry_set_factory_typevoid atk_registry_set_factory_type (AtkRegistry *registry, - GType type, - GType factory_type); - -Associate an AtkObjectFactory subclass with a GType. Note: -The associated factory_type will thereafter be responsible for -the creation of new AtkObject implementations for instances -appropriate for type. - - -registry : - the AtkRegistry in which to register the type association - -type : - an AtkObject type - -factory_type : - an AtkObjectFactory type to associate with type. Must -implement AtkObject appropriate for type. - - - -atk_registry_get_factory_type () -atk_registry_get_factory_typeGType atk_registry_get_factory_type (AtkRegistry *registry, - GType type); - -Provides a GType indicating the AtkObjectFactory subclass -associated with type. - - -registry : - an AtkRegistry - -type : - a GType with which to look up the associated AtkObjectFactory -subclass - -Returns : a GType associated with type type - - - -atk_registry_get_factory () -atk_registry_get_factoryAtkObjectFactory* atk_registry_get_factory (AtkRegistry *registry, - GType type); - -Gets an AtkObjectFactory appropriate for creating AtkObjects -appropriate for type. - - -registry : - an AtkRegistry - -type : - a GType with which to look up the associated AtkObjectFactory - -Returns : an AtkObjectFactory appropriate for creating AtkObjects -appropriate for type. - - - -atk_get_default_registry () -atk_get_default_registryAtkRegistry* atk_get_default_registry (void); - -Gets a default implementation of the AtkObjectFactory/type -registry. -Note: For most toolkit maintainers, this will be the correct -registry for registering new AtkObject factories. Following -a call to this function, maintainers may call atk_registry_set_factory_type() -to associate an AtkObjectFactory subclass with the GType of objects -for whom accessibility information will be provided. - - -Returns : a default implementation of the AtkObjectFactory/type -registry - - - - - - - - - diff -Nru atk1.0-1.30.0/docs/xml/atkrelationset.xml atk1.0-2.2.0/docs/xml/atkrelationset.xml --- atk1.0-1.30.0/docs/xml/atkrelationset.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkrelationset.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,215 +0,0 @@ - - -AtkRelationSet -3 -ATK Library - - - -AtkRelationSet -A set of AtkRelations, normally the set of AtkRelations which an AtkObject has. - - - -Synopsis - - - AtkRelationSet; -AtkRelationSet* atk_relation_set_new (void); -gboolean atk_relation_set_contains (AtkRelationSet *set, - AtkRelationType relationship); -void atk_relation_set_remove (AtkRelationSet *set, - AtkRelation *relation); -void atk_relation_set_add (AtkRelationSet *set, - AtkRelation *relation); -gint atk_relation_set_get_n_relations (AtkRelationSet *set); -AtkRelation* atk_relation_set_get_relation (AtkRelationSet *set, - gint i); -AtkRelation* atk_relation_set_get_relation_by_type - (AtkRelationSet *set, - AtkRelationType relationship); -void atk_relation_set_add_relation_by_type - (AtkRelationSet *set, - AtkRelationType relationship, - AtkObject *target); - - - - -Object Hierarchy - - GObject - +----AtkRelationSet - - - - - - - - - - - -Description - -The AtkRelationSet held by an object establishes its relationships with -objects beyond the normal "parent/child" hierarchical relationships that all -user interface objects have. AtkRelationSets establish whether objects are -labelled or controlled by other components, share group membership with other -components (for instance within a radio-button group), or share content which -"flows" between them, among other types of possible relationships. - - - - -Details - -AtkRelationSet -AtkRelationSettypedef struct _AtkRelationSet AtkRelationSet; - -The AtkRelationSet structure should not be accessed directly. - - -atk_relation_set_new () -atk_relation_set_newAtkRelationSet* atk_relation_set_new (void); - -Creates a new empty relation set. - - -Returns : a new AtkRelationSet - - - -atk_relation_set_contains () -atk_relation_set_containsgboolean atk_relation_set_contains (AtkRelationSet *set, - AtkRelationType relationship); - -Determines whether the relation set contains a relation that matches the -specified type. - - -set : - an AtkRelationSet - -relationship : - an AtkRelationType - -Returns : TRUE if relationship is the relationship type of a relation -in set, FALSE otherwise - - - -atk_relation_set_remove () -atk_relation_set_removevoid atk_relation_set_remove (AtkRelationSet *set, - AtkRelation *relation); - -Removes a relation from the relation set. -This function unref's the AtkRelation so it will be deleted unless there -is another reference to it. - - -set : - an AtkRelationSet - -relation : - an AtkRelation - - - -atk_relation_set_add () -atk_relation_set_addvoid atk_relation_set_add (AtkRelationSet *set, - AtkRelation *relation); - -Add a new relation to the current relation set if it is not already -present. -This function ref's the AtkRelation so the caller of this function -should unref it to ensure that it will be destroyed when the AtkRelationSet -is destroyed. - - -set : - an AtkRelationSet - -relation : - an AtkRelation - - - -atk_relation_set_get_n_relations () -atk_relation_set_get_n_relationsgint atk_relation_set_get_n_relations (AtkRelationSet *set); - -Determines the number of relations in a relation set. - - -set : - an AtkRelationSet - -Returns : an integer representing the number of relations in the set. - - - -atk_relation_set_get_relation () -atk_relation_set_get_relationAtkRelation* atk_relation_set_get_relation (AtkRelationSet *set, - gint i); - -Determines the relation at the specified position in the relation set. - - -set : - an AtkRelationSet - -i : - a gint representing a position in the set, starting from 0. - -Returns : a AtkRelation, which is the relation at position i in the set. - - - -atk_relation_set_get_relation_by_type () -atk_relation_set_get_relation_by_typeAtkRelation* atk_relation_set_get_relation_by_type - (AtkRelationSet *set, - AtkRelationType relationship); - -Finds a relation that matches the specified type. - - -set : - an AtkRelationSet - -relationship : - an AtkRelationType - -Returns : an AtkRelation, which is a relation matching the specified type. - - - -atk_relation_set_add_relation_by_type () -atk_relation_set_add_relation_by_typevoid atk_relation_set_add_relation_by_type - (AtkRelationSet *set, - AtkRelationType relationship, - AtkObject *target); - -Add a new relation of the specified type with the specified target to -the current relation set if the relation set does not contain a relation -of that type. If it is does contain a relation of that typea the target -is added to the relation. - - -set : - an AtkRelationSet - -relationship : - an AtkRelationType - -target : - an AtkObject - -Since 1.9 - - - - - - - diff -Nru atk1.0-1.30.0/docs/xml/atkrelation.xml atk1.0-2.2.0/docs/xml/atkrelation.xml --- atk1.0-1.30.0/docs/xml/atkrelation.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkrelation.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,317 +0,0 @@ - - -AtkRelation -3 -ATK Library - - - -AtkRelation -An object used to describe a relation between a object and one or more -other objects. - - - -Synopsis - - - AtkRelation; -enum AtkRelationType; -AtkRelationType atk_relation_type_register (const gchar *name); -const gchar* atk_relation_type_get_name (AtkRelationType type); -AtkRelationType atk_relation_type_for_name (const gchar *name); -AtkRelation* atk_relation_new (AtkObject **targets, - gint n_targets, - AtkRelationType relationship); -AtkRelationType atk_relation_get_relation_type (AtkRelation *relation); -GPtrArray* atk_relation_get_target (AtkRelation *relation); -void atk_relation_add_target (AtkRelation *relation, - AtkObject *target); - - - - -Object Hierarchy - - GObject - +----AtkRelation - - - - - - - - -Properties - - "relation-type" AtkRelationType : Read / Write - "target" GValueArray* : Read / Write - - - - - - -Description - -An AtkRelation describes a relation between an object and one or more -other objects. The actual relations that an object has with other objects -are defined as an AtkRelationSet, which is a set of AtkRelations. - - - - -Details - -AtkRelation -AtkRelationtypedef struct _AtkRelation AtkRelation; - -The AtkRelation structure should not be accessed directly. - - -enum AtkRelationType -AtkRelationTypetypedef enum -{ - ATK_RELATION_NULL = 0, - ATK_RELATION_CONTROLLED_BY, - ATK_RELATION_CONTROLLER_FOR, - ATK_RELATION_LABEL_FOR, - ATK_RELATION_LABELLED_BY, - ATK_RELATION_MEMBER_OF, - ATK_RELATION_NODE_CHILD_OF, - ATK_RELATION_FLOWS_TO, - ATK_RELATION_FLOWS_FROM, - ATK_RELATION_SUBWINDOW_OF, - ATK_RELATION_EMBEDS, - ATK_RELATION_EMBEDDED_BY, - ATK_RELATION_POPUP_FOR, - ATK_RELATION_PARENT_WINDOW_OF, - ATK_RELATION_DESCRIBED_BY, - ATK_RELATION_DESCRIPTION_FOR, - ATK_RELATION_NODE_PARENT_OF, - ATK_RELATION_LAST_DEFINED -} AtkRelationType; - - -Describes the type of the relation - - - -ATK_RELATION_NULL - Not used, represens "no relationship" or an error condition. - - - -ATK_RELATION_CONTROLLED_BY - Indicates an object controlled by one or more target objects. - - - -ATK_RELATION_CONTROLLER_FOR - Indicates an object is an controller for one or more target objects. - - - -ATK_RELATION_LABEL_FOR - Indicates an object is a label for one or more target objects. - - - -ATK_RELATION_LABELLED_BY - Indicates an object is labelled by one or more target objects. - - - -ATK_RELATION_MEMBER_OF - Indicates an object is a member of a group of one or more target objects. - - - -ATK_RELATION_NODE_CHILD_OF - Indicates an object is a cell in a treetable which is displayed because a cell in the same column is expanded and identifies that cell. - - - -ATK_RELATION_FLOWS_TO - Indicates that the object has content that flows logically to another - AtkObject in a sequential way, (for instance text-flow). - - - -ATK_RELATION_FLOWS_FROM - Indicates that the object has content that flows logically from - another AtkObject in a sequential way, (for instance text-flow). - - - -ATK_RELATION_SUBWINDOW_OF - Indicates a subwindow attached to a component but otherwise has no connection in the UI heirarchy to that component. - - - -ATK_RELATION_EMBEDS - Indicates that the object visually embeds - another object's content, i.e. this object's content flows around - another's content. - - - -ATK_RELATION_EMBEDDED_BY - Inverse of ATK_RELATION_EMBEDS, indicates that - this object's content is visualy embedded in another object. - - - -ATK_RELATION_POPUP_FOR - Indicates that an object is a popup for another object. - - - -ATK_RELATION_PARENT_WINDOW_OF - Indicates that an object is a parent window of another object. - - - -ATK_RELATION_DESCRIBED_BY - Indicates that another object provides descriptive information about this object; more verbose than ATK_RELATION_LABELLED_BY. - - - -ATK_RELATION_DESCRIPTION_FOR - Indicates that an object provides descriptive information about another object; more verbose than ATK_RELATION_LABEL_FOR. - - - -ATK_RELATION_NODE_PARENT_OF - Indicates an object is a cell in a treetable and is expanded to display other cells in the same column. - - - -ATK_RELATION_LAST_DEFINED - Not used, this value indicates the end of the enumeration. - - - - -atk_relation_type_register () -atk_relation_type_registerAtkRelationType atk_relation_type_register (const gchar *name); - -Associate name with a new AtkRelationType - - -name : - a name string - -Returns : an AtkRelationType associated with name - - - -atk_relation_type_get_name () -atk_relation_type_get_nameconst gchar* atk_relation_type_get_name (AtkRelationType type); - -Gets the description string describing the AtkRelationType type. - - -type : - The AtkRelationType whose name is required - -Returns : the string describing the AtkRelationType - - - -atk_relation_type_for_name () -atk_relation_type_for_nameAtkRelationType atk_relation_type_for_name (const gchar *name); - -Get the AtkRelationType type corresponding to a relation name. - - -name : - a string which is the (non-localized) name of an ATK relation type. - -Returns : the AtkRelationType enumerated type corresponding to the specified name, - or ATK_RELATION_NULL if no matching relation type is found. - - - -atk_relation_new () -atk_relation_newAtkRelation* atk_relation_new (AtkObject **targets, - gint n_targets, - AtkRelationType relationship); - -Create a new relation for the specified key and the specified list -of targets. See also atk_object_add_relationship(). - - -targets : - an array of pointers to AtkObjects - -n_targets : - number of AtkObjects pointed to by targets - -relationship : - an AtkRelationType with which to create the new - AtkRelation - -Returns : a pointer to a new AtkRelation - - - -atk_relation_get_relation_type () -atk_relation_get_relation_typeAtkRelationType atk_relation_get_relation_type (AtkRelation *relation); - -Gets the type of relation - - -relation : - an AtkRelation - -Returns : the type of relation - - - -atk_relation_get_target () -atk_relation_get_targetGPtrArray* atk_relation_get_target (AtkRelation *relation); - -Gets the target list of relation - - -relation : - an AtkRelation - -Returns : the target list of relation - - - -atk_relation_add_target () -atk_relation_add_targetvoid atk_relation_add_target (AtkRelation *relation, - AtkObject *target); - -Adds the specified AtkObject to the target for the relation, if it is -not already present. See also atk_object_add_relationship(). - - -relation : - an AtkRelation - -target : - an AtkObject - -Since 1.9 - - - -Property Details -The <literal>"relation-type"</literal> property -AtkRelation:relation-type "relation-type" AtkRelationType : Read / Write -The type of the relation.Default value: ATK_RELATION_NULL - -The <literal>"target"</literal> property -AtkRelation:target "target" GValueArray* : Read / Write -An array of the targets for the relation. - - - - - - diff -Nru atk1.0-1.30.0/docs/xml/atkselection.xml atk1.0-2.2.0/docs/xml/atkselection.xml --- atk1.0-1.30.0/docs/xml/atkselection.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkselection.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,240 +0,0 @@ - - -AtkSelection -3 -ATK Library - - - -AtkSelection -The ATK interface implemented by container objects whose AtkObject children -can be selected. - - - -Synopsis - - - AtkSelection; -gboolean atk_selection_add_selection (AtkSelection *selection, - gint i); -gboolean atk_selection_clear_selection (AtkSelection *selection); -AtkObject* atk_selection_ref_selection (AtkSelection *selection, - gint i); -gint atk_selection_get_selection_count (AtkSelection *selection); -gboolean atk_selection_is_child_selected (AtkSelection *selection, - gint i); -gboolean atk_selection_remove_selection (AtkSelection *selection, - gint i); -gboolean atk_selection_select_all_selection (AtkSelection *selection); - - - - -Object Hierarchy - - GInterface - +----AtkSelection - - - - - - - -Known Implementations - -AtkSelection is implemented by - AtkNoOpObject. - - - - -Signals - - "selection-changed" : Run Last - - - - - -Description - -AtkSelection should be implemented by UI components with children which -are exposed by atk_object_ref_child and atk_object_get_n_children, if -the use of the parent UI component ordinarily involves selection of one -or more of the objects corresponding to those AtkObject children - for -example, selectable lists. - - -Note that other types of "selection" (for instance text selection) are -accomplished a other ATK interfaces - AtkSelection is limited to the -selection/deselection of children. - - - - -Details - -AtkSelection -AtkSelectiontypedef struct _AtkSelection AtkSelection; - -The AtkAction structure does not contain any fields. - - -atk_selection_add_selection () -atk_selection_add_selectiongboolean atk_selection_add_selection (AtkSelection *selection, - gint i); - -Adds the specified accessible child of the object to the -object's selection. - - -selection : - a GObject instance that implements AtkSelectionIface - -i : - a gint specifying the child index. - -Returns : TRUE if success, FALSE otherwise. - - - -atk_selection_clear_selection () -atk_selection_clear_selectiongboolean atk_selection_clear_selection (AtkSelection *selection); - -Clears the selection in the object so that no children in the object -are selected. - - -selection : - a GObject instance that implements AtkSelectionIface - -Returns : TRUE if success, FALSE otherwise. - - - -atk_selection_ref_selection () -atk_selection_ref_selectionAtkObject* atk_selection_ref_selection (AtkSelection *selection, - gint i); - -Gets a reference to the accessible object representing the specified -selected child of the object. -Note: callers should not rely on NULL or on a zero value for -indication of whether AtkSelectionIface is implemented, they should -use type checking/interface checking macros or the -atk_get_accessible_value() convenience method. - - -selection : - a GObject instance that implements AtkSelectionIface - -i : - a gint specifying the index in the selection set. (e.g. the -ith selection as opposed to the ith child). - -Returns : an AtkObject representing the selected accessible , or NULL -if selection does not implement this interface. - - - -atk_selection_get_selection_count () -atk_selection_get_selection_countgint atk_selection_get_selection_count (AtkSelection *selection); - -Gets the number of accessible children currently selected. -Note: callers should not rely on NULL or on a zero value for -indication of whether AtkSelectionIface is implemented, they should -use type checking/interface checking macros or the -atk_get_accessible_value() convenience method. - - -selection : - a GObject instance that implements AtkSelectionIface - -Returns : a gint representing the number of items selected, or 0 -if selection does not implement this interface. - - - -atk_selection_is_child_selected () -atk_selection_is_child_selectedgboolean atk_selection_is_child_selected (AtkSelection *selection, - gint i); - -Determines if the current child of this object is selected -Note: callers should not rely on NULL or on a zero value for -indication of whether AtkSelectionIface is implemented, they should -use type checking/interface checking macros or the -atk_get_accessible_value() convenience method. - - -selection : - a GObject instance that implements AtkSelectionIface - -i : - a gint specifying the child index. - -Returns : a gboolean representing the specified child is selected, or 0 -if selection does not implement this interface. - - - -atk_selection_remove_selection () -atk_selection_remove_selectiongboolean atk_selection_remove_selection (AtkSelection *selection, - gint i); - -Removes the specified child of the object from the object's selection. - - -selection : - a GObject instance that implements AtkSelectionIface - -i : - a gint specifying the index in the selection set. (e.g. the -ith selection as opposed to the ith child). - -Returns : TRUE if success, FALSE otherwise. - - - -atk_selection_select_all_selection () -atk_selection_select_all_selectiongboolean atk_selection_select_all_selection (AtkSelection *selection); - -Causes every child of the object to be selected if the object -supports multiple selections. - - -selection : - a GObject instance that implements AtkSelectionIface - -Returns : TRUE if success, FALSE otherwise. - - - - - - -Signal Details -The <literal>"selection-changed"</literal> signal -AtkSelection::selection-changedvoid user_function (AtkSelection *atkselection, - gpointer user_data) : Run Last - -The "selection-changed" signal is emitted by an object which implements -AtkSelection interface when the selection changes. - -atkselection : -the object which received the signal. - -user_data : -user data set when the signal handler was connected. - - - - - -See Also - -AtkText - - - - diff -Nru atk1.0-1.30.0/docs/xml/atkstateset.xml atk1.0-2.2.0/docs/xml/atkstateset.xml --- atk1.0-1.30.0/docs/xml/atkstateset.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkstateset.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,261 +0,0 @@ - - -AtkStateSet -3 -ATK Library - - - -AtkStateSet -An AtkStateSet determines a component's state set. - - - -Synopsis - - - AtkStateSet; -AtkStateSet* atk_state_set_new (void); -gboolean atk_state_set_is_empty (AtkStateSet *set); -gboolean atk_state_set_add_state (AtkStateSet *set, - AtkStateType type); -void atk_state_set_add_states (AtkStateSet *set, - AtkStateType *types, - gint n_types); -void atk_state_set_clear_states (AtkStateSet *set); -gboolean atk_state_set_contains_state (AtkStateSet *set, - AtkStateType type); -gboolean atk_state_set_contains_states (AtkStateSet *set, - AtkStateType *types, - gint n_types); -gboolean atk_state_set_remove_state (AtkStateSet *set, - AtkStateType type); -AtkStateSet* atk_state_set_and_sets (AtkStateSet *set, - AtkStateSet *compare_set); -AtkStateSet* atk_state_set_or_sets (AtkStateSet *set, - AtkStateSet *compare_set); -AtkStateSet* atk_state_set_xor_sets (AtkStateSet *set, - AtkStateSet *compare_set); - - - - -Object Hierarchy - - GObject - +----AtkStateSet - - - - - - - - - - - -Description - -An AtkStateSet determines a component's state set. It is composed of a set -of AtkStates. - - - - -Details - -AtkStateSet -AtkStateSettypedef struct _AtkStateSet AtkStateSet; - - - -atk_state_set_new () -atk_state_set_newAtkStateSet* atk_state_set_new (void); - -Creates a new empty state set. - - -Returns : a new AtkStateSet - - - -atk_state_set_is_empty () -atk_state_set_is_emptygboolean atk_state_set_is_empty (AtkStateSet *set); - -Checks whether the state set is empty, i.e. has no states set. - - -set : - an AtkStateType - -Returns : TRUE if set has no states set, otherwise FALSE - - - -atk_state_set_add_state () -atk_state_set_add_stategboolean atk_state_set_add_state (AtkStateSet *set, - AtkStateType type); - -Add a new state for the specified type to the current state set if -it is not already present. - - -set : - an AtkStateSet - -type : - an AtkStateType - -Returns : TRUE if the state for type is not already in set. - - - -atk_state_set_add_states () -atk_state_set_add_statesvoid atk_state_set_add_states (AtkStateSet *set, - AtkStateType *types, - gint n_types); - -Add the states for the specified types to the current state set. - - -set : - an AtkStateSet - -types : - an array of AtkStateType - -n_types : - The number of elements in the array - - - -atk_state_set_clear_states () -atk_state_set_clear_statesvoid atk_state_set_clear_states (AtkStateSet *set); - -Removes all states from the state set. - - -set : - an AtkStateSet - - - -atk_state_set_contains_state () -atk_state_set_contains_stategboolean atk_state_set_contains_state (AtkStateSet *set, - AtkStateType type); - -Checks whether the state for the specified type is in the specified set. - - -set : - an AtkStateSet - -type : - an AtkStateType - -Returns : TRUE if type is the state type is in set. - - - -atk_state_set_contains_states () -atk_state_set_contains_statesgboolean atk_state_set_contains_states (AtkStateSet *set, - AtkStateType *types, - gint n_types); - -Checks whether the states for all the specified types are in the -specified set. - - -set : - an AtkStateSet - -types : - an array of AtkStateType - -n_types : - The number of elements in the array - -Returns : TRUE if all the states for type are in set. - - - -atk_state_set_remove_state () -atk_state_set_remove_stategboolean atk_state_set_remove_state (AtkStateSet *set, - AtkStateType type); - -Removes the state for the specified type from the state set. - - -set : - an AtkStateSet - -type : - an AtkType - -Returns : TRUE if type was the state type is in set. - - - -atk_state_set_and_sets () -atk_state_set_and_setsAtkStateSet* atk_state_set_and_sets (AtkStateSet *set, - AtkStateSet *compare_set); - -Constructs the intersection of the two sets, returning NULL if the -intersection is empty. - - -set : - an AtkStateSet - -compare_set : - another AtkStateSet - -Returns : a new AtkStateSet which is the intersection of the two sets. - - - -atk_state_set_or_sets () -atk_state_set_or_setsAtkStateSet* atk_state_set_or_sets (AtkStateSet *set, - AtkStateSet *compare_set); - -Constructs the union of the two sets. - - -set : - an AtkStateSet - -compare_set : - another AtkStateSet - -Returns : a new AtkStateSet which is the union of the two sets, -returning NULL is empty. - - - -atk_state_set_xor_sets () -atk_state_set_xor_setsAtkStateSet* atk_state_set_xor_sets (AtkStateSet *set, - AtkStateSet *compare_set); - -Constructs the exclusive-or of the two sets, returning NULL is empty. -The set returned by this operation contains the states in exactly -one of the two sets. - - -set : - an AtkStateSet - -compare_set : - another AtkStateSet - -Returns : a new AtkStateSet which contains the states which are -in exactly one of the two sets. - - - - - - - - - diff -Nru atk1.0-1.30.0/docs/xml/atkstate.xml atk1.0-2.2.0/docs/xml/atkstate.xml --- atk1.0-1.30.0/docs/xml/atkstate.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkstate.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,387 +0,0 @@ - - -AtkState -3 -ATK Library - - - -AtkState -An AtkState describes a component's particular state. - - - -Synopsis - - -enum AtkStateType; -typedef AtkState; -AtkStateType atk_state_type_register (const gchar *name); -const gchar* atk_state_type_get_name (AtkStateType type); -AtkStateType atk_state_type_for_name (const gchar *name); - - - - - - - - - - - - -Description - -An AtkState describes a component's particular state. The actual state of -an component is described by its AtkStateSet, which is a set of AtkStates. - - - - -Details - -enum AtkStateType -AtkStateTypetypedef enum -{ - ATK_STATE_INVALID, - ATK_STATE_ACTIVE, - ATK_STATE_ARMED, - ATK_STATE_BUSY, - ATK_STATE_CHECKED, - ATK_STATE_DEFUNCT, - ATK_STATE_EDITABLE, - ATK_STATE_ENABLED, - ATK_STATE_EXPANDABLE, - ATK_STATE_EXPANDED, - ATK_STATE_FOCUSABLE, - ATK_STATE_FOCUSED, - ATK_STATE_HORIZONTAL, - ATK_STATE_ICONIFIED, - ATK_STATE_MODAL, - ATK_STATE_MULTI_LINE, - ATK_STATE_MULTISELECTABLE, - ATK_STATE_OPAQUE, - ATK_STATE_PRESSED, - ATK_STATE_RESIZABLE, - ATK_STATE_SELECTABLE, - ATK_STATE_SELECTED, - ATK_STATE_SENSITIVE, - ATK_STATE_SHOWING, - ATK_STATE_SINGLE_LINE, - ATK_STATE_STALE, - ATK_STATE_TRANSIENT, - ATK_STATE_VERTICAL, - ATK_STATE_VISIBLE, - ATK_STATE_MANAGES_DESCENDANTS, - ATK_STATE_INDETERMINATE, - ATK_STATE_TRUNCATED, - ATK_STATE_REQUIRED, - ATK_STATE_INVALID_ENTRY, - ATK_STATE_SUPPORTS_AUTOCOMPLETION, - ATK_STATE_SELECTABLE_TEXT, - ATK_STATE_DEFAULT, - ATK_STATE_ANIMATED, - ATK_STATE_VISITED, - - ATK_STATE_LAST_DEFINED -} AtkStateType; - - -The possible types of states of an object - - - -ATK_STATE_INVALID - Indicates an invalid state - probably an error condition. - - - -ATK_STATE_ACTIVE - Indicates a window is currently the active window, or is an active subelement within a container or table - - - -ATK_STATE_ARMED - Indicates that the object is 'armed', i.e. will be activated by if a pointer button-release event occurs within its bounds. Buttons often enter this state when a pointer click occurs within their bounds, as a precursor to activation. - - - -ATK_STATE_BUSY - Indicates the current object is busy, i.e. onscreen representation is in the process of changing, or the object is temporarily unavailable for interaction due to activity already in progress. This state may be used by implementors of Document to indicate that content loading is underway. It also may indicate other 'pending' conditions; clients may wish to interrogate this object when the ATK_STATE_BUSY flag is removed. - - - -ATK_STATE_CHECKED - Indicates this object is currently checked, for instance a checkbox is 'non-empty'. - - - -ATK_STATE_DEFUNCT - Indicates that this object no longer has a valid backing widget (for instance, if its peer object has been destroyed) - - - -ATK_STATE_EDITABLE - Indicates the user can change the contents of this object - - - -ATK_STATE_ENABLED - Indicates that this object is enabled, i.e. that it currently reflects some application state. Objects that are "greyed out" may lack this state, and may lack the STATE_SENSITIVE if direct user interaction cannot cause them to acquire STATE_ENABLED. See also: ATK_STATE_SENSITIVE - - - -ATK_STATE_EXPANDABLE - Indicates this object allows progressive disclosure of its children - - - -ATK_STATE_EXPANDED - Indicates this object its expanded - see ATK_STATE_EXPANDABLE above - - - -ATK_STATE_FOCUSABLE - Indicates this object can accept keyboard focus, which means all events resulting from typing on the keyboard will normally be passed to it when it has focus - - - -ATK_STATE_FOCUSED - Indicates this object currently has the keyboard focus - - - -ATK_STATE_HORIZONTAL - Indicates the orientation of this object is horizontal; used, for instance, by objects of ATK_ROLE_SCROLL_BAR. For objects where vertical/horizontal orientation is especially meaningful. - - - -ATK_STATE_ICONIFIED - Indicates this object is minimized and is represented only by an icon - - - -ATK_STATE_MODAL - Indicates something must be done with this object before the user can interact with an object in a different window - - - -ATK_STATE_MULTI_LINE - Indicates this (text) object can contain multiple lines of text - - - -ATK_STATE_MULTISELECTABLE - Indicates this object allows more than one of its children to be selected at the same time, or in the case of text objects, that the object supports non-contiguous text selections. - - - -ATK_STATE_OPAQUE - Indicates this object paints every pixel within its rectangular region. - - - -ATK_STATE_PRESSED - Indicates this object is currently pressed; c.f. ATK_STATE_ARMED - - - -ATK_STATE_RESIZABLE - Indicates the size of this object is not fixed - - - -ATK_STATE_SELECTABLE - Indicates this object is the child of an object that allows its children to be selected and that this child is one of those children that can be selected - - - -ATK_STATE_SELECTED - Indicates this object is the child of an object that allows its children to be selected and that this child is one of those children that has been selected - - - -ATK_STATE_SENSITIVE - Indicates this object is sensitive, e.g. to user interaction. -STATE_SENSITIVE usually accompanies STATE_ENABLED for user-actionable controls, -but may be found in the absence of STATE_ENABLED if the current visible state of the -control is "disconnected" from the application state. In such cases, direct user interaction -can often result in the object gaining STATE_SENSITIVE, for instance if a user makes -an explicit selection using an object whose current state is ambiguous or undefined. -see STATE_ENABLED, STATE_INDETERMINATE. - - - -ATK_STATE_SHOWING - Indicates this object, the object's parent, the object's parent's parent, and so on, -are all 'shown' to the end-user, i.e. subject to "exposure" if blocking or obscuring objects do not interpose -between this object and the top of the window stack. - - - -ATK_STATE_SINGLE_LINE - Indicates this (text) object can contain only a single line of text - - - -ATK_STATE_STALE - Indicates that the information returned for this object may no longer be -synchronized with the application state. This is implied if the object has STATE_TRANSIENT, -and can also occur towards the end of the object peer's lifecycle. It can also be used to indicate that -the index associated with this object has changed since the user accessed the object (in lieu of -"index-in-parent-changed" events). - - - -ATK_STATE_TRANSIENT - Indicates this object is transient, i.e. a snapshot which may not emit events when its -state changes. Data from objects with ATK_STATE_TRANSIENT should not be cached, since there may be no -notification given when the cached data becomes obsolete. - - - -ATK_STATE_VERTICAL - Indicates the orientation of this object is vertical - - - -ATK_STATE_VISIBLE - Indicates this object is visible, e.g. has been explicitly marked for exposure to the user. - - - -ATK_STATE_MANAGES_DESCENDANTS - Indicates that "active-descendant-changed" event -is sent when children become 'active' (i.e. are selected or navigated to onscreen). -Used to prevent need to enumerate all children in very large containers, like tables. -The presence of STATE_MANAGES_DESCENDANTS is an indication to the client. -that the children should not, and need not, be enumerated by the client. -Objects implementing this state are expected to provide relevant state -notifications to listening clients, for instance notifications of visibility -changes and activation of their contained child objects, without the client -having previously requested references to those children. - - - -ATK_STATE_INDETERMINATE - Indicates that a check box is in a state other than checked or not checked. -This usually means that the boolean value reflected or -controlled by the object does not apply consistently to the entire current context. -For example, a checkbox for the "Bold" attribute of text may have STATE_INDETERMINATE -if the currently selected text contains a mixture of weight attributes. -In many cases interacting with a STATE_INDETERMINATE object will cause -the context's corresponding boolean attribute to be homogenized, whereupon the object -will lose STATE_INDETERMINATE and a corresponding state-changed event will be fired. - - - -ATK_STATE_TRUNCATED - Indicates that an object is truncated, e.g. a text value in a speradsheet cell. - - - -ATK_STATE_REQUIRED - Indicates that explicit user interaction with an object is required by the user interface, e.g. a required field in a "web-form" interface. - - - -ATK_STATE_INVALID_ENTRY - Indicates that the object has encountered an error condition due to failure of input validation. For instance, a form control may acquire this state in response to invalid or malformed user input. - - - -ATK_STATE_SUPPORTS_AUTOCOMPLETION - Indicates that the object in question implements some form of ¨typeahead¨ or -pre-selection behavior whereby entering the first character of one or more sub-elements -causes those elements to scroll into view or become selected. Subsequent character input -may narrow the selection further as long as one or more sub-elements match the string. -This state is normally only useful and encountered on objects that implement Selection. -In some cases the typeahead behavior may result in full or partial ¨completion¨ of -the data in the input field, in which case these input events may trigger text-changed -events from the AtkText interface. This state supplants ATK_ROLE_AUTOCOMPLETE. - - - -ATK_STATE_SELECTABLE_TEXT -Indicates that the object in question supports text selection. It should only be exposed on objects which implement the Text interface, in order to distinguish this state from ATK_STATE_SELECTABLE, which infers that the object in question is a selectable child of an object which implements Selection. While similar, text selection and subelement selection are distinct operations. - - - -ATK_STATE_DEFAULT - Indicates that the object is the "default" active component, i.e. the object which is activated by an end-user press of the "Enter" or "Return" key. Typically a "close" or "submit" button. - - - -ATK_STATE_ANIMATED - Indicates that the object changes its appearance dynamically as an inherent part of its presentation. This state may come and go if an object is only temporarily animated on the way to a 'final' onscreen presentation. -note some applications, notably content viewers, may not be able to detect -all kinds of animated content. Therefore the absence of this state should not -be taken as definitive evidence that the object's visual representation is -static; this state is advisory. - - - -ATK_STATE_VISITED - Indicates that the object (typically a hyperlink) has already been 'activated', and/or its backing data has already been downloaded, rendered, or otherwise "visited". - - - -ATK_STATE_LAST_DEFINED - Not a valid state, used for finding end of enumeration - - - - -AtkState -AtkStatetypedef guint64 AtkState; - - -The AtkState value should not be referenceed directly. - - -atk_state_type_register () -atk_state_type_registerAtkStateType atk_state_type_register (const gchar *name); - -Register a new object state. - - -name : - a character string describing the new state. - -Returns : an AtkState value for the new state. - - - -atk_state_type_get_name () -atk_state_type_get_nameconst gchar* atk_state_type_get_name (AtkStateType type); - -Gets the description string describing the AtkStateType type. - - -type : - The AtkStateType whose name is required - -Returns : the string describing the AtkStateType - - - -atk_state_type_for_name () -atk_state_type_for_nameAtkStateType atk_state_type_for_name (const gchar *name); - -Gets the AtkStateType corresponding to the description string name. - - -name : - a character string state name - -Returns : an AtkStateType corresponding to name - - - - - - - - - diff -Nru atk1.0-1.30.0/docs/xml/atkstreamablecontent.xml atk1.0-2.2.0/docs/xml/atkstreamablecontent.xml --- atk1.0-1.30.0/docs/xml/atkstreamablecontent.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkstreamablecontent.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,161 +0,0 @@ - - -AtkStreamableContent -3 -ATK Library - - - -AtkStreamableContent -The ATK interface which provides access to streamable content. - - - -Synopsis - - - AtkStreamableContent; -gint atk_streamable_content_get_n_mime_types - (AtkStreamableContent *streamable); -const gchar* atk_streamable_content_get_mime_type - (AtkStreamableContent *streamable, - gint i); -GIOChannel* atk_streamable_content_get_stream (AtkStreamableContent *streamable, - const gchar *mime_type); -gchar* atk_streamable_content_get_uri (AtkStreamableContent *streamable, - const gchar *mime_type); - - - - -Object Hierarchy - - GInterface - +----AtkStreamableContent - - - - - - - - - - - -Description - -An interface whereby an object allows its backing content to be streamed to -clients. Typical implementors would be images or icons, HTML content, or -multimedia display/rendering widgets. - - -Negotiation of content type is allowed. Clients may examine the backing data -and transform, convert, or parse the content in order to present it in an alternate form to end-users. - - -The AtkStreamableContent interface is particularly useful for saving, -printing, or post-processing entire documents, or for persisting alternate -views of a document. If document content itself is being serialized, -stored, or converted, then use of the AtkStreamableContent interface can help -address performance issues. Unlike most ATK interfaces, -this interface is not strongly tied to the current user-agent view of the -a particular document, but may in some cases give access to the underlying model data. - - - - -Details - -AtkStreamableContent -AtkStreamableContenttypedef struct _AtkStreamableContent AtkStreamableContent; - -The AtkStreamableContent structure does not contain any fields. - - -atk_streamable_content_get_n_mime_types () -atk_streamable_content_get_n_mime_typesgint atk_streamable_content_get_n_mime_types - (AtkStreamableContent *streamable); - -Gets the number of mime types supported by this object. - - -streamable : - a GObject instance that implements AtkStreamableContentIface - -Returns : a gint which is the number of mime types supported by the object. - - - -atk_streamable_content_get_mime_type () -atk_streamable_content_get_mime_typeconst gchar* atk_streamable_content_get_mime_type - (AtkStreamableContent *streamable, - gint i); - -Gets the character string of the specified mime type. The first mime -type is at position 0, the second at position 1, and so on. - - -streamable : - a GObject instance that implements AtkStreamableContent - -i : - a gint representing the position of the mime type starting from 0 - -Returns :: a gchar* representing the specified mime type; the caller -should not free the character string. - - - -atk_streamable_content_get_stream () -atk_streamable_content_get_streamGIOChannel* atk_streamable_content_get_stream (AtkStreamableContent *streamable, - const gchar *mime_type); - -Gets the content in the specified mime type. - - -streamable : - a GObject instance that implements AtkStreamableContentIface - -mime_type : - a gchar* representing the mime type - -Returns : A GIOChannel which contains the content in the specified mime -type. - - - -atk_streamable_content_get_uri () -atk_streamable_content_get_urigchar* atk_streamable_content_get_uri (AtkStreamableContent *streamable, - const gchar *mime_type); - -Get a string representing a URI in IETF standard format -(see http://www.ietf.org/rfc/rfc2396.txt) from which the object's content -may be streamed in the specified mime-type, if one is available. -If mime_type is NULL, the URI for the default (and possibly only) mime-type is -returned. - - -Note that it is possible for get_uri to return NULL but for -get_stream to work nonetheless, since not all GIOChannels connect to URIs. - - -streamable : - a GObject instance that implements AtkStreamableContentIface - -mime_type : - a gchar* representing the mime type, or NULL to request a URI -for the default mime type. - -Returns : Returns a string representing a URI, or NULL if no corresponding URI -can be constructed. - - -Since 1.12 - - - - - - - diff -Nru atk1.0-1.30.0/docs/xml/atktable.xml atk1.0-2.2.0/docs/xml/atktable.xml --- atk1.0-1.30.0/docs/xml/atktable.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atktable.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,817 +0,0 @@ - - -AtkTable -3 -ATK Library - - - -AtkTable -The ATK interface implemented for UI components which contain tabular or -row/column information. - - - -Synopsis - - - AtkTable; -AtkObject* atk_table_ref_at (AtkTable *table, - gint row, - gint column); -gint atk_table_get_index_at (AtkTable *table, - gint row, - gint column); -gint atk_table_get_column_at_index (AtkTable *table, - gint index_); -gint atk_table_get_row_at_index (AtkTable *table, - gint index_); -gint atk_table_get_n_columns (AtkTable *table); -gint atk_table_get_n_rows (AtkTable *table); -gint atk_table_get_column_extent_at (AtkTable *table, - gint row, - gint column); -gint atk_table_get_row_extent_at (AtkTable *table, - gint row, - gint column); -AtkObject * atk_table_get_caption (AtkTable *table); -const gchar * atk_table_get_column_description (AtkTable *table, - gint column); -const gchar * atk_table_get_row_description (AtkTable *table, - gint row); -AtkObject* atk_table_get_column_header (AtkTable *table, - gint column); -AtkObject* atk_table_get_row_header (AtkTable *table, - gint row); -AtkObject* atk_table_get_summary (AtkTable *table); -void atk_table_set_caption (AtkTable *table, - AtkObject *caption); -void atk_table_set_row_description (AtkTable *table, - gint row, - const gchar *description); -void atk_table_set_column_description (AtkTable *table, - gint column, - const gchar *description); -void atk_table_set_row_header (AtkTable *table, - gint row, - AtkObject *header); -void atk_table_set_column_header (AtkTable *table, - gint column, - AtkObject *header); -void atk_table_set_summary (AtkTable *table, - AtkObject *accessible); -gint atk_table_get_selected_columns (AtkTable *table, - gint **selected); -gint atk_table_get_selected_rows (AtkTable *table, - gint **selected); -gboolean atk_table_is_column_selected (AtkTable *table, - gint column); -gboolean atk_table_is_row_selected (AtkTable *table, - gint row); -gboolean atk_table_is_selected (AtkTable *table, - gint row, - gint column); -gboolean atk_table_add_column_selection (AtkTable *table, - gint column); -gboolean atk_table_add_row_selection (AtkTable *table, - gint row); -gboolean atk_table_remove_column_selection (AtkTable *table, - gint column); -gboolean atk_table_remove_row_selection (AtkTable *table, - gint row); - - - - -Object Hierarchy - - GInterface - +----AtkTable - - - - - - - -Known Implementations - -AtkTable is implemented by - AtkNoOpObject. - - - - -Signals - - "column-deleted" : Run Last - "column-inserted" : Run Last - "column-reordered" : Run Last - "model-changed" : Run Last - "row-deleted" : Run Last - "row-inserted" : Run Last - "row-reordered" : Run Last - - - - - -Description - -AtkTable should be implemented by components which present elements -ordered via rows and columns. It may also be used to present -tree-structured information if the nodes of the trees can be said to -contain multiple "columns". Individual elements of an AtkTable are -typically referred to as "cells", and these cells are exposed by -AtkTable as child AtkObjects of the AtkTable. Both row/column and -child-index-based access to these children is provided. - - -Children of AtkTable are frequently "lightweight" objects, that is, -they may not have backing widgets in the host UI toolkit. They are -therefore often transient. - - -Since tables are often very complex, AtkTable includes provision for -offering simplified summary information, as well as row and column -headers and captions. Headers and captions are AtkObjects which may -implement other interfaces (AtkText, AtkImage, etc.) as appropriate. -AtkTable summaries may themselves be (simplified) AtkTables, etc. - - - - -Details - -AtkTable -AtkTabletypedef struct _AtkTable AtkTable; - -The AtkTable structure does not contain any fields. - - -atk_table_ref_at () -atk_table_ref_atAtkObject* atk_table_ref_at (AtkTable *table, - gint row, - gint column); - -Get a reference to the table cell at row, column. - - -table : - a GObject instance that implements AtkTableIface - -row : - a gint representing a row in table - -column : - a gint representing a column in table - -Returns : a AtkObject* representing the referred to accessible - - - -atk_table_get_index_at () -atk_table_get_index_atgint atk_table_get_index_at (AtkTable *table, - gint row, - gint column); - -Gets a gint representing the index at the specified row and column. - - -table : - a GObject instance that implements AtkTableIface - -row : - a gint representing a row in table - -column : - a gint representing a column in table - -Returns : a gint representing the index at specified position. -The value -1 is returned if the object at row,column is not a child -of table or table does not implement this interface. - - - -atk_table_get_column_at_index () -atk_table_get_column_at_indexgint atk_table_get_column_at_index (AtkTable *table, - gint index_); - -Gets a gint representing the column at the specified index_. - - -table : - a GObject instance that implements AtkTableInterface - -index_ : - a gint representing an index in table - -Returns : a gint representing the column at the specified index, -or -1 if the table does not implement this interface - - - -atk_table_get_row_at_index () -atk_table_get_row_at_indexgint atk_table_get_row_at_index (AtkTable *table, - gint index_); - -Gets a gint representing the row at the specified index_. - - -table : - a GObject instance that implements AtkTableInterface - -index_ : - a gint representing an index in table - -Returns : a gint representing the row at the specified index, -or -1 if the table does not implement this interface - - - -atk_table_get_n_columns () -atk_table_get_n_columnsgint atk_table_get_n_columns (AtkTable *table); - -Gets the number of columns in the table. - - -table : - a GObject instance that implements AtkTableIface - -Returns : a gint representing the number of columns, or 0 -if value does not implement this interface. - - - -atk_table_get_n_rows () -atk_table_get_n_rowsgint atk_table_get_n_rows (AtkTable *table); - -Gets the number of rows in the table. - - -table : - a GObject instance that implements AtkTableIface - -Returns : a gint representing the number of rows, or 0 -if value does not implement this interface. - - - -atk_table_get_column_extent_at () -atk_table_get_column_extent_atgint atk_table_get_column_extent_at (AtkTable *table, - gint row, - gint column); - -Gets the number of columns occupied by the accessible object -at the specified row and column in the table. - - -table : - a GObject instance that implements AtkTableIface - -row : - a gint representing a row in table - -column : - a gint representing a column in table - -Returns : a gint representing the column extent at specified position, or 0 -if value does not implement this interface. - - - -atk_table_get_row_extent_at () -atk_table_get_row_extent_atgint atk_table_get_row_extent_at (AtkTable *table, - gint row, - gint column); - -Gets the number of rows occupied by the accessible object -at a specified row and column in the table. - - -table : - a GObject instance that implements AtkTableIface - -row : - a gint representing a row in table - -column : - a gint representing a column in table - -Returns : a gint representing the row extent at specified position, or 0 -if value does not implement this interface. - - - -atk_table_get_caption () -atk_table_get_captionAtkObject * atk_table_get_caption (AtkTable *table); - -Gets the caption for the table. - - -table : - a GObject instance that implements AtkTableInterface - -Returns : a AtkObject* representing the table caption, or NULL -if value does not implement this interface. - - - -atk_table_get_column_description () -atk_table_get_column_descriptionconst gchar * atk_table_get_column_description (AtkTable *table, - gint column); - -Gets the description text of the specified column in the table - - -table : - a GObject instance that implements AtkTableIface - -column : - a gint representing a column in table - -Returns : a gchar* representing the column description, or NULL -if value does not implement this interface. - - - -atk_table_get_row_description () -atk_table_get_row_descriptionconst gchar * atk_table_get_row_description (AtkTable *table, - gint row); - -Gets the description text of the specified row in the table - - -table : - a GObject instance that implements AtkTableIface - -row : - a gint representing a row in table - -Returns : a gchar* representing the row description, or NULL -if value does not implement this interface. - - - -atk_table_get_column_header () -atk_table_get_column_headerAtkObject* atk_table_get_column_header (AtkTable *table, - gint column); - -Gets the column header of a specified column in an accessible table. - - -table : - a GObject instance that implements AtkTableIface - -column : - a gint representing a column in the table - -Returns : a AtkObject* representing the specified column header, or -NULL if value does not implement this interface. - - - -atk_table_get_row_header () -atk_table_get_row_headerAtkObject* atk_table_get_row_header (AtkTable *table, - gint row); - -Gets the row header of a specified row in an accessible table. - - -table : - a GObject instance that implements AtkTableIface - -row : - a gint representing a row in the table - -Returns : a AtkObject* representing the specified row header, or -NULL if value does not implement this interface. - - - -atk_table_get_summary () -atk_table_get_summaryAtkObject* atk_table_get_summary (AtkTable *table); - -Gets the summary description of the table. - - -table : - a GObject instance that implements AtkTableIface - -Returns : a AtkObject* representing a summary description of the table, -or zero if value does not implement this interface. - - - -atk_table_set_caption () -atk_table_set_captionvoid atk_table_set_caption (AtkTable *table, - AtkObject *caption); - -Sets the caption for the table. - - -table : - a GObject instance that implements AtkTableIface - -caption : - a AtkObject representing the caption to set for table - - - -atk_table_set_row_description () -atk_table_set_row_descriptionvoid atk_table_set_row_description (AtkTable *table, - gint row, - const gchar *description); - -Sets the description text for the specified row of table. - - -table : - a GObject instance that implements AtkTableIface - -row : - a gint representing a row in table - -description : - a gchar representing the description text -to set for the specified row of table - - - -atk_table_set_column_description () -atk_table_set_column_descriptionvoid atk_table_set_column_description (AtkTable *table, - gint column, - const gchar *description); - -Sets the description text for the specified column of the table. - - -table : - a GObject instance that implements AtkTableIface - -column : - a gint representing a column in table - -description : - a gchar representing the description text -to set for the specified column of the table - - - -atk_table_set_row_header () -atk_table_set_row_headervoid atk_table_set_row_header (AtkTable *table, - gint row, - AtkObject *header); - -Sets the specified row header to header. - - -table : - a GObject instance that implements AtkTableIface - -row : - a gint representing a row in table - -header : - an AtkTable - - - -atk_table_set_column_header () -atk_table_set_column_headervoid atk_table_set_column_header (AtkTable *table, - gint column, - AtkObject *header); - -Sets the specified column header to header. - - -table : - a GObject instance that implements AtkTableIface - -column : - a gint representing a column in table - -header : - an AtkTable - - - -atk_table_set_summary () -atk_table_set_summaryvoid atk_table_set_summary (AtkTable *table, - AtkObject *accessible); - -Sets the summary description of the table. - - -table : - a GObject instance that implements AtkTableIface - -accessible : - an AtkObject representing the summary description -to set for table - - - -atk_table_get_selected_columns () -atk_table_get_selected_columnsgint atk_table_get_selected_columns (AtkTable *table, - gint **selected); - -Gets the selected columns of the table by initializing **selected with -the selected column numbers. This array should be freed by the caller. - - -table : - a GObject instance that implements AtkTableIface - -selected : - a gint** that is to contain the selected columns numbers - -Returns : a gint representing the number of selected columns, -or 0 if value does not implement this interface. - - - -atk_table_get_selected_rows () -atk_table_get_selected_rowsgint atk_table_get_selected_rows (AtkTable *table, - gint **selected); - -Gets the selected rows of the table by initializing **selected with -the selected row numbers. This array should be freed by the caller. - - -table : - a GObject instance that implements AtkTableIface - -selected : - a gint** that is to contain the selected row numbers - -Returns : a gint representing the number of selected rows, -or zero if value does not implement this interface. - - - -atk_table_is_column_selected () -atk_table_is_column_selectedgboolean atk_table_is_column_selected (AtkTable *table, - gint column); - -Gets a boolean value indicating whether the specified column -is selected - - -table : - a GObject instance that implements AtkTableIface - -column : - a gint representing a column in table - -Returns : a gboolean representing if the column is selected, or 0 -if value does not implement this interface. - - - -atk_table_is_row_selected () -atk_table_is_row_selectedgboolean atk_table_is_row_selected (AtkTable *table, - gint row); - -Gets a boolean value indicating whether the specified row -is selected - - -table : - a GObject instance that implements AtkTableIface - -row : - a gint representing a row in table - -Returns : a gboolean representing if the row is selected, or 0 -if value does not implement this interface. - - - -atk_table_is_selected () -atk_table_is_selectedgboolean atk_table_is_selected (AtkTable *table, - gint row, - gint column); - -Gets a boolean value indicating whether the accessible object -at the specified row and column is selected - - -table : - a GObject instance that implements AtkTableIface - -row : - a gint representing a row in table - -column : - a gint representing a column in table - -Returns : a gboolean representing if the cell is selected, or 0 -if value does not implement this interface. - - - -atk_table_add_column_selection () -atk_table_add_column_selectiongboolean atk_table_add_column_selection (AtkTable *table, - gint column); - -Adds the specified column to the selection. - - -table : - a GObject instance that implements AtkTableIface - -column : - a gint representing a column in table - -Returns : a gboolean representing if the column was successfully added to -the selection, or 0 if value does not implement this interface. - - - -atk_table_add_row_selection () -atk_table_add_row_selectiongboolean atk_table_add_row_selection (AtkTable *table, - gint row); - -Adds the specified row to the selection. - - -table : - a GObject instance that implements AtkTableIface - -row : - a gint representing a row in table - -Returns : a gboolean representing if row was successfully added to selection, -or 0 if value does not implement this interface. - - - -atk_table_remove_column_selection () -atk_table_remove_column_selectiongboolean atk_table_remove_column_selection (AtkTable *table, - gint column); - -Adds the specified column to the selection. - - -table : - a GObject instance that implements AtkTableIface - -column : - a gint representing a column in table - -Returns : a gboolean representing if the column was successfully removed from -the selection, or 0 if value does not implement this interface. - - - -atk_table_remove_row_selection () -atk_table_remove_row_selectiongboolean atk_table_remove_row_selection (AtkTable *table, - gint row); - -Removes the specified row from the selection. - - -table : - a GObject instance that implements AtkTableIface - -row : - a gint representing a row in table - -Returns : a gboolean representing if the row was successfully removed from -the selection, or 0 if value does not implement this interface. - - - - - - -Signal Details -The <literal>"column-deleted"</literal> signal -AtkTable::column-deletedvoid user_function (AtkTable *atktable, - gint arg1, - gint arg2, - gpointer user_data) : Run Last - -The "column-deleted" signal is emitted by an object which implements the -AtkTable interface when a column is deleted. - -atktable : -the object which received the signal. - -arg1 : -The index of the first column deleted. - -arg2 : -The number of columns deleted. - -user_data : -user data set when the signal handler was connected. -The <literal>"column-inserted"</literal> signal -AtkTable::column-insertedvoid user_function (AtkTable *atktable, - gint arg1, - gint arg2, - gpointer user_data) : Run Last - -The "column-inserted" signal is emitted by an object which implements the -AtkTable interface when a column is inserted. - -atktable : -the object which received the signal. - -arg1 : -The index of the column inserted. - -arg2 : -The number of colums inserted. - -user_data : -user data set when the signal handler was connected. -The <literal>"column-reordered"</literal> signal -AtkTable::column-reorderedvoid user_function (AtkTable *atktable, - gpointer user_data) : Run Last - -The "column-reordered" signal is emitted by an object which implements the -AtkTable interface when the columns are reordered. - -atktable : -the object which received the signal. - -user_data : -user data set when the signal handler was connected. -The <literal>"model-changed"</literal> signal -AtkTable::model-changedvoid user_function (AtkTable *atktable, - gpointer user_data) : Run Last - -The "model-changed" signal is emitted by an object which implements the -AtkTable interface when the model displayed by the table changes. - -atktable : -the object which received the signal. - -user_data : -user data set when the signal handler was connected. -The <literal>"row-deleted"</literal> signal -AtkTable::row-deletedvoid user_function (AtkTable *atktable, - gint arg1, - gint arg2, - gpointer user_data) : Run Last - -The "row-deleted" signal is emitted by an object which implements the -AtkTable interface when a column is inserted. - -atktable : -the object which received the signal. - -arg1 : -The index of the first row deleted. - -arg2 : -The number of rows deleted. - -user_data : -user data set when the signal handler was connected. -The <literal>"row-inserted"</literal> signal -AtkTable::row-insertedvoid user_function (AtkTable *atktable, - gint arg1, - gint arg2, - gpointer user_data) : Run Last - -The "row-inserted" signal is emitted by an object which implements the -AtkTable interface when a column is inserted. - -atktable : -the object which received the signal. - -arg1 : -The index of the first row deleted. - -arg2 : -The number of rows deleted. - -user_data : -user data set when the signal handler was connected. -The <literal>"row-reordered"</literal> signal -AtkTable::row-reorderedvoid user_function (AtkTable *atktable, - gpointer user_data) : Run Last - -The "row-reordered" signal is emitted by an object which implements the -AtkTable interface when the columns are reordered. - -atktable : -the object which received the signal. - -user_data : -user data set when the signal handler was connected. - - - - - -See Also - -AtkObject, ATK_STATE_TRANSIENT - - - - diff -Nru atk1.0-1.30.0/docs/xml/atktext.xml atk1.0-2.2.0/docs/xml/atktext.xml --- atk1.0-1.30.0/docs/xml/atktext.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atktext.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1311 +0,0 @@ - - -AtkText -3 -ATK Library - - - -AtkText -The ATK interface implemented by components with text content. - - - -Synopsis - - - AtkText; -enum AtkTextBoundary; -enum AtkTextClipType; - AtkTextRange; - AtkTextRectangle; - AtkAttribute; -typedef AtkAttributeSet; -enum AtkTextAttribute; -gchar* atk_text_get_text (AtkText *text, - gint start_offset, - gint end_offset); -gunichar atk_text_get_character_at_offset (AtkText *text, - gint offset); -gchar* atk_text_get_text_after_offset (AtkText *text, - gint offset, - AtkTextBoundary boundary_type, - gint *start_offset, - gint *end_offset); -gchar* atk_text_get_text_at_offset (AtkText *text, - gint offset, - AtkTextBoundary boundary_type, - gint *start_offset, - gint *end_offset); -gchar* atk_text_get_text_before_offset (AtkText *text, - gint offset, - AtkTextBoundary boundary_type, - gint *start_offset, - gint *end_offset); -gint atk_text_get_caret_offset (AtkText *text); -void atk_text_get_character_extents (AtkText *text, - gint offset, - gint *x, - gint *y, - gint *width, - gint *height, - AtkCoordType coords); -AtkAttributeSet* atk_text_get_run_attributes (AtkText *text, - gint offset, - gint *start_offset, - gint *end_offset); -AtkAttributeSet* atk_text_get_default_attributes (AtkText *text); -gint atk_text_get_character_count (AtkText *text); -gint atk_text_get_offset_at_point (AtkText *text, - gint x, - gint y, - AtkCoordType coords); -AtkTextRange** atk_text_get_bounded_ranges (AtkText *text, - AtkTextRectangle *rect, - AtkCoordType coord_type, - AtkTextClipType x_clip_type, - AtkTextClipType y_clip_type); -void atk_text_get_range_extents (AtkText *text, - gint start_offset, - gint end_offset, - AtkCoordType coord_type, - AtkTextRectangle *rect); -void atk_text_free_ranges (AtkTextRange **ranges); -gint atk_text_get_n_selections (AtkText *text); -gchar* atk_text_get_selection (AtkText *text, - gint selection_num, - gint *start_offset, - gint *end_offset); -gboolean atk_text_add_selection (AtkText *text, - gint start_offset, - gint end_offset); -gboolean atk_text_remove_selection (AtkText *text, - gint selection_num); -gboolean atk_text_set_selection (AtkText *text, - gint selection_num, - gint start_offset, - gint end_offset); -gboolean atk_text_set_caret_offset (AtkText *text, - gint offset); -void atk_attribute_set_free (AtkAttributeSet *attrib_set); -AtkTextAttribute atk_text_attribute_register (const gchar *name); -const gchar* atk_text_attribute_get_name (AtkTextAttribute attr); -AtkTextAttribute atk_text_attribute_for_name (const gchar *name); -const gchar* atk_text_attribute_get_value (AtkTextAttribute attr, - gint index_); - - - - -Object Hierarchy - - GInterface - +----AtkText - - - - - - - -Known Implementations - -AtkText is implemented by - AtkNoOpObject. - - - - -Signals - - "text-attributes-changed" : Run Last - "text-caret-moved" : Run Last - "text-changed" : Run Last / Has Details - "text-selection-changed" : Run Last - - - - - -Description - -AtkText should be implemented by AtkObjects on behalf of widgets that -have text content which is either attributed or otherwise non-trivial. -AtkObjects whose text content is simple, unattributed, and very brief -may expose that content via atk_object_get_name instead; however if the -text is editable, multi-line, typically longer than three or four words, -attributed, selectable, or if the object already uses the 'name' ATK -property for other information, the AtkText interface should be used -to expose the text content. In the case of editable text content, -AtkEditableText (a subtype of the AtkText interface) should be -implemented instead. - - -AtkText provides not only traversal facilities and change notification -for text content, but also caret tracking and glyph bounding box -calculations. Note that the text strings are exposed as UTF-8, and are -therefore potentially multi-byte, and caret-to-byte offset mapping makes -no assumptions about the character length; also bounding box -glyph-to-offset mapping may be complex for languages which use ligatures. - - - - -Details - -AtkText -AtkTexttypedef struct _AtkText AtkText; - -The AtkText structure does not contain any fields. - - -enum AtkTextBoundary -AtkTextBoundarytypedef enum { - ATK_TEXT_BOUNDARY_CHAR, - ATK_TEXT_BOUNDARY_WORD_START, - ATK_TEXT_BOUNDARY_WORD_END, - ATK_TEXT_BOUNDARY_SENTENCE_START, - ATK_TEXT_BOUNDARY_SENTENCE_END, - ATK_TEXT_BOUNDARY_LINE_START, - ATK_TEXT_BOUNDARY_LINE_END -} AtkTextBoundary; - - -Text boundary types used for specifying boundaries for regions of text - - - -ATK_TEXT_BOUNDARY_CHAR - Boundary is the boundary between characters -(including non-printing characters) - - - -ATK_TEXT_BOUNDARY_WORD_START - Boundary is the start (i.e. first character) of a word. - - - -ATK_TEXT_BOUNDARY_WORD_END - Boundary is the end (i.e. last character) of a word. - - - -ATK_TEXT_BOUNDARY_SENTENCE_START - Boundary is the first character in a sentence. - - - -ATK_TEXT_BOUNDARY_SENTENCE_END - Boundary is the last (terminal) character in a sentence; -in languages which use "sentence stop" punctuation such as English, the boundary is thus the -'.', '?', or similar terminal punctuation character. - - - -ATK_TEXT_BOUNDARY_LINE_START - Boundary is the initial character of the content or a -character immediately following a newline, linefeed, or return character. - - - -ATK_TEXT_BOUNDARY_LINE_END - Boundary is the linefeed, or return character. - - - - -enum AtkTextClipType -AtkTextClipTypetypedef enum { - ATK_TEXT_CLIP_NONE, - ATK_TEXT_CLIP_MIN, - ATK_TEXT_CLIP_MAX, - ATK_TEXT_CLIP_BOTH -} AtkTextClipType; - - -Describes the type of clipping required. - - - -ATK_TEXT_CLIP_NONE - No clipping to be done - - - -ATK_TEXT_CLIP_MIN - Text clipped by min coordinate is omitted - - - -ATK_TEXT_CLIP_MAX - Text clipped by max coordinate is omitted - - - -ATK_TEXT_CLIP_BOTH - Only text fully within mix/max bound is retained - - - - -AtkTextRange -AtkTextRangetypedef struct { - AtkTextRectangle bounds; - gint start_offset; - gint end_offset; - gchar* content; -} AtkTextRange; - - -A structure used to describe a text range. - - - -AtkTextRectangle bounds; - A rectangle giving the bounds of the text range - - - -gint start_offset; - The start offset of a AtkTextRange - - - -gint end_offset; - The end offset of a AtkTextRange - - - -gchar *content; - The text in the text range - - - - -AtkTextRectangle -AtkTextRectangletypedef struct { - gint x; - gint y; - gint width; - gint height; -} AtkTextRectangle; - - -A structure used to store a rectangle used by AtkText. - - - -gint x; - The horizontal coordinate of a rectangle - - - -gint y; - The vertical coordinate of a rectangle - - - -gint width; - The width of a rectangle - - - -gint height; - The height of a rectangle - - - - -AtkAttribute -AtkAttributetypedef struct { - gchar* name; - gchar* value; -} AtkAttribute; - - -A string name/value pair representing a text attribute. - - - -gchar *name; - The attribute name. Call atk_text_attr_get_name() - - - -gchar *value; - the value of the attribute, represented as a string. -Call atk_text_attr_get_value() for those which are strings. -For values which are numbers, the string representation of the number -is in value. - - - - -AtkAttributeSet -AtkAttributeSettypedef GSList AtkAttributeSet; - - -This is a singly-linked list (a GSList) of AtkAttribute. It is -used by atk_text_get_run_attributes(), atk_text_get_default_attributes() -and atk_editable_text_set_run_attributes() - - - -enum AtkTextAttribute -AtkTextAttributetypedef enum -{ - ATK_TEXT_ATTR_INVALID = 0, - ATK_TEXT_ATTR_LEFT_MARGIN, - ATK_TEXT_ATTR_RIGHT_MARGIN, - ATK_TEXT_ATTR_INDENT, - ATK_TEXT_ATTR_INVISIBLE, - ATK_TEXT_ATTR_EDITABLE, - ATK_TEXT_ATTR_PIXELS_ABOVE_LINES, - ATK_TEXT_ATTR_PIXELS_BELOW_LINES, - ATK_TEXT_ATTR_PIXELS_INSIDE_WRAP, - ATK_TEXT_ATTR_BG_FULL_HEIGHT, - ATK_TEXT_ATTR_RISE, - ATK_TEXT_ATTR_UNDERLINE, - ATK_TEXT_ATTR_STRIKETHROUGH, - ATK_TEXT_ATTR_SIZE, - ATK_TEXT_ATTR_SCALE, - ATK_TEXT_ATTR_WEIGHT, - ATK_TEXT_ATTR_LANGUAGE, - ATK_TEXT_ATTR_FAMILY_NAME, - ATK_TEXT_ATTR_BG_COLOR, - ATK_TEXT_ATTR_FG_COLOR, - ATK_TEXT_ATTR_BG_STIPPLE, - ATK_TEXT_ATTR_FG_STIPPLE, - ATK_TEXT_ATTR_WRAP_MODE, - ATK_TEXT_ATTR_DIRECTION, - ATK_TEXT_ATTR_JUSTIFICATION, - ATK_TEXT_ATTR_STRETCH, - ATK_TEXT_ATTR_VARIANT, - ATK_TEXT_ATTR_STYLE, - ATK_TEXT_ATTR_LAST_DEFINED -} AtkTextAttribute; - - -Describes the text attributes supported - - - -ATK_TEXT_ATTR_INVALID - Invalid attribute - - - -ATK_TEXT_ATTR_LEFT_MARGIN - The pixel width of the left margin - - - -ATK_TEXT_ATTR_RIGHT_MARGIN - The pixel width of the right margin - - - -ATK_TEXT_ATTR_INDENT - The number of pixels that the text is indented - - - -ATK_TEXT_ATTR_INVISIBLE - Either "true" or "false" indicating whether text is visible or not - - - -ATK_TEXT_ATTR_EDITABLE - Either "true" or "false" indicating whether text is editable or not - - - -ATK_TEXT_ATTR_PIXELS_ABOVE_LINES - Pixels of blank space to leave above each newline-terminated line. - - - -ATK_TEXT_ATTR_PIXELS_BELOW_LINES - Pixels of blank space to leave below each newline-terminated line. - - - -ATK_TEXT_ATTR_PIXELS_INSIDE_WRAP - Pixels of blank space to leave between wrapped lines inside the same newline-terminated line (paragraph). - - - -ATK_TEXT_ATTR_BG_FULL_HEIGHT - "true" or "false" whether to make the background color for each character the height of the highest font used on the current line, or the height of the font used for the current character. - - - -ATK_TEXT_ATTR_RISE - Number of pixels that the characters are risen above the baseline - - - -ATK_TEXT_ATTR_UNDERLINE - "none", "single", "double" or "low" - - - -ATK_TEXT_ATTR_STRIKETHROUGH - "true" or "false" whether the text is strikethrough - - - -ATK_TEXT_ATTR_SIZE - The size of the characters. - - - -ATK_TEXT_ATTR_SCALE - The scale of the characters. The value is a string representation of a double - - - -ATK_TEXT_ATTR_WEIGHT - The weight of the characters. - - - -ATK_TEXT_ATTR_LANGUAGE - The language used - - - -ATK_TEXT_ATTR_FAMILY_NAME - The font family name - - - -ATK_TEXT_ATTR_BG_COLOR - The background color. The value is an RGB value of the format "u,u,u" - - - -ATK_TEXT_ATTR_FG_COLOR -The foreground color. The value is an RGB value of the format "u,u,u" - - - -ATK_TEXT_ATTR_BG_STIPPLE - "true" if a GdkBitmap is set for stippling the background color. - - - -ATK_TEXT_ATTR_FG_STIPPLE - "true" if a GdkBitmap is set for stippling the foreground color. - - - -ATK_TEXT_ATTR_WRAP_MODE - The wrap mode of the text, if any. Values are "none", "char", "word", or "word_char". - - - -ATK_TEXT_ATTR_DIRECTION - The direction of the text, if set. Values are "none", "ltr" or "rtl" - - - -ATK_TEXT_ATTR_JUSTIFICATION - The justification of the text, if set. Values are "left", "right", "center" or "fill" - - - -ATK_TEXT_ATTR_STRETCH - The stretch of the text, if set. Values are "ultra_condensed", "extra_condensed", "condensed", "semi_condensed", "normal", "semi_expanded", "expanded", "extra_expanded" or "ultra_expanded" - - - -ATK_TEXT_ATTR_VARIANT - The capitalization variant of the text, if set. Values are "normal" or "small_caps" - - - -ATK_TEXT_ATTR_STYLE - The slant style of the text, if set. Values are "normal", "oblique" or "italic" - - - -ATK_TEXT_ATTR_LAST_DEFINED - not a valid text attribute, used for finding end of enumeration - - - - -atk_text_get_text () -atk_text_get_textgchar* atk_text_get_text (AtkText *text, - gint start_offset, - gint end_offset); - -Gets the specified text. - - -text : - an AtkText - -start_offset : - start position - -end_offset : - end position - -Returns : the text from start_offset up to, but not including end_offset. - - - -atk_text_get_character_at_offset () -atk_text_get_character_at_offsetgunichar atk_text_get_character_at_offset (AtkText *text, - gint offset); - -Gets the specified text. - - -text : - an AtkText - -offset : - position - -Returns : the character at offset. - - - -atk_text_get_text_after_offset () -atk_text_get_text_after_offsetgchar* atk_text_get_text_after_offset (AtkText *text, - gint offset, - AtkTextBoundary boundary_type, - gint *start_offset, - gint *end_offset); - -Gets the specified text. - - -If the boundary_type if ATK_TEXT_BOUNDARY_CHAR the character after the -offset is returned. - - -If the boundary_type is ATK_TEXT_BOUNDARY_WORD_START the returned string -is from the word start after the offset to the next word start. - - -The returned string will contain the word after the offset if the offset -is inside a word or if the offset is not inside a word. - - -If the boundary_type is ATK_TEXT_BOUNDARY_WORD_END the returned string -is from the word end at or after the offset to the next work end. - - -The returned string will contain the word after the offset if the offset -is inside a word and will contain the word after the word after the offset -if the offset is not inside a word. - - -If the boundary type is ATK_TEXT_BOUNDARY_SENTENCE_START the returned -string is from the sentence start after the offset to the next sentence -start. - - -The returned string will contain the sentence after the offset if the offset -is inside a sentence or if the offset is not inside a sentence. - - -If the boundary_type is ATK_TEXT_BOUNDARY_SENTENCE_END the returned string -is from the sentence end at or after the offset to the next sentence end. - - -The returned string will contain the sentence after the offset if the offset -is inside a sentence and will contain the sentence after the sentence -after the offset if the offset is not inside a sentence. - - -If the boundary type is ATK_TEXT_BOUNDARY_LINE_START the returned -string is from the line start after the offset to the next line start. - - -If the boundary_type is ATK_TEXT_BOUNDARY_LINE_END the returned string -is from the line end at or after the offset to the next line start. - - -text : - an AtkText - -offset : - position - -boundary_type : - An AtkTextBoundary - -start_offset : - the start offset of the returned string - -end_offset : - the offset of the first character after the - returned substring - -Returns : the text after offset bounded by the specified boundary_type. - - - -atk_text_get_text_at_offset () -atk_text_get_text_at_offsetgchar* atk_text_get_text_at_offset (AtkText *text, - gint offset, - AtkTextBoundary boundary_type, - gint *start_offset, - gint *end_offset); - -Gets the specified text. - - -If the boundary_type if ATK_TEXT_BOUNDARY_CHAR the character at the -offset is returned. - - -If the boundary_type is ATK_TEXT_BOUNDARY_WORD_START the returned string -is from the word start at or before the offset to the word start after -the offset. - - -The returned string will contain the word at the offset if the offset -is inside a word and will contain the word before the offset if the -offset is not inside a word. - - -If the boundary_type is ATK_TEXT_BOUNDARY_WORD_END the returned string -is from the word end before the offset to the word end at or after the -offset. - - -The returned string will contain the word at the offset if the offset -is inside a word and will contain the word after to the offset if the -offset is not inside a word. - - -If the boundary type is ATK_TEXT_BOUNDARY_SENTENCE_START the returned -string is from the sentence start at or before the offset to the sentence -start after the offset. - - -The returned string will contain the sentence at the offset if the offset -is inside a sentence and will contain the sentence before the offset -if the offset is not inside a sentence. - - -If the boundary_type is ATK_TEXT_BOUNDARY_SENTENCE_END the returned string -is from the sentence end before the offset to the sentence end at or -after the offset. - - -The returned string will contain the sentence at the offset if the offset -is inside a sentence and will contain the sentence after the offset -if the offset is not inside a sentence. - - -If the boundary type is ATK_TEXT_BOUNDARY_LINE_START the returned -string is from the line start at or before the offset to the line -start after the offset. - - -If the boundary_type is ATK_TEXT_BOUNDARY_LINE_END the returned string -is from the line end before the offset to the line end at or after -the offset. - - -text : - an AtkText - -offset : - position - -boundary_type : - An AtkTextBoundary - -start_offset : - the start offset of the returned string - -end_offset : - the offset of the first character after the - returned substring - -Returns : the text at offset bounded by the specified boundary_type. - - - -atk_text_get_text_before_offset () -atk_text_get_text_before_offsetgchar* atk_text_get_text_before_offset (AtkText *text, - gint offset, - AtkTextBoundary boundary_type, - gint *start_offset, - gint *end_offset); - -Gets the specified text. - - -If the boundary_type if ATK_TEXT_BOUNDARY_CHAR the character before the -offset is returned. - - -If the boundary_type is ATK_TEXT_BOUNDARY_WORD_START the returned string -is from the word start before the word start before the offset to -the word start before the offset. - - -The returned string will contain the word before the offset if the offset -is inside a word and will contain the word before the word before the -offset if the offset is not inside a word. - - -If the boundary_type is ATK_TEXT_BOUNDARY_WORD_END the returned string -is from the word end before the word end at or before the offset to the -word end at or before the offset. - - -The returned string will contain the word before the offset if the offset -is inside a word or if the offset is not inside a word. - - -If the boundary type is ATK_TEXT_BOUNDARY_SENTENCE_START the returned -string is from the sentence start before the sentence start before -the offset to the sentence start before the offset. - - -The returned string will contain the sentence before the offset if the -offset is inside a sentence and will contain the sentence before the -sentence before the offset if the offset is not inside a sentence. - - -If the boundary_type is ATK_TEXT_BOUNDARY_SENTENCE_END the returned string -is from the sentence end before the sentence end at or before the offset to -the sentence end at or before the offset. - - -The returned string will contain the sentence before the offset if the -offset is inside a sentence or if the offset is not inside a sentence. - - -If the boundary type is ATK_TEXT_BOUNDARY_LINE_START the returned -string is from the line start before the line start ar or before the offset -to the line start ar or before the offset. - - -If the boundary_type is ATK_TEXT_BOUNDARY_LINE_END the returned string -is from the line end before the line end before the offset to the -line end before the offset. - - -text : - an AtkText - -offset : - position - -boundary_type : - An AtkTextBoundary - -start_offset : - the start offset of the returned string - -end_offset : - the offset of the first character after the - returned substring - -Returns : the text before offset bounded by the specified boundary_type. - - - -atk_text_get_caret_offset () -atk_text_get_caret_offsetgint atk_text_get_caret_offset (AtkText *text); - -Gets the offset position of the caret (cursor). - - -text : - an AtkText - -Returns : the offset position of the caret (cursor). - - - -atk_text_get_character_extents () -atk_text_get_character_extentsvoid atk_text_get_character_extents (AtkText *text, - gint offset, - gint *x, - gint *y, - gint *width, - gint *height, - AtkCoordType coords); - -Get the bounding box containing the glyph representing the character at - a particular text offset. - - -text : - an AtkText - -offset : - The offset of the text character for which bounding information is required. - -x : - Pointer for the x cordinate of the bounding box - -y : - Pointer for the y cordinate of the bounding box - -width : - Pointer for the width of the bounding box - -height : - Pointer for the height of the bounding box - -coords : - specify whether coordinates are relative to the screen or widget window - - - -atk_text_get_run_attributes () -atk_text_get_run_attributesAtkAttributeSet* atk_text_get_run_attributes (AtkText *text, - gint offset, - gint *start_offset, - gint *end_offset); - -Creates an AtkAttributeSet which consists of the attributes explicitly -set at the position offset in the text. start_offset and end_offset are -set to the start and end of the range around offset where the attributes are -invariant. Note that end_offset is the offset of the first character -after the range. See the enum AtkTextAttribute for types of text -attributes that can be returned. Note that other attributes may also be -returned. - - -text : - an AtkText - -offset : - the offset at which to get the attributes, -1 means the offset of -the character to be inserted at the caret location. - -start_offset : - the address to put the start offset of the range - -end_offset : - the address to put the end offset of the range - -Returns : an AtkAttributeSet which contains the attributes explicitly set -at offset. This AtkAttributeSet should be freed by a call to -atk_attribute_set_free(). - - - -atk_text_get_default_attributes () -atk_text_get_default_attributesAtkAttributeSet* atk_text_get_default_attributes (AtkText *text); - -Creates an AtkAttributeSet which consists of the default values of -attributes for the text. See the enum AtkTextAttribute for types of text -attributes that can be returned. Note that other attributes may also be -returned. - - -text : - an AtkText - -Returns : an AtkAttributeSet which contains the default values of attributes. -at offset. This AtkAttributeSet should be freed by a call to -atk_attribute_set_free(). - - - -atk_text_get_character_count () -atk_text_get_character_countgint atk_text_get_character_count (AtkText *text); - -Gets the character count. - - -text : - an AtkText - -Returns : the number of characters. - - - -atk_text_get_offset_at_point () -atk_text_get_offset_at_pointgint atk_text_get_offset_at_point (AtkText *text, - gint x, - gint y, - AtkCoordType coords); - -Gets the offset of the character located at coordinates x and y. x and y -are interpreted as being relative to the screen or this widget's window -depending on coords. - - -text : - an AtkText - -x : - screen x-position of character - -y : - screen y-position of character - -coords : - specify whether coordinates are relative to the screen or -widget window - -Returns : the offset to the character which is located at -the specified x and y coordinates. - - - -atk_text_get_bounded_ranges () -atk_text_get_bounded_rangesAtkTextRange** atk_text_get_bounded_ranges (AtkText *text, - AtkTextRectangle *rect, - AtkCoordType coord_type, - AtkTextClipType x_clip_type, - AtkTextClipType y_clip_type); - -Get the ranges of text in the specified bounding box. - - -text : - an AtkText - -rect : - An AtkTextRectagle giving the dimensions of the bounding box. - -coord_type : - Specify whether coordinates are relative to the screen or widget window. - -x_clip_type : - Specify the horizontal clip type. - -y_clip_type : - Specify the vertical clip type. - -Returns : Array of AtkTextRange. The last element of the array returned - by this function will be NULL. - -Since 1.3 - -atk_text_get_range_extents () -atk_text_get_range_extentsvoid atk_text_get_range_extents (AtkText *text, - gint start_offset, - gint end_offset, - AtkCoordType coord_type, - AtkTextRectangle *rect); - -Get the bounding box for text within the specified range. - - -text : - an AtkText - -start_offset : - The offset of the first text character for which boundary - information is required. - -end_offset : - The offset of the text character after the last character - for which boundary information is required. - -coord_type : - Specify whether coordinates are relative to the screen or widget window. - -rect : - A pointer to a AtkTextRectangle which is filled in by this function. - -Since 1.3 - -atk_text_free_ranges () -atk_text_free_rangesvoid atk_text_free_ranges (AtkTextRange **ranges); - -Frees the memory associated with an array of AtkTextRange. It is assumed -that the array was returned by the function atk_text_get_bounded_ranges -and is NULL terminated. - - -ranges : - A pointer to an array of AtkTextRange which is to be freed. - -Since 1.3 - -atk_text_get_n_selections () -atk_text_get_n_selectionsgint atk_text_get_n_selections (AtkText *text); - -Gets the number of selected regions. - - -text : - an AtkText - -Returns : The number of selected regions, or -1 if a failure - occurred. - - - -atk_text_get_selection () -atk_text_get_selectiongchar* atk_text_get_selection (AtkText *text, - gint selection_num, - gint *start_offset, - gint *end_offset); - -Gets the text from the specified selection. - - -text : - an AtkText - -selection_num : - The selection number. The selected regions are -assigned numbers that correspond to how far the region is from the -start of the text. The selected region closest to the beginning -of the text region is assigned the number 0, etc. Note that adding, -moving or deleting a selected region can change the numbering. - -start_offset : - passes back the start position of the selected region - -end_offset : - passes back the end position of (e.g. offset immediately past) -the selected region - -Returns : the selected text. - - - -atk_text_add_selection () -atk_text_add_selectiongboolean atk_text_add_selection (AtkText *text, - gint start_offset, - gint end_offset); - -Adds a selection bounded by the specified offsets. - - -text : - an AtkText - -start_offset : - the start position of the selected region - -end_offset : - the offset of the first character after the selected region. - -Returns : TRUE if success, FALSE otherwise - - - -atk_text_remove_selection () -atk_text_remove_selectiongboolean atk_text_remove_selection (AtkText *text, - gint selection_num); - -Removes the specified selection. - - -text : - an AtkText - -selection_num : - The selection number. The selected regions are -assigned numbers that correspond to how far the region is from the -start of the text. The selected region closest to the beginning -of the text region is assigned the number 0, etc. Note that adding, -moving or deleting a selected region can change the numbering. - -Returns : TRUE if success, FALSE otherwise - - - -atk_text_set_selection () -atk_text_set_selectiongboolean atk_text_set_selection (AtkText *text, - gint selection_num, - gint start_offset, - gint end_offset); - -Changes the start and end offset of the specified selection. - - -text : - an AtkText - -selection_num : - The selection number. The selected regions are -assigned numbers that correspond to how far the region is from the -start of the text. The selected region closest to the beginning -of the text region is assigned the number 0, etc. Note that adding, -moving or deleting a selected region can change the numbering. - -start_offset : - the new start position of the selection - -end_offset : - the new end position of (e.g. offset immediately past) -the selection - -Returns : TRUE if success, FALSE otherwise - - - -atk_text_set_caret_offset () -atk_text_set_caret_offsetgboolean atk_text_set_caret_offset (AtkText *text, - gint offset); - -Sets the caret (cursor) position to the specified offset. - - -text : - an AtkText - -offset : - position - -Returns : TRUE if success, FALSE otherwise. - - - -atk_attribute_set_free () -atk_attribute_set_freevoid atk_attribute_set_free (AtkAttributeSet *attrib_set); - -Frees the memory used by an AtkAttributeSet, including all its -AtkAttributes. - - -attrib_set : - The AtkAttributeSet to free - - - -atk_text_attribute_register () -atk_text_attribute_registerAtkTextAttribute atk_text_attribute_register (const gchar *name); - -Associate name with a new AtkTextAttribute - - -name : - a name string - -Returns : an AtkTextAttribute associated with name - - - -atk_text_attribute_get_name () -atk_text_attribute_get_nameconst gchar* atk_text_attribute_get_name (AtkTextAttribute attr); - -Gets the name corresponding to the AtkTextAttribute - - -attr : - The AtkTextAttribute whose name is required - -Returns : a string containing the name; this string should not be freed - - - -atk_text_attribute_for_name () -atk_text_attribute_for_nameAtkTextAttribute atk_text_attribute_for_name (const gchar *name); - -Get the AtkTextAttribute type corresponding to a text attribute name. - - -name : - a string which is the (non-localized) name of an ATK text attribute. - -Returns : the AtkTextAttribute enumerated type corresponding to the specified -name, - or ATK_TEXT_ATTRIBUTE_INVALID if no matching text attribute is found. - - - -atk_text_attribute_get_value () -atk_text_attribute_get_valueconst gchar* atk_text_attribute_get_value (AtkTextAttribute attr, - gint index_); - -Gets the value for the index of the AtkTextAttribute - - -attr : - The AtkTextAttribute for which a value is required - -index_ : - The index of the required value - -Returns : a string containing the value; this string should not be freed; -NULL is returned if there are no values maintained for the attr value. - - - - - - -Signal Details -The <literal>"text-attributes-changed"</literal> signal -AtkText::text-attributes-changedvoid user_function (AtkText *atktext, - gpointer user_data) : Run Last - -The "text-attributes-changed" signal is emitted when the text attributes of -the text of an object which implements AtkText changes. - -atktext : -the object which received the signal. - -user_data : -user data set when the signal handler was connected. -The <literal>"text-caret-moved"</literal> signal -AtkText::text-caret-movedvoid user_function (AtkText *atktext, - gint arg1, - gpointer user_data) : Run Last - -The "text-caret-moved" signal is emitted when the caret position of -the text of an object which implements AtkText changes. - -atktext : -the object which received the signal. - -arg1 : -The new position of the text caret. - -user_data : -user data set when the signal handler was connected. -The <literal>"text-changed"</literal> signal -AtkText::text-changedvoid user_function (AtkText *atktext, - gint arg1, - gint arg2, - gpointer user_data) : Run Last / Has Details - -The "text-changed" signal is emitted when the text of the object which -implements the AtkText interface changes, This signal will have a detail -which is either "insert" or "delete" which identifies whether the text -change was an insertion or a deletion - -atktext : -the object which received the signal. - -arg1 : -The position (character offset) of the insertion or deletion. - -arg2 : -The length (in characters) of text inserted or deleted. - -user_data : -user data set when the signal handler was connected. -The <literal>"text-selection-changed"</literal> signal -AtkText::text-selection-changedvoid user_function (AtkText *atktext, - gpointer user_data) : Run Last - -The "text-selection-changed" signal is emitted when the selected text of -an object which implements AtkText changes. - -atktext : -the object which received the signal. - -user_data : -user data set when the signal handler was connected. - - - - - - diff -Nru atk1.0-1.30.0/docs/xml/atkutil.xml atk1.0-2.2.0/docs/xml/atkutil.xml --- atk1.0-1.30.0/docs/xml/atkutil.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkutil.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,402 +0,0 @@ - - -AtkUtil -3 -ATK Library - - - -AtkUtil -A set of ATK utility functions for event and toolkit support. - - - -Synopsis - - - AtkUtil; -enum AtkCoordType; -guint atk_add_focus_tracker (AtkEventListener focus_tracker); -void atk_remove_focus_tracker (guint tracker_id); -void atk_focus_tracker_init (AtkEventListenerInit init); -void atk_focus_tracker_notify (AtkObject *object); -void (*AtkEventListener) (AtkObject *obj); -void (*AtkEventListenerInit) (void); -guint atk_add_global_event_listener (GSignalEmissionHook listener, - const gchar *event_type); -void atk_remove_global_event_listener (guint listener_id); - AtkKeyEventStruct; -enum AtkKeyEventType; -gint (*AtkKeySnoopFunc) (AtkKeyEventStruct *event, - gpointer func_data); -guint atk_add_key_event_listener (AtkKeySnoopFunc listener, - gpointer data); -void atk_remove_key_event_listener (guint listener_id); -AtkObject* atk_get_root (void); -AtkObject* atk_get_focus_object (void); -const gchar * atk_get_toolkit_name (void); -const gchar * atk_get_toolkit_version (void); - - - - -Object Hierarchy - - GObject - +----AtkUtil - - - - - - - - - - - -Description - -A set of ATK utility functions which are used to support event registration of -various types, and obtaining the 'root' accessible of a process and -information about the current ATK implementation and toolkit version. - - - - -Details - -AtkUtil -AtkUtiltypedef struct _AtkUtil AtkUtil; - -The AtkUtil struct does not contain any fields. - - -enum AtkCoordType -AtkCoordTypetypedef enum { - ATK_XY_SCREEN, - ATK_XY_WINDOW -}AtkCoordType; - - -Specifies how xy coordinates are to be interpreted. Used by functions such -as atk_component_get_position() and atk_text_get_character_extents() - - - -ATK_XY_SCREEN - specifies xy coordinates relative to the screen - - - -ATK_XY_WINDOW - specifies xy coordinates relative to the widget's -top-level window - - - - -atk_add_focus_tracker () -atk_add_focus_trackerguint atk_add_focus_tracker (AtkEventListener focus_tracker); - -Adds the specified function to the list of functions to be called -when an object receives focus. - - -focus_tracker : - Function to be added to the list of functions to be called -when an object receives focus. - -Returns : added focus tracker id, or 0 on failure. - - - -atk_remove_focus_tracker () -atk_remove_focus_trackervoid atk_remove_focus_tracker (guint tracker_id); - -Removes the specified focus tracker from the list of functions -to be called when any object receives focus. - - -tracker_id : - the id of the focus tracker to remove - - - -atk_focus_tracker_init () -atk_focus_tracker_initvoid atk_focus_tracker_init (AtkEventListenerInit init); - -Specifies the function to be called for focus tracker initialization. -This function should be called by an implementation of the -ATK interface if any specific work needs to be done to enable -focus tracking. - - -init : - Function to be called for focus tracker initialization - - - -atk_focus_tracker_notify () -atk_focus_tracker_notifyvoid atk_focus_tracker_notify (AtkObject *object); - -Cause the focus tracker functions which have been specified to be -executed for the object. - - -object : - an AtkObject - - - -AtkEventListener () -AtkEventListenervoid (*AtkEventListener) (AtkObject *obj); - -A function which is called when an object emits a matching event, -as used in atk_add_focus_tracker. -Currently the only events for which object-specific handlers are -supported are events of type "focus:". Most clients of ATK will prefer to -attach signal handlers for the various ATK signals instead. - - -see: atk_add_focus_tracker. - - -obj : - An AtkObject instance for whom the callback will be called when -the specified event (e.g. 'focus:') takes place. - - - -AtkEventListenerInit () -AtkEventListenerInitvoid (*AtkEventListenerInit) (void); - -An AtkEventListenerInit function is a special function that is -called in order to initialize the per-object event registration system -used by AtkEventListener, if any preparation is required. - - -see: atk_focus_tracker_init. - - - -atk_add_global_event_listener () -atk_add_global_event_listenerguint atk_add_global_event_listener (GSignalEmissionHook listener, - const gchar *event_type); - -Adds the specified function to the list of functions to be called -when an event of type event_type occurs. - - -listener : - the listener to notify - -event_type : - the type of event for which notification is requested - -Returns : added event listener id, or 0 on failure. - - - -atk_remove_global_event_listener () -atk_remove_global_event_listenervoid atk_remove_global_event_listener (guint listener_id); - -Removes the specified event listener - - -listener_id : - the id of the event listener to remove - - - -AtkKeyEventStruct -AtkKeyEventStructtypedef struct { - gint type; - guint state; - guint keyval; - gint length; - gchar *string; - guint16 keycode; - guint32 timestamp; -} AtkKeyEventStruct; - - -Encapsulates information about a key event. - - - -gint type; - An AtkKeyEventType, generally one of ATK_KEY_EVENT_PRESS or ATK_KEY_EVENT_RELEASE - - - -guint state; - A bitmask representing the state of the modifier keys immediately after the event takes place. -The meaning of the bits is currently defined to match the bitmask used by GDK in -GdkEventType.state, see -http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.htmlGdkEventKey - - - -guint keyval; - A guint representing a keysym value corresponding to those used by GDK and X11: see -/usr/X11/include/keysymdef.h. - - - -gint length; - The length of member string. - - - -gchar *string; - A string containing one of the following: either a string approximating the text that would -result from this keypress, if the key is a control or graphic character, or a symbolic name for this keypress. -Alphanumeric and printable keys will have the symbolic key name in this string member, for instance "A". "0", -"semicolon", "aacute". Keypad keys have the prefix "KP". - - - -guint16 keycode; - The raw hardware code that generated the key event. This field is raraly useful. - - - -guint32 timestamp; - A timestamp in milliseconds indicating when the event occurred. -These timestamps are relative to a starting point which should be considered arbitrary, -and only used to compare the dispatch times of events to one another. - - - - -enum AtkKeyEventType -AtkKeyEventTypetypedef enum -{ - ATK_KEY_EVENT_PRESS, - ATK_KEY_EVENT_RELEASE, - ATK_KEY_EVENT_LAST_DEFINED -} AtkKeyEventType; - - -Specifies the type of a keyboard evemt. - - - -ATK_KEY_EVENT_PRESS - specifies a key press event - - - -ATK_KEY_EVENT_RELEASE - specifies a key release event - - - -ATK_KEY_EVENT_LAST_DEFINED - Not a valid value; specifies end of enumeration - - - - -AtkKeySnoopFunc () -AtkKeySnoopFuncgint (*AtkKeySnoopFunc) (AtkKeyEventStruct *event, - gpointer func_data); - -An AtkKeySnoopFunc is a type of callback which is called whenever a key event occurs, -if registered via atk_add_key_event_listener. It allows for pre-emptive -interception of key events via the return code as described below. - - -event : - an AtkKeyEventStruct containing information about the key event for which -notification is being given. - -func_data : - a block of data which will be passed to the event listener, on notification. - -Returns : TRUE (nonzero) if the event emission should be stopped and the event -discarded without being passed to the normal GUI recipient; FALSE (zero) if the -event dispatch to the client application should proceed as normal. - -see: atk_add_key_event_listener. - - - -atk_add_key_event_listener () -atk_add_key_event_listenerguint atk_add_key_event_listener (AtkKeySnoopFunc listener, - gpointer data); - -Adds the specified function to the list of functions to be called - when a key event occurs. The data element will be passed to the - AtkKeySnoopFunc (listener) as the func_data param, on notification. - - -listener : - the listener to notify - -data : - a gpointer that points to a block of data that should be sent to the registered listeners, - along with the event notification, when it occurs. - -Returns : added event listener id, or 0 on failure. - - - -atk_remove_key_event_listener () -atk_remove_key_event_listenervoid atk_remove_key_event_listener (guint listener_id); - -Removes the specified event listener - - -listener_id : - the id of the event listener to remove - - - -atk_get_root () -atk_get_rootAtkObject* atk_get_root (void); - -Gets the root accessible container for the current application. - - -Returns : the root accessible container for the current application - - - -atk_get_focus_object () -atk_get_focus_objectAtkObject* atk_get_focus_object (void); - -Gets the currently focused object. - - -Returns : the currently focused object for the current application - -Since 1.6 - -atk_get_toolkit_name () -atk_get_toolkit_nameconst gchar * atk_get_toolkit_name (void); - -Gets name string for the GUI toolkit implementing ATK for this application. - - -Returns : name string for the GUI toolkit implementing ATK for this application - - - -atk_get_toolkit_version () -atk_get_toolkit_versionconst gchar * atk_get_toolkit_version (void); - -Gets version string for the GUI toolkit implementing ATK for this application. - - -Returns : version string for the GUI toolkit implementing ATK for this application - - - - - - - - - diff -Nru atk1.0-1.30.0/docs/xml/atkvalue.xml atk1.0-2.2.0/docs/xml/atkvalue.xml --- atk1.0-1.30.0/docs/xml/atkvalue.xml 2010-03-29 22:56:49.000000000 +0000 +++ atk1.0-2.2.0/docs/xml/atkvalue.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,159 +0,0 @@ - - -AtkValue -3 -ATK Library - - - -AtkValue -The ATK interface implemented by valuators and components which display or -select a value from a bounded range of values. - - - -Synopsis - - - AtkValue; -void atk_value_get_current_value (AtkValue *obj, - GValue *value); -void atk_value_get_maximum_value (AtkValue *obj, - GValue *value); -void atk_value_get_minimum_value (AtkValue *obj, - GValue *value); -gboolean atk_value_set_current_value (AtkValue *obj, - const GValue *value); -void atk_value_get_minimum_increment (AtkValue *obj, - GValue *value); - - - - -Object Hierarchy - - GInterface - +----AtkValue - - - - - - - -Known Implementations - -AtkValue is implemented by - AtkNoOpObject. - - - - - - -Description - -AtkValue should be implemented for components which either display a -value from a bounded range, or which allow the user to specify a value -from a bounded range, or both. For instance, most sliders and range -controls, as well as dials, should have AtkObject representations which -implement AtkValue on the component's behalf. AtKValues may be -read-only, in which case attempts to alter the value return FALSE to -indicate failure. - - - - -Details - -AtkValue -AtkValuetypedef struct _AtkValue AtkValue; - -The AtkValue structure does not contain any fields. - - -atk_value_get_current_value () -atk_value_get_current_valuevoid atk_value_get_current_value (AtkValue *obj, - GValue *value); - -Gets the value of this object. - - -obj : - a GObject instance that implements AtkValueIface - -value : - a GValue representing the current accessible value - - - -atk_value_get_maximum_value () -atk_value_get_maximum_valuevoid atk_value_get_maximum_value (AtkValue *obj, - GValue *value); - -Gets the maximum value of this object. - - -obj : - a GObject instance that implements AtkValueIface - -value : - a GValue representing the maximum accessible value - - - -atk_value_get_minimum_value () -atk_value_get_minimum_valuevoid atk_value_get_minimum_value (AtkValue *obj, - GValue *value); - -Gets the minimum value of this object. - - -obj : - a GObject instance that implements AtkValueIface - -value : - a GValue representing the minimum accessible value - - - -atk_value_set_current_value () -atk_value_set_current_valuegboolean atk_value_set_current_value (AtkValue *obj, - const GValue *value); - -Sets the value of this object. - - -obj : - a GObject instance that implements AtkValueIface - -value : - a GValue which is the desired new accessible value. - -Returns : TRUE if new value is successfully set, FALSE otherwise. - - - -atk_value_get_minimum_increment () -atk_value_get_minimum_incrementvoid atk_value_get_minimum_increment (AtkValue *obj, - GValue *value); - -Gets the minimum increment by which the value of this object may be changed. If zero, -the minimum increment is undefined, which may mean that it is limited only by the -floating point precision of the platform. - - -obj : - a GObject instance that implements AtkValueIface - -value : - a GValue representing the minimum increment by which the accessible value may be changed - -Since 1.12 - - - - - - - diff -Nru atk1.0-1.30.0/gtk-doc.make atk1.0-2.2.0/gtk-doc.make --- atk1.0-1.30.0/gtk-doc.make 2010-03-29 22:53:44.000000000 +0000 +++ atk1.0-2.2.0/gtk-doc.make 2011-09-26 22:24:55.000000000 +0000 @@ -5,13 +5,13 @@ #################################### if GTK_DOC_USE_LIBTOOL -GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) +GTKDOC_CC = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +GTKDOC_LD = $(LIBTOOL) --tag=CC --mode=link $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) GTKDOC_RUN = $(LIBTOOL) --mode=execute else -GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -GTKDOC_RUN = sh -c +GTKDOC_CC = $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +GTKDOC_LD = $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) +GTKDOC_RUN = endif # We set GPATH here; this gives us semantics for GNU make @@ -23,15 +23,19 @@ TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE) -EXTRA_DIST = \ +SETUP_FILES = \ $(content_files) \ - $(HTML_IMAGES) \ $(DOC_MAIN_SGML_FILE) \ $(DOC_MODULE)-sections.txt \ $(DOC_MODULE)-overrides.txt -DOC_STAMPS=scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ - $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp +EXTRA_DIST = \ + $(HTML_IMAGES) \ + $(SETUP_FILES) + +DOC_STAMPS=setup-build.stamp scan-build.stamp tmpl-build.stamp sgml-build.stamp \ + html-build.stamp pdf-build.stamp \ + tmpl.stamp sgml.stamp html.stamp pdf.stamp SCANOBJ_FILES = \ $(DOC_MODULE).args \ @@ -48,58 +52,103 @@ CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) if ENABLE_GTK_DOC -all-local: html-build.stamp +if GTK_DOC_BUILD_HTML +HTML_BUILD_STAMP=html-build.stamp +else +HTML_BUILD_STAMP= +endif +if GTK_DOC_BUILD_PDF +PDF_BUILD_STAMP=pdf-build.stamp +else +PDF_BUILD_STAMP= +endif + +all-local: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP) else all-local: endif -docs: html-build.stamp +docs: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP) $(REPORT_FILES): sgml-build.stamp +#### setup #### + +setup-build.stamp: + -@if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ + echo ' DOC Preparing build'; \ + files=`echo $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types`; \ + if test "x$$files" != "x" ; then \ + for file in $$files ; do \ + test -f $(abs_srcdir)/$$file && \ + cp -pu $(abs_srcdir)/$$file $(abs_builddir)/ || true; \ + done; \ + fi; \ + test -d $(abs_srcdir)/tmpl && \ + { cp -rp $(abs_srcdir)/tmpl $(abs_builddir)/; \ + chmod -R u+w $(abs_builddir)/tmpl; } \ + fi + @touch setup-build.stamp + #### scan #### scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB) - @echo 'gtk-doc: Scanning header files' - @-chmod -R u+w $(srcdir) - cd $(srcdir) && \ - gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="$(IGNORE_HFILES)" $(SCAN_OPTIONS) $(EXTRA_HFILES) - if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null 2>&1 ; then \ - CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \ + @echo ' DOC Scanning header files' + @_source_dir='' ; \ + for i in $(DOC_SOURCE_DIR) ; do \ + _source_dir="$${_source_dir} --source-dir=$$i" ; \ + done ; \ + gtkdoc-scan --module=$(DOC_MODULE) --ignore-headers="$(IGNORE_HFILES)" $${_source_dir} $(SCAN_OPTIONS) $(EXTRA_HFILES) + @if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \ + echo " DOC Introspecting gobjects"; \ + scanobj_options=""; \ + gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \ + if test "$(?)" = "0"; then \ + if test "x$(V)" = "x1"; then \ + scanobj_options="--verbose"; \ + fi; \ + fi; \ + CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \ + gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \ else \ - cd $(srcdir) ; \ for i in $(SCANOBJ_FILES) ; do \ - test -f $$i || touch $$i ; \ + test -f $$i || touch $$i ; \ done \ fi - touch scan-build.stamp + @touch scan-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt: scan-build.stamp @true #### templates #### -tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt - @echo 'gtk-doc: Rebuilding template files' - @-chmod -R u+w $(srcdir) - cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) - touch tmpl-build.stamp +tmpl-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt + @echo ' DOC Rebuilding template files' + @gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) + @if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ + if test -w $(abs_srcdir) ; then \ + cp -rp $(abs_builddir)/tmpl $(abs_srcdir)/; \ + fi \ + fi + @touch tmpl-build.stamp tmpl.stamp: tmpl-build.stamp @true -tmpl/*.sgml: +$(srcdir)/tmpl/*.sgml: @true - #### xml #### -sgml-build.stamp: tmpl.stamp $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files) - @echo 'gtk-doc: Building XML' +sgml-build.stamp: tmpl.stamp $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files) + @echo ' DOC Building XML' @-chmod -R u+w $(srcdir) - cd $(srcdir) && \ - gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $(MKDB_OPTIONS) - touch sgml-build.stamp + @_source_dir='' ; \ + for i in $(DOC_SOURCE_DIR) ; do \ + _source_dir="$${_source_dir} --source-dir=$$i" ; \ + done ; \ + gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $${_source_dir} $(MKDB_OPTIONS) + @touch sgml-build.stamp sgml.stamp: sgml-build.stamp @true @@ -107,39 +156,79 @@ #### html #### html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) - @echo 'gtk-doc: Building HTML' - @-chmod -R u+w $(srcdir) - rm -rf $(srcdir)/html - mkdir $(srcdir)/html - mkhtml_options=""; \ + @echo ' DOC Building HTML' + @rm -rf html + @mkdir html + @mkhtml_options=""; \ + gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-verbose"; \ + if test "$(?)" = "0"; then \ + if test "x$(V)" = "x1"; then \ + mkhtml_options="$$mkhtml_options --verbose"; \ + fi; \ + fi; \ gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-path"; \ if test "$(?)" = "0"; then \ - mkhtml_options=--path="$(srcdir)"; \ - fi - cd $(srcdir)/html && gtkdoc-mkhtml $(mkhtml_options) $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) - test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html ) - @echo 'gtk-doc: Fixing cross-references' - cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) - touch html-build.stamp + mkhtml_options="$$mkhtml_options --path=\"$(abs_srcdir)\""; \ + fi; \ + cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) + -@test "x$(HTML_IMAGES)" = "x" || \ + for file in $(HTML_IMAGES) ; do \ + if test -f $(abs_srcdir)/$$file ; then \ + cp $(abs_srcdir)/$$file $(abs_builddir)/html; \ + fi; \ + if test -f $(abs_builddir)/$$file ; then \ + cp $(abs_builddir)/$$file $(abs_builddir)/html; \ + fi; \ + done; + @echo ' DOC Fixing cross-references' + @gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) + @touch html-build.stamp + +#### pdf #### + +pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) + @echo ' DOC Building PDF' + @rm -f $(DOC_MODULE).pdf + @mkpdf_options=""; \ + gtkdoc-mkpdf 2>&1 --help | grep >/dev/null "\-\-verbose"; \ + if test "$(?)" = "0"; then \ + if test "x$(V)" = "x1"; then \ + mkpdf_options="$$mkpdf_options --verbose"; \ + fi; \ + fi; \ + if test "x$(HTML_IMAGES)" != "x"; then \ + for img in $(HTML_IMAGES); do \ + part=`dirname $$img`; \ + echo $$mkpdf_options | grep >/dev/null "\-\-imgdir=$$part "; \ + if test $$? != 0; then \ + mkpdf_options="$$mkpdf_options --imgdir=$$part"; \ + fi; \ + done; \ + fi; \ + gtkdoc-mkpdf --path="$(abs_srcdir)" $$mkpdf_options $(DOC_MODULE) $(DOC_MAIN_SGML_FILE) $(MKPDF_OPTIONS) + @touch pdf-build.stamp ############## clean-local: - rm -f *~ *.bak - rm -rf .libs + @rm -f *~ *.bak + @rm -rf .libs distclean-local: - cd $(srcdir) && \ - rm -rf xml $(REPORT_FILES) \ - $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt + @rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \ + $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt + @if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ + rm -f $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types; \ + rm -rf tmpl; \ + fi maintainer-clean-local: clean - cd $(srcdir) && rm -rf xml html + @rm -rf xml html install-data-local: - installfiles=`echo $(srcdir)/html/*`; \ - if test "$$installfiles" = '$(srcdir)/html/*'; \ - then echo '-- Nothing to install' ; \ + @installfiles=`echo $(builddir)/html/*`; \ + if test "$$installfiles" = '$(builddir)/html/*'; \ + then echo 1>&2 'Nothing to install' ; \ else \ if test -n "$(DOC_MODULE_VERSION)"; then \ installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \ @@ -148,21 +237,18 @@ fi; \ $(mkinstalldirs) $${installdir} ; \ for i in $$installfiles; do \ - echo '-- Installing '$$i ; \ + echo ' $(INSTALL_DATA) '$$i ; \ $(INSTALL_DATA) $$i $${installdir}; \ done; \ if test -n "$(DOC_MODULE_VERSION)"; then \ mv -f $${installdir}/$(DOC_MODULE).devhelp2 \ $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp2; \ - mv -f $${installdir}/$(DOC_MODULE).devhelp \ - $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp; \ fi; \ - ! which gtkdoc-rebase >/dev/null 2>&1 || \ - gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ + $(GTKDOC_REBASE) --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir}; \ fi uninstall-local: - if test -n "$(DOC_MODULE_VERSION)"; then \ + @if test -n "$(DOC_MODULE_VERSION)"; then \ installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \ else \ installdir="$(DESTDIR)$(TARGET_DIR)"; \ @@ -181,16 +267,14 @@ endif dist-hook: dist-check-gtkdoc dist-hook-local - mkdir $(distdir)/tmpl - mkdir $(distdir)/xml - mkdir $(distdir)/html - -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl - -cp $(srcdir)/xml/*.xml $(distdir)/xml - cp $(srcdir)/html/* $(distdir)/html - -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ - -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ - cd $(distdir) && rm -f $(DISTCLEANFILES) - ! which gtkdoc-rebase >/dev/null 2>&1 || \ - gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + @mkdir $(distdir)/tmpl + @mkdir $(distdir)/html + @-cp ./tmpl/*.sgml $(distdir)/tmpl + @cp ./html/* $(distdir)/html + @-cp ./$(DOC_MODULE).pdf $(distdir)/ + @-cp ./$(DOC_MODULE).types $(distdir)/ + @-cp ./$(DOC_MODULE)-sections.txt $(distdir)/ + @cd $(distdir) && rm -f $(DISTCLEANFILES) + @$(GTKDOC_REBASE) --online --relative --html-dir=$(distdir)/html .PHONY : dist-hook-local docs diff -Nru atk1.0-1.30.0/INSTALL atk1.0-2.2.0/INSTALL --- atk1.0-1.30.0/INSTALL 2010-03-29 22:53:48.000000000 +0000 +++ atk1.0-2.2.0/INSTALL 2011-09-26 22:25:00.000000000 +0000 @@ -4,8 +4,10 @@ Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. - This file is free documentation; the Free Software Foundation gives -unlimited permission to copy, distribute and modify it. + Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. This file is offered as-is, +without warranty of any kind. Basic Installation ================== @@ -13,7 +15,11 @@ Briefly, the shell commands `./configure; make; make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for -instructions specific to this package. +instructions specific to this package. Some packages provide this +`INSTALL' file but do not implement all of the features documented +below. The lack of an optional feature in a given package is not +necessarily a bug. More recommendations for GNU packages can be found +in *note Makefile Conventions: (standards)Makefile Conventions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses @@ -42,7 +48,7 @@ you want to change it or regenerate `configure' using a newer version of `autoconf'. -The simplest way to compile this package is: + The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. @@ -53,12 +59,22 @@ 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with - the package. + the package, generally using the just-built uninstalled binaries. 4. Type `make install' to install the programs and any data files and - documentation. + documentation. When installing into a prefix owned by root, it is + recommended that the package be configured and built as a regular + user, and only the `make install' phase executed with root + privileges. + + 5. Optionally, type `make installcheck' to repeat any self-tests, but + this time using the binaries in their final installed location. + This target does not install anything. Running this target as a + regular user, particularly if the prior `make install' required + root privileges, verifies that the installation completed + correctly. - 5. You can remove the program binaries and object files from the + 6. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is @@ -67,8 +83,15 @@ all sorts of other programs in order to regenerate files that came with the distribution. - 6. Often, you can also type `make uninstall' to remove the installed - files again. + 7. Often, you can also type `make uninstall' to remove the installed + files again. In practice, not all packages have tested that + uninstallation works correctly, even though it is required by the + GNU Coding Standards. + + 8. Some packages, particularly those that use Automake, provide `make + distcheck', which can by used by developers to test that all other + targets like `make install' and `make uninstall' work correctly. + This target is generally not run by end users. Compilers and Options ===================== @@ -93,7 +116,8 @@ own directory. To do this, you can use GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the -source code in the directory that `configure' is in and in `..'. +source code in the directory that `configure' is in and in `..'. This +is known as a "VPATH" build. With a non-GNU `make', it is safer to compile the package for one architecture at a time in the source code directory. After you have @@ -120,7 +144,8 @@ By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving -`configure' the option `--prefix=PREFIX'. +`configure' the option `--prefix=PREFIX', where PREFIX must be an +absolute file name. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you @@ -131,15 +156,46 @@ In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories -you can set and what kinds of files go in them. +you can set and what kinds of files go in them. In general, the +default for these options is expressed in terms of `${prefix}', so that +specifying just `--prefix' will affect all of the other directory +specifications that were not explicitly provided. + + The most portable way to affect installation locations is to pass the +correct locations to `configure'; however, many packages provide one or +both of the following shortcuts of passing variable assignments to the +`make install' command line to change installation locations without +having to reconfigure or recompile. + + The first method involves providing an override variable for each +affected directory. For example, `make install +prefix=/alternate/directory' will choose an alternate location for all +directory configuration variables that were expressed in terms of +`${prefix}'. Any directories that were specified during `configure', +but not in terms of `${prefix}', must each be overridden at install +time for the entire installation to be relocated. The approach of +makefile variable overrides for each directory variable is required by +the GNU Coding Standards, and ideally causes no recompilation. +However, some platforms have known limitations with the semantics of +shared libraries that end up requiring recompilation when using this +method, particularly noticeable in packages that use GNU Libtool. + + The second method involves providing the `DESTDIR' variable. For +example, `make install DESTDIR=/alternate/directory' will prepend +`/alternate/directory' before all installation names. The approach of +`DESTDIR' overrides is not required by the GNU Coding Standards, and +does not work on platforms that have drive letters. On the other hand, +it does better at avoiding recompilation issues, and works well even +when some directory options were not specified in terms of `${prefix}' +at `configure' time. + +Optional Features +================= If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. -Optional Features -================= - Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE @@ -152,6 +208,13 @@ you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. + Some packages offer the ability to configure how verbose the +execution of `make' will be. For these packages, running `./configure +--enable-silent-rules' sets the default to minimal output, which can be +overridden with `make V=1'; while running `./configure +--disable-silent-rules' sets the default to verbose, which can be +overridden with `make V=0'. + Particular systems ================== @@ -288,7 +351,7 @@ `configure' can determine that directory automatically. `--prefix=DIR' - Use DIR as the installation prefix. *Note Installation Names:: + Use DIR as the installation prefix. *note Installation Names:: for more details, including other options available for fine-tuning the installation locations. diff -Nru atk1.0-1.30.0/ltmain.sh atk1.0-2.2.0/ltmain.sh --- atk1.0-1.30.0/ltmain.sh 2010-03-29 22:53:43.000000000 +0000 +++ atk1.0-2.2.0/ltmain.sh 2011-09-26 22:24:55.000000000 +0000 @@ -65,7 +65,7 @@ # compiler: $LTCC # compiler flags: $LTCFLAGS # linker: $LD (gnu? $with_gnu_ld) -# $progname: (GNU libtool) 2.2.6 Debian-2.2.6a-4 +# $progname: (GNU libtool) 2.2.6 # automake: $automake_version # autoconf: $autoconf_version # @@ -73,7 +73,7 @@ PROGRAM=ltmain.sh PACKAGE=libtool -VERSION="2.2.6 Debian-2.2.6a-4" +VERSION=2.2.6 TIMESTAMP="" package_revision=1.3012 @@ -116,15 +116,15 @@ : ${CP="cp -f"} : ${ECHO="echo"} -: ${EGREP="/bin/grep -E"} -: ${FGREP="/bin/grep -F"} -: ${GREP="/bin/grep"} +: ${EGREP="/usr/bin/grep -E"} +: ${FGREP="/usr/bin/grep -F"} +: ${GREP="/usr/bin/grep"} : ${LN_S="ln -s"} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} -: ${SED="/bin/sed"} +: ${SED="/opt/local/bin/gsed"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} : ${Xsed="$SED -e 1s/^X//"} @@ -5033,10 +5033,7 @@ case $pass in dlopen) libs="$dlfiles" ;; dlpreopen) libs="$dlprefiles" ;; - link) - libs="$deplibs %DEPLIBS%" - test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" - ;; + link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; esac fi if test "$linkmode,$pass" = "lib,dlpreopen"; then @@ -5347,19 +5344,19 @@ # It is a libtool convenience library, so add in its objects. convenience="$convenience $ladir/$objdir/$old_library" old_convenience="$old_convenience $ladir/$objdir/$old_library" - tmp_libs= - for deplib in $dependency_libs; do - deplibs="$deplib $deplibs" - if $opt_duplicate_deps ; then - case "$tmp_libs " in - *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; - esac - fi - tmp_libs="$tmp_libs $deplib" - done elif test "$linkmode" != prog && test "$linkmode" != lib; then func_fatal_error "\`$lib' is not a convenience library" fi + tmp_libs= + for deplib in $dependency_libs; do + deplibs="$deplib $deplibs" + if $opt_duplicate_deps ; then + case "$tmp_libs " in + *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; + esac + fi + tmp_libs="$tmp_libs $deplib" + done continue fi # $pass = conv @@ -5896,7 +5893,6 @@ if test "$link_all_deplibs" != no; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do - path= case $deplib in -L*) path="$deplib" ;; *.la) @@ -6210,9 +6206,6 @@ revision="$number_minor" lt_irix_increment=no ;; - *) - func_fatal_configuration "$modename: unknown library version type \`$version_type'" - ;; esac ;; no) diff -Nru atk1.0-1.30.0/m4/gtk-doc.m4 atk1.0-2.2.0/m4/gtk-doc.m4 --- atk1.0-1.30.0/m4/gtk-doc.m4 2010-03-29 22:53:44.000000000 +0000 +++ atk1.0-2.2.0/m4/gtk-doc.m4 2011-09-26 22:24:55.000000000 +0000 @@ -6,8 +6,15 @@ dnl GTK_DOC_CHECK([minimum-gtk-doc-version]) AC_DEFUN([GTK_DOC_CHECK], [ + AC_REQUIRE([PKG_PROG_PKG_CONFIG]) AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first + + dnl check for tools we added during development + AC_PATH_PROG([GTKDOC_CHECK],[gtkdoc-check]) + AC_PATH_PROGS([GTKDOC_REBASE],[gtkdoc-rebase],[true]) + AC_PATH_PROG([GTKDOC_MKPDF],[gtkdoc-mkpdf]) + dnl for overriding the documentation installation directory AC_ARG_WITH([html-dir], AS_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),, @@ -26,14 +33,35 @@ [PKG_CHECK_EXISTS([gtk-doc],, AC_MSG_ERROR([gtk-doc not installed and --enable-gtk-doc requested]))], [PKG_CHECK_EXISTS([gtk-doc >= $1],, - AC_MSG_ERROR([You need to have gtk-doc >= $1 installed to build gtk-doc]))]) + AC_MSG_ERROR([You need to have gtk-doc >= $1 installed to build $PACKAGE_NAME]))]) + dnl don't check for glib if we build glib + if test "x$PACKAGE_NAME" != "xglib"; then + dnl don't fail if someone does not have glib + PKG_CHECK_MODULES(GTKDOC_DEPS, glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0,,) + fi fi AC_MSG_CHECKING([whether to build gtk-doc documentation]) AC_MSG_RESULT($enable_gtk_doc) - AC_PATH_PROGS(GTKDOC_CHECK,gtkdoc-check,) + dnl enable/disable output formats + AC_ARG_ENABLE([gtk-doc-html], + AS_HELP_STRING([--enable-gtk-doc-html], + [build documentation in html format [[default=yes]]]),, + [enable_gtk_doc_html=yes]) + AC_ARG_ENABLE([gtk-doc-pdf], + AS_HELP_STRING([--enable-gtk-doc-pdf], + [build documentation in pdf format [[default=no]]]),, + [enable_gtk_doc_pdf=no]) + + if test -z "$GTKDOC_MKPDF"; then + enable_gtk_doc_pdf=no + fi + AM_CONDITIONAL([ENABLE_GTK_DOC], [test x$enable_gtk_doc = xyes]) + AM_CONDITIONAL([GTK_DOC_BUILD_HTML], [test x$enable_gtk_doc_html = xyes]) + AM_CONDITIONAL([GTK_DOC_BUILD_PDF], [test x$enable_gtk_doc_pdf = xyes]) AM_CONDITIONAL([GTK_DOC_USE_LIBTOOL], [test -n "$LIBTOOL"]) + AM_CONDITIONAL([GTK_DOC_USE_REBASE], [test -n "$GTKDOC_REBASE"]) ]) diff -Nru atk1.0-1.30.0/m4/libtool.m4 atk1.0-2.2.0/m4/libtool.m4 --- atk1.0-1.30.0/m4/libtool.m4 2010-03-29 22:53:43.000000000 +0000 +++ atk1.0-2.2.0/m4/libtool.m4 2011-09-26 22:24:55.000000000 +0000 @@ -2485,18 +2485,6 @@ dynamic_linker='GNU/Linux ld.so' ;; -netbsdelf*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='NetBSD ld.elf_so' - ;; - netbsd*) version_type=sunos need_lib_prefix=no @@ -3088,7 +3076,7 @@ lt_cv_deplibs_check_method=pass_all ;; -netbsd* | netbsdelf*-gnu) +netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else @@ -3769,7 +3757,7 @@ ;; esac ;; - netbsd* | netbsdelf*-gnu) + netbsd*) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise @@ -4194,9 +4182,6 @@ cygwin* | mingw* | cegcc*) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' ;; - linux* | k*bsd*-gnu) - _LT_TAGVAR(link_all_deplibs, $1)=no - ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; @@ -4261,9 +4246,6 @@ openbsd*) with_gnu_ld=no ;; - linux* | k*bsd*-gnu) - _LT_TAGVAR(link_all_deplibs, $1)=no - ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes @@ -4446,7 +4428,7 @@ fi ;; - netbsd* | netbsdelf*-gnu) + netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= @@ -4621,7 +4603,6 @@ if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi - _LT_TAGVAR(link_all_deplibs, $1)=no else # not using gcc if test "$host_cpu" = ia64; then @@ -4860,7 +4841,7 @@ _LT_TAGVAR(link_all_deplibs, $1)=yes ;; - netbsd* | netbsdelf*-gnu) + netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else diff -Nru atk1.0-1.30.0/MAINTAINERS atk1.0-2.2.0/MAINTAINERS --- atk1.0-1.30.0/MAINTAINERS 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/MAINTAINERS 2011-09-19 17:06:54.000000000 +0000 @@ -1,8 +1,14 @@ -Bill Haneman -E-mail: bill.haneman@sun.com +Leon Fan +E-mail: leon.fan@oracle.com +Userid: leonfan + +Alejandro Piñeiro Iglesias +E-mail: apinheiro@igalia.com +Userid: apinheiro Li Yuan -E-mail: li.yuan@sun.com +E-mail: lee.yuan@oracle.com Userid: liyuan - +Bill Haneman +E-mail: bill.haneman@sun.com diff -Nru atk1.0-1.30.0/Makefile.am atk1.0-2.2.0/Makefile.am --- atk1.0-1.30.0/Makefile.am 2009-12-21 07:01:01.000000000 +0000 +++ atk1.0-2.2.0/Makefile.am 2011-09-19 17:06:54.000000000 +0000 @@ -1,7 +1,7 @@ # Process this file with automake to create Makefile.in. -ACLOCAL_AMFLAGS = -I m4 +ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} -SUBDIRS=atk tests docs po +SUBDIRS=atk tests docs po build EXTRA_DIST = \ MAINTAINERS \ @@ -10,7 +10,8 @@ atk.spec.in \ atk.spec \ atk-zip.sh.in \ - m4/introspection.m4 + m4/introspection.m4 \ + config.h.win32 pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = atk.pc diff -Nru atk1.0-1.30.0/Makefile.in atk1.0-2.2.0/Makefile.in --- atk1.0-1.30.0/Makefile.in 2010-03-29 22:53:48.000000000 +0000 +++ atk1.0-2.2.0/Makefile.in 2011-09-26 22:25:00.000000000 +0000 @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.11 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, @@ -39,23 +39,30 @@ $(srcdir)/Makefile.in $(srcdir)/atk-uninstalled.pc.in \ $(srcdir)/atk-zip.sh.in $(srcdir)/atk.pc.in \ $(srcdir)/atk.spec.in $(srcdir)/config.h.in \ - $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \ - config.guess config.sub depcomp install-sh ltmain.sh missing \ - mkinstalldirs + $(srcdir)/config.h.win32.in $(top_srcdir)/configure AUTHORS \ + COPYING ChangeLog INSTALL NEWS config.guess config.sub depcomp \ + install-sh ltmain.sh missing mkinstalldirs ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gtk-doc.m4 \ $(top_srcdir)/m4/introspection.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.in + $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = config.h -CONFIG_CLEAN_FILES = atk.pc atk-uninstalled.pc atk.spec atk-zip.sh +CONFIG_CLEAN_FILES = atk.pc atk-uninstalled.pc atk.spec atk-zip.sh \ + config.h.win32 CONFIG_CLEAN_VPATH_FILES = +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ @@ -134,6 +141,7 @@ distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AS = @AS@ ATK_API_VERSION = @ATK_API_VERSION@ @@ -181,6 +189,10 @@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@ +GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@ +GTKDOC_MKPDF = @GTKDOC_MKPDF@ +GTKDOC_REBASE = @GTKDOC_REBASE@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ @@ -229,6 +241,8 @@ PATH_SEPARATOR = @PATH_SEPARATOR@ PERL = @PERL@ 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@ @@ -298,8 +312,8 @@ top_srcdir = @top_srcdir@ # Process this file with automake to create Makefile.in. -ACLOCAL_AMFLAGS = -I m4 -SUBDIRS = atk tests docs po +ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} +SUBDIRS = atk tests docs po build EXTRA_DIST = \ MAINTAINERS \ atk-uninstalled.pc.in \ @@ -307,7 +321,8 @@ atk.spec.in \ atk.spec \ atk-zip.sh.in \ - m4/introspection.m4 + m4/introspection.m4 \ + config.h.win32 pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = atk.pc @@ -381,6 +396,8 @@ cd $(top_builddir) && $(SHELL) ./config.status $@ atk-zip.sh: $(top_builddir)/config.status $(srcdir)/atk-zip.sh.in cd $(top_builddir) && $(SHELL) ./config.status $@ +config.h.win32: $(top_builddir)/config.status $(srcdir)/config.h.win32.in + cd $(top_builddir) && $(SHELL) ./config.status $@ mostlyclean-libtool: -rm -f *.lo @@ -418,7 +435,7 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @failcom='exit 1'; \ + @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ @@ -443,7 +460,7 @@ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): - @failcom='exit 1'; \ + @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ @@ -607,7 +624,8 @@ fi; \ done -test -n "$(am__skip_mode_fix)" \ - || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ + || find "$(distdir)" -type d ! -perm -755 \ + -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ @@ -651,17 +669,17 @@ distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ - GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ - bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ + bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ - unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\ + lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ - GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac diff -Nru atk1.0-1.30.0/NEWS atk1.0-2.2.0/NEWS --- atk1.0-1.30.0/NEWS 2010-03-29 22:53:14.000000000 +0000 +++ atk1.0-2.2.0/NEWS 2011-09-26 22:23:45.000000000 +0000 @@ -1,3 +1,84 @@ +Changes in version 2.2.0: +========================= +* +* Updated Gujarati, Oriya, Assamese, Danish, Portuguese, Czech and +* Catalan (Valencian) translations + +Changes in version 2.1.92: +========================== +* +* Updated Visual Studio files due AtkWindow addition +* Bug 649577: atk_add_global_event_listener should only accept ATK events +* Minor documentation updates +* Updated German, Basque, Japanese, Serbian, Catalan, Tamil, Punjabi, +* Asturian, Italian, Polish, British English, Brazilian Portuguese, +* Korean, Telugu and Kannada Translation + +Changes in version 2.1.5: +========================= +* +* Bug 638924: Add AtkWindow +* Fixing out of tree compilation on Win32 +* Update README.txt +* Fixing release number of the new ATK roles added +* Updated Traditional Chinese, Indonesian, Bulgarian, French, +* Hungarian and Swedish translations + +Changes in version 2.1.0: +========================= +* +* Bug 654767: shlib downgrade at update atk-1.32.0 to atk-2.0.1 +* Bug 651343: New ATK Roles +* Added Leon Fan as maintainer +* Improved Visual C++ 2010 infrastructure +* Updated Russian, Slovenian, Persian, Hebrew, Lithuanian, Latvian, +* Norwegian, Galician, and Spanish translations + +Changes in version 2.0.1: +========================= +* +* Bug 652205: Use const instead G_CONST_RETURN +* Bug 649307: Clarify AtkPlug and AtkSocket docs +* Bug 551489: Fix doc of atk_text_get_text_before_offset +* Bug 588083: Information about return value of some AtkText methods can be clearer +* Added Alejandro Pieiro Iglesias as maintainer +* Updated .gitignore +* VS 2008/2010 support update +* New Zulu translation added, Esperanto and Catalan updated + +Changes in version 2.0.0: +========================= +* +*Translation update. + +Changes in version 1.91.92: +========================= +* +*BGO#638377: Add text_insert, text_remove, and text_update signals +*Reviewed Serbian Translation +*Fix introspection for atk_text_get_bounded_ranges +*Visual C++ 2010 Project Files +*Updated Spanish translation + +Changes in version 1.33.6: +========================= +* +*Returns FALSE on atk_object_add_relationship if it is already included +*Bug 640574: gobject-introspection annotation and documentation fixes +*Bug 637663: Added atk_streamable_content_get_uri to atk/atk.symbols +*Add missing Makefiles to AC_CONFIG_FILES +*Fixes for the MSVC Project Files +*Update deprecated autoconf macros and use new libtool syntax +*Documentation fixes +*Translation updates + +Changes in version 1.32.0: +========================= +* +*Fixes: #630097, #621717, #571622, #617851, #616812. +*Translation update. + + Changes in version 1.30.0: ========================= * Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/as.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/as.gmo differ diff -Nru atk1.0-1.30.0/po/as.po atk1.0-2.2.0/po/as.po --- atk1.0-1.30.0/po/as.po 2009-12-21 07:05:28.000000000 +0000 +++ atk1.0-2.2.0/po/as.po 2011-09-26 11:54:31.000000000 +0000 @@ -6,526 +6,579 @@ # SUNARAM PATIR , 2004. # Amitakhya Phukan , 2007. # Amitakhya Phukan , 2009. +# Nilamdyuti Goswami , 2011. msgid "" msgstr "" "Project-Id-Version: as\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-03-06 15:05+0530\n" -"Last-Translator: Amitakhya Phukan \n" -"Language-Team: Assamese \n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" +"product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-08-16 17:41+0000\n" +"PO-Revision-Date: 2011-08-17 17:23+0530\n" +"Last-Translator: Nilamdyuti Goswami \n" +"Language-Team: as_IN \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 0.3\n" +"X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n!=1)\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" -msgstr "নিৰ্ব্বাচিত সংযোগপথ" +msgstr "নিৰ্বাচিত লিঙ্ক" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" -msgstr "AtkHyperlink object নিৰ্ব্বাচিত হয় নে নহয় উল্লেখ কৰে" +msgstr "AtkHyperlink object নিৰ্বাচিত হয় নে নহয় উল্লেখ কৰে" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" -msgstr "Anchor ৰ সংখ্যা" +msgstr "সুত্ৰধাৰসমূহৰ সংখ্যা" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" -msgstr "AtkHyperlink object ৰ লগত জড়িত anchor ৰ সংখ্যা" +msgstr "AtkHyperlink অবজেক্টৰ লগত জড়িত সুত্ৰধাৰসমূহৰ সংখ্যা" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "শেষ সূচী" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" -msgstr "AtkHyperlink object ৰ শেষ সূচী" +msgstr "AtkHyperlink অবজেক্টৰ শেষ সূচী" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" -msgstr "আদি সূচী" +msgstr "আৰম্ভণি সূচী" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" -msgstr "AtkHyperlink object ৰ আদি সূচী" +msgstr "AtkHyperlink অবজেক্টৰ আৰম্ভণি সূচী" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "অবৈধ" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "ত্বৰক লেবেল" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "সতৰ্ক" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" -msgstr "চলচ্চিত্ৰণ" +msgstr "জীৱন্তকৰণ" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" -msgstr "কাঁড়চিহ্ন" +msgstr "কাঁড়" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" -msgstr "দিনপঞ্জি" +msgstr "কেলেন্ডাৰ" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "চিত্ৰপট" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" -msgstr "ছেক বক্স" +msgstr "চেক বাকচ" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" -msgstr "ছেক তালিকা পদাৰ্থ" +msgstr "চেক তালিকা বস্তু" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" -msgstr "ৰং মনোনয়ক" +msgstr "ৰং নিৰ্বাচক" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" -msgstr "স্তম্ভ শিৰোণামা" +msgstr "স্তম্ভ হেডাৰ" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" -msgstr "কম্বো বক্স" +msgstr "কম্বো বাকচ" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "তাৰিখ সম্পাদক" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" -msgstr "ডেস্কটপ প্ৰতিকৃতি" +msgstr "ডেস্কটপ আইকন" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" -msgstr "ডেস্কটপ বেষ্টন" +msgstr "ডেস্কটপ ফ্ৰেইম" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "ডায়েল" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" -msgstr "সংলাপ" +msgstr "ডাইলগ" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" -msgstr "পঞ্জিকা ফলক" +msgstr "ডাইৰেকটৰি পেইন" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" -msgstr "অংকন ক্ষেত্ৰ" +msgstr "অংকন স্থান" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" -msgstr "নথিপত্ৰ নিৰ্ব্বাচক" +msgstr "নথিপত্ৰ নিৰ্বাচক" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "পূৰণকাৰী" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" -msgstr "আখৰ নিৰ্ব্বাচক" +msgstr "আখৰ নিৰ্বাচক" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" -msgstr "বেষ্টন" +msgstr "ফ্ৰেইম" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" -msgstr "গ্লাচ ফলক" +msgstr "গ্লাচ পেইন" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "html ধাৰক" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" -msgstr "প্ৰতিকৃতি" +msgstr "আইকন" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" -msgstr "প্ৰতিৰূপ" +msgstr "ছবি" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" -msgstr "আভ্যন্তৰীণ বেষ্টন" +msgstr "অভ্যন্তৰীক ফ্ৰেইম" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "লেবেল" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" -msgstr "স্তৰীয় ফলক" +msgstr "স্তৰীয় পেইন" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "তালিকা" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" -msgstr "তালিকা পদাৰ্থ" +msgstr "তালিকা বস্তু" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" -msgstr "তালিকা" +msgstr "মেনু" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" -msgstr "তালিকা দণ্ড" +msgstr "মেনু বাৰ" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" -msgstr "তালিকাৰ পদাৰ্থ" +msgstr "মেনুৰ বস্তু" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" -msgstr "বিকল্পৰ ফলক" +msgstr "বিকল্পৰ পেইন" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "পৃষ্ঠা টেব" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "পৃষ্ঠা টেব তালিকা" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "পেনেল" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" -msgstr "গুপ্তশব্দ পাঠ" +msgstr "পাছৱাৰ্ড লিখনী" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" -msgstr "ভাঁহি উঠা তালিকা" +msgstr "পপআপ মেনু" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" -msgstr "প্ৰগতি সূচক দণ্ড" +msgstr "প্ৰগতি বাৰ" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "টিপা বুটাম" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "ৰেডিঅ' বুটাম" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" -msgstr "ৰেডিঅ' তালিকা পদাৰ্থ" +msgstr "ৰেডিঅ' মেনুৰ বস্তু" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" -msgstr "মূল ফলক" +msgstr "ৰুট পেইন" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" -msgstr "শাৰী শিৰোণামা" +msgstr "শাৰী হেডাৰ" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" -msgstr "স্ক্ৰল দণ্ড" +msgstr "স্ক্ৰল বাৰ" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" -msgstr "স্ক্ৰল ফলক" +msgstr "স্ক্ৰল পেইন" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "বিভাজক" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" -msgstr "পিছলক" +msgstr "স্লাইডাৰ" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" -msgstr "বিভাজিত ফলক" +msgstr "বিভাজিত পেইন" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "ঘূৰ্ণন বুটাম" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" -msgstr "পৰস্থিতি দণ্ড" +msgstr "অৱস্থাবাৰ" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" -msgstr "নিৰ্ঘন্ট" +msgstr "টেবুল" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" -msgstr "নিৰ্ঘন্ট কোষ" +msgstr "টেবুল কোষ" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" -msgstr "নিৰ্ঘন্ট স্তম্ভ শিৰোণামা" +msgstr "টেবুল স্তম্ভ হেডাৰ" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" -msgstr "নিৰ্ঘন্ট শাৰী শিৰোণামা" +msgstr "টেবুল শাৰী হেডাৰ" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" -msgstr "বিদাৰিত তালিকাৰ পদাৰ্থ" +msgstr "বিদাৰিত মেনুৰ বস্তু" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "টাৰ্মিনেল" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" -msgstr "পাঠ" +msgstr "লিখনী" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" -msgstr "ট'গ্গল বুটাম" +msgstr "অদল বদল বুটাম" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" -msgstr "সৰঞ্জাম দণ্ড" +msgstr "সঁজুলি বাৰ" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" -msgstr "সৰঞ্জামৰ উপদেশ" +msgstr "সঁজুলিৰ উপদেশ" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" -msgstr "তথ্য আকাৰ" +msgstr "ট্ৰি" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" -msgstr "তথ্য আকাৰৰ নিৰ্ঘন্ট" +msgstr "ট্ৰিৰ টেবুল" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "অজ্ঞাত" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "ভিউপ'ৰ্ট" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" -msgstr "সংযোগ ক্ষত্ৰ" +msgstr "উইন্ডো" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" -msgstr "শিৰোণামা" +msgstr "হেডাৰ" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "পাদটীকা" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" -msgstr "অনুচ্ছেদ" +msgstr "দফা" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "ৰুলাৰ" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "অনুপ্ৰয়োগ" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "স্ব-সম্পূৰ্ণ" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" -msgstr "সম্পাদন দণ্ড" +msgstr "সম্পাদন বাৰ" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" -msgstr "প্ৰোথিত থকা উপাংশ" +msgstr "অন্তৰ্ভুক্ত উপাদান" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" -msgstr "নিবেশ" +msgstr "প্ৰবিষ্টি" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "ৰেখাচিত্ৰ" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" -msgstr "বিজ্ঞপ্তি" +msgstr "কেপষণ" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" -msgstr "প্ৰলেক্ষৰ বেষ্টন" +msgstr "দস্তাবেজৰ ফ্ৰেইম" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" -msgstr "শিৰোণামা" +msgstr "হেডিং" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "পৃষ্ঠা" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "বিভাগ" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" -msgstr "পদবহিষ্কৃত পদাৰ্থ" +msgstr "ত্ৰুটিপূৰ্ণ অবজেক্ট" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" -msgstr "আকৃতি" +msgstr "বিন্যাস" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" -msgstr "সংযোগ" +msgstr "লিঙ্ক" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" -msgstr "নিবেশ পদ্ধতিৰ সংযোগক্ষেত্ৰ" +msgstr "ইনপুট পদ্ধতিৰ উইন্ডো" + +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "টেবুল শাৰী" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "ট্ৰিৰ বস্তু" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "দস্তাবেজ স্প্ৰেডশিট" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "দস্তাবেজ পৰিৱেশন" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "দস্তাবেজ লিখনী" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "দস্তাবেজ ৱেব" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "দস্তাবেজ ই-মেইল" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "মন্তব্য" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "তালিকা বাকচ" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "দলীকৰণ" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "ছবি মানচিত্ৰ" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "অধিসূচনা" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "তথ্য বাৰ" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" -msgstr "সুগম নাম" +msgstr "অভিগম নাম" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" -msgstr "সহায়ক প্ৰযুক্তিবিদ্যাৰ অভিগম্যতাৰ বাবে Object instance ৰ নাম পুনৰাকৃত কৰা হ'ল" +msgstr "সহায়ক প্ৰযুক্তিবিদ্যাৰ অভিগম্যতাৰ বাবে অবজেক্ট উদাহৰণৰ নাম ফৰমেট কৰা হ'ল" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" -msgstr "সুগম বিৱৰণ" +msgstr "অভিগম বিৱৰণ" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" -msgstr "" -"এটা পদাৰ্থৰ বিৱৰণ, যিহক সহায়ক প্ৰযুক্তিবিদ্যাৰ অভিগম্যতাৰ বাবে পুনৰাকৃত কৰা হ'ল" +msgstr "এটা অবজেক্টৰ বিৱৰণ, সহায়ক প্ৰযুক্তিবিদ্যাৰ অভিগম্যতাৰ বাবে ফৰমেট কৰা হ'ল" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" -msgstr "সুগম Parent" +msgstr "অভিগম উপধায়ক" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" -msgstr " parent সলনি হোৱা বুজাবলৈ ব্যৱহাৰ কৰা হয়" +msgstr "উপধায়ক সলনি হোৱা বুজাবলৈ ব্যৱহাৰ কৰা হয়" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" -msgstr "সুগম মান" +msgstr "অভিগম মান" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "মান সলনি হোৱা বুজাবলৈ ব্যৱহাৰ কৰা হয়" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" -msgstr "সুগম ভূমিকা" +msgstr "অভিগম ভূমিকা" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" -msgstr "এইটো পদাৰ্থৰ সুগম ভূমিকা" +msgstr "এইটো অবজেক্টৰ অভিগম ভূমিকা" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" -msgstr "সুগম স্তৰ" +msgstr "অভিগম স্তৰ" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" -msgstr "এইটো পদাৰ্থৰ সুগম স্তৰ" +msgstr "এই অবজেক্টৰ অভিগম্য স্তৰ" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" -msgstr "সুগম MDI মান" +msgstr "অভিগম্য MDI মান" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" -msgstr "এইটো পদাৰ্থৰ সুগম MDI মান" +msgstr "এইটো অবজেক্টৰ অভিগম্য MDI মান" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" -msgstr "সুগম নিৰ্ঘন্ট বিজ্ঞপ্তি" +msgstr "অভিগম টেবুল কেপষণ" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" msgstr "" -"নিৰ্ঘন্ট বিজ্ঞপ্তি সলনি হোৱা বুজাবলৈ ব্যৱহাৰ কৰা হয়; এই ধৰ্মটো ব্যৱহাৰ কৰা উচিত নহয় " -"। ইয়াৰ সলনি সুগম-নিৰ্ঘন্ট-বিজ্ঞপ্তি-পদাৰ্থ ব্যৱহাৰ কৰা উচিত" +"টেবুল কেপষণ সলনি হোৱা বুজাবলৈ ব্যৱহাৰ কৰা হয়; এই বৈশিষ্টটো ব্যৱহাৰ কৰা উচিত নহয় " +"। ইয়াৰ সলনি অভিগম-টেবুল-কেপষণ-অবজেক্ট ব্যৱহাৰ কৰা উচিত" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" -msgstr "সুগম নিৰ্ঘন্ট স্তম্ভ শিৰোণামা" +msgstr "অভিগম টেবুল স্তম্ভ হেডাৰ" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" -msgstr "নিৰ্ঘন্ট স্তম্ভ শিৰোণামা সলনি হোৱা বুজাবলৈ ব্যৱহাৰ কৰা হয়" +msgstr "টেবুল স্তম্ভ হেডাৰ সলনি হোৱা বুজাবলৈ ব্যৱহাৰ কৰা হয়" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" -msgstr "সুগম নিৰ্ঘন্ট স্তম্ভ বিৱৰণ" +msgstr "অভিগম টেবুল স্তম্ভ বিৱৰণ" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" -msgstr "নিৰ্ঘন্ট স্তম্ভ বিৱৰণ সলনি হোৱা বুজাবলৈ ব্যৱহাৰ কৰা হয়" +msgstr "টেবুল স্তম্ভ বিৱৰণ সলনি হোৱা বুজাবলৈ ব্যৱহাৰ কৰা হয়" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" -msgstr "সুগম নিৰ্ঘন্ট শাৰী শিৰোণামা" +msgstr "অভিগম টেবুল শাৰী হেডাৰ" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" -msgstr "নিৰ্ঘন্ট শাৰী শিৰোণামা সলনি হোৱা বুজাবলৈ ব্যৱহাৰ কৰা হয়" +msgstr "টেবুল শাৰী হেডাৰ সলনি হোৱা বুজাবলৈ ব্যৱহাৰ কৰা হয়" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" -msgstr "সুগম নিৰ্ঘন্ট শাৰী বিৱৰণ" +msgstr "অভিগম টেবুল শাৰী বিৱৰণ" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" -msgstr "নিৰ্ঘন্ট শাৰী বিৱৰণ সলনি হোৱা বুজাবলৈ ব্যৱহাৰ কৰা হয়" +msgstr "টেবুল শাৰী বিৱৰণ সলনি হোৱা বুজাবলৈ ব্যৱহাৰ কৰা হয়" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" -msgstr "সুগম নিৰ্ঘন্ট সাৰাংশ" +msgstr "অভিগম টেবুল সাৰাংশ" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" -msgstr "নিৰ্ঘন্ট সাৰাংশ সলনি হোৱা বুজাবলৈ ব্যৱহাৰ কৰা হয়" +msgstr "টেবুল সাৰাংশ সলনি হোৱা বুজাবলৈ ব্যৱহাৰ কৰা হয়" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" -msgstr "সুগম নিৰ্ঘন্ট বিজ্ঞপ্তি পদাৰ্থ" +msgstr "অভিগম্য টেবুল কেপষণ বস্তু" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" -msgstr "নিৰ্ঘন্ট বিজ্ঞপ্তি সলনি হোৱা বুজাবলৈ ব্যৱহাৰ কৰা হয়" +msgstr "টেবুল কেপষণ সলনি হোৱা বুজাবলৈ ব্যৱহাৰ কৰা হয়" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" -msgstr "সুগম Hypertext সূত্ৰ সংখ্যা" +msgstr "অভিগম্য হাইপাৰটেক্সট লিঙ্কসমূহৰ সংখ্যা" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" -msgstr "সাম্প্ৰতিক AtkHypertext ৰ সূত্ৰ সংখ্যা" +msgstr "বৰ্তমান AtkHypertext -ৰ লিঙ্কৰ সংখ্যা" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/ast.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/ast.gmo differ diff -Nru atk1.0-1.30.0/po/ast.po atk1.0-2.2.0/po/ast.po --- atk1.0-1.30.0/po/ast.po 2010-03-08 10:23:38.000000000 +0000 +++ atk1.0-2.2.0/po/ast.po 2011-09-19 17:06:54.000000000 +0000 @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: atk master\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2010-01-07 22:47+0100\n" -"Last-Translator: astur \n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-08-16 17:08+0000\n" +"PO-Revision-Date: 2011-09-09 14:08+0100\n" +"Last-Translator: ivarela \n" "Language-Team: Asturian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,512 +17,571 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Poedit-Language: asturian\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Enllaz seleicionáu" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Especifica si l'oxetu AtlHyperlink ta seleicionáu" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Númberu d'ancles" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "El númberu d'ancles asociaes con un oxetu AtkHyperlink" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Índiz caberu" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "L'índiz caberu d'un oxetu AtkHyperlink" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Índiz d'aniciu" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "L'índiz d'entamu d'un oxetu AtkHyperlink" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "non válidu" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "etiqueta de combinación de tecles" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "avisu" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animación" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "flecha" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "calendariu" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "llenzu" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "caxella de verificación" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "elementu de menú de verificación" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "seleicionador de color" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "cabecera de la columna" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "caxa combinada" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "editor de fecha" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "iconu del escritoriu" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "marcu del escritoriu" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "marcador" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "diálogu" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "panel de direutoriu" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "estaya de dibuxu" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "seleicionador de ficheros" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "completar" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "seleicionador de fonte" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "marcu" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "panel tresparente" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "contenedor html" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "iconu" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "imaxe" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "marcu internu" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "etiqueta" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "panel superpuestu" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "llista" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "elementu de llista" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "menú" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "barra de menú" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "elementu de menú" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "panel d'opciones" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "llingüeta de páxina" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "llista de llingüetes de páxina" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "panel" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "testu de contraseña" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "menú emerxente" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "barra de progresu" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "botón de pulsación" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "botón de radiu" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "elementu de menú triba radio" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "panel raíz" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "cabecera de la filera" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "barra de desplazamientu" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "panel de desplazamientu" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "dixebrador" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "eslizador" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "panel dixebrable" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "botón xiratoriu" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "barra d'estáu" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "tabla" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "caxella de tabla" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "cabecera de columna de tabla" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "cabecera de filera de tabla" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "elementu de menú desprendible" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminal" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "testu" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "botón d'activación" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "barra d'estáu" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "suxerencia" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "árbol" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "tabla d'árbol" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "desconocíu" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "puertu de visión" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "ventana" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "cabecera" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "pie" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "párrafu" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "regla" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "aplicación" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "autocompletáu" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "barra d'edición" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "componente incrustáu" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "entrada" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "diagrama" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "descripción" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "marcu de documentu" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "cabecera" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "páxina" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "seición" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "Oxetu redundante" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "formulariu" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "enllaz" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "ventana d'entrada de métodu" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +#| msgid "table row header" +msgid "table row" +msgstr "filera de tabla" + +#: ../atk/atkobject.c:164 +#| msgid "tree table" +msgid "tree item" +msgstr "elementu d'árbol" + +#: ../atk/atkobject.c:165 +#| msgid "document frame" +msgid "document spreadsheet" +msgstr "documentu de fueya de cálculu" + +#: ../atk/atkobject.c:166 +#| msgid "document frame" +msgid "document presentation" +msgstr "documentu de presentación" + +#: ../atk/atkobject.c:167 +#| msgid "document frame" +msgid "document text" +msgstr "documentu de testu" + +#: ../atk/atkobject.c:168 +#| msgid "document frame" +msgid "document web" +msgstr "documentu web" + +#: ../atk/atkobject.c:169 +#| msgid "document frame" +msgid "document email" +msgstr "documentu d'email" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "comentariu" + +#: ../atk/atkobject.c:171 +#| msgid "list" +msgid "list box" +msgstr "caxa de llista" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "agrupación" + +#: ../atk/atkobject.c:173 +#| msgid "image" +msgid "image map" +msgstr "mapa d'imaxe" + +#: ../atk/atkobject.c:174 +#| msgid "animation" +msgid "notification" +msgstr "notificación" + +#: ../atk/atkobject.c:175 +#| msgid "menu bar" +msgid "info bar" +msgstr "barra d'info" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Nome accesible" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "El nome de la instancia del oxetu formateáu p'accesu pa discapacitaos" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Descripción accesible" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "Descripción d'un oxetu, formateáu p'accesu pa discapacitaos" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Antecesor accesible" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Usáse pa notificar que l'antecesor camudó" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Valor accesible" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Usáse pa notificar que'l valor camudó" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Rol accesible" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "El rol d'accesibilidá d'esti oxetu" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Capa accesible" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "La capa d'accesibilidá d'esti oxetu" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Valor MDI accesible" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "El valor accesible MDI d'esti oxetu" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Descripción accesible de la tabla" -#: atk/atkobject.c:546 -msgid "" -"Is used to notify that the table caption has changed; this property should " -"not be used. accessible-table-caption-object should be used instead" -msgstr "" -"Usáse pa notificar que la descripción de la tabla camudó; esta propiedá nun " -"tendría que ser usada. Tien d'usase accesible-table-caption-object nel so " -"llugar" +#: ../atk/atkobject.c:572 +msgid "Is used to notify that the table caption has changed; this property should not be used. accessible-table-caption-object should be used instead" +msgstr "Usáse pa notificar que la descripción de la tabla camudó; esta propiedá nun tendría que ser usada. Tien d'usase accesible-table-caption-object nel so llugar" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Cabecera de columna accesible de la tabla" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "Usáse pa notificar que la cabecera de columna de la tabla camudó" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Descripción accesible de la columna de la tabla" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "Usáse pa notificar que la descripción de la columna de la tabla camudó" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Cabecera accesible de la filera de la tabla" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "Usáse pa notificar que la filera de la cabecera de la tabla camudó" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Descripción accesible de la filera de la tabla" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "Usáse pa notificar que la filera de la descripción camudó" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Resume accesible de la tabla" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Usáse pa notificar que'l resume de la tabla camudó" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Oxetu de títulu de la tabla accesible" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Usáse pa notificar que'l títulu de la tabla camudó" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Númberu d'enllaces d'hipertestu accesibles" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "El númberu d'enllaces que tien l'AtkHypertext actual" + diff -Nru atk1.0-1.30.0/po/atk10.pot atk1.0-2.2.0/po/atk10.pot --- atk1.0-1.30.0/po/atk10.pot 2009-12-21 07:05:27.000000000 +0000 +++ atk1.0-2.2.0/po/atk10.pot 2011-09-26 22:25:59.000000000 +0000 @@ -7,518 +7,572 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" +"product=glib&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-09-27 00:25+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" msgstr "" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/bg.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/bg.gmo differ diff -Nru atk1.0-1.30.0/po/bg.po atk1.0-2.2.0/po/bg.po --- atk1.0-1.30.0/po/bg.po 2009-12-21 07:05:28.000000000 +0000 +++ atk1.0-2.2.0/po/bg.po 2011-09-19 17:06:54.000000000 +0000 @@ -1,7 +1,7 @@ # Bulgarian translation for atk po-file. -# Copyright (C) 2002, 2004, 2005, 2006, 2009 Free Software Foundation, Inc. +# Copyright (C) 2002, 2004, 2005, 2006, 2009, 2011 Free Software Foundation, Inc. # Yanko Kaneti , 2002. -# Alexander Shopov , 2004, 2005, 2006, 2009. +# Alexander Shopov , 2004, 2005, 2006, 2009, 2011. # Към всички преводачи - това са специални термини, # които трябва да са достъпни за потребители с # увреждания - например слепота. Преводът е ОПИСАТЕЛЕН, @@ -15,464 +15,517 @@ msgstr "" "Project-Id-Version: atk master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-01-30 07:32+0200\n" -"Last-Translator: Alexander Shopov \n" -"Language-Team: Bulgarian \n" +"POT-Creation-Date: 2011-08-11 22:55+0300\n" +"PO-Revision-Date: 2011-08-11 22:55+0300\n" +"Last-Translator: Alexander Shopov \n" +"Language-Team: Bulgarian \n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "lural-Forms: nplurals=2; plural=n != 1;\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Избрана препратка" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Определя дали обектът AtkHyperlink е избран" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Брой котви" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "Броят на котвите свързани с обект AtkHyperlink" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Край на индекс" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "Крайният индекс на обект AtkHyperlink" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Начало на индекс" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "Началният индекс на обект AtkHyperlink" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "невалидно" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "надпис на ускорител" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "внимание" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "анимация" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "стрелка" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "календар" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "платно" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "кутийка за отмятане" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "елемент на менюто за отмятане" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "избор на цвят" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "заглавие на колона" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "кутийка за избор от определени стойности" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "редактор на дата" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "икона за работния плот" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "рамка на работния плот" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "скала" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "диалогова кутия" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "изглед към папки" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "област за рисуване" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "избор на файл" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "пълнител" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "избор на шрифт" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "рамка" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "най-горна рамка" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "контейнер с код на html" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "икона" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "картина" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "вътрешна рамка" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "етикет" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "рамка със слоеве обекти" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "списък" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "елемент на списък" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "меню" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "лента с менюта" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "елемент от меню" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "панел с опции" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "таб за страница" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "списък с табове" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "панел" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "текстово поле за парола" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "изскачащо меню" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "лента за прогрес" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "бутон" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "радио-бутон" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "радио-елемент от меню" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "основна рамка" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "заглавие на ред" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "лента за придвижване" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "рамка, която се прелиства" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "разделител" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "плъзгач" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "разделителна рамка" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "бутон за последователен избор" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "лента за състояние" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "таблица" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "клетка от таблица" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "заглавие на колона в таблица" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "заглавие на ред в таблица" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "елемент на менюто, който може да се отдели от него" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "терминал" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "текст" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "превключващ бутон" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "лента с инструменти" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "подсказка" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "дърво" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "дървовидна таблица" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "непознато" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "изглед" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "прозорец" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "горен колонтитул" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "долен колонтитул" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "абзац" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "линийка" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "приложение" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "автоматично довършване" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "лента за редакция" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "вграден компонент" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "запис" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "чертеж" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "заглавие" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "рамка за документи" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "горен колонтитул" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "страница" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "раздел" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "излишен обект" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "формуляр" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "връзка" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "прозорец за входен метод" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "ред в таблица" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "елемент в дърво" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "електронна таблица" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "презентация" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "текст" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "уеб страница" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "е-писмо" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "коментар" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "списък" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "групиране" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "карта на картина" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "известяване" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "лента с информация" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Достъпно име" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "" "Име на обект от някакъв клас. Името е форматирано за технологии за достъпност" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Достъпно описание" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "Описание на обект, форматиран за технологии за достъпност" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Достъпен родител" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Използва се, за да уведоми за промяна в родителя" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Достъпна стойност" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Използва се, за да се уведоми за промяна на стойността" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Достъпна роля" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "Достъпната роля на този обект" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Достъпен слой" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "Достъпният слой на този обект" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Достъпна стойност на приложение с множество прозорци в един контейнер" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "" "Достъпна стойност на обект на приложение с множество прозорци в един " "контейнер" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Достъпно заглавие на таблица" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -481,62 +534,62 @@ "свойство не трябва да се използва. Вместо него се използва accessible-table-" "caption-object" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Достъпно заглавие на колона на таблица" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "" "Използва се, за да се уведоми за промяна на заглавие на колона на таблица." -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Достъпно описание на колона в таблица" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "" "Използва се, за да се уведоми за промяна на описание на колона на таблица." -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Достъпно заглавие на ред на таблица" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "" "Използва се, за да се уведоми за промяна на заглавие на ред на таблица." -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Достъпно описание на ред в таблица" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "" "Използва се, за да се уведоми за промяна на описание на ред на таблица." -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Достъпно резюме на таблица" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Използва се, за да се уведоми за промяна на резюме на таблица" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Достъпен обект за заглавие на таблица" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Използва се, за да се уведоми за промяна на заглавие на таблица" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Брой достъпни препратки в хипертекст" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "Брой препратки, в текущия обект AtkHypertext" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/ca.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/ca.gmo differ diff -Nru atk1.0-1.30.0/po/ca.po atk1.0-2.2.0/po/ca.po --- atk1.0-1.30.0/po/ca.po 2009-12-21 07:05:28.000000000 +0000 +++ atk1.0-2.2.0/po/ca.po 2011-09-19 17:06:54.000000000 +0000 @@ -2,535 +2,589 @@ # Copyright © 2002, 2003, 2004, 2006 Free Software Foundation Inc. # This file is distributed under the same license as the atk package. # Jordi Mallach , 2002, 2003, 2004, 2006. +# Gil Forcada , 2011. # msgid "" msgstr "" "Project-Id-Version: atk 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-01-12 16:23+0100\n" -"Last-Translator: Jordi Mallach \n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-09-16 00:04+0200\n" +"PO-Revision-Date: 2011-09-12 15:44+0200\n" +"Last-Translator: Gil Forcada \n" +"Language-Team: català; valencià <>\n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" +"Content-Transfer-Encoding: 8bits\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Enllaç seleccionat" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Especifica si l'objecte AtkHyperlink és seleccionat" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Nombre d'àncores" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "El nombre d'àncores associades amb l'objecte AtkHyperlink" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Final de l'índex" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "El final de l'índex de l'objecte AtkHyperlink" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Inici de l'índex" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "L'inici de l'índex de l'objecte AtkHyperlink" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" -msgstr "invàlid" +msgstr "no vàlid" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "etiqueta d'accelerador" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "alerta" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animació" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "fletxa" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "calendari" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "canvas" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "quadre de verificació" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "element de menú de verificació" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "selector de color" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "capçalera de columna" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "caixa combo" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "editor de data" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "icona d'escriptori" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "marc d'escriptori" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "disc selector" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "diàleg" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "quadre de directori" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "àrea de dibuix" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "selector de fitxers" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" -msgstr "omplidor" +msgstr "emplenador" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "selector de tipus de lletra" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "marc" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "quadre transparent" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "contenidor d'html" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "icona" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "imatge" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "marc intern" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "etiqueta" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "quadre superposat" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "llista" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "element de llista" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "menú" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "barra de menú" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "element de menú" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "subfinestra d'opcions" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "pestanya de pàgina" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "llista de pestanyes de pàgina" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "quadre" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "text de contrasenya" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "menú emergent" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "barra de progrés" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "botó de pulsació" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "botó radial" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "element de menú radial" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "quadre arrel" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "capçalera de fila" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "barra de desplaçament" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "subfinestra de desplaçament" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "separador" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "desplaçador" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "subfinestra partida" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "botó giratori" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "barra d'estat" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "taula" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "cel·la de taula" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "capçalera de columna de taula" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "capçalera de fila de taula" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "element de menú desacoblable" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminal" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "text" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "botó de selecció" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "barra d'eines" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "consell" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "arbre" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "taula d'arbre" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "desconegut" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "subàrea" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "finestra" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "capçalera" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "peu" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "paràgraf" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" -msgstr "regla" +msgstr "regle" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "aplicació" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "completa automàticament" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "edita la barra" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "component incrustat" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "entrada" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "diagrama" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "títol" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "marc de document" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "encapçalament" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "pàgina" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "secció" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "objecte redundant" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "formulari" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "enllaç" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "finestra del mètode d'entrada" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "fila de taula" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "element d'arbre" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "document de full de càlcul" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "document de presentació" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "document de text" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "document web" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "document de correu electrònic" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "comentari" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "caixa de llista" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "agrupació" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "mapa d'imatge" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "notificació" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "barra d'informació" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Nom accessible" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "" "Nom de la instància de l'objecte formatat per a l'accés de les tecnologies " "assistives" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Descripció accessible" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "" "Descripció d'un objecte, formatat per a l'accés de les tecnologies assistives" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Pare accessible" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" -msgstr "S'utilitza per a notificar que el pare ha canviat" +msgstr "S'utilitza per notificar que el pare ha canviat" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Valor accessible" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" -msgstr "S'utilitza per a notificar que el valor ha canviat" +msgstr "S'utilitza per notificar que el valor ha canviat" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Rol accessible" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "El rol accessible d'aquest objecte" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Capa accessible" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "La capa accessible d'aquest objecte" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Valor MDI accessible" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "El valor MDI accessible d'aquest objecte" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Títol de la taula accessible" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" msgstr "" -"S'utilitza per a notificar que el títol de la taula ha canviat; aquesta " +"S'utilitza per notificar que el títol de la taula ha canviat; aquesta " "propietat no s'ha d'utilitzar. S'ha d'utilitzar accessible-table-caption-" "object en el seu lloc" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Capçalera de columna de taula accessible" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "" -"S'utilitza per a notificar que la capçalera de la columna de la taula ha " +"S'utilitza per notificar que la capçalera de la columna de la taula ha " "canviat" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Descripció de la columna de la taula accessible" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "" -"S'utilitza per a notificar que la descripció de la columna de la taula ha " +"S'utilitza per notificar que la descripció de la columna de la taula ha " "canviat" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Capçalera de la fila de la taula accessible" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "" -"S'utilitza per a notificar que la capçalera de la fila de la taula ha canviat" +"S'utilitza per notificar que la capçalera de la fila de la taula ha canviat" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Descripció de la fila de la taula accessible" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "" -"S'utilitza per a notificar que la descripció de la fila de la taula ha " -"canviat" +"S'utilitza per notificar que la descripció de la fila de la taula ha canviat" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Resum de la taula accessible" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" -msgstr "S'utilitza per a notificar que el resum de la taula ha canviat" +msgstr "S'utilitza per notificar que el resum de la taula ha canviat" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Objecte de títol de taula accessible" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" -msgstr "S'utilitza per a notificar que el títol de la taula ha canviat" +msgstr "S'utilitza per notificar que el títol de la taula ha canviat" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" -msgstr "Nombre d'enllaços d'hypertext accessibles" +msgstr "Nombre d'enllaços d'hipertext accessibles" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "El nombre d'enllaços que té l'AtkHypertext actual" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/ca@valencia.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/ca@valencia.gmo differ diff -Nru atk1.0-1.30.0/po/ca@valencia.po atk1.0-2.2.0/po/ca@valencia.po --- atk1.0-1.30.0/po/ca@valencia.po 2009-12-21 07:05:28.000000000 +0000 +++ atk1.0-2.2.0/po/ca@valencia.po 2011-09-26 16:50:47.000000000 +0000 @@ -2,535 +2,589 @@ # Copyright © 2002, 2003, 2004, 2006 Free Software Foundation Inc. # This file is distributed under the same license as the atk package. # Jordi Mallach , 2002, 2003, 2004, 2006. +# Gil Forcada , 2011. # msgid "" msgstr "" "Project-Id-Version: atk 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-01-12 16:23+0100\n" -"Last-Translator: Jordi Mallach \n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-09-26 14:21+0200\n" +"PO-Revision-Date: 2011-09-12 15:44+0200\n" +"Last-Translator: Gil Forcada \n" +"Language-Team: català; valencià <>\n" +"Language: ca-XV\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" +"Content-Transfer-Encoding: 8bits\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Enllaç seleccionat" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Especifica si l'objecte AtkHyperlink és seleccionat" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Nombre d'àncores" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "El nombre d'àncores associades amb l'objecte AtkHyperlink" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Final de l'índex" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "El final de l'índex de l'objecte AtkHyperlink" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Inici de l'índex" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "L'inici de l'índex de l'objecte AtkHyperlink" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" -msgstr "invàlid" +msgstr "no vàlid" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "etiqueta d'accelerador" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "alerta" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animació" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "fletxa" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "calendari" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "canvas" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "quadre de verificació" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "element de menú de verificació" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "selector de color" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "capçalera de columna" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "caixa combo" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "editor de data" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "icona d'escriptori" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "marc d'escriptori" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "disc selector" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "diàleg" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "quadre de directori" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "àrea de dibuix" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "selector de fitxers" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" -msgstr "omplidor" +msgstr "emplenador" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "selector de tipus de lletra" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "marc" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "quadre transparent" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "contenidor d'html" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "icona" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "imatge" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "marc intern" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "etiqueta" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "quadre superposat" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "llista" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "element de llista" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "menú" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "barra de menú" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "element de menú" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "subfinestra d'opcions" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "pestanya de pàgina" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "llista de pestanyes de pàgina" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "quadre" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "text de contrasenya" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "menú emergent" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "barra de progrés" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "botó de pulsació" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "botó radial" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "element de menú radial" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "quadre arrel" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "capçalera de fila" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "barra de desplaçament" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "subfinestra de desplaçament" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "separador" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "desplaçador" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "subfinestra partida" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "botó giratori" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "barra d'estat" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "taula" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "cel·la de taula" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "capçalera de columna de taula" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "capçalera de fila de taula" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "element de menú desacoblable" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminal" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "text" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "botó de selecció" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "barra d'eines" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "consell" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "arbre" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "taula d'arbre" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "desconegut" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "subàrea" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "finestra" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "capçalera" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "peu" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "paràgraf" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" -msgstr "regla" +msgstr "regle" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "aplicació" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "completa automàticament" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "edita la barra" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "component incrustat" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "entrada" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "diagrama" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "títol" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "marc de document" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "encapçalament" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "pàgina" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "secció" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "objecte redundant" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "formulari" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "enllaç" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "finestra del mètode d'entrada" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "fila de taula" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "element d'arbre" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "document de full de càlcul" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "document de presentació" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "document de text" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "document web" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "document de correu electrònic" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "comentari" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "caixa de llista" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "agrupació" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "mapa d'imatge" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "notificació" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "barra d'informació" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Nom accessible" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "" "Nom de la instància de l'objecte formatat per a l'accés de les tecnologies " "assistives" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Descripció accessible" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "" "Descripció d'un objecte, formatat per a l'accés de les tecnologies assistives" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Pare accessible" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" -msgstr "S'utilitza per a notificar que el pare ha canviat" +msgstr "S'utilitza per notificar que el pare ha canviat" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Valor accessible" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" -msgstr "S'utilitza per a notificar que el valor ha canviat" +msgstr "S'utilitza per notificar que el valor ha canviat" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Rol accessible" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "El rol accessible d'este objecte" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Capa accessible" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "La capa accessible d'este objecte" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Valor MDI accessible" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "El valor MDI accessible d'este objecte" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Títol de la taula accessible" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" msgstr "" -"S'utilitza per a notificar que el títol de la taula ha canviat; esta " -"propietat no s'ha d'utilitzar. S'ha d'utilitzar accessible-table-caption-" -"object en el seu lloc" +"S'utilitza per notificar que el títol de la taula ha canviat; esta propietat " +"no s'ha d'utilitzar. S'ha d'utilitzar accessible-table-caption-object en el " +"seu lloc" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Capçalera de columna de taula accessible" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "" -"S'utilitza per a notificar que la capçalera de la columna de la taula ha " +"S'utilitza per notificar que la capçalera de la columna de la taula ha " "canviat" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Descripció de la columna de la taula accessible" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "" -"S'utilitza per a notificar que la descripció de la columna de la taula ha " +"S'utilitza per notificar que la descripció de la columna de la taula ha " "canviat" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Capçalera de la fila de la taula accessible" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "" -"S'utilitza per a notificar que la capçalera de la fila de la taula ha canviat" +"S'utilitza per notificar que la capçalera de la fila de la taula ha canviat" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Descripció de la fila de la taula accessible" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "" -"S'utilitza per a notificar que la descripció de la fila de la taula ha " -"canviat" +"S'utilitza per notificar que la descripció de la fila de la taula ha canviat" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Resum de la taula accessible" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" -msgstr "S'utilitza per a notificar que el resum de la taula ha canviat" +msgstr "S'utilitza per notificar que el resum de la taula ha canviat" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Objecte de títol de taula accessible" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" -msgstr "S'utilitza per a notificar que el títol de la taula ha canviat" +msgstr "S'utilitza per notificar que el títol de la taula ha canviat" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" -msgstr "Nombre d'enllaços d'hypertext accessibles" +msgstr "Nombre d'enllaços d'hipertext accessibles" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "El nombre d'enllaços que té l'AtkHypertext actual" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/cs.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/cs.gmo differ diff -Nru atk1.0-1.30.0/po/cs.po atk1.0-2.2.0/po/cs.po --- atk1.0-1.30.0/po/cs.po 2009-12-21 07:05:28.000000000 +0000 +++ atk1.0-2.2.0/po/cs.po 2011-09-26 11:54:31.000000000 +0000 @@ -2,530 +2,577 @@ # Copyright (C) 2002 Free Software Foundation. # Copyright (C) 2004, 2005 Miloslav Trmac . # This file is distributed under the same license as the ATK package. +# # Michal Bukovjan , 2002. # Miloslav Trmac , 2003, 2004, 2005. # Petr Tomeš , 2006. -# Lucas Lommer , 2008, 2009. (only three stringa) +# Lucas Lommer , 2008, 2009, 2011. # msgid "" msgstr "" "Project-Id-Version: atk\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-02-16 19:50+0100\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-09-11 11:03+0000\n" +"PO-Revision-Date: 2011-09-23 11:59+0100\n" "Last-Translator: Lucas Lommer \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Vybraný odkaz" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Určuje, jestli je objekt AtkHyperlink vybrán" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Počet ukotvení" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "Počet ukotvení asociovaných s objektem AtkHyperlink" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Index konce" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "Index konce objektu AtkHyperlink" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Index začátku" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "Indek začátku objektu AtkHyperlink" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "neplatný" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "popisek klávesové zkratky" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "upozornění" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animace" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "šipka" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "kalendář" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "plátno" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "zaškrtávací políčko" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "zaškrtávací položka nabídky" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "výběr barvy" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "záhlaví sloupce" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "kombo box" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "editor data" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "ikona pracovní plochy" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "rám pracovní plochy" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "vytáčení" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "dialog" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "panel adresářů" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "kreslicí oblast" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "výběr souboru" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "plnič" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "výběr písma" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "rám" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "skleněný panel" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "kontejner html" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "ikona" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "obrázek" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "interní rám" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "popisek" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "vrstvený panel" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "seznam" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "položka seznamu" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "nabídka" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "panel nabídky" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "položka nabídky" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "panel voleb" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "záložka stránky" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "seznam záložek stránky" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "panel" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "text hesla" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "vyskakovací nabídka" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "lišta průběhu" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "tlačítko" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "rádiové tlačítko" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "přepínací položka nabídky" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "kořenový panel" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "záhlaví řádku" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "posuvná lišta" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "posuvný panel" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "oddělovač" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "posunovač" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "oddělený panel" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "otáčecí tlačítko" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "stavová-lišta" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "tabulka" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "buňka tabulky" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "záhlaví sloupce tabulky" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "záhlaví řádku tabulky" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "odtrhávací položka nabídky" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminál" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "text" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "přepínač" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "nástrojová lišta" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "tip" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "strom" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "stromová tabulka" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "neznámý" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "pohled" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "okno" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "záhlaví" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "zápatí" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "odstavec" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "pravítko" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "aplikace" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "autodoplnění" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "lišta úprav" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "vložená komponenta" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "vstupní pole" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "graf" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "titulek" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "rám dokumentu" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "záhlaví" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "strana" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "oddíl" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "redundantní objet" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "formulář" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "odkaz" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "okno vstupní metody" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "řádek tabulky" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "položka stromu" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "tabulka v dokumentu" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "prezentace v dokumentu" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "text v dokumentu" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "webová stránka v dokumentu" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "e-mail dokumentu" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "komentář" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "seznam" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "skupiny" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "obrázková mapa" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "upozornění" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "informační panel" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Zpřístupněný název" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" -msgstr "" -"Název instance objektu formátovaný pro použití technologiemi zpřístupnění" +msgstr "Název instance objektu formátovaný pro použití technologiemi zpřístupnění" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Zpřístupněný popis" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "Popis objektu formátovaný pro použití technologiemi zpřístupnění" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Zpřístupněný rodič" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Používá se pro upozornění, že rodič byl změněn" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Zpřístupněná hodnota" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Používá se pro upozornění, že hodnota byla změněna" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Zpřístupněná role" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "Zpřístupněná role tohoto objektu" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Zpřístupněná vrstva" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "Zpřístupněná vrstva tohoto objektu" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Zpřístupněná hodnota MDI" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "Zpřístupněná hodnota MDI tohoto objektu" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Zpřístupněný nadpis tabulky" -#: atk/atkobject.c:546 -msgid "" -"Is used to notify that the table caption has changed; this property should " -"not be used. accessible-table-caption-object should be used instead" -msgstr "" -"Používá se pro upozornění, že nadpis tabulky byl změněn; tato vlastnost by " -"se neměla používat. Místo toho by se mělo používat accessible-table-caption-" -"object" +#: ../atk/atkobject.c:572 +msgid "Is used to notify that the table caption has changed; this property should not be used. accessible-table-caption-object should be used instead" +msgstr "Používá se pro upozornění, že nadpis tabulky byl změněn; tato vlastnost by se neměla používat. Místo toho by se mělo používat accessible-table-caption-object" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Zpřístupněné záhlaví sloupce tabulky" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "Používá se pro upozornění, že záhlaví sloupce tabulky bylo změněno" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Zpřístupněný popis sloupce tabulky" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "Používá se pro upozornění, že popis sloupce tabulky byl změněn" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Zpřístupněné záhlaví řádku tabulky" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "Používá se pro upozornění, že záhlaví řádku tabulky bylo změněno" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Zpřístupněný popis řádku tabulky" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "Používá se pro upozornění, že popis řádku tabulky byl změněn" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Zpřístupněný souhrn tabulky" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Používá se pro upozornění, že souhrn tabulky byl změněn" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Zpřístupněný objekt nadpisu tabulky" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Používá se pro upozornění, že nadpis tabulky byl změněn" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Počet zpřístupněných odkazů hypertextu" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" -msgstr "Počet odkazů, které má aktuální AtkHypertext" +msgstr "Počet odkazů, které má aktuální AtkHypertext" \ No newline at end of file Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/da.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/da.gmo differ diff -Nru atk1.0-1.30.0/po/da.po atk1.0-2.2.0/po/da.po --- atk1.0-1.30.0/po/da.po 2009-12-21 07:05:28.000000000 +0000 +++ atk1.0-2.2.0/po/da.po 2011-09-26 11:54:31.000000000 +0000 @@ -4,466 +4,521 @@ # Ole Laursen , 2002, 03, 04, 06. # Martin Willemoes Hansen , 2004. # Kenneth Nielsen +# flemming christensen , 2011. # msgid "" msgstr "" "Project-Id-Version: atk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-03-13 21:19+0100\n" -"Last-Translator: Kenneth Nielse \n" +"POT-Creation-Date: 2011-09-22 16:11+0200\n" +"PO-Revision-Date: 2011-09-21 14:28+0200\n" +"Last-Translator: flemming christensen \n" "Language-Team: Danish \n" +"Language: da\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" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Valgt henvisning" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Angiver om AtkHyperlink-objektet er valgt" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Antal ankre" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "Antallet af ankre der er associeret med AtkHyperlink-objektet" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Slutindeks" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "Slutindeks for AtkHyperlink-objektet" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Startindeks" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "Startindeks for AtkHyperlink-objektet" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "ugyldig" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "genvejsetiket" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "advarsel" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animation" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "pil" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "kalender" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "lærred" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "afkrydsningsboks" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "afkrydsningsmenupunkt" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "farvevælger" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "kolonnetitel" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "kombinationsboks" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "datoredigering" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "skrivebordsikon" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "skrivebordsramme" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "opkald" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "vindue" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "mappepanel" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "tegneområde" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "filvælger" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "udfylder" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "skrifttypevælger" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "ramme" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "glaspanel" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "html-beholder" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "ikon" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "billede" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "intern ramme" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "etiket" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "lagdelt panel" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "liste" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "listepunkt" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "menu" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "menulinje" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "menupunkt" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "indstillingspanel" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "sidefane" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "sidefaneliste" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "panel" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "adgangskodetekst" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "pop-op-menu" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "fremgangslinje" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "trykknap" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "radioknap" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "radiomenupunkt" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "rodpanel" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "rækketitel" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "rulleskakt" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "rullepanel" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "adskiller" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "skyder" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "delt panel" # dækker betydningen -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "talindtastning" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "statuslinje" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "tabel" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "tabelcelle" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "tabelkolonnetitel" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "tabelrækketitel" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "afrivningsmenupunkt" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminal" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "tekst" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "skifteknap" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "værktøjslinje" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "værktøjstip" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "træ" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "trætabel" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "ukendt" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "visningsområde" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "vindue" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "sidehoved" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "sidefod" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "afsnit" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "lineal" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "program" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "autofuldførelse" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "redigér linje" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "indlejret komponent" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "felt" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "diagram" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "tekst" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "dokumentramme" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "overskrift" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "side" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "sektion" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "redundant objekt" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "formular" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "henvisning" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "vindue for indtastningsmetode" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "tabelrække" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "træelement" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "dokumentregneark" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "dokumentpræsentation" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "dokumenttekst" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "dokumentweb" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "dokument-e-post" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "kommentar" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "listeboks" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "gruppering" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "billedkort" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "påmindelse" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "informationsbjælke" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Tilgængelighedsnavn" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "Objektinstansens navn formateret til assisterende teknologier" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Tilgængelighedsbeskrivelse" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "Beskrivelse af eet objekt, formateret til assisterende teknologier" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Tilgængelighedsophav" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Bruges til at bekendtgøre at ophavet er ændret" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Tilgængelighedsværdi" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Bruges til at bekendtgøre at værdien er ændret" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Tilgængelighedsrolle" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "Tilgængelighedsrolle for dette objekt" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Tilgængelighedslag" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "Tilgængelighedslaget for dette objekt" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Tilgængeligheds-MDI-værdi" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "Tilgængeligheds-MDI-værdien for dette objekt" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Tilgængelighedstabeltitel" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -471,58 +526,58 @@ "Bruges til at bekendtgøre at tabeltitlen er ændret; denne egenskab bør ikke " "benyttes. accessible-table-caption-object bør bruges i stedet" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Tilgængelighedstabelkolonnetitel" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "Bruges til at bekendtgøre at tabelkolonnetitlen er ændret" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Tilgængelighedstabelkolonnebeskrivelse" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "Bruges til at bekendtgøre at tabelkolonnebeskrivelsen er ændret" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Tilgængelighedstabelrækkebeskrivelse" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "Bruges til at bekendtgøre at tabelrækketitlen er ændret" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Tilgængelighedstabelrækkebeskrivelse" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "Bruges til at bekendtgøre at tabelrækkebeskrivelsen er ændret" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Tilgængelighedstabelsammendrag" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Bruges til at bekendtgøre at tabelsammendraget er ændret" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Tilgængelighedstabeltitelobjekt" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Bruges til at bekendtgøre at tabeltitlen er ændret" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Antal tilgængelighedshypertekst-henvisninger" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "Antallet af henvisninger som den aktuelle AtkHypertext har" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/de.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/de.gmo differ diff -Nru atk1.0-1.30.0/po/de.po atk1.0-2.2.0/po/de.po --- atk1.0-1.30.0/po/de.po 2009-12-21 07:05:28.000000000 +0000 +++ atk1.0-2.2.0/po/de.po 2011-09-19 23:45:29.000000000 +0000 @@ -7,464 +7,517 @@ msgid "" msgstr "" "Project-Id-Version: atk 1.5.4\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2006-07-11 13:44+0200\n" -"Last-Translator: Hendrik Richter \n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" +"product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-09-19 17:41+0000\n" +"PO-Revision-Date: 2011-09-19 13:22+0100\n" +"Last-Translator: Christian Kirbach \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Ausgewählter Link" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Gibt an, ob das AtkHyperlink-Objekt ausgewählt ist" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Ankeranzahl" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "Die Anzahl der mit dem AtkHyperlink-Objekt assoziierten Anker" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Endindex" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "Der Endindex des AtkHyperlink-Objekts" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Anfangsindex" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "Der Anfangsindex des AtkHyperlink-Objekts" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "ungültig" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "Kürzelbeschriftung" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "Alarm" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "Animation" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "Pfeil" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "Kalender" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "Leinwand" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "Kontrollkästchen" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "Kontrollmenüobjekt" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "Farbwähler" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "Spaltenkopf" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "Kombinationsfeld" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "Datumseditor" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "Desktop-Symbol" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "Desktop-Rahmen" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "wählen" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "Dialog" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "Verzeichnisleiste" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "Zeichenfeld" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "Dateiwähler" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "Füller" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "Schriftwähler" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "Rahmen" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "Glasleiste" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "HTML-Container" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "Symbol" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "Bild" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "interner Rahmen" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "Beschriftung" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "Schichtleiste" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "Liste" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "Listenobjekt" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "Menü" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "Menüleiste" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "Menüobjekt" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "Optionsleiste" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "Seitenreiter" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "Seitenreiter-Liste" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "Panel" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "Passworttext" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "Popup-Menü" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "Fortschrittsleiste" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "Druckknopf" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "Radioknopf" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "Radiomenüobjekt" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "Wurzelleiste" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "Zeilenkopf" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "Rollbalken" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "Rollleiste" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "Trennlinie" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "Schieber" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "geteilte Leiste" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "Spin-Knopf" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "Statusleiste" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "Tabelle" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "Tabellenzelle" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "Spaltenkopf einer Tabelle" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "Zeilenkopf einer Tabelle" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "Objekt in Abrissmenü" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "Terminal" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "Text" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "Auslöseknopf" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "Werkzeugleiste" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "Minihilfe" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "Baum" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "Baumtabelle" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "unbekannt" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "Sichtfeld" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "Fenster" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "Kopfzeilen" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "Fußzeilen" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "Absatz" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "Lineal" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "Anwendung" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "Auto-Vervollständigung" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "Bearbeitungsleiste" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "eingebettete Komponente" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "Eingabefeld" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "Diagramm" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "Beschriftung" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "Dokumenten-Rahmen" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "Überschrift" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "Seite" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "Abschnitt" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "Redundantes Objekt" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "Formular" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "Verknüpfung" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "Fenster mit Eingabemöglichkeit" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "Tabellenzeile" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "Baumobjekt" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "Arbeitsblatt dokumentieren" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr " Präsentation dokumentieren" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "Text dokumentieren" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "Webseite dokumentieren" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "E-Mail dokumentieren" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "Kommentar" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "Listenbox" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "Gruppierung" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "Bildkarte" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "Benachrichtigung" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "Statusleiste" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Barrierefreier Name" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "" "Name der Objektinstanz, formatiert für den Zugriff durch Hilfstechnologien" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Barrierefreie Beschreibung" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "" "Beschreibung eines Objekts, formatiert für den Zugriff durch " "Hilfstechnologien" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Barrierefreies Eltern-Element" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Wird zur Benachrichtigung bei Änderungen am Eltern-Element verwendet" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Barrierefreier Wert" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Wird zur Benachrichtigung bei Wertänderungen verwendet" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Barrierefreie Rolle" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "Die barrierefreie Rolle dieses Objekts" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Barrierefreie Ebene" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "Die barrierefreie Ebene dieses Objekts" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Barrierefreier MDI-Wert" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "Der barrierefreie MDI-Wert dieses Objekts" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Barrierefreie Tabellenüberschrift" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -473,70 +526,70 @@ "statt dieser Eigenschaft sollte »accessible-table-caption-object« verwendet " "werden" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Barrierefreie Überschrift der Tabellenspalte" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "" "Wird zur Benachrichtigung bei Änderungen an der Überschrift der " "Tabellenspalte verwendet" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Barrierefreie Beschreibung der Tabellenspalte" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "" "Wird zur Benachrichtigung bei Änderungen an der Beschreibung der " "Tabellenspalte verwendet" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Barrierefreie Überschrift der Tabellenzeile" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "" "Wird zur Benachrichtigung bei Änderungen an der Überschrift der " "Tabellenzeile verwendet" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Barrierefreie Beschreibung der Tabellenzeile" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "" "Wird zur Benachrichtigung bei Änderungen an der Beschreibung der " "Tabellenzeile verwendet" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Barrierefreie Tabellenzusammenfassung" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "" "Wird zur Benachrichtigung bei Änderungen an der Tabellenzusammenfassung " "verwendet" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Barrierefreies Objekt zur Tabellenbeschriftung" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "" "Wird zur Benachrichtigung bei Änderungen an der Tabellenbeschriftung " "verwendet" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Anzahl der barrierefreien Hypertext-Links" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "Die Anzahl der Links, die der derzeitige AtkHypertext hat" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/en_GB.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/en_GB.gmo differ diff -Nru atk1.0-1.30.0/po/en_GB.po atk1.0-2.2.0/po/en_GB.po --- atk1.0-1.30.0/po/en_GB.po 2009-12-21 07:05:28.000000000 +0000 +++ atk1.0-2.2.0/po/en_GB.po 2011-09-19 17:06:54.000000000 +0000 @@ -3,466 +3,520 @@ # This file is distributed under the same license as the PACKAGE package. # Abigail Brady , Bastien Nocera , # Gareth Owen 2004. -# -# +# Bruce Cowan , 2011. msgid "" msgstr "" "Project-Id-Version: atk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2006-09-09 15:34-0000\n" -"Last-Translator: David Lodge \n" -"Language-Team: en_GB \n" +"POT-Creation-Date: 2011-09-08 17:45+0100\n" +"PO-Revision-Date: 2011-09-08 17:46+0100\n" +"Last-Translator: Bruce Cowan \n" +"Language-Team: British English \n" +"Language: en_GB\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-Generator: Virtaal 0.7.1-beta1\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Selected Link" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Specifies whether the AtkHyperlink object is selected" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Number of Anchors" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "The number of anchors associated with the AtkHyperlink object" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "End index" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "The end index of the AtkHyperlink object" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Start index" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "The start index of the AtkHyperlink object" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "invalid" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "accelerator label" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "alert" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animation" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "arrow" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "calendar" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "canvas" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "check box" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "check menu item" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "colour chooser" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "column header" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "combo box" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "dateeditor" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "desktop icon" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "desktop frame" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "dial" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "dialogue" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "directory pane" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "drawing area" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "file chooser" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "filler" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "fontchooser" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "frame" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "glass pane" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "html container" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "icon" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "image" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "internal frame" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "label" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "layered pane" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "list" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "list item" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "menu" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "menu bar" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "menu item" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "option pane" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "page tab" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "page tab list" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "panel" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "password text" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "popup menu" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "progress bar" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "push button" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "radio button" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "radio menu item" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "root pane" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "row header" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "scroll bar" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "scroll pane" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "separator" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "slider" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "split pane" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "spin button" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "statusbar" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "table" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "table cell" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "table column header" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "table row header" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "tear off menu item" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminal" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "text" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "toggle button" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "tool bar" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "tool tip" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "tree" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "tree table" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "unknown" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "viewport" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "window" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "header" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "footer" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "paragraph" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "ruler" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "application" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "autocomplete" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "edit bar" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "embedded component" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "entry" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "chart" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "caption" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "document frame" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "heading" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "page" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "section" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "redundant object" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "form" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "link" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "input method window" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "table row" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "tree item" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "document spreadsheet" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "document presentation" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "document text" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "document web" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "document e-mail" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "comment" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "list box" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "grouping" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "image map" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "notification" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "info bar" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Accessible Name" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "Object instance's name formatted for assistive technology access" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Accessible Description" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "Description of an object, formatted for assistive technology access" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Accessible Parent" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Is used to notify that the parent has changed" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Accessible Value" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Is used to notify that the value has changed" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Accessible Role" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "The accessible role of this object" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Accessible Layer" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "The accessible layer of this object" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Accessible MDI Value" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "The accessible MDI value of this object" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Accessible Table Caption" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -470,58 +524,58 @@ "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Accessible Table Column Header" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "Is used to notify that the table column header has changed" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Accessible Table Column Description" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "Is used to notify that the table column description has changed" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Accessible Table Row Header" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "Is used to notify that the table row header has changed" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Accessible Table Row Description" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "Is used to notify that the table row description has changed" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Accessible Table Summary" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Is used to notify that the table summary has changed" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Accessible Table Caption Object" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Is used to notify that the table caption has changed" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Number of Accessible Hypertext Links" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "The number of links which the current AtkHypertext has" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/en@shaw.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/en@shaw.gmo differ diff -Nru atk1.0-1.30.0/po/en@shaw.po atk1.0-2.2.0/po/en@shaw.po --- atk1.0-1.30.0/po/en@shaw.po 2009-12-21 07:05:29.000000000 +0000 +++ atk1.0-2.2.0/po/en@shaw.po 2011-09-19 17:06:54.000000000 +0000 @@ -3,464 +3,463 @@ # Thomas Thurman , 2009. msgid "" msgstr "" -"Project-Id-Version: metacity\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-11-06 19:17+0200\n" +"Project-Id-Version: atk\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=atk&component=general\n" +"POT-Creation-Date: 2010-05-11 17:35+0000\n" +"PO-Revision-Date: 2010-05-12 18:35 -0400\n" "Last-Translator: Thomas Thurman \n" -"Language-Team: Shavian \n" +"Language-Team: Shavian \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" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "𐑕𐑩𐑤𐑧𐑒𐑑𐑩𐑛 𐑤𐑦𐑙𐑒" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" -msgstr "" +msgstr "𐑕𐑐𐑧𐑕𐑦𐑓𐑲𐑟 𐑢𐑧𐑞𐑼 𐑞 AtkHyperlink 𐑪𐑚𐑡𐑧𐑒𐑑 𐑦𐑟 𐑕𐑩𐑤𐑧𐑒𐑑𐑩𐑛" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "𐑯𐑳𐑥𐑚𐑼 𐑝 𐑨𐑙𐑒𐑻𐑟" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" -msgstr "" +msgstr "𐑞 𐑯𐑳𐑥𐑚𐑼 𐑝 𐑨𐑙𐑒𐑻𐑟 𐑩𐑕𐑴𐑖𐑦𐑱𐑑𐑩𐑛 𐑢𐑦𐑞 𐑞 AtkHyperlink 𐑪𐑚𐑡𐑧𐑒𐑑" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "𐑧𐑯𐑛 𐑦𐑯𐑛𐑧𐑒𐑕" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" -msgstr "" +msgstr "𐑞 𐑧𐑯𐑛 𐑦𐑯𐑛𐑧𐑒𐑕 𐑝 𐑞 AtkHyperlink 𐑪𐑚𐑡𐑧𐑒𐑑" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "𐑕𐑑𐑸𐑑 𐑦𐑯𐑛𐑧𐑒𐑕" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" -msgstr "" +msgstr "𐑞 𐑕𐑑𐑸𐑑 𐑦𐑯𐑛𐑧𐑒𐑕 𐑝 𐑞 AtkHyperlink 𐑪𐑚𐑡𐑧𐑒𐑑" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "𐑦𐑯𐑝𐑨𐑤𐑦𐑛" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "𐑨𐑒𐑕𐑧𐑤𐑼𐑱𐑑𐑼 𐑤𐑱𐑚𐑩𐑤" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "𐑩𐑤𐑻𐑑" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "𐑨𐑯𐑩𐑥𐑱𐑖𐑩𐑯" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "𐑨𐑮𐑴" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "𐑒𐑨𐑤𐑩𐑯𐑛𐑼" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "𐑒𐑨𐑯𐑝𐑩𐑕" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "𐑗𐑧𐑒 𐑚𐑪𐑒𐑕" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "𐑗𐑧𐑒 𐑥𐑧𐑯𐑿 𐑲𐑑𐑩𐑥" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" -msgstr "" +msgstr "𐑒𐑳𐑤𐑼 𐑗𐑵𐑟𐑼" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "𐑒𐑪𐑤𐑩𐑥 𐑣𐑧𐑛𐑼" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "𐑒𐑭𐑥𐑚𐑴 𐑚𐑪𐑒𐑕" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" -msgstr "" +msgstr "𐑛𐑱𐑑𐑧𐑛𐑦𐑑𐑼" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "𐑛𐑧𐑕𐑒𐑑𐑪𐑐 𐑲𐑒𐑪𐑯" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "𐑛𐑧𐑕𐑒𐑑𐑪𐑐 𐑓𐑮𐑱𐑥" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "𐑛𐑲𐑤" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "𐑛𐑲𐑩𐑤𐑪𐑜" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "𐑛𐑲𐑮𐑧𐑒𐑑𐑼𐑦 𐑐𐑱𐑯" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "𐑛𐑮𐑷𐑦𐑙 𐑺𐑦𐑩" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" -msgstr "" +msgstr "𐑓𐑲𐑤 𐑗𐑵𐑟𐑼" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "𐑓𐑦𐑤𐑻" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" -msgstr "" +msgstr "𐑓𐑪𐑯𐑑 𐑗𐑵𐑟𐑼" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "𐑓𐑮𐑱𐑥" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "𐑜𐑤𐑭𐑕 𐑐𐑱𐑯" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "HTML 𐑒𐑩𐑯𐑑𐑱𐑯𐑼" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "𐑲𐑒𐑪𐑯" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "𐑦𐑥𐑦𐑡" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "𐑦𐑯𐑑𐑻𐑯𐑩𐑤 𐑓𐑮𐑱𐑥" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "𐑤𐑱𐑚𐑩𐑤" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "𐑤𐑱𐑻𐑛 𐑐𐑱𐑯" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "𐑤𐑦𐑕𐑑" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "𐑤𐑦𐑕𐑑 𐑲𐑑𐑩𐑥" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "𐑥𐑧𐑯𐑿" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "𐑥𐑧𐑯𐑿 𐑚𐑸" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "𐑥𐑧𐑯𐑿 𐑲𐑑𐑩𐑥" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "𐑪𐑐𐑖𐑩𐑯 𐑐𐑱𐑯" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "𐑐𐑱𐑡 𐑑𐑨𐑚" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "𐑐𐑱𐑡 𐑑𐑨𐑚 𐑤𐑦𐑕𐑑" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "𐑐𐑨𐑯𐑩𐑤" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "𐑐𐑭𐑕𐑢𐑼𐑛 𐑑𐑧𐑒𐑕𐑑" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "𐑐𐑪𐑐𐑳𐑐 𐑥𐑧𐑯𐑿" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "𐑐𐑮𐑩𐑜𐑮𐑧𐑕 𐑚𐑸" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "𐑐𐑫𐑖 𐑚𐑳𐑑𐑩𐑯" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "𐑮𐑱𐑛𐑦𐑴 𐑚𐑳𐑑𐑩𐑯" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "𐑮𐑱𐑛𐑦𐑴 𐑥𐑧𐑯𐑿 𐑲𐑑𐑩𐑥" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "𐑮𐑵𐑑 𐑐𐑱𐑯" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "𐑮𐑴 𐑣𐑧𐑛𐑼" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "𐑕𐑒𐑮𐑴𐑤 𐑚𐑸" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "𐑕𐑒𐑮𐑴𐑤 𐑐𐑱𐑯" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "𐑕𐑧𐑐𐑼𐑱𐑑𐑼" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "𐑕𐑤𐑲𐑛𐑼" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "𐑕𐑐𐑤𐑦𐑑 𐑐𐑱𐑯" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "𐑕𐑐𐑦𐑯 𐑚𐑳𐑑𐑩𐑯" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" -msgstr "" +msgstr "𐑕𐑑𐑱𐑑𐑫𐑕𐑚𐑸" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "𐑑𐑱𐑚𐑩𐑤" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "𐑑𐑱𐑚𐑩𐑤 𐑕𐑧𐑤" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "𐑑𐑱𐑚𐑩𐑤 𐑒𐑪𐑤𐑩𐑥 𐑣𐑧𐑛𐑼" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "𐑑𐑱𐑚𐑩𐑤 𐑮𐑴 𐑣𐑧𐑛𐑼" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "𐑑𐑺 𐑪𐑓 𐑥𐑧𐑯𐑿 𐑲𐑑𐑩𐑥" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "𐑑𐑻𐑥𐑦𐑯𐑩𐑤" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "𐑑𐑧𐑒𐑕𐑑" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "𐑑𐑪𐑜𐑩𐑤 𐑚𐑳𐑑𐑩𐑯" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "𐑑𐑵𐑤 𐑚𐑸" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "𐑑𐑵𐑤 𐑑𐑦𐑐" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "𐑑𐑮𐑰" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "𐑑𐑮𐑰 𐑑𐑱𐑚𐑩𐑤" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "𐑳𐑯𐑴𐑯" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" -msgstr "" +msgstr "𐑝𐑿𐑐𐑹𐑑" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "𐑢𐑦𐑯𐑛𐑴" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "𐑣𐑧𐑛𐑼" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "𐑓𐑫𐑑𐑼" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "𐑐𐑨𐑮𐑩𐑜𐑮𐑭𐑓" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "𐑮𐑵𐑤𐑼" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "𐑩𐑐𐑤𐑦𐑒𐑱𐑕𐑩𐑯" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" -msgstr "" +msgstr "𐑷𐑑𐑴𐑒𐑪𐑥𐑐𐑤𐑰𐑑" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "𐑧𐑛𐑦𐑑 𐑚𐑸" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "𐑧𐑥𐑚𐑧𐑛𐑦𐑛 𐑒𐑩𐑥𐑐𐑴𐑯𐑩𐑯𐑑" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "𐑧𐑯𐑑𐑮𐑦" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "𐑗𐑸𐑑" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "𐑒𐑨𐑐𐑖𐑩𐑯" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "𐑛𐑪𐑒𐑿𐑥𐑩𐑯𐑑 𐑓𐑮𐑱𐑥" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "𐑣𐑧𐑛𐑦𐑙" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "𐑐𐑱𐑡" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "𐑕𐑧𐑒𐑖𐑩𐑯" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "𐑮𐑦𐑛𐑩𐑯𐑛𐑩𐑯𐑑 𐑪𐑚𐑡𐑧𐑒𐑑" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "𐑓𐑹𐑥" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "𐑤𐑦𐑙𐑒" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "𐑦𐑯𐑐𐑫𐑑 𐑥𐑧𐑔𐑩𐑛 𐑢𐑦𐑯𐑛𐑴" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:488 msgid "Accessible Name" msgstr "𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤 𐑯𐑱𐑥" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:489 msgid "Object instance's name formatted for assistive technology access" -msgstr "" +msgstr "𐑩𐑚𐑡𐑧𐑒𐑑 𐑦𐑯𐑕𐑑𐑨𐑯𐑕𐑧𐑟 𐑯𐑱𐑥 𐑓𐑹𐑥𐑨𐑑𐑩𐑛 𐑓𐑹 𐑩𐑕𐑦𐑕𐑑𐑦𐑝 𐑑𐑧𐑒𐑯𐑭𐑤𐑩𐑡𐑰 𐑨𐑒𐑕𐑧𐑕" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:495 msgid "Accessible Description" msgstr "𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤 𐑛𐑦𐑕𐑒𐑮𐑦𐑐𐑖𐑩𐑯" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:496 msgid "Description of an object, formatted for assistive technology access" -msgstr "" +msgstr "𐑛𐑦𐑕𐑒𐑮𐑦𐑐𐑖𐑩𐑯 𐑝 𐑩𐑯 𐑪𐑚𐑡𐑧𐑒𐑑, 𐑓𐑹𐑥𐑨𐑑𐑩𐑛 𐑓𐑹 𐑩𐑕𐑦𐑕𐑑𐑦𐑝 𐑑𐑧𐑒𐑯𐑭𐑤𐑩𐑡𐑰 𐑨𐑒𐑕𐑧𐑕" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:502 msgid "Accessible Parent" msgstr "𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤 𐑐𐑺𐑩𐑯𐑑" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:503 msgid "Is used to notify that the parent has changed" msgstr "𐑦𐑟 𐑿𐑟𐑛 𐑑 𐑯𐑴𐑑𐑦𐑓𐑲 𐑞𐑨𐑑 𐑞 𐑐𐑺𐑩𐑯𐑑 𐑣𐑨𐑟 𐑗𐑱𐑯𐑡𐑛" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:509 msgid "Accessible Value" msgstr "𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤 𐑝𐑨𐑤𐑿" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:510 msgid "Is used to notify that the value has changed" msgstr "𐑦𐑟 𐑿𐑟𐑛 𐑑 𐑯𐑴𐑑𐑦𐑓𐑲 𐑞𐑨𐑑 𐑞 𐑝𐑨𐑤𐑿 𐑣𐑨𐑟 𐑗𐑱𐑯𐑡𐑛" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:518 msgid "Accessible Role" msgstr "𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤 𐑮𐑴𐑤" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:519 msgid "The accessible role of this object" msgstr "𐑞 𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤 𐑮𐑴𐑤 𐑝 𐑞𐑦𐑕 𐑪𐑚𐑡𐑧𐑒𐑑" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:527 msgid "Accessible Layer" msgstr "𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤 𐑤𐑱𐑼" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:528 msgid "The accessible layer of this object" msgstr "𐑞 𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤 𐑤𐑱𐑼 𐑝 𐑞𐑦𐑕 𐑪𐑚𐑡𐑧𐑒𐑑" -#: atk/atkobject.c:536 -#, fuzzy +#: ../atk/atkobject.c:536 msgid "Accessible MDI Value" -msgstr "𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤 𐑝𐑨𐑤𐑿" +msgstr "𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤 MDI 𐑝𐑨𐑤𐑿" -#: atk/atkobject.c:537 -#, fuzzy +#: ../atk/atkobject.c:537 msgid "The accessible MDI value of this object" -msgstr "𐑞 𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤 𐑮𐑴𐑤 𐑝 𐑞𐑦𐑕 𐑪𐑚𐑡𐑧𐑒𐑑" +msgstr "𐑞 𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤 MDI 𐑝𐑨𐑤𐑿 𐑝 𐑞𐑦𐑕 𐑪𐑚𐑡𐑧𐑒𐑑" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:545 msgid "Accessible Table Caption" msgstr "𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤 𐑑𐑱𐑚𐑩𐑤 𐑒𐑨𐑐𐑖𐑩𐑯" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:546 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -468,58 +467,59 @@ "𐑦𐑟 𐑿𐑟𐑛 𐑑 𐑯𐑴𐑑𐑦𐑓𐑲 𐑞𐑨𐑑 𐑞 𐑑𐑱𐑚𐑩𐑤 𐑒𐑨𐑐𐑖𐑩𐑯 𐑣𐑨𐑟 𐑗𐑱𐑯𐑡𐑛; 𐑞𐑦𐑕 𐑐𐑮𐑪𐑐𐑼𐑑𐑦 𐑖𐑫𐑛 𐑯𐑪𐑑 𐑚𐑰 𐑿𐑟𐑛. " "𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤-𐑑𐑱𐑚𐑩𐑤-𐑒𐑨𐑐𐑖𐑩𐑯-𐑩𐑚𐑡𐑧𐑒𐑑 𐑖𐑫𐑛 𐑚𐑰 𐑿𐑟𐑛 𐑦𐑯𐑕𐑑𐑧𐑛" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:552 msgid "Accessible Table Column Header" msgstr "𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤 𐑑𐑱𐑚𐑩𐑤 𐑒𐑪𐑤𐑩𐑥 𐑣𐑧𐑛𐑼" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:553 msgid "Is used to notify that the table column header has changed" msgstr "𐑦𐑟 𐑿𐑟𐑛 𐑑 𐑯𐑴𐑑𐑦𐑓𐑲 𐑞𐑨𐑑 𐑞 𐑑𐑱𐑚𐑩𐑤 𐑒𐑪𐑤𐑩𐑥 𐑣𐑧𐑛𐑼 𐑣𐑨𐑟 𐑗𐑱𐑯𐑡𐑛" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:559 msgid "Accessible Table Column Description" msgstr "𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤 𐑑𐑱𐑚𐑩𐑤 𐑒𐑪𐑤𐑩𐑥 𐑛𐑦𐑕𐑒𐑮𐑦𐑐𐑖𐑩𐑯" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:560 msgid "Is used to notify that the table column description has changed" msgstr "𐑦𐑟 𐑿𐑟𐑛 𐑑 𐑯𐑴𐑑𐑦𐑓𐑲 𐑞𐑨𐑑 𐑞 𐑑𐑱𐑚𐑩𐑤 𐑒𐑪𐑤𐑩𐑥 𐑛𐑦𐑕𐑒𐑮𐑦𐑐𐑖𐑩𐑯 𐑣𐑨𐑟 𐑗𐑱𐑯𐑡𐑛" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:566 msgid "Accessible Table Row Header" msgstr "𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤 𐑑𐑱𐑚𐑩𐑤 𐑮𐑴 𐑣𐑧𐑛𐑼" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:567 msgid "Is used to notify that the table row header has changed" msgstr "𐑦𐑟 𐑿𐑟𐑛 𐑑 𐑯𐑴𐑑𐑦𐑓𐑲 𐑞𐑨𐑑 𐑞 𐑑𐑱𐑚𐑩𐑤 𐑮𐑴 𐑣𐑧𐑛𐑼 𐑣𐑨𐑟 𐑗𐑱𐑯𐑡𐑛" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:573 msgid "Accessible Table Row Description" msgstr "𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤 𐑑𐑱𐑚𐑩𐑤 𐑮𐑴 𐑛𐑦𐑕𐑒𐑮𐑦𐑐𐑖𐑩𐑯" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:574 msgid "Is used to notify that the table row description has changed" msgstr "𐑦𐑟 𐑿𐑟𐑛 𐑑 𐑯𐑴𐑑𐑦𐑓𐑲 𐑞𐑨𐑑 𐑞 𐑑𐑱𐑚𐑩𐑤 𐑮𐑴 𐑛𐑦𐑕𐑒𐑮𐑦𐑐𐑖𐑩𐑯 𐑣𐑨𐑟 𐑗𐑱𐑯𐑡𐑛" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:580 msgid "Accessible Table Summary" msgstr "𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤 𐑑𐑱𐑚𐑩𐑤 𐑕𐑳𐑥𐑼𐑦" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:581 msgid "Is used to notify that the table summary has changed" msgstr "𐑦𐑟 𐑿𐑟𐑛 𐑑 𐑯𐑴𐑑𐑦𐑓𐑲 𐑞𐑨𐑑 𐑞 𐑑𐑱𐑚𐑩𐑤 𐑕𐑳𐑥𐑼𐑦 𐑣𐑨𐑟 𐑗𐑱𐑯𐑡𐑛" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:587 msgid "Accessible Table Caption Object" msgstr "𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤 𐑑𐑱𐑚𐑩𐑤 𐑒𐑨𐑐𐑖𐑩𐑯 𐑩𐑚𐑡𐑧𐑒𐑑" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:588 msgid "Is used to notify that the table caption has changed" msgstr "𐑦𐑟 𐑿𐑟𐑛 𐑑 𐑯𐑴𐑑𐑦𐑓𐑲 𐑞𐑨𐑑 𐑞 𐑑𐑱𐑚𐑩𐑤 𐑒𐑨𐑐𐑖𐑩𐑯 𐑣𐑨𐑟 𐑗𐑱𐑯𐑡𐑛" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:594 msgid "Number of Accessible Hypertext Links" msgstr "𐑯𐑳𐑥𐑚𐑼 𐑝 𐑨𐑒𐑕𐑧𐑕𐑩𐑚𐑩𐑤 𐑣𐑲𐑐𐑻𐑑𐑧𐑒𐑕𐑑 𐑤𐑦𐑙𐑒𐑕" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:595 msgid "The number of links which the current AtkHypertext has" -msgstr "" +msgstr "𐑞 𐑯𐑳𐑥𐑚𐑼 𐑝 𐑤𐑦𐑙𐑒𐑕 𐑢𐑦𐑗 𐑞 𐑒𐑳𐑮𐑩𐑯𐑑 AtkHypertext 𐑣𐑨𐑟" + Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/eo.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/eo.gmo differ diff -Nru atk1.0-1.30.0/po/eo.po atk1.0-2.2.0/po/eo.po --- atk1.0-1.30.0/po/eo.po 2009-12-21 07:05:29.000000000 +0000 +++ atk1.0-2.2.0/po/eo.po 2011-09-19 17:06:54.000000000 +0000 @@ -1,569 +1,535 @@ # Esperanto translation of atk. -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the atk package. +# Charles VOELGER , 2003. +# Brian CROOM < >, 2008. +# Michael MORONI < >, 2011. +# Kristjan SCHMIDT , 2010, 2011. # msgid "" msgstr "" "Project-Id-Version: atk 1.3.4\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2003-03-14 16:16+0500\n" -"Last-Translator: Charles Voelger \n" -"Language-Team: Esperanto \n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" +"product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-05-13 16:40+0000\n" +"PO-Revision-Date: 2011-05-14 01:14+0200\n" +"Last-Translator: Kristjan SCHMIDT \n" +"Language-Team: Esperanto \n" +"Language: eo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-05-13 23:12+0000\n" +"X-Generator: Launchpad (build 13037)\n" +"X-Poedit-Language: Esperanto\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" -msgstr "" +msgstr "Elektita ligilo" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" -msgstr "" +msgstr "Specifas ĉu la AtkHyperlink-objekto estas elektita" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" -msgstr "" +msgstr "Nombro da ankroj" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" -msgstr "" +msgstr "La nombro da ankroj asociita kun la AtkHyperlink-objekto" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" -msgstr "" +msgstr "Finindekso" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" -msgstr "" +msgstr "La finindekso de la AtkHyperlink-objekto" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" -msgstr "" +msgstr "Komencindekso" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" -msgstr "" +msgstr "La komencindekso de la AtkHyperlink-objekto" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" -msgstr "nevalida" +msgstr "nevalide" -#: atk/atkobject.c:75 -#, fuzzy +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "rapidig-etikedo" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" -msgstr "atentigo" +msgstr "averto" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animacio" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "sago" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "kalendaro" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "kanvaso" -#: atk/atkobject.c:81 -#, fuzzy +#: ../atk/atkobject.c:81 msgid "check box" msgstr "markobutono" -#: atk/atkobject.c:82 -#, fuzzy +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "mark-menuero" -#: atk/atkobject.c:83 -#, fuzzy +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "kolor-elektilo" -#: atk/atkobject.c:84 -#, fuzzy +#: ../atk/atkobject.c:84 msgid "column header" msgstr "kolumn-ĉapo" -#: atk/atkobject.c:85 -#, fuzzy +#: ../atk/atkobject.c:85 msgid "combo box" -msgstr "tekstlisto" +msgstr "fallisto" -#: atk/atkobject.c:86 -#, fuzzy +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "dat-redaktilo" -#: atk/atkobject.c:87 -#, fuzzy +#: ../atk/atkobject.c:87 msgid "desktop icon" -msgstr "tabul-piktogramo" +msgstr "labortabla piktogramo" -#: atk/atkobject.c:88 -#, fuzzy +#: ../atk/atkobject.c:88 msgid "desktop frame" -msgstr "tabul-kadro" +msgstr "labortabla framo" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "diskelektilo" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "dialogo" -#: atk/atkobject.c:91 -#, fuzzy +#: ../atk/atkobject.c:91 msgid "directory pane" -msgstr "dosieruj-vitraĵo" +msgstr "dosieruja panelo" -#: atk/atkobject.c:92 -#, fuzzy +#: ../atk/atkobject.c:92 msgid "drawing area" -msgstr "desegnareo" +msgstr "desegna areo" -#: atk/atkobject.c:93 -#, fuzzy +#: ../atk/atkobject.c:93 msgid "file chooser" -msgstr "dosier-elektilo" +msgstr "dosierelektilo" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "plenigilo" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 -#, fuzzy +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "font-elektilo" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "kadro" -#: atk/atkobject.c:98 -#, fuzzy +#: ../atk/atkobject.c:98 msgid "glass pane" -msgstr "vitraĵo" +msgstr "vitra panelo" -#: atk/atkobject.c:99 -#, fuzzy +#: ../atk/atkobject.c:99 msgid "html container" msgstr "HTMLujo" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "piktogramo" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "bildo" -#: atk/atkobject.c:102 -#, fuzzy +#: ../atk/atkobject.c:102 msgid "internal frame" -msgstr "interna-kadro" +msgstr "interna framo" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "etikedo" -#: atk/atkobject.c:104 -#, fuzzy +#: ../atk/atkobject.c:104 msgid "layered pane" -msgstr "markota-vitraĵo" +msgstr "tavola panelo" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "listo" -#: atk/atkobject.c:106 -#, fuzzy +#: ../atk/atkobject.c:106 msgid "list item" msgstr "listero" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "menuo" -#: atk/atkobject.c:108 -#, fuzzy +#: ../atk/atkobject.c:108 msgid "menu bar" -msgstr "menuskalo" +msgstr "menubreto" -#: atk/atkobject.c:109 -#, fuzzy +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "menuero" -#: atk/atkobject.c:110 -#, fuzzy +#: ../atk/atkobject.c:110 msgid "option pane" -msgstr "opci-vitraĵo" +msgstr "opcio-panelo" -#: atk/atkobject.c:111 -#, fuzzy +#: ../atk/atkobject.c:111 msgid "page tab" -msgstr "paĝ-langeto" +msgstr "paĝa langeto" -#: atk/atkobject.c:112 -#, fuzzy +#: ../atk/atkobject.c:112 msgid "page tab list" -msgstr "paĝ-langet-listo" +msgstr "paĝa langetlisto" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "panelo" -#: atk/atkobject.c:114 -#, fuzzy +#: ../atk/atkobject.c:114 msgid "password text" -msgstr "pasvort-teksto" +msgstr "pasvorta teksto" -#: atk/atkobject.c:115 -#, fuzzy +#: ../atk/atkobject.c:115 msgid "popup menu" -msgstr "ĉeloka-menuo" +msgstr "ŝprucmenuo" -#: atk/atkobject.c:116 -#, fuzzy +#: ../atk/atkobject.c:116 msgid "progress bar" -msgstr "progresskalo" +msgstr "plenumskalo" -#: atk/atkobject.c:117 -#, fuzzy +#: ../atk/atkobject.c:117 msgid "push button" msgstr "prembutono" -#: atk/atkobject.c:118 -#, fuzzy +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "radiobutono" -#: atk/atkobject.c:119 -#, fuzzy +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "radiomenuero" -#: atk/atkobject.c:120 -#, fuzzy +#: ../atk/atkobject.c:120 msgid "root pane" -msgstr "radik-vitraĵo" +msgstr "radika panelo" -#: atk/atkobject.c:121 -#, fuzzy +#: ../atk/atkobject.c:121 msgid "row header" -msgstr "liniĉapo" +msgstr "vica ĉapo" -#: atk/atkobject.c:122 -#, fuzzy +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "rulumskalo" -#: atk/atkobject.c:123 -#, fuzzy +#: ../atk/atkobject.c:123 msgid "scroll pane" -msgstr "rulumvitraĵo" +msgstr "rulumpanelo" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "disigilo" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "ŝovilo" -#: atk/atkobject.c:126 -#, fuzzy +#: ../atk/atkobject.c:126 msgid "split pane" -msgstr "divid-vitraĵo" +msgstr "divida panelo" -#: atk/atkobject.c:127 -#, fuzzy +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "ŝpinbutono" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" -msgstr "statolistelo" +msgstr "statobreto" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "tabelo" -#: atk/atkobject.c:130 -#, fuzzy +#: ../atk/atkobject.c:130 msgid "table cell" -msgstr "tabel-ĉelo" +msgstr "tabela ĉelo" -#: atk/atkobject.c:131 -#, fuzzy +#: ../atk/atkobject.c:131 msgid "table column header" -msgstr "tabel-kolumn-ĉapo" +msgstr "tabela kolumna ĉapo" -#: atk/atkobject.c:132 -#, fuzzy +#: ../atk/atkobject.c:132 msgid "table row header" -msgstr "tabel-lini-ĉapo" +msgstr "tabela vica ĉapo" -#: atk/atkobject.c:133 -#, fuzzy +#: ../atk/atkobject.c:133 msgid "tear off menu item" -msgstr "deŝiril-menuero" +msgstr "deŝirebla menuero" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminalo" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "teksto" -#: atk/atkobject.c:136 -#, fuzzy +#: ../atk/atkobject.c:136 msgid "toggle button" -msgstr "baskulbutono" +msgstr "baskula butono" -#: atk/atkobject.c:137 -#, fuzzy +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "ilobreto" -#: atk/atkobject.c:138 -#, fuzzy +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "ŝpruchelpilo" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "arbo" -#: atk/atkobject.c:140 -#, fuzzy +#: ../atk/atkobject.c:140 msgid "tree table" -msgstr "arb-tabelo" +msgstr "arba tabelo" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" -msgstr "nekonata" +msgstr "nekonate" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" -msgstr "vidpordego" +msgstr "vidujo" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "fenestro" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "ĉapo" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" -msgstr "suba paĝotitolo" +msgstr "paĝopiedo" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "alineo" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" -msgstr "liniilo" +msgstr "mezurilo" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "aplikaĵo" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" -msgstr "" +msgstr "aŭtomate kompletigi" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" -msgstr "" +msgstr "redaktobreto" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" -msgstr "" +msgstr "enkorpigita komponanto" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" -msgstr "" +msgstr "ero" -#: atk/atkobject.c:153 -#, fuzzy +#: ../atk/atkobject.c:153 msgid "chart" -msgstr "atentigo" +msgstr "diagramo" -#: atk/atkobject.c:154 -#, fuzzy +#: ../atk/atkobject.c:154 msgid "caption" -msgstr "aplikaĵo" +msgstr "apudskribo" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" -msgstr "" +msgstr "dokumenta framo" -#: atk/atkobject.c:156 -#, fuzzy +#: ../atk/atkobject.c:156 msgid "heading" msgstr "ĉapo" -#: atk/atkobject.c:157 -#, fuzzy +#: ../atk/atkobject.c:157 msgid "page" -msgstr "bildo" +msgstr "paĝo" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" -msgstr "" +msgstr "sekcio" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" -msgstr "" +msgstr "redunda objekto" -#: atk/atkobject.c:160 -#, fuzzy +#: ../atk/atkobject.c:160 msgid "form" -msgstr "kadro" +msgstr "formularo" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" -msgstr "" +msgstr "ligilo" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" -msgstr "" +msgstr "enigmetodejo" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:488 msgid "Accessible Name" -msgstr "" +msgstr "Atingebla nomo" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:489 msgid "Object instance's name formatted for assistive technology access" -msgstr "" +msgstr "Nomo de objekta eksemplero formatita por asist-teknologia atingo" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:495 msgid "Accessible Description" -msgstr "" +msgstr "Atingebla priskribo" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:496 msgid "Description of an object, formatted for assistive technology access" msgstr "" +"Priskribo de objekto, formatita por formatita por asist-teknologia atingo" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:502 msgid "Accessible Parent" -msgstr "" +msgstr "Atingebla gepatro" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:503 msgid "Is used to notify that the parent has changed" -msgstr "" +msgstr "Uzita por avizi ke la gepatro ŝanĝiĝis" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:509 msgid "Accessible Value" -msgstr "" +msgstr "Atingebla valoro" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:510 msgid "Is used to notify that the value has changed" -msgstr "" +msgstr "Uzita por avizi ke la valororo ŝanĝiĝis" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:518 msgid "Accessible Role" -msgstr "" +msgstr "Atingebla rolo" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:519 msgid "The accessible role of this object" -msgstr "" +msgstr "La atingebla rolo de ĉi tiu objekto" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:527 msgid "Accessible Layer" -msgstr "" +msgstr "Atingebla tavolo" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:528 msgid "The accessible layer of this object" -msgstr "" +msgstr "La atingebla tavolo de ĉi tiu objekto" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:536 msgid "Accessible MDI Value" -msgstr "" +msgstr "Atingebla MDI-valoro" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:537 msgid "The accessible MDI value of this object" -msgstr "" +msgstr "La atingebla MDI-valoro de ĉi tiu objekto" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:545 msgid "Accessible Table Caption" -msgstr "" +msgstr "Atingebla tabela apudskribo" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:546 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" msgstr "" +"Uzita por avizi ke la tabela apudskribo ŝanĝiĝis; ĉi tiu eco ne devas esti " +"uzita. la \"accessible-table-caption\"-objekto devas esti anstataŭ uzita" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:552 msgid "Accessible Table Column Header" -msgstr "" +msgstr "Atingebla tabela kolumna ĉapo" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:553 msgid "Is used to notify that the table column header has changed" -msgstr "" +msgstr "Uzita por avizi ke la tabela kolumna ĉapo ŝanĝiĝis" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:559 msgid "Accessible Table Column Description" -msgstr "" +msgstr "Atingebla tabela kolumna priskribo" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:560 msgid "Is used to notify that the table column description has changed" -msgstr "" +msgstr "Uzita por avizi ke la tabela kolumna priskribo ŝanĝiĝis" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:566 msgid "Accessible Table Row Header" -msgstr "" +msgstr "Atingebla tabela vica ĉapo" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:567 msgid "Is used to notify that the table row header has changed" -msgstr "" +msgstr "Uzita por avizi ke la tabela vica ĉapo ŝanĝiĝis" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:573 msgid "Accessible Table Row Description" -msgstr "" +msgstr "Atingebla tabela vica priskribo" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:574 msgid "Is used to notify that the table row description has changed" -msgstr "" +msgstr "Uzita por avizi ke la tabela vica priskribo ŝanĝiĝis" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:580 msgid "Accessible Table Summary" -msgstr "" +msgstr "Atingebla tabela resumo" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:581 msgid "Is used to notify that the table summary has changed" -msgstr "" +msgstr "Uzita por avizi ke la tabela resumo ŝanĝiĝis" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:587 msgid "Accessible Table Caption Object" -msgstr "" +msgstr "Atingebla tabela apudskriba objekto" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:588 msgid "Is used to notify that the table caption has changed" -msgstr "" +msgstr "Uzita por avizi ke la tabela apudskribo ŝanĝiĝis" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:594 msgid "Number of Accessible Hypertext Links" -msgstr "" +msgstr "Nombro da atingeblaj hipertekstaj ligiloj" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:595 msgid "The number of links which the current AtkHypertext has" -msgstr "" +msgstr "La nombro da ligiloj kiujn havas la aktuala \"AtkHypertext\"" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/es.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/es.gmo differ diff -Nru atk1.0-1.30.0/po/es.po atk1.0-2.2.0/po/es.po --- atk1.0-1.30.0/po/es.po 2009-12-21 07:05:29.000000000 +0000 +++ atk1.0-2.2.0/po/es.po 2011-09-19 17:06:54.000000000 +0000 @@ -6,469 +6,530 @@ # Pablo Gonzalo del Campo , 2002. # Francisco Javier F. Serrador , 2003. # Francisco Javier F. Serrador , 2004. -# Jorge González , 2008. +# Daniel Mustieles , 2011. +# Jorge González , 2008, 2011. +# msgid "" msgstr "" "Project-Id-Version: atk.HEAD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2008-11-27 21:01+0100\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" +"product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-07-10 08:53+0000\n" +"PO-Revision-Date: 2011-07-10 12:55+0200\n" "Last-Translator: Jorge González \n" -"Language-Team: Español \n" +"Language-Team: Español; Castellano \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" +"Content-Transfer-Encoding: 8bits\n" "X-Generator: KBabel 1.11.4\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Enlace seleccionado" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Especifica si el objeto AtlHyperlink está seleccionado" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Número de anclas" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "El número de anclas asociadas con un objeto AtkHyperlink" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Índice final" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "El índice final de un objeto AtkHyperlink" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Índice inicial" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "El índice inicial de un objeto AtkHyperlink" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "inválido" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "etiqueta de combinación de teclas" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "alerta" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animación" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "flecha" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "calendario" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "lienzo" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "casilla de verificación" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "elemento de menú de verificación" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "seleccionador de color" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "cabecera de la columna" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "caja combinada" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "editor de fecha" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "icono del escritorio" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "marco del escritorio" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "marcador" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "diálogo" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "panel de directorio" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "área de dibujo" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "seleccionador de archivos" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "completador" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "seleccionador de tipografía" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "marco" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "panel transparente" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "contenedor html" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "icono" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "imagen" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "marco interno" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "etiqueta" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "panel superpuesto" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "lista" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "elemento de lista" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "menú" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "barra de menú" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "elemento de menú" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "panel de opciones" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" -msgstr "solapa de página" +msgstr "pestaña de página" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" -msgstr "lista de solapas de página" +msgstr "lista de pestañas de página" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "panel" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "texto de contraseña" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "menú emergente" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "barra de progreso" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "botón de pulsación" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "botón de radio" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "elemento de menú tipo radio" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "panel raíz" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "cabecera de la fila" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "barra de desplazamiento" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "panel de desplazamiento" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "separador" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "deslizador" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "panel divisible" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "botón giratorio" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "barra de estado" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "tabla" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "celda de tabla" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "cabecera de columna de tabla" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "cabecera de fila de tabla" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "elemento de menú desprendible" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminal" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "texto" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "botón de activación" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "barra de estado" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "sugerencia" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "árbol" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "tabla de árbol" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "desconocido" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "puerto de visión" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "ventana" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "cabecera" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "pie" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "párrafo" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "regla" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "aplicación" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "autocompletado" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "barra de edición" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "componente incrustado" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "entrada" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "diagrama" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "descripción" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "marco de documento" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "cabecera" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "página" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "sección" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "Objeto redundante" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "formulario" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "enlace" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "ventana de entrada de método" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "fila de tabla" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "elemento de árbol" + +#: ../atk/atkobject.c:165 +#| msgid "document frame" +msgid "document spreadsheet" +msgstr "documento de hoja de cálculo" + +#: ../atk/atkobject.c:166 +#| msgid "document frame" +msgid "document presentation" +msgstr "documento de presentación" + +#: ../atk/atkobject.c:167 +#| msgid "document frame" +msgid "document text" +msgstr "documento de texto" + +#: ../atk/atkobject.c:168 +#| msgid "document frame" +msgid "document web" +msgstr "documento web" + +#: ../atk/atkobject.c:169 +#| msgid "document frame" +msgid "document email" +msgstr "documento de correo electrónico" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "comentario" + +#: ../atk/atkobject.c:171 +#| msgid "list" +msgid "list box" +msgstr "caja de lista" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "agrupación" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "mapa de imagen" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "notificación" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "barra de información" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Nombre accesible" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "" "El nombre de la instancia del objeto formateado para acceso para " "discapacitados" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Descripción accesible" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "Descripción de un objeto, formateado para acceso para discapacitados" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Antecesor accesible" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Se usa para notificar que el antecesor ha cambiado" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Valor accesible" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Se usa para notificar que el valor ha cambiado" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Rol accesible" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "El rol de accesibilidad de este objeto" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Capa accesible" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "La capa de accesibilidad de este objeto" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Valor MDI accesible" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "El valor accesible MDI de este objeto" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Descripción accesible de la tabla" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -477,62 +538,62 @@ "propiedad no debería ser usada. Debe usarse accesible-table-caption-object " "en su lugar" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Cabecera de columna accesible de la tabla" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "" "Se usa para notificar que la cabecera de columna de la tabla ha cambiado" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Descripción accesible de la columna de la tabla" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "" "Se usa para notificar que la descripción de la columna de la tabla ha " "cambiado" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Cabecera accesible de la fila de la tabla" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "" "Se usa para notificar que la fila de la cabecera de la tabla ha cambiado" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Descripción accesible de la fila de la tabla" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "Se usa para notificar que la fila de la descripción ha cambiado" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Resumen accesible de la tabla" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Se usa para notificar que el resumen de la tabla ha cambiado" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Objeto de título de la tabla accesible" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Se usa para notificar que el título de la tabla ha cambiado" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Número de enlaces de hipertexto accesibles" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "El número de enlaces que el AtkHypertext actual tiene" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/et.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/et.gmo differ diff -Nru atk1.0-1.30.0/po/et.po atk1.0-2.2.0/po/et.po --- atk1.0-1.30.0/po/et.po 2010-03-08 10:23:39.000000000 +0000 +++ atk1.0-2.2.0/po/et.po 2011-09-19 17:06:54.000000000 +0000 @@ -11,462 +11,352 @@ msgid "" msgstr "" "Project-Id-Version: atk HEAD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" +"product=atk&component=general\n" +"POT-Creation-Date: 2010-11-30 02:59+0000\n" "PO-Revision-Date: 2010-02-01 09:04+0300\n" "Last-Translator: Mattias Põldaru \n" "Language-Team: Estonian \n" +"Language: et\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" -#: atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Valitud viit" -#: atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Määrab, milline AtkHyperlink on valitud" -#: atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Ankrute arv" -#: atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "AtkHyperlink objektiga seotud ankrute arv" -#: atk/atkhyperlink.c:119 msgid "End index" msgstr "Lõpuindeks" -#: atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "AtkHyperlink objekti lõpuindeks" -#: atk/atkhyperlink.c:128 msgid "Start index" msgstr "Algusindeks" -#: atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "AtkHyperlink objekti algusindeks" -#: atk/atkobject.c:74 msgid "invalid" msgstr "vigane" -#: atk/atkobject.c:75 msgid "accelerator label" msgstr "kiirklahvi silt" -#: atk/atkobject.c:76 msgid "alert" msgstr "häire" -#: atk/atkobject.c:77 msgid "animation" msgstr "animatsioon" -#: atk/atkobject.c:78 msgid "arrow" msgstr "nool" -#: atk/atkobject.c:79 msgid "calendar" msgstr "kalender" -#: atk/atkobject.c:80 msgid "canvas" msgstr "lõuend" -#: atk/atkobject.c:81 msgid "check box" msgstr "märkeruut" -#: atk/atkobject.c:82 msgid "check menu item" msgstr "märgitav menüükirje" -#: atk/atkobject.c:83 msgid "color chooser" msgstr "värvivalija" -#: atk/atkobject.c:84 msgid "column header" msgstr "veeru päis" -#: atk/atkobject.c:85 msgid "combo box" msgstr "valikukast" -#: atk/atkobject.c:86 msgid "dateeditor" msgstr "kuupäevaredaktor" -#: atk/atkobject.c:87 msgid "desktop icon" msgstr "töölaua ikoon" -#: atk/atkobject.c:88 msgid "desktop frame" msgstr "töölaua raam" -#: atk/atkobject.c:89 msgid "dial" msgstr "häälestusnupp" -#: atk/atkobject.c:90 msgid "dialog" msgstr "dialoog" -#: atk/atkobject.c:91 msgid "directory pane" msgstr "kataloogipaan" -#: atk/atkobject.c:92 msgid "drawing area" msgstr "joonistamise ala" -#: atk/atkobject.c:93 msgid "file chooser" msgstr "failivalija" -#: atk/atkobject.c:94 msgid "filler" msgstr "täitja" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 msgid "fontchooser" msgstr "kirjatüübivalija" -#: atk/atkobject.c:97 msgid "frame" msgstr "raam" -#: atk/atkobject.c:98 msgid "glass pane" msgstr "klaaspaan" -#: atk/atkobject.c:99 msgid "html container" msgstr "html konteiner" -#: atk/atkobject.c:100 msgid "icon" msgstr "ikoon" -#: atk/atkobject.c:101 msgid "image" msgstr "pilt" -#: atk/atkobject.c:102 msgid "internal frame" msgstr "sisemine raam" -#: atk/atkobject.c:103 msgid "label" msgstr "silt" -#: atk/atkobject.c:104 msgid "layered pane" msgstr "kihiline paan" -#: atk/atkobject.c:105 msgid "list" msgstr "nimekiri" -#: atk/atkobject.c:106 msgid "list item" msgstr "nimekirja element" -#: atk/atkobject.c:107 msgid "menu" msgstr "menüü" -#: atk/atkobject.c:108 msgid "menu bar" msgstr "menüüriba" -#: atk/atkobject.c:109 msgid "menu item" msgstr "menüüelement" -#: atk/atkobject.c:110 msgid "option pane" msgstr "valikupaan" -#: atk/atkobject.c:111 msgid "page tab" msgstr "leheküljesakk" -#: atk/atkobject.c:112 msgid "page tab list" msgstr "leheküljesakkide nimekiri" -#: atk/atkobject.c:113 msgid "panel" msgstr "paneel" -#: atk/atkobject.c:114 msgid "password text" msgstr "parooli tekst" -#: atk/atkobject.c:115 msgid "popup menu" msgstr "hüpikmenüü" -#: atk/atkobject.c:116 msgid "progress bar" msgstr "edenemisriba" -#: atk/atkobject.c:117 msgid "push button" msgstr "lülitamisnupp" -#: atk/atkobject.c:118 msgid "radio button" msgstr "raadionupp" -#: atk/atkobject.c:119 msgid "radio menu item" msgstr "raadionupuga menüükirje" -#: atk/atkobject.c:120 msgid "root pane" msgstr "põhipaan" -#: atk/atkobject.c:121 msgid "row header" msgstr "rea päis" -#: atk/atkobject.c:122 msgid "scroll bar" msgstr "kerimisriba" -#: atk/atkobject.c:123 msgid "scroll pane" msgstr "kerimispaan" -#: atk/atkobject.c:124 msgid "separator" msgstr "eraldaja" -#: atk/atkobject.c:125 msgid "slider" msgstr "liugur" -#: atk/atkobject.c:126 msgid "split pane" msgstr "poolitamispaan" -#: atk/atkobject.c:127 msgid "spin button" msgstr "kerimisnupp" -#: atk/atkobject.c:128 msgid "statusbar" msgstr "olekuriba" -#: atk/atkobject.c:129 msgid "table" msgstr "tabel" -#: atk/atkobject.c:130 msgid "table cell" msgstr "tabeli lahter" -#: atk/atkobject.c:131 msgid "table column header" msgstr "tabeli veerupäis" -#: atk/atkobject.c:132 msgid "table row header" msgstr "tabeli reapäis" -#: atk/atkobject.c:133 msgid "tear off menu item" msgstr "rebi-küljest menüüelement" -#: atk/atkobject.c:134 msgid "terminal" msgstr "terminal" -#: atk/atkobject.c:135 msgid "text" msgstr "tekst" -#: atk/atkobject.c:136 msgid "toggle button" msgstr "lülitinupp" -#: atk/atkobject.c:137 msgid "tool bar" msgstr "tööriistariba" -#: atk/atkobject.c:138 msgid "tool tip" msgstr "tööriistavihje" -#: atk/atkobject.c:139 msgid "tree" msgstr "puu" -#: atk/atkobject.c:140 msgid "tree table" msgstr "puutabel" -#: atk/atkobject.c:141 msgid "unknown" msgstr "tundmatu" -#: atk/atkobject.c:142 msgid "viewport" msgstr "vaatepunkt" -#: atk/atkobject.c:143 msgid "window" msgstr "aken" -#: atk/atkobject.c:144 msgid "header" msgstr "päis" -#: atk/atkobject.c:145 msgid "footer" msgstr "jalus" -#: atk/atkobject.c:146 msgid "paragraph" msgstr "lõik" -#: atk/atkobject.c:147 msgid "ruler" msgstr "joonlaud" -#: atk/atkobject.c:148 msgid "application" msgstr "rakendus" -#: atk/atkobject.c:149 msgid "autocomplete" msgstr "automaatlõpetus" -#: atk/atkobject.c:150 msgid "edit bar" msgstr "redigeerimisriba" -#: atk/atkobject.c:151 msgid "embedded component" msgstr "põimitud komponent" -#: atk/atkobject.c:152 msgid "entry" msgstr "sisestus" -#: atk/atkobject.c:153 msgid "chart" msgstr "tabel" -#: atk/atkobject.c:154 msgid "caption" msgstr "seletus" -#: atk/atkobject.c:155 msgid "document frame" msgstr "dokumendi raam" -#: atk/atkobject.c:156 msgid "heading" msgstr "päis" -#: atk/atkobject.c:157 msgid "page" msgstr "lehekülg" -#: atk/atkobject.c:158 msgid "section" msgstr "osa" -#: atk/atkobject.c:159 msgid "redundant object" msgstr "üleliigne objekt" -#: atk/atkobject.c:160 msgid "form" msgstr "vorm" -#: atk/atkobject.c:161 msgid "link" msgstr "viit" -#: atk/atkobject.c:162 msgid "input method window" msgstr "sisestusmeetodi aken" -#: atk/atkobject.c:488 msgid "Accessible Name" msgstr "Kasutatav nimi" -#: atk/atkobject.c:489 msgid "Object instance's name formatted for assistive technology access" msgstr "Objekti nimetus vormindatuna abistava tehnikaga kasutamiseks" -#: atk/atkobject.c:495 msgid "Accessible Description" msgstr "Kasutatav kirjeldus" -#: atk/atkobject.c:496 msgid "Description of an object, formatted for assistive technology access" msgstr "Objekti kirjeldus vormindatuna abistava tehnikaga kasutamiseks" -#: atk/atkobject.c:502 msgid "Accessible Parent" msgstr "Kasutatav vanem" -#: atk/atkobject.c:503 msgid "Is used to notify that the parent has changed" msgstr "Kasutatakse vanema muutustest teavitamiseks" -#: atk/atkobject.c:509 msgid "Accessible Value" msgstr "Kasutatav väärtus" -#: atk/atkobject.c:510 msgid "Is used to notify that the value has changed" msgstr "Kasutatakse väärtuse muutustest teavitamiseks" -#: atk/atkobject.c:518 msgid "Accessible Role" msgstr "Kasutatav roll" -#: atk/atkobject.c:519 msgid "The accessible role of this object" msgstr "Objekti kasutatav roll" -#: atk/atkobject.c:527 msgid "Accessible Layer" msgstr "Kasutatav kiht" -#: atk/atkobject.c:528 msgid "The accessible layer of this object" msgstr "Objekti kasutatav kiht" -#: atk/atkobject.c:536 msgid "Accessible MDI Value" msgstr "Kasutatav MDI väärtus" -#: atk/atkobject.c:537 msgid "The accessible MDI value of this object" msgstr "Objekti kasutatav MDI (mitme dokumendi liides) väärtus" -#: atk/atkobject.c:545 msgid "Accessible Table Caption" msgstr "Kasutatav tabeli seletus" -#: atk/atkobject.c:546 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -475,58 +365,44 @@ "soovitatav mitte kasutada. Selle asmele võiks kasutada accessible-table-" "caption-object omadust" -#: atk/atkobject.c:552 msgid "Accessible Table Column Header" msgstr "Kasutatav tabeli veeru päis" -#: atk/atkobject.c:553 msgid "Is used to notify that the table column header has changed" msgstr "Kasutatakse tabeli veeru päise muutustest teavitamiseks" -#: atk/atkobject.c:559 msgid "Accessible Table Column Description" msgstr "Kasutatav tabeli veeru kirjeldus" -#: atk/atkobject.c:560 msgid "Is used to notify that the table column description has changed" msgstr "Kasutatakse tabeli veeru kirjelduse muutustest teavitamiseks" -#: atk/atkobject.c:566 msgid "Accessible Table Row Header" msgstr "Kasutatav tabeli rea päis" -#: atk/atkobject.c:567 msgid "Is used to notify that the table row header has changed" msgstr "Kasutatakse tabeli rea päise muutustest teavitamiseks" -#: atk/atkobject.c:573 msgid "Accessible Table Row Description" msgstr "Kasutatav tabeli rea kirjeldus" -#: atk/atkobject.c:574 msgid "Is used to notify that the table row description has changed" msgstr "Kasutatakse tabeli rea kirjelduse muutustest teavitamiseks" -#: atk/atkobject.c:580 msgid "Accessible Table Summary" msgstr "Kasutatav tabeli kokkuvõte" -#: atk/atkobject.c:581 msgid "Is used to notify that the table summary has changed" msgstr "Kasutatakse tabeli kokkuvõtte muutustest teavitamiseks" -#: atk/atkobject.c:587 msgid "Accessible Table Caption Object" msgstr "Kasutatav tabeli seletuse objekt" -#: atk/atkobject.c:588 msgid "Is used to notify that the table caption has changed" msgstr "Kasutatakse tabeli seletuse muutustest teavitamiseks" -#: atk/atkobject.c:594 msgid "Number of Accessible Hypertext Links" msgstr "Kasutatavate viitade arv" -#: atk/atkobject.c:595 msgid "The number of links which the current AtkHypertext has" msgstr "Käesoleva AtkHypertext'i viitade arv" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/eu.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/eu.gmo differ diff -Nru atk1.0-1.30.0/po/eu.po atk1.0-2.2.0/po/eu.po --- atk1.0-1.30.0/po/eu.po 2009-12-21 07:05:29.000000000 +0000 +++ atk1.0-2.2.0/po/eu.po 2011-09-19 23:45:29.000000000 +0000 @@ -1,475 +1,528 @@ -# translation of eu.po to Basque +# translation of atk.master.po to Basque # translation of atk.HEAD.po to # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. # # Hizkuntza Politikarako Sailburuordetza , 2004. # Iñaki Larrañaga Murgoitio , 2004, 2005, 2006, 2009. -# Iñaki Larrañaga Murgoitio , 2007. +# Iñaki Larrañaga Murgoitio , 2007, 2011. msgid "" msgstr "" -"Project-Id-Version: eu\n" +"Project-Id-Version: atk.master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-02-10 14:18+0100\n" -"Last-Translator: Iñaki Larrañaga Murgoitio \n" +"POT-Creation-Date: 2011-09-19 19:45+0200\n" +"PO-Revision-Date: 2011-09-16 16:36+0200\n" +"Last-Translator: Iñaki Larrañaga Murgoitio \n" "Language-Team: Basque \n" +"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Hautatutako esteka" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "AtkHyperlink objektua hautatuta dagoen den edo ez zehazten du" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Aingura kopurua" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "AtkHyperlink objektuarekin asoziatutako aingura kopurua" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Amaierako indizea" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "AtkHyperlink objektuaren amaierako indizea" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Hasierako indizea" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "AtkHyperlink objektuaren hasierako indizea" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "baliogabea" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "bizkortze-etiketa" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "abisua" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animazioa" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "gezia" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "egutegia" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "oihala" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "kontrol-laukia" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "egiaztatu menu-elementua" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "kolore-hautatzailea" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "zutabe-goiburua" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "konbinazio-koadroa" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "data-editorea" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "mahaigaineko ikonoa" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "mahaigaineko markoa" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "markatu" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "elkarrizketa" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "direktorio-panela" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "marrazte-area" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "fitxategi-hautatzailea" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "betegarria" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "letra-tipoen hautatzailea" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "markoa" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "panel gardena" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "html-edukiontzia" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "ikonoa" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "irudia" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "barneko markoa" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "etiketa" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "geruzadun panela" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "zerrenda" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "zerrenda-elementua" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "menua" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "menu-barra" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "menu-elementua" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "aukera-panela" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "orrialde-fitxa" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "orrialde-fitxen zerrenda" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "panela" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "pasahitzaren testua" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "laster-menua" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "progresio-barra" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "sakatze-botoia" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "irrati-botoia" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "irratiaren menu-elementua" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "erro-panela" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "errenkada-goiburua" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "korritze-barra" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "korritze-panela" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "bereizlea" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "graduatzailea" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "zatitze-panela" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "biratze-botoia" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "egoera-barra" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "taula" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "taulako gelaxka" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "taulako zutabe-goiburua" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "taulako errenkada-goiburua" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "menu askagarriko elementua" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminala" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "testua" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "txandakatze-botoia" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "tresna-barra" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "aholkua" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "zuhaitza" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "zuhaitz-taula" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "ezezaguna" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "leihatila" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "leihoa" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "goiburua" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "orri-oina" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "paragrafoa" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "erregela" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "aplikazioa" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "auto-osatzea" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "edizio-barra" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "kapsulatutako osagaia" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "sarrera" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "diagrama" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "epigrafea" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "dokumentuaren markoa" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "izenburua" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "orria" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "atala" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "objektu erredundanteak" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "inprimakia" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "esteka" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "sarrerako metodoaren leihoa" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "taulako errenkada" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "zuhaitzeko elementua" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "kalkulu-orriaren dokumentua" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "aurkezpenaren dokumentua" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "testu-dokumentua" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "web dokumentua" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "posta elektronikoaren dokumentua" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "iruzkina" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "zerrenda-koadroa" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "elkartzea" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "irudi-mapa" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "jakinarazpena" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "informazio-barra" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Izen erabilgarria" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "" "Objektuaren instatziaren izena, erabilgarritasunaren laguntza-" "euskarriarentzako formateatuta" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Azalpen erabilgarria" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "" "Objektu baten azalpena, erabilgarritasunaren laguntza-euskarriarentzako " "formateatuta" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Guraso erabilgarria" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Gurasoa aldatu dela adierazteko erabiltzen da" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Balio erabilgarria" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Balioa aldatu dela adierazteko erabiltzen da" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Egiteko erabilgarria" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "Objektu honen egiteko erabilgarria" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Geruza erabilgarria" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "Objektu honentzako geruza erabilgarria" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "MDI balio erabilgarria" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "Objektu honentzako MDI balio erabilgarria" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Taularen epigrafe erabilgarria" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -478,58 +531,58 @@ "litzateke erabili behar. Honen ordez erabili accessible-table-caption-object " "behar da" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Taularen zutabe-goiburu erabilgarria" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "Taularen zutabe-goiburua aldatu dela adierazteko erabiltzen da" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Taularen zutabe-azalpen erabilgarria" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "Taularen zutabe-azalpena aldatu dela adierazteko erabiltzen da" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Taularen errenkada-goiburu erabilgarria" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "Taularen errenkada-goiburua aldatu dela adierazteko erabiltzen da" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Taularen errenkada-azalpen erabilgarria" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "Taularen errenkada-azalpena aldatu dela adierazteko erabiltzen da" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Taularen laburpen erabilgarria" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Taularen laburpena aldatu dela adierazteko erabiltzen da" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Taularen epigrafe-objektu erabilgarria" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Taularen epigrafea aldatu dela adierazteko erabiltzen da" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Hipertestu-esteka erabilgarrien kopurua" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "Uneko AtkHypertext-ek duen esteka kopurua" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/fa.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/fa.gmo differ diff -Nru atk1.0-1.30.0/po/fa.po atk1.0-2.2.0/po/fa.po --- atk1.0-1.30.0/po/fa.po 2009-12-21 07:05:29.000000000 +0000 +++ atk1.0-2.2.0/po/fa.po 2011-09-19 17:06:54.000000000 +0000 @@ -1,533 +1,593 @@ # Persian translation of atk. -# Copyright (C) 2003, 2005 Sharif FarsiWeb, Inc. +# Copyright (C) 2011 Iranian Free Software Users Group (IFSUG.org)translation team. +# Copyright (C) Iranian Free Software Users Group (IFSUG.org)translation team, 2010. # This file is distributed under the same license as the atk package. # Roozbeh Pournader , 2003. # Elnaz Sarbar , 2005. # Meelad Zakaria , 2005. +# Mahyar Moghimi , 2010. +# Arash Mousavi , 2011. # msgid "" msgstr "" "Project-Id-Version: atk\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2005-07-13 19:23+0430\n" -"Last-Translator: Meelad Zakaria \n" -"Language-Team: Persian \n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-07-07 17:40+0000\n" +"PO-Revision-Date: 2011-07-18 03:49+0330\n" +"Last-Translator: Arash Mousavi \n" +"Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Persian\n" +"X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n" +"X-Poedit-SourceCharset: utf-8\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "پیوند انتخاب شده" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "مشخص می‌کند شیء AtkHyperlink انتخاب شده است یا نه" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "تعداد لنگرها" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "تعداد لنگرهای وابسته به شیء AtkHyperlink" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "نمایه‌ی پایان" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "نمایه‌ی پایان شیء AtkHyperlink" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "نمایه‌ی آغاز" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "نمایه‌ی آغاز شیء AtkHyperlink" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "نامعتبر" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "برچسب شتاب‌ده" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "آژیر" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "پویانمایی" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "پیکان" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "تقویم" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "بوم" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "جعبه‌ی نشان‌زنی" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "مورد منوی نشان‌زنی" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "انتخابگر رنگ" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "سرستون" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" -msgstr "" +msgstr "جعبه ترکیب" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "ویرایشگر تاریخ" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "شمایل رومیزی" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "چارچوب رومیزی" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "شماره‌گیری" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "محاوره" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "قاب شاخه" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "ناحیه‌ی ترسیم" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "انتخابگر پرونده" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "پرکننده" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "انتخابگر قلم" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "چارچوب" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "قاب شیشه‌ای" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" -msgstr "" +msgstr "دربرگیرنده‌ی html" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "شمایل" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "تصویر" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "چارچوب داخلی" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "برچسب" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "قاب لایه‌دار" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "فهرست" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "مورد فهرست" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "منو" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "نوار منو" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "مورد منو" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "قاب گزینه" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" -msgstr "" +msgstr "زبانه‌ی صفحه" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" -msgstr "" +msgstr "فهرست برگه‌های صفحه" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "تابلو" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "متن گذرواژه" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "منوی واشو" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "نوار پیشرفت" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "دکمه‌ی فشاری" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "دکمه‌ی رادیویی" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "مورد منوی رادیویی" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "قاب ریشه" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "سرسطر" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "نوار لغزش" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "قاب لغزش" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "جداساز" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "لغزنده" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "قاب تقسیم کننده" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" -msgstr "" +msgstr "دگمه دوار" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "نوار وضعیت" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "جدول" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "خانه‌ی جدول" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "سرستون جدول" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "سرسطر جدول" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "مورد منوی جداشدنی" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "پایانه" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "متن" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "دکمه‌ی ضامن" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "نوار ابزار" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "راهنمای آنی" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "درخت" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "جدول درخت" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "نامعلوم" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "دیدگاه" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "پنجره" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "سرصفحه" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "پاصفحه" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "پاراگراف" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "خط‌کش" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "برنامه" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "تکمیل خودکار" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "نوار ویرایش" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "مؤلفه‌ی تعبیه‌شده" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" -msgstr "" +msgstr "مدخل" -#: atk/atkobject.c:153 -#, fuzzy +#: ../atk/atkobject.c:153 msgid "chart" -msgstr "آژیر" +msgstr "نمودار" -#: atk/atkobject.c:154 -#, fuzzy +#: ../atk/atkobject.c:154 msgid "caption" -msgstr "برنامه" +msgstr "عنوان" -#: atk/atkobject.c:155 -#, fuzzy +#: ../atk/atkobject.c:155 msgid "document frame" -msgstr "چارچوب رومیزی" +msgstr "چارچوب سند" -#: atk/atkobject.c:156 -#, fuzzy +#: ../atk/atkobject.c:156 msgid "heading" -msgstr "سرصفحه" +msgstr "سرفصل" -#: atk/atkobject.c:157 -#, fuzzy +#: ../atk/atkobject.c:157 msgid "page" -msgstr "تصویر" +msgstr "صفحه" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" -msgstr "" +msgstr "بخش" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" -msgstr "" +msgstr "شئ زیادی" -#: atk/atkobject.c:160 -#, fuzzy +#: ../atk/atkobject.c:160 msgid "form" -msgstr "چارچوب" +msgstr "فرم" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" -msgstr "" +msgstr "پیوند" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" -msgstr "" +msgstr "پنجره‌ی روش ورودی" + +#: ../atk/atkobject.c:163 +#| msgid "table row header" +msgid "table row" +msgstr "سطر جدول" + +#: ../atk/atkobject.c:164 +#| msgid "tree table" +msgid "tree item" +msgstr "مورد درخت" + +#: ../atk/atkobject.c:165 +#| msgid "document frame" +msgid "document spreadsheet" +msgstr "سند صفحه‌گسترده" + +#: ../atk/atkobject.c:166 +#| msgid "document frame" +msgid "document presentation" +msgstr "سند ارئه" + +#: ../atk/atkobject.c:167 +#| msgid "document frame" +msgid "document text" +msgstr "سند متنی" + +#: ../atk/atkobject.c:168 +#| msgid "document frame" +msgid "document web" +msgstr "سند وب" + +#: ../atk/atkobject.c:169 +#| msgid "document frame" +msgid "document email" +msgstr "سند پست‌الکترونیکی" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "توضیح" + +#: ../atk/atkobject.c:171 +#| msgid "list" +msgid "list box" +msgstr "جعبه فهرست" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "درحال گروه کردن" + +#: ../atk/atkobject.c:173 +#| msgid "image" +msgid "image map" +msgstr "نقشه تصویر" + +#: ../atk/atkobject.c:174 +#| msgid "animation" +msgid "notification" +msgstr "اعلان" + +#: ../atk/atkobject.c:175 +#| msgid "menu bar" +msgid "info bar" +msgstr "نوار اطلاعات" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "نام دسترسی‌پذیری" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "نام نمونه‌ی شیء که برای دسترسی به فناوری یاری‌دهنده قالب‌بندی شده" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "شرح دسترسی‌پذیری" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "شرح یک شیء، که برای دسترسی به فناوری یاری‌دهنده قالب‌بندی شده" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "والد دسترسی‌پذیری" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "برای اطلاع دادن از تغییر والد استفاده می‌شود" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "مقدار برای دسترسی‌پذیری" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "برای اطلاع دادن از تغییر مقدار استفاده می‌شود" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "نقش دسترسی‌پذیری" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "نقش دسترسی‌پذیری این شیء" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "لایه‌ی دسترسی‌پذیری" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "لایه‌ی دسترسی‌پذیری این شیء" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "مقدار MDI دسترسی‌پذیری" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "مقدار MDI دسترسی‌پذیری این شیء" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "عنوان جدول دسترسی‌پذیری" -#: atk/atkobject.c:546 -msgid "" -"Is used to notify that the table caption has changed; this property should " -"not be used. accessible-table-caption-object should be used instead" -msgstr "" -"برای اطلاع دادن از تغییر عنوان جدول استفاده می‌شود؛ نباید این ویژگی را به کار " -"برد.درعوض باید از accessible-table-caption-object استفاده شود." +#: ../atk/atkobject.c:572 +msgid "Is used to notify that the table caption has changed; this property should not be used. accessible-table-caption-object should be used instead" +msgstr "برای اطلاع دادن از تغییر عنوان جدول استفاده می‌شود؛ نباید این ویژگی را به کار برد.درعوض باید از accessible-table-caption-object استفاده شود." -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "سرستون جدول دسترسی‌پذیری" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "برای اطلاع دادن از تغیر سرستون جدول استفاده می‌شود" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "شرح ستون جدول برای دسترسی‌پذیری" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "برای اطلاع دادن از تغییر شرح ستون جدول استفاده می‌شود" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "سرسطر جدول دسترسی‌پذیری" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "برای اطلاع دادن از تغییر سرسطر جدول استفاده می‌شود" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "شرح سطر جدول دسترسی‌پذیری" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "برای اطلاع دادن از تغییر شرح سطر جدول استفاده می‌شود" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "خلاصه‌ی جدول دسترسی‌پذیری" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "برای اطلاع دادن از تغییر خلاصه جدول استفاده می‌شود" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "شیء عنوان جدول برای دسترسی‌پذیری" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "برای اطلاع دادن از تغییر عنوان جدول استفاده می‌شود" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "تعداد پیوند‌های Hypertext دسترسی‌پذیری" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "تعداد پیوندهایی که AtkHypertext فعلی دارد" + Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/fr.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/fr.gmo differ diff -Nru atk1.0-1.30.0/po/fr.po atk1.0-2.2.0/po/fr.po --- atk1.0-1.30.0/po/fr.po 2009-12-21 07:05:29.000000000 +0000 +++ atk1.0-2.2.0/po/fr.po 2011-09-19 17:06:54.000000000 +0000 @@ -1,472 +1,526 @@ # French translation of atk. -# Copyright (C) 2002-2006 Free Software Foundation, Inc. +# Copyright (C) 2002-2011 Free Software Foundation, Inc. # This file is distributed under GNU Library General Public License Version 2. # # Jean-Michel Ardantz , 2002-2006. # Christophe Merlet , 2004-2006. # Robert-André Mauchin , 2007. +# Claude Paroz , 2011 # msgid "" msgstr "" "Project-Id-Version: atk HEAD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-02-19 22:33+0100\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" +"product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-07-07 17:40+0000\n" +"PO-Revision-Date: 2011-08-04 21:45+0200\n" "Last-Translator: Claude Paroz \n" "Language-Team: GNOME French Team \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Lien sélectionné" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Indique si l'objet AtkHyperlink est sélectionné" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Nombre d'ancres" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "Le nombre d'ancres associés avec l'objet AtkHyperlink" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Fin d'index" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "La fin de l'index de l'objet AtkHyperlink" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Début d'index" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "Le début de l'index de l'objet AtkHyperlink" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "non valide" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "étiquette du raccourci" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "alerte" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animation" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "pointeur" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "calendrier" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "canevas" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "case à cocher" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "élément de menu avec case à cocher" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "sélecteur de couleurs" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "en-tête de colonne" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "boîte combinée" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "éditeur de dates" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "icône du bureau" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "cadre du bureau" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "afficheur circulaire" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "boîte de dialogue" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "panneau des répertoires" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "zone de dessin" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "sélecteur de fichiers" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "objet de remplissage" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "sélecteur de polices" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "cadre" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "panneau de verre" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "conteneur html" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "icône" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "image" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "cadre interne" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "étiquette" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "panneau superposé" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "liste" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "élément de liste" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "menu" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "barre de menus" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "élément de menu" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "panneau d'options" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "onglet de page" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "liste d'onglets de page" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "tableau de bord" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "champ de mot de passe" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "menu contextuel" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "barre de progression" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "bouton" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "bouton radio" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "élément de menu avec bouton radio" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "panneau racine" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "en-tête de ligne" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "barre de défilement" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "panneau de défilement" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "séparateur" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "glissière" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "panneau divisible" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "bouton de réglage" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "barre d'état" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "tableau" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "cellule de tableau" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "en-tête de colonne de tableau" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "en-tête de ligne de tableau" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "élément de menu détachable" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "console" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "texte" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "bouton à deux états" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "barre d'outils" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "infobulle" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "arbre" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "tableau arborescent" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "inconnu" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "fenêtre de travail" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "fenêtre" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "en-tête de page" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "bas de page" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "paragraphe" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "ligne" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "application" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "auto-complètement" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "barre d'édition" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "composant incorporé" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "zone de saisie" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "graphique" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "légende" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "cadre du document" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "en-tête" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "page" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "section" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "objet redondant" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "formulaire" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "lien" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "fenêtre de méthode de saisie" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "ligne de tableau" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "élément arborescent" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "document tableur" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "document présentation" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "document texte" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "document web" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "document courriel" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "commentaire" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "liste déroulante" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "groupement" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "carte image" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "notification" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "barre d'informations" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Nom accessible" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "" "Nom d'une instance d'objet formaté pour être accessible par les aides " "techniques" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Description accessible" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "" "Description d'un objet, formaté pour être accessible par les aides techniques" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Parent accessible" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Est utilisé pour notifier que le parent a changé" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Valeur accessible" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Est utilisé pour notifier que la valeur a changé" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Rôle accessible" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "Le rôle accessible de cet objet" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Couche accessible" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "La couche accessible de cet objet" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Valeur MDI accessible" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "La valeur MDI accessible de cet objet" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Légende de tableau accessible" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -475,63 +529,63 @@ "propriété ne devrait pas être utilisée. La propriété accessible-table-" "caption-object devrait être utilisée à la place" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "En-tête de colonne de tableau accessible" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "" "Est utilisé pour notifier que l'en-tête de la colonne du tableau a changé" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Description de colonne de tableau accessible" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "" "Est utilisé pour notifier que la description de la colonne du tableau a " "changé" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "En-tête de rangée de tableau accessible" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "" "Est utilisé pour notifier que l'en-tête de la rangée du tableau a changé" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Description de rangée de tableau accessible" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "" "Est utilisé pour notifier que la description de la rangée du tableau a changé" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Résumé de tableau accessible" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Est utilisé pour notifier que le résumé du tableau a changé" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Objet légende de tableau accessible" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Est utilisé pour notifier que la légende du tableau a changé" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Nombre de liens hypertextes accessibles" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "Le nombre de liens contenus par le AtkHypertext" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/gl.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/gl.gmo differ diff -Nru atk1.0-1.30.0/po/gl.po atk1.0-2.2.0/po/gl.po --- atk1.0-1.30.0/po/gl.po 2010-03-08 10:23:40.000000000 +0000 +++ atk1.0-2.2.0/po/gl.po 2011-09-19 17:06:54.000000000 +0000 @@ -1,474 +1,529 @@ # translation of gl.po to Galego # This file is distributed under the same license as the ATK package. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. +# Copyright (C) 2010 Fran Diéguez # # Ignacio Casal Quinteiro , 2005, 2006. -# Fran Diéguez , 2009. # Mancomún - Centro de Referencia e Servizos de Software Libre , 2009. -# Fran Diéguez , 2010. +# +# Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas +# colaborar connosco, podes atopar máis información en +# Fran Diéguez , 2009, 2010, 2011. +# msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2010-02-05 00:53+0100\n" -"Last-Translator: Fran Diéguez \n" -"Language-Team: Gallician \n" +"POT-Creation-Date: 2011-07-11 00:06+0200\n" +"PO-Revision-Date: 2011-07-11 00:06+0200\n" +"Last-Translator: Fran Diéguez \n" +"Language-Team: Galician \n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Ligazón seleccionada" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Especifica se o obxecto AtkHyperlink está seleccionado" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Número de áncoras" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "O número de áncoras asociadas ao obxecto AtkHyperlink" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Índice final" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "O índice final do obxecto AtkHyperlink" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Índice inicial" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "O índice inicial do obxecto AtkHyperlink" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "non válido" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "etiqueta de tecla rápida" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "alerta" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animación" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "frecha" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "calendario" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "lenzo" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "caixa de verificación" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "elemento de menú de verificación" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "selector de cor" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "cabeceira de columna" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "caixa de combinación" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "editor de data" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "icona de escritorio" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "marco de escritorio" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "marcador" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "diálogo" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "panel de directorio" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "área de debuxo" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "selector de ficheiros" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "recheo" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "selector de tipo de letra" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "marco" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "panel transparente" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "contedor html" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "icona" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "imaxe" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "marco interno" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "etiqueta" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "panel en capas" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "lista" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "elemento de lista" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "menú" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "barra de menú" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "elemento de menú" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "panel de opcións" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" -msgstr "separador de páxina" +msgstr "lapela de páxina" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" -msgstr "lista de separadores de páxina" +msgstr "lista de lapelas de páxina" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "panel" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "texto de contrasinal" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "menú emerxente" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "barra de progreso" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "botón de premer" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "botón de opción" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "elemento de menú de opción" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "panel raíz" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "cabeceira de fila" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "barra de desprazamento" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "panel de desprazamento" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "separador" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "control desprazábel" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "panel dividido" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "botón de axuste" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "barra de estado" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "táboa" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "cela de táboa" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "cabeceira de columna de táboa" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "cabeceira de fila de táboa" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "elemento de menú desprazábel" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminal" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "texto" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "botón de estado" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "barra de ferramentas" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "ferramenta de suxestións" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "árbore" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "táboa en árbore" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "descoñecido" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "área de visualización" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "xanela" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "cabeceira" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "pé de páxina" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "parágrafo" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "regra" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "aplicativo" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "completar automaticamente" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "barra de edición" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "compoñente incorporado" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "entrada" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "gráfica" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "lenda" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "marco de documento" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "título" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "páxina" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "sección" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "obxecto redundante" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "formulario" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "ligazón" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "xanela de método de entrada" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "fila de táboa" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "elemento de árbore" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "documento da folla de cálculo" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "documento de presentación" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "documento de texto" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "documento web" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "documento de correo electrónico" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "comentario" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "caixa de lista" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "agrupación" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "mapa de imaxe" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "notificación" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "barra de información" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Nome accesíbel" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "" "O nome da instancia do obxecto formatado para o acceso a tecnoloxías " "adaptadas" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Descrición accesíbel" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "" "A descrición dun obxecto formatado para o acceso a tecnoloxías adaptadas" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Pai accesíbel" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Úsase para notificar que se modificou o pai" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Valor accesíbel" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Úsase para notificar que se modificou o valor" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Rol accesíbel" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "O rol accesíbel deste obxecto" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Capa accesíbel" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "A capa accesíbel deste obxecto" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Valor MDI accesíbel" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "O valor MDI accesíbel deste obxecto" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Título da táboa accesíbel" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -476,58 +531,58 @@ "Úsase para notificar que se modificou o título da táboa. Esta propiedade non " "se debe usar. En seu lugar, debe usarse accessible-table-caption-object" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Cabeceira de columna da táboa accesíbel" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "Úsase para notificar que se modificou a cabeceira de columna da táboa" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Descrición de columna da táboa accesíbel" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "Úsase para notificar que se modificou a descrición de columna da táboa" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Cabeceira de fila de táboa accesíbel" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "Úsase para notificar que se modificou a cabeceira de fila da táboa" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Descrición de fila da táboa accesíbel" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "Úsase para notificar que se modificou a descrición de fila da táboa" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Resumo de táboa accesíbel" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Úsase para notificar que se modificou o resumo da táboa" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Obxecto de título de táboa accesíbel" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Úsase para notificar que se modificou o título da táboa" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Número de ligazóns de hipertexto accesíbeis" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "O número de ligazóns que ten o AtkHypertext actual" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/gu.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/gu.gmo differ diff -Nru atk1.0-1.30.0/po/gu.po atk1.0-2.2.0/po/gu.po --- atk1.0-1.30.0/po/gu.po 2009-12-21 07:05:29.000000000 +0000 +++ atk1.0-2.2.0/po/gu.po 2011-09-26 11:54:31.000000000 +0000 @@ -1,474 +1,538 @@ # translation of atk.HEAD.gu.po to Gujarati +# Copyright (C) 2004, 2005, 2006, 2009 Free Software Foundation, Inc. # MagNet , 2004. # Ankit Patel , 2004. # Ankit Patel , 2005, 2006. -# Sweta Kothari , 2009. -# Copyright (C) 2004, 2005, 2006, 2009 Free Software Foundation, Inc. +# Sweta Kothari , 2009, 2011. msgid "" msgstr "" "Project-Id-Version: atk.HEAD.gu\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-02-03 17:28+0530\n" -"Last-Translator: Sweta Kothari \n" -"Language-Team: Gujarati\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug." +"cgi?product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-09-11 11:03+0000\n" +"PO-Revision-Date: 2011-09-21 16:45+0000\n" +"Last-Translator: \n" +"Language-Team: gu_IN \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "\n" -"X-Generator: KBabel 1.11.4\n" +"X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" "\n" "\n" "\n" "\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "પસેદ કરેલ કડી" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "સ્પષ્ટ કરો કે એટીકેહાઈપરલિંક વસ્તુ પસંદ કરેલ છે" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "એકંરોની સંખ્યા" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "એટીકેહાઈપરલિંક વસ્તુ સાથે સંકળાયેલ એકંરોની સંખ્યા" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "અનુક્રમણિકાનો અંત" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "એટીકેહાઈપરલિંક વસ્તુની અનુક્રમણિકાનો અંત" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "અનુક્રમણિકાની શરુઆત" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "એટીકેહાઈપરલિંક વસ્તુની અનુક્રમણિકાનો શરુઆત" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "અયોગ્ય" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "પ્રવેગિત લેબલ" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "સાવધાન" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "એનીમેશન" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "તીર" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "કેલેન્ડર" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "કેનવાસ" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "ચૅક-બૉકસ" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "ચૅક બૉકસવાળી મેનુની વસ્તુ" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "રંગ પસંદ કરનાર" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "સ્તંભ હેડર" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "કોમ્બો બૉક્સ" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "તારીખ સંપાદક" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "ડેસ્કટોપ ચિહ્ન" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "ડેસ્કટોપ ચોકઠુ" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "ડાયલ" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "સંવાદ" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "ડિરેક્ટરી તક્તી" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "ચિત્રકામનો વિસ્તાર" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "ફાઇલ પસંદ કરનાર" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "ભરનાર" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "ફોન્ટ પસંદ કરનાર" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "ચોકઠુ" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "કાચની તકતી" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "html સમાવનાર" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "ચિહ્ન" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "ચિત્ર" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "આંતરિક ચોકઠુ" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "લેબલ" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "સ્તરવાળી તકતી" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "યાદી" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "યાદીની વસ્તુઓ" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "મેનુ" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "મેનુ પટ્ટી" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "મેનુની વસ્તુ" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "વિકલ્પ-તકતી" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "પાનાનું ટેબ" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "પાનાના ટેબની યાદી" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "પેનલ" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "પાસવર્ડ-લખાણ" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "પૉપઅપ મેનુ" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "પ્રગતિદર્શક-પટ્ટી" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "દબાતુ બટન" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "રેડિયો બટન" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "રેડિયો બટનવાળી મેનુની વસ્તુઓ" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "રુટ તકતી" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "હરોળ હેડર" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "ખસેડવાની પટ્ટી" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "ખસેડવા માટેની તકતી" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "વિભાજક" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "સરકપટ્ટી" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "છૂટુ પાડવા માટેની તકતી" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "ફેરવવાનું બટન" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "સ્થિતિદર્શકપટ્ટી" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "કોષ્ટક" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "કોષ્ટક ખાનુ" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "કોષ્ટકના સ્તંભનું હેડર" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "કોષ્ટકની હરોળનું હેડર" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "મેનુની વસ્તુને કાઢી નાખો" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "ટર્મિનલ" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "લખાણ" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "ફેરબદલી કરવાનું બટન" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "સાધન પટ્ટી" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "સાધન માટેની મદદ" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "ટ્રી" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "ટ્રી કોષ્ટક" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "અજાણ્યુ" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "દ્રશ્ય પ્રદેશ" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "વિન્ડો" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "હેડર" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "ફુટર" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "ફકરો" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "નિયમ બનાવનાર" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "કાર્યક્રમ" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "આપોઆપ પૂરુ" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "ફેરફાર કરવાની પટ્ટી" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "જડિત ભાગો" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "પ્રવેશ" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "આલેખ" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "કેપ્શન" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "દસ્તાવેજ ચોકઠું" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "મથાળું" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "પાનું" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "વિભાગ" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "રીડન્ડન્ટ ઓબ્જેક્ટ" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "ફોર્મ" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "કડી" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "ઇનપુટ પદ્દત્તિ વિન્ડો" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +#| msgid "table row header" +msgid "table row" +msgstr "કોષ્ટકની હરોળ" + +#: ../atk/atkobject.c:164 +#| msgid "tree table" +msgid "tree item" +msgstr "ટ્રી વસ્તુ" + +#: ../atk/atkobject.c:165 +#| msgid "document frame" +msgid "document spreadsheet" +msgstr "દસ્તાવેજ સ્પ્રેડશીટ" + +#: ../atk/atkobject.c:166 +#| msgid "document frame" +msgid "document presentation" +msgstr "દસ્તાવેજ રજૂઆત" + +#: ../atk/atkobject.c:167 +#| msgid "document frame" +msgid "document text" +msgstr "દસ્તાવેજ લખાણ" + +#: ../atk/atkobject.c:168 +#| msgid "document frame" +msgid "document web" +msgstr "દસ્તાવેજ વેબ" + +#: ../atk/atkobject.c:169 +#| msgid "document frame" +msgid "document email" +msgstr "દસ્તાવેજ ઇમેઇલ" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "ટિપ્પણી" + +#: ../atk/atkobject.c:171 +#| msgid "list" +msgid "list box" +msgstr "યાદી બોક્સ" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "સમૂહીકરણ" + +#: ../atk/atkobject.c:173 +#| msgid "image" +msgid "image map" +msgstr "ચિત્ર નક્ષો" + +#: ../atk/atkobject.c:174 +#| msgid "animation" +msgid "notification" +msgstr "સૂચના" + +#: ../atk/atkobject.c:175 +#| msgid "menu bar" +msgid "info bar" +msgstr "જાણકારી પટ્ટી" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "પ્રાપ્ત થઇ શકે તેવુ નામ" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "સહાયક તકનીકને પ્રાપ્ત કરવા માટે વસ્તુના નમૂનાના નામનુ બંધારણ કર્યુ" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "પ્રાપ્ત થઇ શકે તેવુ વર્ણન" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "વસ્તુનુ વર્ણન, સહાયક તકનીકને પ્રાપ્ત કરવા માટે બંધારણ કર્યુ" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "પ્રાપ્ત થઇ શકે તેવો પિતૃ" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "શું તે પિતૃ બદલાઇ ગયો તેની નોંધ માટે વપરાય છે" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "પ્રાપ્ત થઇ શકે તેવી કિંમત" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "શું તે કિંમત બદલાઇ ગયો તેની નોંધ માટે વપરાય છે" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "પ્રાપ્ત થઇ શકે તેવો રોલ" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "આ વસ્તુનો પ્રાપ્ત થઇ શકે તેવો રોલ" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "પ્રાપ્ત થઇ શકે તેવુ સ્તર" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "આ વસ્તુનુ પ્રાપ્ત થઇ શકે તેવુ સ્તર" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "પ્રાપ્ત થઇ શકે તેવી MDI કિંમત" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "આ વસ્તુની પ્રાપ્ત થઇ શકે તેવી MDI કિંમત" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "પ્રાપ્ત થઇ શકે તેવુ કોષ્ટકનુ નામ" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -476,58 +540,59 @@ "શું તે કોષ્ટકનુ નામ બદલાઇ ગયુ છે તેની નોંધ માટે વપરાય છે; આ ગુણધર્મનો ઉપયોગ થવો જોઇએ નહિ. " "તેની જગ્યાએ પ્રાપ્ત થઇ શકે તેવુ-કોષ્ટક-નામ-વસ્તુ વાપરવુ જોઇએ" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "પ્રાપ્ત થઇ શકે તેવુ કોષ્ટક સ્તંભ હેડર" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "શું તે કોષ્ટકના સ્તંભના હેડરનુ નામ બદલાઇ ગયુ છે તેની નોંધ માટે વપરાય છે" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "પ્રાપ્ત થઇ શકે તેવા કોષ્ટકના સ્તંભનુ વર્ણન" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "શું તે કોષ્ટકના સ્તંભનુ વર્ણન બદલાઇ ગયુ છે તેની નોંધ માટે વપરાય છે" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "પ્રાપ્ત થઇ શકે તેવા કોષ્ટકની હરોળનુ હેડર" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "શું તે કોષ્ટકના હરોળની હેડરનુ નામ બદલાઇ ગયુ છે તેની નોંધ માટે વપરાય છે" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "પ્રાપ્ત થઇ શકે તેવા કોષ્ટકની હરોળનુ વર્ણન" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "શું તે કોષ્ટકના હરોળનુ વર્ણન બદલાઇ ગયુ છે તેની નોંધ માટે વપરાય છે" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "પ્રાપ્ત થઇ શકે તેવા કોષ્ટકનો સારાંશ" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "શું તે કોષ્ટકનો સારાંશ બદલાઇ ગયો છે તેની નોંધ માટે વપરાય છે" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "પ્રાપ્ત થઇ શકે તેવા કોષ્ટકના નામની વસ્તુ" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "શું તે કોષ્ટકનુ નામ બદલાઇ ગયુ છે તેની નોંધ માટે વપરાય છે" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "પ્રાપ્ત થઇ શકે તેવી હાઇપરલખાણની કડીઓની સંખ્યા" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "વર્તમાન એટીકેહાઇપરલખાણ ધરાવે છે તે કડીઓની સંખ્યા" + Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/he.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/he.gmo differ diff -Nru atk1.0-1.30.0/po/he.po atk1.0-2.2.0/po/he.po --- atk1.0-1.30.0/po/he.po 2009-12-21 07:05:29.000000000 +0000 +++ atk1.0-2.2.0/po/he.po 2011-09-19 17:06:54.000000000 +0000 @@ -7,461 +7,514 @@ msgstr "" "Project-Id-Version: atk.HEAD.he\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2002-12-05 23:31+0200\n" -"Last-Translator: Yair Hershkovitz \n" +"POT-Creation-Date: 2011-07-15 11:11+0300\n" +"PO-Revision-Date: 2011-07-15 11:11+0200\n" +"Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew \n" +"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.0\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Selected Link" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Specifies whether the AtkHyperlink object is selected" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Number of Anchors" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "The number of anchors associated with the AtkHyperlink object" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "End index" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "The end index of the AtkHyperlink object" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Start index" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "The start index of the AtkHyperlink object" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "invalid" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "accelerator label" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "alert" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animation" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "arrow" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "calendar" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "canvas" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "check box" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "check menu item" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "color chooser" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "column header" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "combo box" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "dateeditor" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "desktop icon" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "desktop frame" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "dial" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "dialog" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "directory pane" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "drawing area" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "file chooser" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "filler" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "fontchooser" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "frame" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "glass pane" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "html container" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "icon" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "image" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "internal frame" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "label" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "layered pane" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "list" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "list item" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "menu" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "menu bar" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "menu item" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "option pane" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "page tab" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "page tab list" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "panel" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "password text" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "popup menu" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "progress bar" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "push button" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "radio button" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "radio menu item" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "root pane" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "row header" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "scroll bar" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "scroll pane" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "separator" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "slider" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "split pane" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "spin button" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "statusbar" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "table" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "table cell" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "table column header" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "table row header" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "tear off menu item" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminal" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "text" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "toggle button" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "tool bar" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "tool tip" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "tree" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "tree table" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "unknown" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "viewport" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "window" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "header" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "footer" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "paragraph" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "ruler" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "application" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "autocomplete" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "edit bar" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "embedded component" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "entry" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "chart" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "caption" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "document frame" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "heading" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "page" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "section" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "redundant object" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "form" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "link" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "input method window" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "table row" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "tree item" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "document spreadsheet" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "document presentation" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "document text" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "document web" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "document email" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "comment" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "list box" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "grouping" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "image map" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "notification" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "info bar" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Accessible Name" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "Object instance's name formatted for assistive technology access" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Accessible Description" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "Description of an object, formatted for assistive technology access" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Accessible Parent" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Is used to notify that the parent has changed" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Accessible Value" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Is used to notify that the value has changed" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Accessible Role" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "The accessible role of this object" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Accessible Layer" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "The accessible layer of this object" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Accessible MDI Value" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "The accessible MDI value of this object" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Accessible Table Caption" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -469,58 +522,58 @@ "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Accessible Table Column Header" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "Is used to notify that the table column header has changed" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Accessible Table Column Description" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "Is used to notify that the table column description has changed" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Accessible Table Row Header" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "Is used to notify that the table row header has changed" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Accessible Table Row Description" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "Is used to notify that the table row description has changed" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Accessible Table Summary" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Is used to notify that the table summary has changed" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Accessible Table Caption Object" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Is used to notify that the table caption has changed" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Number of Accessible Hypertext Links" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "The number of links which the current AtkHypertext has" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/hi.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/hi.gmo differ diff -Nru atk1.0-1.30.0/po/hi.po atk1.0-2.2.0/po/hi.po --- atk1.0-1.30.0/po/hi.po 2009-12-21 07:05:29.000000000 +0000 +++ atk1.0-2.2.0/po/hi.po 2011-09-19 17:06:54.000000000 +0000 @@ -8,8 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: hi\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" +"product=atk&component=general\n" +"POT-Creation-Date: 2010-04-17 11:27+0000\n" "PO-Revision-Date: 2009-03-06 14:27+0530\n" "Last-Translator: Rajesh Ranjan \n" "Language-Team: Hindi \n" @@ -25,453 +26,453 @@ "\n" "\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "चयनित लिंक" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "उल्लेखित करता है कि क्या एटीके-हायपरलिंक वस्तु चयनित है" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "लंगर की संख्या" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "एटीके-हायपरलिंक वस्तु के साथ सम्बद्ध लंगर की संख्या" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "अंतिम सूची" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "एटीके-हायपरलिंक वस्तु की अंतिम सूची" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "प्रारंभ सूची" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "एटीके-हायपरलिंक वस्तु का प्रारंभ सूची" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "अवैध" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "त्वरक लेबल" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "सावधान" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "चल छवि" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "तीर" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "पंचांग" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "कैनवास" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "जाँच पेटी" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "चेक मेन्यू मद" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "रंग चयनक" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "स्तंभ शीर्षिका" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "कॉम्बो पेटी" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "तिथि-सम्पादक" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "डेस्कटॉप प्रतीक" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "डेस्कटॉप फ्रेम" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "डायल" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "संवाद" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "निर्देशिका फलक" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "आरेखण-क्षेत्र" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "फ़ाइल-चयनक" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "भरनेवाला" # I know it looks wrong but that is what Java returns #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "फ़ॉन्ट-चयनक" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "फ्रेम" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "काँच-फलक" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "एचटीएमएल-धारक" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "प्रतीक" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "छवि" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "आन्तरिक फ्रेम" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "लेबल" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "स्तरित फलक" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "सूची" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "सूची मद" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "मेन्यू" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "मेन्यू पट्टी" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "मेन्यू मद" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "विकल्प फलक" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "पृष्ठ टैब" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "पृष्ठ टैब सूची" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "पटल" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "पासवर्ड पाठ" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "पॉपअप मेन्यू" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "प्रगति पट्टी" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "पुश बटन" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "रेडियो बटन" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "रेडियो मेन्यू मद" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "रूट फलक" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "पंक्ति शीर्षिका" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "स्क्रॉल पट्टी" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "स्क्रॉल फलक" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "विभाजक" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "स्लाइडर" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "कटा फलक" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "स्पिन बटन" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "स्थिति-पट्टी" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "सारणी" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "सारणी कोष्ठ" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "सारणी स्तंभ शीर्षिका" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "सारणी पंक्ति शीर्षिका" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "टीयर ऑफ मेन्यू मद" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "टर्मिनल" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "पाठ" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "टॉगल बटन" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "औज़ार पट्टी" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "औज़ार युक्ति" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "ट्री" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "तरू-सारणी" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "अज्ञात" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "व्यूपोर्ट" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "विंडो" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "शीर्षिका" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "फुटर" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "अनुच्छेद" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "रूलर" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "अनुप्रयोग" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "स्वतः समाप्त" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "संपादन पट्टी" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "एंबेडेड घटक" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "प्रविष्टि" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "चार्ट" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "शीर्षक" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "दस्तावेज़ ढांचा" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "शीर्षक" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "पृष्ठ" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "खंड" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "वैकल्पिक वस्तु" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "प्रपत्र" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "कड़ी" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "इनपुट विधि विंडो" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:488 msgid "Accessible Name" msgstr "पंहुचयोग्य नाम" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:489 msgid "Object instance's name formatted for assistive technology access" msgstr "मददगार तकनीक पँहुच हेतु प्रारूपित वस्तु उदाहरण नाम" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:495 msgid "Accessible Description" msgstr "पहुँच योग्य वर्णन" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:496 msgid "Description of an object, formatted for assistive technology access" msgstr "मददगार तकनीक पँहुच हेतु प्रारूपित वस्तु का वर्णन" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:502 msgid "Accessible Parent" msgstr "पहुँच योग्य जनक" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:503 msgid "Is used to notify that the parent has changed" msgstr "जनक बदल चुका है यह बताने हेतु उपयोग में आता है" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:509 msgid "Accessible Value" msgstr "पहुँच योग्य मूल्य" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:510 msgid "Is used to notify that the value has changed" msgstr "मान बदल चुका है यह बताने हेतु उपयोग में आता है" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:518 msgid "Accessible Role" msgstr "पहुँच योग्य भूमिका" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:519 msgid "The accessible role of this object" msgstr "इस वस्तु की पहुँच योग्य भूमिका" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:527 msgid "Accessible Layer" msgstr "पहुँच योग्य परत" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:528 msgid "The accessible layer of this object" msgstr "इस वस्तु की पहुँच योग्य परत" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:536 msgid "Accessible MDI Value" msgstr "पहुँच योग्य एमडीआई मूल्य" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:537 msgid "The accessible MDI value of this object" msgstr "इस वस्तु का पहुँच योग्य एमडीआई मूल्य" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:545 msgid "Accessible Table Caption" msgstr "पहुँच योग्य सारणी शीर्षक" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:546 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -479,58 +480,58 @@ "सारणी शीर्षक बदल चुका है यह बताने हेतु उपयोग में आता है, यह गुण उपयोग में नहीं लेना चाहिए. " "बदले में पहुँच योग्य-सारणी-शीर्षक-वस्तु उपयोग में लेना चाहिए" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:552 msgid "Accessible Table Column Header" msgstr "पहुँच योग्य सारणी स्तंभ शीर्षिका" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:553 msgid "Is used to notify that the table column header has changed" msgstr "सारणी स्तंभ शीर्षिका बदल चुका है यह बताने हेतु उपयोग में आता है" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:559 msgid "Accessible Table Column Description" msgstr "पहुँच योग्य सारणी स्तंभ वर्णन" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:560 msgid "Is used to notify that the table column description has changed" msgstr "पहुँच योग्य सारणी स्तंभ वर्णन बदल चुका है यह बताने हेतु उपयोग में आता है" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:566 msgid "Accessible Table Row Header" msgstr "पहुँच योग्य सारणी पंक्ति शीर्षिका" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:567 msgid "Is used to notify that the table row header has changed" msgstr "सारणी पंक्ति शीर्षिका बदल चुका है यह बताने हेतु उपयोग में आता है" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:573 msgid "Accessible Table Row Description" msgstr "पहुँच योग्य सारणी पंक्ति वर्णन" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:574 msgid "Is used to notify that the table row description has changed" msgstr "पहुँच योग्य सारणी पंक्ति वर्णन बदल चुका है यह बताने हेतु उपयोग में आता है" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:580 msgid "Accessible Table Summary" msgstr "पहुँच योग्य सारणी सारांश" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:581 msgid "Is used to notify that the table summary has changed" msgstr "सारणी स्तंभ सारांश बदल चुका है यह बताने हेतु उपयोग में आता है" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:587 msgid "Accessible Table Caption Object" msgstr "पहुँच योग्य सारणी शीर्षक वस्तु" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:588 msgid "Is used to notify that the table caption has changed" msgstr "सारणी शीर्षक बदल चुका है यह बताने हेतु उपयोग में आता है" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:594 msgid "Number of Accessible Hypertext Links" msgstr "पहुँच योग्य हायपरटेक्स्ट कड़ी की संख्या" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:595 msgid "The number of links which the current AtkHypertext has" msgstr "कड़ी की संख्या जो कि वर्तमान एटीके-हायपरटेक्स्ट में हैं" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/hu.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/hu.gmo differ diff -Nru atk1.0-1.30.0/po/hu.po atk1.0-2.2.0/po/hu.po --- atk1.0-1.30.0/po/hu.po 2009-12-21 07:05:29.000000000 +0000 +++ atk1.0-2.2.0/po/hu.po 2011-09-19 17:06:54.000000000 +0000 @@ -1,472 +1,530 @@ # Hungarian translation of atk. -# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2008, 2009, 2011 Free Software Foundation, Inc. # This file is distributed under the same license as the atk package. # -# Andras Timar , 2002, 2003. -# Laszlo Dvornik , 2004. -# Szabolcs Varga , 2005. -# Gabor Kelemen , 2005, 2006, 2008, 2009. +# +# Andras Timar , 2002, 2003. +# Laszlo Dvornik , 2004. +# Szabolcs Varga , 2005. +# Gabor Kelemen , 2005, 2006, 2008, 2009, 2011. +# Balázs Meskó , 2011. msgid "" msgstr "" -"Project-Id-Version: atk.HEAD.hu\n" +"Project-Id-Version: atk master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-01-05 02:24+0100\n" -"Last-Translator: Gabor Kelemen \n" -"Language-Team: Hungarian \n" +"POT-Creation-Date: 2011-08-02 02:07+0200\n" +"PO-Revision-Date: 2011-08-02 02:07+0200\n" +"Last-Translator: Gabor Kelemen \n" +"Language-Team: Hungarian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Kijelölt hivatkozás" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Megadja, hogy ki van-e jelölve az AtkHyperlink objektum" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Horgonyok száma" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "Az AtkHyperlink objektumhoz rendelt horgonyok száma" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Befejező index" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "Az AtkHyperlink objektum befejező indexe" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Kezdő index" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "Az AtkHyperlink objektum kezdő indexe" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "érvénytelen" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "gyorsítócímke" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "riadó" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animáció" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "nyíl" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "naptár" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "rajzvászon" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "jelölőnégyzet" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "bejelölhető menüelem" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "színválasztó" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "oszlopfejléc" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "legördülő doboz" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "dátumszerkesztő" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "asztali ikon" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "asztali keret" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "tárcsa" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "párbeszédablak" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "könyvtár-ablaktábla" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "rajzterület" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "fájlválasztó" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "kitöltő" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "betűkészlet-választó" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "keret" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "üveg-ablaktábla" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "html-konténer" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "ikon" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "kép" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "belső keret" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "címke" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "réteges ablaktábla" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "lista" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "listaelem" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "menü" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "menüsor" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "menüelem" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "beállítás-ablaktábla" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "oldalfül" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "oldalfül-lista" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "panel" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "jelszószöveg" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "helyi menü" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "folyamatjelző" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "nyomógomb" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "választógomb" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "választógomb-elem" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "gyökér-ablaktábla" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "sorfejléc" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "gördítősáv" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "gördíthető ablaktábla" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "elválasztó" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "csúszka" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "felosztott ablaktábla" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "gördítőgomb" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "állapotsor" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "táblázat" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "táblázatcella" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "táblázat-oszlopfejléc" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "táblázat-sorfejléc" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "leválasztható menüelem" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminál" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "szöveg" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "kapcsológomb" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "eszköztár" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "buboréksúgó" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "fa" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "fatáblázat" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "ismeretlen" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "munkalap" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "ablak" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "élőfej" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "élőláb" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "bekezdés" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "vonalzó" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "alkalmazás" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "automatikus kiegészítés" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "szerkesztősáv" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "beágyazott komponens" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "bejegyzés" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "diagram" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "felirat" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "dokumentumkeret" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "címsor" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "oldal" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "szakasz" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "redundáns objektum" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "űrlap" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "hivatkozás" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "bemeneti módszer ablak" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "táblázatsor" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "faelem" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "táblázat dokumentum" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "bemutató dokumentum" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "szöveges dokumentum" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "webes dokumentum" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "e-mail dokumentum" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "megjegyzés" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "listadoboz" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "csoportosítás" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "kép" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "értesítés" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "információs sor" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Akadálymentes név" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" -msgstr "Az objektumpéldány neve a kisegítő technológiás hozzáféréshez formázva" +msgstr "" +"Az objektumpéldány neve az akadálymentesítési technológiás hozzáféréshez " +"formázva" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Akadálymentes leírás" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "" -"Az objektumpéldány leírása, a kisegítő technológiás hozzáféréshez formázva" +"Az objektumpéldány leírása, a akadálymentesítési technológiás hozzáféréshez " +"formázva" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Akadálymentes szülő" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Értesítésre szolgál, ha a szülő módosult" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Akadálymentes érték" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Értesítésre szolgál, ha az érték módosult" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Akadálymentes szerep" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "Az objektum akadálymentes szerepe" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Akadálymentes réteg" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "Az objektum akadálymentes rétege" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Akadálymentes MDI-érték" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "Az objektum akadálymentes MDI-értéke" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Akadálymentes táblázatcím" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -475,58 +533,58 @@ "szabad használni, helyette az accessible-table-caption-object tulajdonság " "használandó" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Akadálymentes táblázat-oszlopfejléc" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "Értesítésre szolgál, ha a táblázat oszlopfejléc módosult" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Akadálymentes táblázat-oszlopleírás" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "Értesítésre szolgál, ha a táblázat oszlopleírás módosult" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Akadálymentes táblázat-sorfejléc" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "Értesítésre szolgál, ha a táblázat sorfejléc módosult" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Akadálymentes táblázat-sorleírás" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "Értesítésre szolgál, ha a táblázat sorleírás módosult" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Akadálymentes táblázat-összefoglalás" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Értesítésre szolgál, ha a táblázat-összefoglalás módosult" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Akadálymentes táblázatcím objektum" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Értesítésre szolgál, ha a táblázatcím módosult" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Az akadálymentes hiperszöveg-hivatkozások száma" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "Az aktuális AtkHypertext hivatkozásainak száma" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/hy.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/hy.gmo differ diff -Nru atk1.0-1.30.0/po/hy.po atk1.0-2.2.0/po/hy.po --- atk1.0-1.30.0/po/hy.po 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/po/hy.po 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,521 @@ +# Translation of atk to Armenian +# This file is distributed under the same license as the atk package. +# Copyright (C) 2010, Arman Vardanyan +# Arman Vardanyan +# +msgid "" +msgstr "" +"Project-Id-Version: atk\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=atk&component=general\n" +"POT-Creation-Date: 2010-05-03 22:21+0000\n" +"PO-Revision-Date: 2010-05-27 17:38+0400\n" +"Last-Translator: Nune \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../atk/atkhyperlink.c:103 +msgid "Selected Link" +msgstr "Ընտրված հղում" + +#: ../atk/atkhyperlink.c:104 +msgid "Specifies whether the AtkHyperlink object is selected" +msgstr "Որոշում է արդյոք AtkHyperlink օբյեկտն ընտրված է" + +#: ../atk/atkhyperlink.c:110 +msgid "Number of Anchors" +msgstr "Խարիսխների քանակը" + +#: ../atk/atkhyperlink.c:111 +msgid "The number of anchors associated with the AtkHyperlink object" +msgstr "AtkHyperlink օբյեկտի հետ ասոցացված խարիսխների քանակը" + +#: ../atk/atkhyperlink.c:119 +msgid "End index" +msgstr "Վերջնական ինդեքս" + +#: ../atk/atkhyperlink.c:120 +msgid "The end index of the AtkHyperlink object" +msgstr "AtkHyperlink օբյեկտի վերջնական ինդեքս" + +#: ../atk/atkhyperlink.c:128 +msgid "Start index" +msgstr "Սկիզբնական ինդեքս" + +#: ../atk/atkhyperlink.c:129 +msgid "The start index of the AtkHyperlink object" +msgstr "AtkHyperlink օբյեկտի սկիզբնական ինդեքս" + +#: ../atk/atkobject.c:74 +msgid "invalid" +msgstr "անվավեր" + +#: ../atk/atkobject.c:75 +msgid "accelerator label" +msgstr "արագացուցչի պիտակ" + +#: ../atk/atkobject.c:76 +msgid "alert" +msgstr "տագնապ" + +#: ../atk/atkobject.c:77 +msgid "animation" +msgstr "անիմացիա" + +#: ../atk/atkobject.c:78 +msgid "arrow" +msgstr "սլաք" + +#: ../atk/atkobject.c:79 +msgid "calendar" +msgstr "օրացույց" + +#: ../atk/atkobject.c:80 +msgid "canvas" +msgstr "կտավ" + +#: ../atk/atkobject.c:81 +msgid "check box" +msgstr "նշատուփ" + +#: ../atk/atkobject.c:82 +msgid "check menu item" +msgstr "նշատուփերի տարր" + +#: ../atk/atkobject.c:83 +msgid "color chooser" +msgstr "գույնի ընտրություն" + +#: ../atk/atkobject.c:84 +msgid "column header" +msgstr "սյան գլխամաս" + +#: ../atk/atkobject.c:85 +msgid "combo box" +msgstr "համակցված տուփ" + +#: ../atk/atkobject.c:86 +msgid "dateeditor" +msgstr "ամսաթվի խմբագրիչ" + +#: ../atk/atkobject.c:87 +msgid "desktop icon" +msgstr "աշխատասեղանի պատկերակ" + +#: ../atk/atkobject.c:88 +msgid "desktop frame" +msgstr "աշխատասեղանի շրջանակ" + +#: ../atk/atkobject.c:89 +msgid "dial" +msgstr "համարի հավաքում" + +#: ../atk/atkobject.c:90 +msgid "dialog" +msgstr "երկխոսություն" + +#: ../atk/atkobject.c:91 +msgid "directory pane" +msgstr "պանակի վահանակ" + +#: ../atk/atkobject.c:92 +msgid "drawing area" +msgstr "նկարչության տարածք" + +#: ../atk/atkobject.c:93 +msgid "file chooser" +msgstr "ֆայլերի ընտրություն" + +#: ../atk/atkobject.c:94 +msgid "filler" +msgstr "ներկող" + +#. I know it looks wrong but that is what Java returns +#: ../atk/atkobject.c:96 +msgid "fontchooser" +msgstr "տառատեսակի ընտրություն" + +#: ../atk/atkobject.c:97 +msgid "frame" +msgstr "շրջանակ" + +#: ../atk/atkobject.c:98 +msgid "glass pane" +msgstr "թափանցիկ վահանակ" + +#: ../atk/atkobject.c:99 +msgid "html container" +msgstr "պարունակությունը html լեզվով" + +#: ../atk/atkobject.c:100 +msgid "icon" +msgstr "պատկերակ" + +#: ../atk/atkobject.c:101 +msgid "image" +msgstr "նկար" + +#: ../atk/atkobject.c:102 +msgid "internal frame" +msgstr "ներքին շրջանակ" + +#: ../atk/atkobject.c:103 +msgid "label" +msgstr "պիտակ" + +#: ../atk/atkobject.c:104 +msgid "layered pane" +msgstr "շերտավոր վահանակ" + +#: ../atk/atkobject.c:105 +msgid "list" +msgstr "ցուցակ" + +#: ../atk/atkobject.c:106 +msgid "list item" +msgstr "ցուցակի տարր" + +#: ../atk/atkobject.c:107 +msgid "menu" +msgstr "մենյու" + +#: ../atk/atkobject.c:108 +msgid "menu bar" +msgstr "մենյուի գոտի" + +#: ../atk/atkobject.c:109 +msgid "menu item" +msgstr "մենյուի տարր" + +#: ../atk/atkobject.c:110 +msgid "option pane" +msgstr "ընտրանքի վահանակ" + +#: ../atk/atkobject.c:111 +msgid "page tab" +msgstr "էջի ներդիր" + +#: ../atk/atkobject.c:112 +msgid "page tab list" +msgstr "էջի ներդիրների ցանկ" + +#: ../atk/atkobject.c:113 +msgid "panel" +msgstr "վահանակ" + +#: ../atk/atkobject.c:114 +msgid "password text" +msgstr "գաղտնաբառ" + +#: ../atk/atkobject.c:115 +msgid "popup menu" +msgstr "ելնող մենյու" + +#: ../atk/atkobject.c:116 +msgid "progress bar" +msgstr "ընթացագոտի" + +#: ../atk/atkobject.c:117 +msgid "push button" +msgstr "սեղմվող կոճակ" + +#: ../atk/atkobject.c:118 +msgid "radio button" +msgstr "կետակոճակ" + +#: ../atk/atkobject.c:119 +msgid "radio menu item" +msgstr "Կետակոճակների տարր" + +#: ../atk/atkobject.c:120 +msgid "root pane" +msgstr "արմատային վահանակ" + +#: ../atk/atkobject.c:121 +msgid "row header" +msgstr "տողի գլխամաս" + +#: ../atk/atkobject.c:122 +msgid "scroll bar" +msgstr "ոլորագոտի" + +#: ../atk/atkobject.c:123 +msgid "scroll pane" +msgstr "ոլորման վահանակ" + +#: ../atk/atkobject.c:124 +msgid "separator" +msgstr "բաժանիչ" + +#: ../atk/atkobject.c:125 +msgid "slider" +msgstr "սահիչ" + +#: ../atk/atkobject.c:126 +msgid "split pane" +msgstr "կրկնակի վահանակ" + +#: ../atk/atkobject.c:127 +msgid "spin button" +msgstr "պտտման կոճակ" + +#: ../atk/atkobject.c:128 +msgid "statusbar" +msgstr "վիճակագոտի" + +#: ../atk/atkobject.c:129 +msgid "table" +msgstr "աղյուսակ" + +#: ../atk/atkobject.c:130 +msgid "table cell" +msgstr "աղյուսակի բջիջ" + +#: ../atk/atkobject.c:131 +msgid "table column header" +msgstr "աղյուսակի սյան գլխամաս" + +#: ../atk/atkobject.c:132 +msgid "table row header" +msgstr "աղյուսակի տողի գլխամաս" + +#: ../atk/atkobject.c:133 +msgid "tear off menu item" +msgstr "անբաժան մենյուի տարր" + +#: ../atk/atkobject.c:134 +msgid "terminal" +msgstr "տերմինալ" + +#: ../atk/atkobject.c:135 +msgid "text" +msgstr "տեքստ" + +#: ../atk/atkobject.c:136 +msgid "toggle button" +msgstr "փոխանջատիչ կոճակ" + +#: ../atk/atkobject.c:137 +msgid "tool bar" +msgstr "գործիքների գոտի" + +#: ../atk/atkobject.c:138 +msgid "tool tip" +msgstr "հուշում" + +#: ../atk/atkobject.c:139 +msgid "tree" +msgstr "ծառ" + +#: ../atk/atkobject.c:140 +msgid "tree table" +msgstr "ծառի տեսքով աղյուսակ" + +#: ../atk/atkobject.c:141 +msgid "unknown" +msgstr "անհայտ" + +#: ../atk/atkobject.c:142 +msgid "viewport" +msgstr "դիտման տարածք" + +#: ../atk/atkobject.c:143 +msgid "window" +msgstr "պատուհան" + +#: ../atk/atkobject.c:144 +msgid "header" +msgstr "գլխամաս" + +#: ../atk/atkobject.c:145 +msgid "footer" +msgstr "ստորամաս" + +#: ../atk/atkobject.c:146 +msgid "paragraph" +msgstr "պարբերություն" + +#: ../atk/atkobject.c:147 +msgid "ruler" +msgstr "քանոն" + +#: ../atk/atkobject.c:148 +msgid "application" +msgstr "աշխատածրագիր" + +#: ../atk/atkobject.c:149 +msgid "autocomplete" +msgstr "ինքնալրացում" + +#: ../atk/atkobject.c:150 +msgid "edit bar" +msgstr "խմբագրման վահանակ" + +#: ../atk/atkobject.c:151 +msgid "embedded component" +msgstr "ներդրված բաղադրիչ" + +#: ../atk/atkobject.c:152 +msgid "entry" +msgstr "գրառում" + +#: ../atk/atkobject.c:153 +msgid "chart" +msgstr "գծապատկեր" + +#: ../atk/atkobject.c:154 +msgid "caption" +msgstr "վերնագիր" + +#: ../atk/atkobject.c:155 +msgid "document frame" +msgstr "փաստաթղթի շրջանակ" + +#: ../atk/atkobject.c:156 +msgid "heading" +msgstr "վերնագիր" + +#: ../atk/atkobject.c:157 +msgid "page" +msgstr "էջ" + +#: ../atk/atkobject.c:158 +msgid "section" +msgstr "բաժին" + +#: ../atk/atkobject.c:159 +msgid "redundant object" +msgstr "ավելցուկային օբյեկտ" + +#: ../atk/atkobject.c:160 +msgid "form" +msgstr "ձեւ" + +#: ../atk/atkobject.c:161 +msgid "link" +msgstr "հղում" + +#: ../atk/atkobject.c:162 +msgid "input method window" +msgstr "մուտքագրման մեթոդի պատուհան" + +#: ../atk/atkobject.c:488 +msgid "Accessible Name" +msgstr "Մատչելիացված անուն" + +#: ../atk/atkobject.c:489 +msgid "Object instance's name formatted for assistive technology access" +msgstr "Օբյեկտի օրինակի նկարագրություն, որն օգտագործվում է մատչելիացման տեխնոլոգիաների միջոցով հասանելիության համար" + +#: ../atk/atkobject.c:495 +msgid "Accessible Description" +msgstr "Մատչելիացված նկարագրություն" + +#: ../atk/atkobject.c:496 +msgid "Description of an object, formatted for assistive technology access" +msgstr "Օբյեկտի նկարագրություն, որն օգտագործվում է մատչելիացման տեխնոլոգիաների միջոցով հասանելիության համար" + +#: ../atk/atkobject.c:502 +msgid "Accessible Parent" +msgstr "Մատչելիացված ծնող" + +#: ../atk/atkobject.c:503 +msgid "Is used to notify that the parent has changed" +msgstr "Օգտագործվում է ծնողի փոփոխությունների մասին տեղեկացնելու համար" + +#: ../atk/atkobject.c:509 +msgid "Accessible Value" +msgstr "Մատչելիացված արժեք" + +#: ../atk/atkobject.c:510 +msgid "Is used to notify that the value has changed" +msgstr "Օգտագործվում է արժեքի փոփոխության մասին տեղեկացնելու համար" + +#: ../atk/atkobject.c:518 +msgid "Accessible Role" +msgstr "Մատչելիացված դեր" + +#: ../atk/atkobject.c:519 +msgid "The accessible role of this object" +msgstr "Այս օբյեկտի հասանելի դերը" + +#: ../atk/atkobject.c:527 +msgid "Accessible Layer" +msgstr "Մատչելիացված շերտ" + +#: ../atk/atkobject.c:528 +msgid "The accessible layer of this object" +msgstr "Այս օբյեկտի հասանելի շերտը" + +#: ../atk/atkobject.c:536 +msgid "Accessible MDI Value" +msgstr "Մատչելիացված MDI արժեք" + +#: ../atk/atkobject.c:537 +msgid "The accessible MDI value of this object" +msgstr "Այս օբյեկտի հասանելի MDI արժեքը" + +#: ../atk/atkobject.c:545 +msgid "Accessible Table Caption" +msgstr "Մատչելիացված աղյուսակի վերնագիր" + +#: ../atk/atkobject.c:546 +msgid "Is used to notify that the table caption has changed; this property should not be used. accessible-table-caption-object should be used instead" +msgstr "Օգտագործվում է աղյուսակի գլխամասի փոփոխության մասին տեղեկացնելու համար; այս հատկությունը չպետք է օգտագործվի, փոխարենը պետք է օգտագործվի accessible-table-caption-object հատկությունը" + +#: ../atk/atkobject.c:552 +msgid "Accessible Table Column Header" +msgstr "Մաչելիացված աղյուսակի սյան գլխամաս" + +#: ../atk/atkobject.c:553 +msgid "Is used to notify that the table column header has changed" +msgstr "Օգտագործվում է աղյուսակի սյան գլխամասի փոփոխության մասին տեղեկացնելու համար" + +#: ../atk/atkobject.c:559 +msgid "Accessible Table Column Description" +msgstr "Աղյուսակի սյան մատչելի նկարագրություն" + +#: ../atk/atkobject.c:560 +msgid "Is used to notify that the table column description has changed" +msgstr "Օգտագործվում է աղյուսակի սյան նկարագրության փոփոխության մասին տեղեկացնելու համար" + +#: ../atk/atkobject.c:566 +msgid "Accessible Table Row Header" +msgstr "Մաչելիացված աղյուսակի տողի գլխամաս" + +#: ../atk/atkobject.c:567 +msgid "Is used to notify that the table row header has changed" +msgstr "Օգտագործվում է աղյուսակի տողի գլխամասի փոփոխության մասին տեղեկացնելու համար" + +#: ../atk/atkobject.c:573 +msgid "Accessible Table Row Description" +msgstr "Աղյուսակի տողի մատչելի նկարագրություն" + +#: ../atk/atkobject.c:574 +msgid "Is used to notify that the table row description has changed" +msgstr "Օգտագործվում է աղյուսակի տողի նկարագրության փոփոության մասին տեղեկացնելու համար" + +#: ../atk/atkobject.c:580 +msgid "Accessible Table Summary" +msgstr "Մատչելիացված աղյուսակի ամփոփում" + +#: ../atk/atkobject.c:581 +msgid "Is used to notify that the table summary has changed" +msgstr "Օգտագործվում է աղյուսակի ամփոփման փոփոխության մասին տեղեկացնելու համար" + +#: ../atk/atkobject.c:587 +msgid "Accessible Table Caption Object" +msgstr "Մատչելիացված աղյուսակի վերնագրի օբյեկտ" + +#: ../atk/atkobject.c:588 +msgid "Is used to notify that the table caption has changed" +msgstr "Օգտագործվում է աղյուսակի վերնագրի փոփոխության մասին տեղեկացնելու համար" + +#: ../atk/atkobject.c:594 +msgid "Number of Accessible Hypertext Links" +msgstr "Հասանելի հիպերտեքստային հղումների քանակը" + +#: ../atk/atkobject.c:595 +msgid "The number of links which the current AtkHypertext has" +msgstr "AtkHypertext ընթացիկ օբյեկտի պարունակած հղումների քանակը" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/id.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/id.gmo differ diff -Nru atk1.0-1.30.0/po/id.po atk1.0-2.2.0/po/id.po --- atk1.0-1.30.0/po/id.po 2009-12-21 07:05:29.000000000 +0000 +++ atk1.0-2.2.0/po/id.po 2011-09-19 17:06:54.000000000 +0000 @@ -1,529 +1,592 @@ # Indonesia translation of atk HEAD. # Copyright (C) 2005 THE atk's COPYRIGHT HOLDER # This file is distributed under the same license as the atk package. -# Ahmad Riza H Nst , 2006 -# Mohammad DAMT , 2005. -# # +# Mohammad DAMT , 2005. +# Ahmad Riza H Nst , 2006. +# Andika Triwidada , 2010, 2011. +# Dirgita , 2010. msgid "" msgstr "" -"Project-Id-Version: atk HEAD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2006-03-22 21:31+0700\n" -"Last-Translator: Mohammad DAMT \n" -"Language-Team: Indonesia \n" +"Project-Id-Version: atk master\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-07-07 17:40+0000\n" +"PO-Revision-Date: 2011-08-12 13:20+0700\n" +"Last-Translator: Andika Triwidada \n" +"Language-Team: GNOME Indonesian Translation Team \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Indonesian\n" +"X-Poedit-Country: Indonesia\n" +"X-Generator: Lokalize 1.1\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Taut Terpilih" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Menentukan apakah objek AtkHyperlink dipilih atau tidak" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Jumlah Jangkar/Anchor" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "Jumlah jangkar/anchor yang dihubungkan dengan objek AtkHyperlink" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Indeks akhir" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "Akhir indeks objek AtkHyperlink" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Indeks awal" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "Indeks awal objek AtkHyperlink" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" -msgstr "tidak valid" +msgstr "tidak sah" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "label akselerator" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "waspada" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animasi" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "panah" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "kalender" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "kanvas" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" -msgstr "kotak centang" +msgstr "kotak cek" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" -msgstr "isi menu centang" +msgstr "item menu cek" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "pemilih warna" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" -msgstr "kepala kolom" +msgstr "tajuk kolom" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "kotak kombo" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "penyunting tanggal" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "ikon desktop" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "bingkai desktop" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "tombol pemutar" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "dialog" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "panel direktori" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "area gambar" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "pemilih berkas" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "isian" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" -msgstr "pemilih font" +msgstr "pemilih fonta" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "bingkai" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "panel kaca" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "kontainer html" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "ikon" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "gambar" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "bingkai internal" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "label" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" -msgstr "panel berlayer" +msgstr "panel berlapis" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "daftar" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "isi daftar" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "menu" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" -msgstr "kotak menu" +msgstr "baris menu" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" -msgstr "anggota menu" +msgstr "objek menu" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" -msgstr "panel pilihan" +msgstr "panel opsi" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "halaman tab" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "daftar halaman tab" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "panel" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "teks sandi" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" -msgstr "menu popup" +msgstr "menu tongol" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" -msgstr "indikator kemajuan" +msgstr "indikator proses" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "tombol tekan" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "tombol radio" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" -msgstr "anggota menu radio" +msgstr "objek menu radio" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "panel dasar" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" -msgstr "kepala baris" +msgstr "tajuk baris" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" -msgstr "batang penggeser" +msgstr "batang penggulung" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" -msgstr "panel penggeser" +msgstr "panel penggulung" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "pemisah" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "slider" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "panel pemisah" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "tombol putar" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" -msgstr "kolom status" +msgstr "baris status" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "tabel" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "sel tabel" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" -msgstr "kepala kolom pada tabel" +msgstr "tajuk kolom pada tabel" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" -msgstr "kepala baris pada tabel" +msgstr "tajuk baris pada tabel" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "anggota menu yang dapat dilepas" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminal" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "teks" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "tombol togel" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" -msgstr "batang alat" +msgstr "bilah alat" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "teks bantuan" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "pohon" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "tabel pohon" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "tidak diketahui" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "viewport" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "jendela" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" -msgstr "kepala" +msgstr "tajuk" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "kaki" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "paragraf" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "penggaris" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "aplikasi" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "lengkap secara otomatis" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" -msgstr "batang penyunting" +msgstr "bilah sunting" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "komponen tercangkok" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" -msgstr "" +msgstr "entri" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" -msgstr "" +msgstr "bagan" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" -msgstr "" +msgstr "kapsi" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "bingkai dokumen" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" -msgstr "judul" +msgstr "tajuk" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "halaman" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "bagian" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" -msgstr "" +msgstr "objek redundan" -#: atk/atkobject.c:160 -#, fuzzy +#: ../atk/atkobject.c:160 msgid "form" -msgstr "bingkai" +msgstr "formulir" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" -msgstr "" +msgstr "taut" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" -msgstr "" +msgstr "jendela metoda masukan" + +#: ../atk/atkobject.c:163 +#| msgid "table row header" +msgid "table row" +msgstr "baris tabel" + +#: ../atk/atkobject.c:164 +#| msgid "tree table" +msgid "tree item" +msgstr "butir tabel pohon" + +#: ../atk/atkobject.c:165 +#| msgid "document frame" +msgid "document spreadsheet" +msgstr "spreadsheet dokumen" + +#: ../atk/atkobject.c:166 +#| msgid "document frame" +msgid "document presentation" +msgstr "presentasi dokumen" + +#: ../atk/atkobject.c:167 +#| msgid "document frame" +msgid "document text" +msgstr "teks dokumen" + +#: ../atk/atkobject.c:168 +#| msgid "document frame" +msgid "document web" +msgstr "web dokumen" + +#: ../atk/atkobject.c:169 +#| msgid "document frame" +msgid "document email" +msgstr "surel dokumen" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "komentar" + +#: ../atk/atkobject.c:171 +#| msgid "list" +msgid "list box" +msgstr "kotak daftar" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "pengelompokan" + +#: ../atk/atkobject.c:173 +#| msgid "image" +msgid "image map" +msgstr "peta gambar" + +#: ../atk/atkobject.c:174 +#| msgid "animation" +msgid "notification" +msgstr "pemberitahuan" + +#: ../atk/atkobject.c:175 +#| msgid "menu bar" +msgid "info bar" +msgstr "bilah info" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Nama Akses" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "Nama turunan objek yang digunakan untuk teknologi kemudahan akses" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Keterangan Akses" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "Keterangan objek yang digunakan dalam teknologi kemudahan akses" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Induk Akses" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Digunakan untuk memberitahu bahwa induk telah berubah" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Nilai Akses" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Digunakan untuk memberitahukan bahwa nilai telah berubah" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Peran Akses" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "Peran akses objek ini" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Tapis Akses" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "Tapis akses objek ini" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Nilai MDI Akses" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "Nilai MDI akses objek ini" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Judul Tabel Akses" -#: atk/atkobject.c:546 -msgid "" -"Is used to notify that the table caption has changed; this property should " -"not be used. accessible-table-caption-object should be used instead" -msgstr "" -"Digunakan untuk memberi peringatan bahwa judul tabel telah berubah,nilai ini " -"sebaiknya tidak digunakan, silakan gunakan accessible-table-caption-object " -"saja." +#: ../atk/atkobject.c:572 +msgid "Is used to notify that the table caption has changed; this property should not be used. accessible-table-caption-object should be used instead" +msgstr "Digunakan untuk memberi peringatan bahwa judul tabel telah berubah,nilai ini sebaiknya tidak digunakan, silakan gunakan accessible-table-caption-object saja." -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Kepala Kolom Tabel Akses" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "Digunakan untuk memberitahu bahwa kepala kolom telah berubah" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Keterangan Kolom Tabel Akses" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "Digunakan untuk memberitahu bahwa keterangan kolom tabel telah berubah" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Kepala Baris Tabel Akses" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "Digunakan untuk memberitahu bawha kepala baris tabel telah berubah" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Keterangan Baris Tabel Akses" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "Digunakan untuk memberitahu bahwa keterangan baris tabel telah berubah" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Ringkasan Tabel Akses" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Digunakan untuk memberitahu bahwa keterangan tabel telah berubah" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Objek Judul Tabel Akses" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Digunakan untuk memberitahu bahwa judul tabel telah berubah" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Jumlah Akses Taut Hiperteks" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "Jumlah taut yang dimiliki AtkHypertext saat ini" + Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/it.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/it.gmo differ diff -Nru atk1.0-1.30.0/po/it.po atk1.0-2.2.0/po/it.po --- atk1.0-1.30.0/po/it.po 2009-12-21 07:05:29.000000000 +0000 +++ atk1.0-2.2.0/po/it.po 2011-09-19 17:06:54.000000000 +0000 @@ -1,49 +1,52 @@ # Italian translation of atk. -# Copyright (C) 2002 Free Software Foundation, Inc. -# Alessio Frusciante , 2002-2004. -# Luca Ferretti , 2005-2006. +# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. +# Alessio Frusciante , 2002, 2003, 2004. +# Luca Ferretti , 2005, 2006, 2007, 2008, 2009, 2010, 2011. # msgid "" msgstr "" "Project-Id-Version: atk\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2008-12-09 11:04+0100\n" -"Last-Translator: Luca Ferretti \n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" +"product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-08-31 05:06+0000\n" +"PO-Revision-Date: 2011-09-09 00:33+0200\n" +"Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Collegamento selezionato" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Specifica se l'oggetto AtkHyperlink è selezionato" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Numero di anchor" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "Il numero di anchor associate all'oggetto AtkHyperlink" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Indice finale" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "L'indice finale dell'oggetto AtkHyperlink" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Indice iniziale" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "L'indice iniziale dell'oggetto AtkHyperlink" @@ -55,430 +58,430 @@ # * of the following interfaces: # # @ATK_ROLE_INVALID: Invalid role -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "non valido" # @ATK_ROLE_ACCEL_LABEL: A label which represents an accelerator -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "etichetta acceleratore" # @ATK_ROLE_ALERT: An object which is an alert to the user -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "allerta" # @ATK_ROLE_ANIMATION: An object which is an animated image -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animazione" # @ATK_ROLE_ARROW: An arrow in one of the four cardinal directions -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "freccia" # @ATK_ROLE_CALENDAR: An object that displays a calendar and allows the user to select a date -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "calendario" # @ATK_ROLE_CANVAS: An object that can be drawn into and is used to trap events -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "tela" # @ATK_ROLE_CHECK_BOX: A choice that can be checked or unchecked and provides a separate indicator for the current state -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "casella di spunta" # @ATK_ROLE_CHECK_MENU_ITEM: A menu item with a check box -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "voce di menù di spunta" # @ATK_ROLE_COLOR_CHOOSER: A specialized dialog that lets the user choose a color -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "selettore colore" # @ATK_ROLE_COLUMN_HEADER: The header for a column of data -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "intestazione di colonna" # @ATK_ROLE_COMBO_BOX: A list of choices the user can select from -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "casella combinata" # @ATK_ROLE_DATE_EDITOR: An object whose purpose is to allow a user to edit a date -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "editor di date" # @ATK_ROLE_DESKTOP_ICON: An inconifed internal frame within a DESKTOP_PANE -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "icona della scrivania" # @ATK_ROLE_DESKTOP_FRAME: A pane that supports internal frames and iconified versions of those internal frames -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "cornice della scrivania" # @ATK_ROLE_DIAL: An object whose purpose is to allow a user to set a value # # rotella, vista la spiegazione è totalmente fuori luogo... -Luca -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "rotella" # @ATK_ROLE_DIALOG: A top level window with title bar and a border -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "dialogo" # @ATK_ROLE_DIRECTORY_PANE: A pane that allows the user to navigate through and select the contents of a directory -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "riquadro directory" # @ATK_ROLE_DRAWING_AREA: An object used for drawing custom user interface elements -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "area di disegno" # @ATK_ROLE_FILE_CHOOSER: A specialized dialog that lets the user choose a file -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "selettore file" # @ATK_ROLE_FILLER: A object that fills up space in a user interface -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "riempitore" # @ATK_ROLE_FONT_CHOOSER: A specialized dialog that lets the user choose a font #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "selettore tipo di carattere" # @ATK_ROLE_FRAME: A top level window with a title bar, border, menubar, etc. -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "cornice" # @ATK_ROLE_GLASS_PANE: A pane that is guaranteed to be painted on top of all panes beneath it -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "riquardo trasparente" # @ATK_ROLE_HTML_CONTAINER: A document container for HTML, whose children represent the document content -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "contenitore html" # @ATK_ROLE_ICON: A small fixed size picture, typically used to decorate components -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "icona" # @ATK_ROLE_IMAGE: An object whose primary purpose is to display an image -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "immagine" # @ATK_ROLE_INTERNAL_FRAME: A frame-like object that is clipped by a desktop pane -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "cornice interna" # @ATK_ROLE_LABEL: An object used to present an icon or short string in an interface -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "etichetta" # @ATK_ROLE_LAYERED_PANE: A specialized pane that allows its children to be drawn in layers, providing a form of stacking order -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "riquadro a livelli" # @ATK_ROLE_LIST: An object that presents a list of objects to the user and allows the user to select one or more of them -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "elenco" # @ATK_ROLE_LIST_ITEM: An object that represents an element of a list -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "voce di elenco" # @ATK_ROLE_MENU: An object usually found inside a menu bar that contains a list of actions the user can choose from -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "menù" # @ATK_ROLE_MENU_BAR: An object usually drawn at the top of the primary dialog box of an application that contains a list of menus the user can choose from -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "barra dei menù" # @ATK_ROLE_MENU_ITEM: An object usually contained in a menu that presents an action the user can choose -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "voce di menù" # *@ATK_ROLE_OPTION_PANE: A specialized pane whose primary use is inside a DIALOG -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "riquadro opzioni" # @ATK_ROLE_PAGE_TAB: An object that is a child of a page tab list -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "scheda" # @ATK_ROLE_PAGE_TAB_LIST: An object that presents a series of panels (or page tabs), one at a time, through some mechanism provided by the object -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "elenco di schede" # @ATK_ROLE_PANEL: A generic container that is often used to group objects -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "pannello" # @ATK_ROLE_PASSWORD_TEXT: A text object uses for passwords, or other places where the text content is not shown visibly to the user -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "testo password" # @ATK_ROLE_POPUP_MENU: A temporary window that is usually used to offer the user a list of choices, and then hides when the user selects one of those choices -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "menù a comparsa" # @ATK_ROLE_PROGRESS_BAR: An object used to indicate how much of a task has been completed -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "barra di avanzamento" # @ATK_ROLE_PUSH_BUTTON: An object the user can manipulate to tell the application to do something -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "pulsante" # @ATK_ROLE_RADIO_BUTTON: A specialized check box that will cause other radio buttons in the same group to become unchecked when this one is checked -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "pulsante radio" # @ATK_ROLE_RADIO_MENU_ITEM: A check menu item which belongs to a group. At each instant exactly one of the radio menu items from a group is selected -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "voce di menù radio" # @ATK_ROLE_ROOT_PANE: A specialized pane that has a glass pane and a layered pane as its children -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "riquadro radice" # @ATK_ROLE_ROW_HEADER: The header for a row of data -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "intestazione di riga" # @ATK_ROLE_SCROLL_BAR: An object usually used to allow a user to incrementally view a large amount of data. -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "barra di scorrimento" # @ATK_ROLE_SCROLL_PANE: An object that allows a user to incrementally view a large amount of information -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "riquadro a scorrimento" # @ATK_ROLE_SEPARATOR: An object usually contained in a menu to provide a visible and logical separation of the contents in a menu -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "separatore" # @ATK_ROLE_SLIDER: An object that allows the user to select from a bounded range -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "controllo scorrevole" # @ATK_ROLE_SPLIT_PANE: A specialized panel that presents two other panels at the same time -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "riquadro diviso" # @ATK_ROLE_SPIN_BUTTON: An object used to get an integer or floating point number from the user -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "controllo di selezione" # @ATK_ROLE_STATUSBAR: An object which reports messages of minor importance to the user -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "barra di stato" # @ATK_ROLE_TABLE: An object used to represent information in terms of rows and columns -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "tabella" # @ATK_ROLE_TABLE_CELL: A cell in a table -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "cella di tabella" # @ATK_ROLE_TABLE_COLUMN_HEADER: The header for a column of a table -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "intestazione di colonna per tabella" # @ATK_ROLE_TABLE_ROW_HEADER: The header for a row of a table -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "intestazione di riga per tabella" # @ATK_ROLE_TEAR_OFF_MENU_ITEM: A menu item used to tear off and reattach its menu -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "voce di menù staccabile" # @ATK_ROLE_TERMINAL: An object that represents an accessible terminal -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminale" # @ATK_ROLE_TEXT: An object that presents text to the user -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "testo" # @ATK_ROLE_TOGGLE_BUTTON: A specialized push button that can be checked or unchecked, but does not provide a separate indicator for the current state -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "pulsante di commutazione" # @ATK_ROLE_TOOL_BAR: A bar or palette usually composed of push buttons or toggle buttons -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "barra degli strumenti" # @ATK_ROLE_TOOL_TIP: An object that provides information about another object -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "suggerimento" # @ATK_ROLE_TREE: An object used to represent hierarchical information to the user -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "albero" # @ATK_ROLE_TREE_TABLE: An object capable of expanding and collapsing rows as well as showing multiple columns of data -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "tabella ad albero" # @ATK_ROLE_UNKNOWN: The object contains some Accessible information, but its role is not known -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "sconosciuto" # *@ATK_ROLE_VIEWPORT: An object usually used in a scroll pane -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "area visibile" # @ATK_ROLE_WINDOW: A top level window with no title or border. -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "finestra" # @ATK_ROLE_HEADER: An object that serves as a document header. -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "intestazione" # @ATK_ROLE_FOOTER: An object that serves as a document footer. -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "piè di pagina" # @ATK_ROLE_PARAGRAPH: An object which is contains a paragraph of text content -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "paragrafo" # @ATK_ROLE_RULER: An object which describes margins and tab stops, etc. for text objects which it controls -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "righello" # @ATK_ROLE_APPLICATION: The object is an application object, which may contain @ATK_ROLE_FRAME objects or other types of accessibles. -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "applicazione" # @ATK_ROLE_AUTOCOMPLETE: The object is a dialog or list containing items for insertion into an entry widget, for instance a list of words for completion of a text entry. -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "completamento automatico" # @ATK_ROLE_EDITBAR: The object is an editable text object in a toolbar -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "barra di modifica" # @ATK_ROLE_EMBEDDED: The object is an embedded container within a document or panel. This role is a grouping "hint" indicating that the contained objects share a context. -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "componente incorporato" # @ATK_ROLE_ENTRY: The object is a component whose textual content may be entered or modified by the user, provided @ATK_STATE_EDITABLE is present. -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "campo inserimento" # @ATK_ROLE_CHART: The object is a graphical depiction of quantitative data. It may contain multiple subelements whose attributes and/or description may be queried to obtain both the quantitative data and information about how the data is being presented. The LABELLED_BY relation is particularly important in interpreting objects of this type, as is the accessible-description property. -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "diagramma" # @ATK_ROLE_CAPTION: The object contains descriptive information, usually textual, about another user interface element such as a table, chart, or image. -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "didascalia" # @ATK_ROLE_DOCUMENT_FRAME: The object is a visual frame or container which contains a view of document content. Document frames may occur within another Document instance, in which case the second document may be said to be embedded in the containing instance. HTML frames are often ROLE_DOCUMENT_FRAME. Either this object, or a singleton descendant, should implement the Document interface. -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "cornice documento" # @ATK_ROLE_HEADING: The object serves as a heading for content which follows it in a document. The 'heading level' of the heading, if availabe, may be obtained by querying the object's attributes. -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "intestazione" # @ATK_ROLE_PAGE: The object is a containing instance which encapsulates a page of information. @ATK_ROLE_PAGE is used in documents and content which support a paginated navigation model. -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "pagina" # @ATK_ROLE_SECTION: The object is a containing instance of document content which constitutes a particular 'logical' section of the document. The type of content within a section, and the nature of the section division itself, may be obtained by querying the object's attributes. Sections may be nested. -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "sezione" # @ATK_ROLE_REDUNDANT_OBJECT: The object is redundant with another object in the hierarchy, and is exposed for purely technical reasons. Objects of this role should normally be ignored by clients. -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "oggetto ridondante" @@ -488,85 +491,148 @@ # Traduzione non ottimale, ma visto l'originale non penso si potesse # fare molto altro -Luca # -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "modulo" # @ATK_ROLE_LINK - The object is a hypertext anchor, i.e. a "link" in a hypertext document. Such objects are distinct from 'inline' content which may also use the Hypertext/Hyperlink interfaces to indicate the range/location within a text object where an inline or embedded object lies -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "collegamento" # @ATK_ROLE_INPUT_METHOD_WINDOW - The object is a window or similar viewport which is used to allow composition or input of a 'complex character', in other words it is an "input method window. -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "finestra metodo di input" -#: atk/atkobject.c:488 +# @ATK_ROLE_TABLE_ROW_HEADER: The header for a row of a table +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "riga di tabella" + +# @ATK_ROLE_TREE_TABLE: An object capable of expanding and collapsing rows as well as showing multiple columns of data +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "elemento albero" + +# @ATK_ROLE_DOCUMENT_FRAME: The object is a visual frame or container which contains a view of document content. Document frames may occur within another Document instance, in which case the second document may be said to be embedded in the containing instance. HTML frames are often ROLE_DOCUMENT_FRAME. Either this object, or a singleton descendant, should implement the Document interface. +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "documento foglio di calcolo" + +# @ATK_ROLE_DOCUMENT_FRAME: The object is a visual frame or container which contains a view of document content. Document frames may occur within another Document instance, in which case the second document may be said to be embedded in the containing instance. HTML frames are often ROLE_DOCUMENT_FRAME. Either this object, or a singleton descendant, should implement the Document interface. +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "documento presentazione" + +# @ATK_ROLE_DOCUMENT_FRAME: The object is a visual frame or container which contains a view of document content. Document frames may occur within another Document instance, in which case the second document may be said to be embedded in the containing instance. HTML frames are often ROLE_DOCUMENT_FRAME. Either this object, or a singleton descendant, should implement the Document interface. +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "documento testo" + +# @ATK_ROLE_DOCUMENT_FRAME: The object is a visual frame or container which contains a view of document content. Document frames may occur within another Document instance, in which case the second document may be said to be embedded in the containing instance. HTML frames are often ROLE_DOCUMENT_FRAME. Either this object, or a singleton descendant, should implement the Document interface. +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "documento web" + +# @ATK_ROLE_DOCUMENT_FRAME: The object is a visual frame or container which contains a view of document content. Document frames may occur within another Document instance, in which case the second document may be said to be embedded in the containing instance. HTML frames are often ROLE_DOCUMENT_FRAME. Either this object, or a singleton descendant, should implement the Document interface. +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "documento email" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "commento" + +# @ATK_ROLE_LIST: An object that presents a list of objects to the user and allows the user to select one or more of them +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "casella elenco" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "raggruppamento" + +# @ATK_ROLE_IMAGE: An object whose primary purpose is to display an image +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "mappa immagine" + +# @ATK_ROLE_ANIMATION: An object which is an animated image +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "notifica" + +# @ATK_ROLE_MENU_BAR: An object usually drawn at the top of the primary dialog box of an application that contains a list of menus the user can choose from +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "barra informazioni" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Nome accessibile" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "" "Il nome dell'istanza dell'oggetto formattato per l'accesso tramite " "tecnologia assistiva" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Descrizione accessibile" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "" "Descrizione di un oggetto, formattata per l'accesso tramite tecnologia " "assistiva" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Genitore accessibile" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Usato per notificare che il genitore è cambiato" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Valore accessibile" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Usato per notificare che il valore è cambiato" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Ruolo accessibile" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "Il ruolo accessibile di questo oggetto" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Livello accessibile" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "Il livello accessibile di questo oggetto" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Valore MDI accessibile" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "Il valore MDI accessibile di questo oggetto" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Didascalia accessibile della tabella" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -575,64 +641,64 @@ "proprietà non dovrebbe essere usata. Dovrebbe essere usata accessible-table-" "caption-object al suo posto." -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Intestazione accessibile della colonna della tabella" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "" "Usato per notificare che l'intestazione della colonna della tabella è " "cambiata" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Descrizione accessibile della colonna della tabella" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "" "Usata per notificare che la descrizione della colonna della tabella è " "cambiata" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Intestazione accessibile della riga della tabella" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "" "Usato per notificare che l'intestazione della riga della tabella è cambiata" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Descrizione accessibile della riga della tabella" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "" "Usata per notificare che la descrizione della riga della tabella è cambiata" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Riassunto accessibile della tabella" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Usato per notificare che il riassunto della tabella è cambiato" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Oggetto didascalia accessibile della tabella" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Usato per notificare che la didascalia della tabella e cambiata" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Numero di collegamenti accessibili nell'ipertesto" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "Il numero di collegamenti presenti nell'AtkHypertext attuale" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/ja.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/ja.gmo differ diff -Nru atk1.0-1.30.0/po/ja.po atk1.0-2.2.0/po/ja.po --- atk1.0-1.30.0/po/ja.po 2009-12-21 07:05:29.000000000 +0000 +++ atk1.0-2.2.0/po/ja.po 2011-09-19 17:06:54.000000000 +0000 @@ -6,521 +6,596 @@ # msgid "" msgstr "" -"Project-Id-Version: atk trunk\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-02-07 00:02+0900\n" -"Last-Translator: Takeshi AIHANA \n" +"Project-Id-Version: atk master\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" +"product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-09-10 07:30+0000\n" +"PO-Revision-Date: 2011-09-11 00:09+0900\n" +"Last-Translator: Jiro Matsuzawa \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "リンクの選択" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "AtkHyperlink オブジェクトを選択するかどうかを指定します" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "アンカーの数" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "AtkHyperlink オブジェクトに対応づけられたアンカーの数です" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "終了インデックス" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "AtkHyperlink オブジェクトの終端インデックスです" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "開始インデックス" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "AtkHyperlink オブジェクトの先頭インデックスです" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "無効" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "アクセラレータのラベル" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "警告" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "アニメーション" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "矢印" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" -msgstr "カレンダ" +msgstr "カレンダー" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "キャンバス" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "チェック・ボックス" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "チェック・メニュー項目" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "色の選択" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" -msgstr "列ヘッダ" +msgstr "列ヘッダー" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "コンボ・ボックス" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" -msgstr "日付エディタ" +msgstr "日付エディター" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "デスクトップ・アイコン" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "デスクトップ・フレーム" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "ダイアル" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "ダイアログ" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" -msgstr "フォルダ・ペイン" +msgstr "フォルダー・ペイン" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "描画領域" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "ファイルの選択" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" -msgstr "ファイラ" +msgstr "ファイラー" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "フォントの選択" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "フレーム" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "ガラスのペイン" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" -msgstr "HTML コンテナ" +msgstr "HTML コンテナー" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "アイコン" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "画像" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "内部フレーム" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "ラベル" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "階層ペイン" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "リスト" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "リストの項目" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "メニュー" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "メニュー・バー" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "メニューの項目" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "オプション・ペイン" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "ページ・タブ" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "ページ・タブのリスト" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "パネル" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "パスワード" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "ポップアップ・メニュー" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "進捗バー" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "プッシュ・ボタン" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "ラジオ・ボタン" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "ラジオ・ボタンの項目" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "ルート・ペイン" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" -msgstr "行ヘッダ" +msgstr "行ヘッダー" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "スクロール・バー" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "スクロール・ペイン" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" -msgstr "セパレータ" +msgstr "セパレーター" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" -msgstr "スライダ" +msgstr "スライダー" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "分割ペイン" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "スピン・ボタン" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "ステータスバー" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "表" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "表のセル" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" -msgstr "表の列ヘッダ" +msgstr "表の列ヘッダー" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" -msgstr "表の行ヘッダ" +msgstr "表の行ヘッダー" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "取り外しメニュー項目" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "端末" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "テキスト" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "トグル・ボタン" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "ツール・バー" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "ツール・チップ" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "ツリー" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "ツリーの表" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "不明" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "ビューポート" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "ウィンドウ" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" -msgstr "ヘッダ" +msgstr "ヘッダー" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" -msgstr "フッタ" +msgstr "フッター" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "段落" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "ルーラー" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "アプリケーション" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "自動補完" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "編集バー" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "組み込みコンポーネント" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "エントリ" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "図" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "表題" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "ドキュメントのフレーム" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "見出し" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "ページ" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "セクション" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "冗長なオブジェクト" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "フォーム" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "リンク" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "入力メソッドのウィンドウ" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +#, fuzzy +#| msgid "table row header" +msgid "table row" +msgstr "表の行ヘッダー" + +#: ../atk/atkobject.c:164 +#, fuzzy +#| msgid "tree table" +msgid "tree item" +msgstr "ツリーの表" + +#: ../atk/atkobject.c:165 +#, fuzzy +#| msgid "document frame" +msgid "document spreadsheet" +msgstr "ドキュメントのフレーム" + +#: ../atk/atkobject.c:166 +#, fuzzy +#| msgid "document frame" +msgid "document presentation" +msgstr "ドキュメントのフレーム" + +#: ../atk/atkobject.c:167 +#, fuzzy +#| msgid "document frame" +msgid "document text" +msgstr "ドキュメントのフレーム" + +#: ../atk/atkobject.c:168 +#, fuzzy +#| msgid "document frame" +msgid "document web" +msgstr "ドキュメントのフレーム" + +#: ../atk/atkobject.c:169 +#, fuzzy +#| msgid "document frame" +msgid "document email" +msgstr "ドキュメントのフレーム" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "" + +#: ../atk/atkobject.c:171 +#, fuzzy +#| msgid "list" +msgid "list box" +msgstr "リスト" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "" + +#: ../atk/atkobject.c:173 +#, fuzzy +#| msgid "image" +msgid "image map" +msgstr "画像" + +#: ../atk/atkobject.c:174 +#, fuzzy +#| msgid "animation" +msgid "notification" +msgstr "アニメーション" + +#: ../atk/atkobject.c:175 +#, fuzzy +#| msgid "menu bar" +msgid "info bar" +msgstr "メニュー・バー" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "アクセス可能な名前" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "支援技術アクセス形式のオブジェクト・インスタンスの名前です" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "アクセス可能な説明" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "支援技術アクセス形式のオブジェクトの説明です" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "アクセス可能な親オブジェクト" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "親が変更されたことを通知するのに使用します" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "アクセス可能な値" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "値が変更されたことを通知するのに使用します" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "アクセス可能なロール" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "このオブジェクトでアクセス可能な役割です" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" -msgstr "アクセス可能なレイヤ" +msgstr "アクセス可能なレイヤー" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" -msgstr "このオブジェクトで定義されているアクセス可能なレイヤです" +msgstr "このオブジェクトで定義されているアクセス可能なレイヤーです" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "アクセス可能な MDI 値" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "このオブジェクトでアクセス可能な MDI の値です" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "アクセス可能な表のタイトル" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" msgstr "" "表のタイトルが変更されたことを通知するのに使用します (このプロパティを使用せ" -"ずに accessible-table-caption-object を使用して下さい)" +"ずに accessible-table-caption-object を使用してください)" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" -msgstr "アクセス可能な表の列ヘッダ" +msgstr "アクセス可能な表の列ヘッダー" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" -msgstr "表の列のヘッダが変更されたことを通知するのに使用します" +msgstr "表の列のヘッダーが変更されたことを通知するのに使用します" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "アクセス可能な表の列の内容" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "表の列の内容が変更されたことを通知するのに使用します" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" -msgstr "アクセス可能な表の行ヘッダ" +msgstr "アクセス可能な表の行ヘッダー" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" -msgstr "表の行のヘッダが変更されたことを通知するのに使用します" +msgstr "表の行のヘッダーが変更されたことを通知するのに使用します" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "アクセス可能な表の行の内容" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "表の行の内容が変更されたことを通知するのに使用します" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "アクセス可能な表のサマリ" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "表のサマリが変更されたことを通知するのに使用します" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "アクセス可能な表の表題オブジェクト" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "表のタイトルが変更されたことを通知するのに使用します" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "アクセス可能な HyperText リンクの数" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "この AtkHypertext オブジェクトが持つリンクの数です" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/kk.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/kk.gmo differ diff -Nru atk1.0-1.30.0/po/kk.po atk1.0-2.2.0/po/kk.po --- atk1.0-1.30.0/po/kk.po 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/po/kk.po 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,527 @@ +# Kazakh translation of atk. +# Copyright (C) 2010 HZ +# This file is distributed under the same license as the atk package. +# Baurzhan Muftakhidinov , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: atk master\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=atk&component=general\n" +"POT-Creation-Date: 2010-07-18 14:01+0000\n" +"PO-Revision-Date: 2010-09-15 15:49+0600\n" +"Last-Translator: Baurzhan Muftakhidinov \n" +"Language-Team: Kazakh \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-Poedit-Language: Kazakh\n" +"X-Poedit-Country: KAZAKHSTAN\n" + +#: ../atk/atkhyperlink.c:103 +msgid "Selected Link" +msgstr "" + +#: ../atk/atkhyperlink.c:104 +msgid "Specifies whether the AtkHyperlink object is selected" +msgstr "" + +#: ../atk/atkhyperlink.c:110 +msgid "Number of Anchors" +msgstr "" + +#: ../atk/atkhyperlink.c:111 +msgid "The number of anchors associated with the AtkHyperlink object" +msgstr "" + +#: ../atk/atkhyperlink.c:119 +msgid "End index" +msgstr "Индекс соңы" + +#: ../atk/atkhyperlink.c:120 +msgid "The end index of the AtkHyperlink object" +msgstr "AtkHyperlink объектінің индекс соңы" + +#: ../atk/atkhyperlink.c:128 +msgid "Start index" +msgstr "Индекс басы" + +#: ../atk/atkhyperlink.c:129 +msgid "The start index of the AtkHyperlink object" +msgstr "AtkHyperlink объектінің индекс басы" + +#: ../atk/atkobject.c:74 +msgid "invalid" +msgstr "бұрыс" + +#: ../atk/atkobject.c:75 +msgid "accelerator label" +msgstr "" + +#: ../atk/atkobject.c:76 +msgid "alert" +msgstr "ескерту" + +#: ../atk/atkobject.c:77 +msgid "animation" +msgstr "" + +#: ../atk/atkobject.c:78 +#, fuzzy +msgid "arrow" +msgstr "Сызықша" + +#: ../atk/atkobject.c:79 +msgid "calendar" +msgstr "күнтізбе" + +#: ../atk/atkobject.c:80 +msgid "canvas" +msgstr "" + +#: ../atk/atkobject.c:81 +msgid "check box" +msgstr "" + +#: ../atk/atkobject.c:82 +msgid "check menu item" +msgstr "" + +#: ../atk/atkobject.c:83 +msgid "color chooser" +msgstr "түсті таңдаушы" + +#: ../atk/atkobject.c:84 +msgid "column header" +msgstr "" + +#: ../atk/atkobject.c:85 +msgid "combo box" +msgstr "" + +#: ../atk/atkobject.c:86 +msgid "dateeditor" +msgstr "" + +#: ../atk/atkobject.c:87 +msgid "desktop icon" +msgstr "" + +#: ../atk/atkobject.c:88 +msgid "desktop frame" +msgstr "" + +#: ../atk/atkobject.c:89 +msgid "dial" +msgstr "" + +#: ../atk/atkobject.c:90 +msgid "dialog" +msgstr "сұхбат терезесі" + +#: ../atk/atkobject.c:91 +msgid "directory pane" +msgstr "" + +#: ../atk/atkobject.c:92 +msgid "drawing area" +msgstr "" + +#: ../atk/atkobject.c:93 +msgid "file chooser" +msgstr "" + +#: ../atk/atkobject.c:94 +msgid "filler" +msgstr "" + +#. I know it looks wrong but that is what Java returns +#: ../atk/atkobject.c:96 +msgid "fontchooser" +msgstr "" + +#: ../atk/atkobject.c:97 +msgid "frame" +msgstr "фрейм" + +#: ../atk/atkobject.c:98 +msgid "glass pane" +msgstr "" + +#: ../atk/atkobject.c:99 +msgid "html container" +msgstr "" + +#: ../atk/atkobject.c:100 +msgid "icon" +msgstr "таңбаша" + +#: ../atk/atkobject.c:101 +msgid "image" +msgstr "сурет" + +#: ../atk/atkobject.c:102 +msgid "internal frame" +msgstr "" + +#: ../atk/atkobject.c:103 +msgid "label" +msgstr "белгі" + +#: ../atk/atkobject.c:104 +msgid "layered pane" +msgstr "" + +#: ../atk/atkobject.c:105 +msgid "list" +msgstr "тізім" + +#: ../atk/atkobject.c:106 +msgid "list item" +msgstr "" + +#: ../atk/atkobject.c:107 +msgid "menu" +msgstr "мәзір" + +#: ../atk/atkobject.c:108 +#, fuzzy +msgid "menu bar" +msgstr "Мәзір жолағы" + +#: ../atk/atkobject.c:109 +msgid "menu item" +msgstr "мәзір элементі" + +#: ../atk/atkobject.c:110 +msgid "option pane" +msgstr "" + +#: ../atk/atkobject.c:111 +msgid "page tab" +msgstr "" + +#: ../atk/atkobject.c:112 +msgid "page tab list" +msgstr "" + +#: ../atk/atkobject.c:113 +msgid "panel" +msgstr "панель" + +#: ../atk/atkobject.c:114 +msgid "password text" +msgstr "" + +#: ../atk/atkobject.c:115 +msgid "popup menu" +msgstr "" + +#: ../atk/atkobject.c:116 +msgid "progress bar" +msgstr "" + +#: ../atk/atkobject.c:117 +msgid "push button" +msgstr "" + +#: ../atk/atkobject.c:118 +msgid "radio button" +msgstr "" + +#: ../atk/atkobject.c:119 +msgid "radio menu item" +msgstr "" + +#: ../atk/atkobject.c:120 +msgid "root pane" +msgstr "" + +#: ../atk/atkobject.c:121 +msgid "row header" +msgstr "" + +#: ../atk/atkobject.c:122 +msgid "scroll bar" +msgstr "" + +#: ../atk/atkobject.c:123 +msgid "scroll pane" +msgstr "" + +#: ../atk/atkobject.c:124 +msgid "separator" +msgstr "ажыратқыш" + +#: ../atk/atkobject.c:125 +msgid "slider" +msgstr "" + +#: ../atk/atkobject.c:126 +msgid "split pane" +msgstr "" + +#: ../atk/atkobject.c:127 +msgid "spin button" +msgstr "" + +#: ../atk/atkobject.c:128 +msgid "statusbar" +msgstr "қалып-күй жолағы" + +#: ../atk/atkobject.c:129 +msgid "table" +msgstr "кесте" + +#: ../atk/atkobject.c:130 +msgid "table cell" +msgstr "" + +#: ../atk/atkobject.c:131 +msgid "table column header" +msgstr "" + +#: ../atk/atkobject.c:132 +msgid "table row header" +msgstr "" + +#: ../atk/atkobject.c:133 +msgid "tear off menu item" +msgstr "" + +#: ../atk/atkobject.c:134 +msgid "terminal" +msgstr "терминал" + +#: ../atk/atkobject.c:135 +msgid "text" +msgstr "мәтін" + +#: ../atk/atkobject.c:136 +msgid "toggle button" +msgstr "" + +#: ../atk/atkobject.c:137 +msgid "tool bar" +msgstr "саймандар панелі" + +#: ../atk/atkobject.c:138 +msgid "tool tip" +msgstr "" + +#: ../atk/atkobject.c:139 +msgid "tree" +msgstr "ағаш" + +#: ../atk/atkobject.c:140 +msgid "tree table" +msgstr "" + +#: ../atk/atkobject.c:141 +msgid "unknown" +msgstr "белгісіз" + +#: ../atk/atkobject.c:142 +msgid "viewport" +msgstr "" + +#: ../atk/atkobject.c:143 +msgid "window" +msgstr "терезе" + +#: ../atk/atkobject.c:144 +msgid "header" +msgstr "тақырыптама" + +#: ../atk/atkobject.c:145 +msgid "footer" +msgstr "" + +#: ../atk/atkobject.c:146 +msgid "paragraph" +msgstr "параграф" + +#: ../atk/atkobject.c:147 +msgid "ruler" +msgstr "" + +#: ../atk/atkobject.c:148 +msgid "application" +msgstr "қолданба" + +#: ../atk/atkobject.c:149 +msgid "autocomplete" +msgstr "" + +#: ../atk/atkobject.c:150 +msgid "edit bar" +msgstr "" + +#: ../atk/atkobject.c:151 +msgid "embedded component" +msgstr "" + +#: ../atk/atkobject.c:152 +msgid "entry" +msgstr "жазба" + +#: ../atk/atkobject.c:153 +msgid "chart" +msgstr "" + +#: ../atk/atkobject.c:154 +msgid "caption" +msgstr "" + +#: ../atk/atkobject.c:155 +msgid "document frame" +msgstr "" + +#: ../atk/atkobject.c:156 +msgid "heading" +msgstr "" + +#: ../atk/atkobject.c:157 +msgid "page" +msgstr "парақ" + +#: ../atk/atkobject.c:158 +msgid "section" +msgstr "санат" + +#: ../atk/atkobject.c:159 +msgid "redundant object" +msgstr "" + +#: ../atk/atkobject.c:160 +msgid "form" +msgstr "форма" + +#: ../atk/atkobject.c:161 +msgid "link" +msgstr "сілтеме" + +#: ../atk/atkobject.c:162 +msgid "input method window" +msgstr "" + +#: ../atk/atkobject.c:488 +msgid "Accessible Name" +msgstr "" + +#: ../atk/atkobject.c:489 +msgid "Object instance's name formatted for assistive technology access" +msgstr "" + +#: ../atk/atkobject.c:495 +msgid "Accessible Description" +msgstr "" + +#: ../atk/atkobject.c:496 +msgid "Description of an object, formatted for assistive technology access" +msgstr "" + +#: ../atk/atkobject.c:502 +msgid "Accessible Parent" +msgstr "" + +#: ../atk/atkobject.c:503 +msgid "Is used to notify that the parent has changed" +msgstr "" + +#: ../atk/atkobject.c:509 +msgid "Accessible Value" +msgstr "" + +#: ../atk/atkobject.c:510 +msgid "Is used to notify that the value has changed" +msgstr "" + +#: ../atk/atkobject.c:518 +msgid "Accessible Role" +msgstr "" + +#: ../atk/atkobject.c:519 +msgid "The accessible role of this object" +msgstr "" + +#: ../atk/atkobject.c:527 +msgid "Accessible Layer" +msgstr "" + +#: ../atk/atkobject.c:528 +msgid "The accessible layer of this object" +msgstr "" + +#: ../atk/atkobject.c:536 +msgid "Accessible MDI Value" +msgstr "" + +#: ../atk/atkobject.c:537 +msgid "The accessible MDI value of this object" +msgstr "" + +#: ../atk/atkobject.c:545 +msgid "Accessible Table Caption" +msgstr "" + +#: ../atk/atkobject.c:546 +msgid "Is used to notify that the table caption has changed; this property should not be used. accessible-table-caption-object should be used instead" +msgstr "" + +#: ../atk/atkobject.c:552 +msgid "Accessible Table Column Header" +msgstr "" + +#: ../atk/atkobject.c:553 +msgid "Is used to notify that the table column header has changed" +msgstr "" + +#: ../atk/atkobject.c:559 +msgid "Accessible Table Column Description" +msgstr "" + +#: ../atk/atkobject.c:560 +msgid "Is used to notify that the table column description has changed" +msgstr "" + +#: ../atk/atkobject.c:566 +msgid "Accessible Table Row Header" +msgstr "" + +#: ../atk/atkobject.c:567 +msgid "Is used to notify that the table row header has changed" +msgstr "" + +#: ../atk/atkobject.c:573 +msgid "Accessible Table Row Description" +msgstr "" + +#: ../atk/atkobject.c:574 +msgid "Is used to notify that the table row description has changed" +msgstr "" + +#: ../atk/atkobject.c:580 +msgid "Accessible Table Summary" +msgstr "" + +#: ../atk/atkobject.c:581 +msgid "Is used to notify that the table summary has changed" +msgstr "" + +#: ../atk/atkobject.c:587 +msgid "Accessible Table Caption Object" +msgstr "" + +#: ../atk/atkobject.c:588 +msgid "Is used to notify that the table caption has changed" +msgstr "" + +#: ../atk/atkobject.c:594 +msgid "Number of Accessible Hypertext Links" +msgstr "" + +#: ../atk/atkobject.c:595 +msgid "The number of links which the current AtkHypertext has" +msgstr "" + Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/kn.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/kn.gmo differ diff -Nru atk1.0-1.30.0/po/kn.po atk1.0-2.2.0/po/kn.po --- atk1.0-1.30.0/po/kn.po 2009-12-21 07:05:29.000000000 +0000 +++ atk1.0-2.2.0/po/kn.po 2011-09-19 17:06:54.000000000 +0000 @@ -2,529 +2,598 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # -# Shankar Prasad , 2008, 2009. +# Shankar Prasad , 2008, 2009, 2011. msgid "" msgstr "" "Project-Id-Version: atk.HEAD.kn\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-03-17 14:38+0530\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" +"product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-08-16 17:08+0000\n" +"PO-Revision-Date: 2011-08-29 16:32+0530\n" "Last-Translator: Shankar Prasad \n" "Language-Team: Kannada \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.11.4\n" +"X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: kn\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "ಆರಿಸಲಾದ ಕೊಂಡಿ" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "AtkHyperlink ಆಬ್ಜೆಕ್ಟ್‍ ಆರಿಸಲ್ಪಟ್ಟಿದೆಯೆ ಎಂದು ಸೂಚಿಸುತ್ತದೆ" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "ಆಂಕರ್‍ಗಳ ಸಂಖ್ಯೆ" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "AtkHyperlink ಆಬ್ಜೆಕ್ಟ್‍ನೊಂದಿಗೆ ಹೊಂದಿಕೊಂಡಿರುವ ಆಂಕರ್‍ಗಳ ಸಂಖ್ಯೆ" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "ಅಂತ್ಯದ ಇಂಡೆಕ್ಸ್‍" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "AtkHyperlink ಆಬ್ಜೆಕ್ಟ್‍ನ ಅಂತ್ಯದ ಇಂಡೆಕ್ಸ್‍" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "ಆರಂಭದ ಇಂಡೆಕ್ಸ್‍" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "AtkHyperlink ಆಬ್ಜೆಕ್ಟ್‍ನ ಆರಂಭದ ಇಂಡೆಕ್ಸ್‍" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "ಅಮಾನ್ಯ" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "ವೇಗೋತ್ಕರ್ಷಕ ಲೇಬಲ್" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "ಎಚ್ಚರಿಕೆ" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "ಅನಿಮೇಶನ್" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "ತೀರ" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "ಕ್ಯಾಲೆಂಡರ್" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "ಕ್ಯಾನ್ವಾಸ್" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "ಗುರುತು ಪೆಟ್ಟಿಗೆ" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "ಮೆನು ಅಂಶವನ್ನು ಪರೀಕ್ಷಿಸು" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "ಬಣ್ಣದ ಆಯ್ಕೆಗಾರ" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "ಕಾಲಂ ಹೆಡರ್" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "ಕಾಂಬೋ ಪೆಟ್ಟಿಗೆ" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "ದಿನಾಂಕ-ಸಂಪಾದಕ" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "ಗಣಕತೆರೆಯ ಚಿಹ್ನೆ" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "ಗಣಕತೆರೆಯ ಚೌಕಟ್ಟು" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "ಕರೆ" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "ಸಂವಾದ" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "ಕೋಶ ಫಲಕ" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "ಬರೆಯುವ ಜಾಗ" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "ಕಡತ ಆಯ್ಕೆಗಾರ" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "ತುಂಬಿಸುವವ" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "ಅಕ್ಷರಶೈಲಿಆಯ್ಕೆಗಾರ" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "ಚೌಕಟ್ಟು" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "ಗಾಜಿನ ಫಲಕ" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "html ಒಳಗೊಂಡಿರುವ" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "ಚಿಹ್ನೆ" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "ಚಿತ್ರ" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "ಒಳಗಿನ ಚೌಕಟ್ಟು" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "ಲೇಬಲ್" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "ಪದರು ಪದರಾದ ಫಲಕ" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "ಪಟ್ಟಿ" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "ಅಂಶ ಪಟ್ಟಿ" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "ಪರಿವಿಡಿ" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "ಮೆನು ಪಟ್ಟಿ" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "ಮೆನು ಅಂಶ" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "ಆಯ್ಕೆ ಫಲಕ" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "ಪುಟದ ಟ್ಯಾಬ್" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "ಪುಟದ ಟ್ಯಾಬ್ ಪಟ್ಟಿ" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "ಮುಖ್ಯ ಪಟ್ಟಿ" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "ಗುಪ್ತಪದ ಪಠ್ಯ" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "ಪುಟಿಕೆ ಮೆನು" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "ಪ್ರಗತಿ ಪಟ್ಟಿ" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "ಒತ್ತು ಗುಂಡಿ" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "ರೇಡಿಯೋ ಗುಂಡಿ" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "ರೇಡಿಯೋ ಮೆನು ಅಂಶ" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "ಮೂಲ ಫಲಕ" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "ಸಾಲು ಹೆಡರ್" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "ಚಲನ ಪಟ್ಟಿ" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "ಚಲನ ಫಲಕ" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "ವಿಭಜಕ" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "ಸ್ಲೈಡರ್" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "ಸೀಳು ಫಲಕ" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "ತಿರುಗು ಗುಂಡಿ" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "ಸ್ಥಿತಿ ಪಟ್ಟಿಕೆ" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "ಟೇಬಲ್" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "ಟೇಬಲ್ ಸೆಲ್" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "ಟೇಬಲ್ ಕಾಲಂ ಹೆಡರ್" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "ಟೇಬಲ್ ಸಾಲು ಹೆಡರ್" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "ಮೆನು ಅಂಶವನ್ನು ಹರಿದು ಹಾಕು" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "ಟರ್ಮಿನಲ್" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "ಪಠ್ಯ" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "ಹೊರಳು ಗುಂಡಿ" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "ಉಪಕರಣ ಪಟ್ಟಿ" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "ಉಪಕರಣ ಸಲಹೆ" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "ವೃಕ್ಷ" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "ಟ್ರೀ ಟೇಬಲ್" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "ಗೊತ್ತಾಗದ" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "ನೋಟದ ಮಿತಿ" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "ಕಿಟಕಿ" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "ಶಿರೋ ಲೇಖ" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "ಪಾದ ಲೇಖ" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "ಪ್ಯಾರಾಗ್ರಾಫ್" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "ಅಳತೆಗೋಲು" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "ಅನ್ವಯ" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "ಸ್ವಯಂಪೂರ್ಣಗೊಳಿಕೆ" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "ಸಂಪಾದನೆಯ ಪಟ್ಟಿ" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "ಅಡಕಗೊಳಿಸಲಾದ ಘಟಕ" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "ನಮೂದು" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "ನಕ್ಷೆ" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "ಶಿರೋನಾಮ" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "ದಸ್ತಾವೇಜಿನ ಚೌಕಟ್ಟು" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "ಶೀರ್ಷಿಕೆ" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "ಪುಟ" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "ವಿಭಾಗ" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "ಅನವಶ್ಯಕ ಆಬ್ಜೆಕ್ಟ್‍" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "ಫಾರ್ಮ್" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "ಸಂಪರ್ಕಕೊಂಡಿ" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "ಇನ್‌ಪುಟ್ ಕ್ರಮದ ವಿಂಡೊ" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +#| msgid "table row header" +msgid "table row" +msgstr "ಟೇಬಲ್ ಅಡ್ಡಸಾಲು" + +#: ../atk/atkobject.c:164 +#| msgid "tree table" +msgid "tree item" +msgstr "ವೃಕ್ಷ ಅಂಶ" + +#: ../atk/atkobject.c:165 +#| msgid "document frame" +msgid "document spreadsheet" +msgstr "ದಸ್ತಾವೇಜಿನ ಸ್ಪ್ರೆಡ್‌ಶೀಟ್" + +#: ../atk/atkobject.c:166 +#| msgid "document frame" +msgid "document presentation" +msgstr "ದಸ್ತಾವೇಜಿನ ಪ್ರಸೆಂಟೇಶನ್" + +#: ../atk/atkobject.c:167 +#| msgid "document frame" +msgid "document text" +msgstr "ದಸ್ತಾವೇಜಿನ ಟೆಕ್ಸ್ಟ್‍" + +#: ../atk/atkobject.c:168 +#| msgid "document frame" +msgid "document web" +msgstr "ದಸ್ತಾವೇಜಿನ ಜಾಲ" + +#: ../atk/atkobject.c:169 +#| msgid "document frame" +msgid "document email" +msgstr "ದಸ್ತಾವೇಜಿನ ಇಮೈಲ್" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "ಟಿಪ್ಪಣಿ" + +#: ../atk/atkobject.c:171 +#| msgid "list" +msgid "list box" +msgstr "ಪಟ್ಟಿ ಚೌಕ" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "ಗುಂಪುಗೊಳಿಕೆ" + +#: ../atk/atkobject.c:173 +#| msgid "image" +msgid "image map" +msgstr "ಚಿತ್ರ ನಕ್ಷೆ" + +#: ../atk/atkobject.c:174 +#| msgid "animation" +msgid "notification" +msgstr "ಸೂಚನೆಗಳು" + +#: ../atk/atkobject.c:175 +#| msgid "menu bar" +msgid "info bar" +msgstr "ಮಾಹಿತಿ ಪಟ್ಟಿ" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "ನಿಲುಕಿಸಿಕೊಳ್ಳಬಹುದಾದ ಹೆಸರು" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "" -"ಸಹಾಯಕ ತಂತ್ರಜ್ಞಾನ ನಿಲುಕಣೆ(ಅಸ್ಸಿಸ್ಟಿವ್ ಟೆಕ್ನೊಲಜಿ ಅಕ್ಸೆಸ್) ಗೆ ಹೊಂದುವಂತೆ ಬದಲಾಯಿಸಲಾದ " +"ಸಹಾಯಕ ತಂತ್ರಜ್ಞಾನ ನಿಲುಕಣೆ(ಅಸ್ಸಿಸ್ಟಿವ್ ಟೆಕ್ನೊಲಜಿ ಅಕ್ಸೆಸ್) ಗೆ ಹೊಂದುವಂತೆ " +"ಬದಲಾಯಿಸಲಾದ " "ಆಬ್ಜೆಕ್ಟ್ ಸನ್ನಿವೇಶದ(ಇನ್‍ಸ್ಟೆನ್ಸ್‍) ಹೆಸರು" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "ನಿಲುಕಿಸಿಕೊಳ್ಳಬಹುದಾದ ವಿವರಣೆ" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "" -"ಸಹಾಯಕ ತಂತ್ರಜ್ಞಾನ ನಿಲುಕಣೆ(ಅಸ್ಸಿಸ್ಟಿವ್ ಟೆಕ್ನೊಲಜಿ ಅಕ್ಸೆಸ್) ಗೆ ಹೊಂದುವಂತಹ ಆಬ್ಜೆಕ್ಟ್ ನ ವಿವರಣೆ" +"ಸಹಾಯಕ ತಂತ್ರಜ್ಞಾನ ನಿಲುಕಣೆ(ಅಸ್ಸಿಸ್ಟಿವ್ ಟೆಕ್ನೊಲಜಿ ಅಕ್ಸೆಸ್) ಗೆ ಹೊಂದುವಂತಹ " +"ಆಬ್ಜೆಕ್ಟ್ ನ ವಿವರಣೆ" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "ನಿಲುಕಿಸಿಕೊಳ್ಳಬಹುದಾದ ಮೂಲ" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "ಮೂಲವು ಬದಲಾಗಿದೆ ಎಂದು ತಿಳಿಸಲು ಬಳಸಲ್ಪಡುತ್ತದೆ" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "ನಿಲುಕಿಸಿಕೊಳ್ಳಬಹುದಾದ ಮೌಲ್ಯ" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "ಮೌಲ್ಯವು ಬದಲಾಗಿದೆ ಎಂದು ತಿಳಿಸಲು ಬಳಸಲ್ಪಡುತ್ತದೆ" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "ನಿಲುಕಿಸಿಕೊಳ್ಳಬಹುದಾದ ಪಾತ್ರ" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "ಪಾತ್ರವು ಬದಲಾಗಿದೆ ಎಂದು ತಿಳಿಸಲು ಬಳಸಲ್ಪಡುತ್ತದೆ" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "ನಿಲುಕಿಸಿಕೊಳ್ಳಬಹುದಾದ ಪದರ" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "ಆಬ್ಜೆಕ್ಟ್ ನ ನಿಲುಕಿಸಿಕೊಳ್ಳಬಹುದಾದ ಪರದೆ " -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "ನಿಲುಕಿಸಿಕೊಳ್ಳಬಹುದಾದ MDI ಮೌಲ್ಯ" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "ಆಬ್ಜೆಕ್ಟ್‍ನ ನಿಲುಕಿಸಿಕೊಳ್ಳಬಹುದಾದ MDI ಮೌಲ್ಯ" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "ನಿಲುಕಿಸಿಕೊಳ್ಳಬಹುದಾದ ಟೇಬಲ್ ಶೀರ್ಷಿಕೆ" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" msgstr "" -"ಟೇಬಲ್ ನ ಶಿರೊನಾಮ ಬದಲಾಗಿದೆ ಎಂದು ತಿಳಿಸಲು ಬಳಸಲಾಗಿದೆ; ಈ ಗುಣಲಕ್ಷಣವನ್ನು ಬಳಸಬಾರದು. ಇದರ " +"ಟೇಬಲ್ ನ ಶಿರೊನಾಮ ಬದಲಾಗಿದೆ ಎಂದು ತಿಳಿಸಲು ಬಳಸಲಾಗಿದೆ; ಈ ಗುಣಲಕ್ಷಣವನ್ನು ಬಳಸಬಾರದು. " +"ಇದರ " "ಬದಲು ನಿಲುಕಿಸಿಕೊಳ್ಳಬಹುದಾದ-ಟೇಬಲ್-ಶಿರೊನಾಮ ಆಬ್ಜೆಕ್ಟ್ ಅನ್ನು ಬಳಸಬೇಕು" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "ನಿಲುಕಿಸಿಕೊಳ್ಳಬಹುದಾದ ಟೇಬಲ್ ಕಾಲಂ ಹೆಡರ್" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "ಟೇಬಲ್ ನ ಕಾಲಂ ಹೆಡರ್ ಬದಲಾಗಿದೆ ಎಂದು ತಿಳಿಸಲು ಬಳಸಲಾಗಿದೆ" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "ನಿಲುಕಿಸಿಕೊಳ್ಳಬಹುದಾದ ಟೇಬಲ್ ಕಾಲಂ ವಿವರಣೆ" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "ಟೇಬಲ್ ನ ಕಾಲಂ ವಿವರಣೆ ಬದಲಾಗಿದೆ ಎಂದು ತಿಳಿಸಲು ಬಳಸಲಾಗಿದೆ" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "ನಿಲುಕಿಸಿಕೊಳ್ಳಬಹುದಾದ ಟೇಬಲ್ ಸಾಲು ಹೆಡರ್" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "ಟೇಬಲ್ ನ ಸಾಲಿನ ಹೆಡರ್ ಬದಲಾಗಿದೆ ಎಂದು ತಿಳಿಸಲು ಬಳಸಲಾಗಿದೆ" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "ನಿಲುಕಿಸಿಕೊಳ್ಳಬಹುದಾದ ಟೇಬಲ್ ಸಾಲು ವಿವರಣೆ" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "ಟೇಬಲ್ ನ ರೊ ವಿವರಣೆ ಬದಲಾಗಿದೆ ಅಂತ ತಿಳಿಸುವುದಕ್ಕೆ ಬಳಸಲಾಗಿದೆ" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "ನಿಲುಕಿಸಿಕೊಳ್ಳಬಹುದಾದ ಟೇಬಲ್ ಸಾರಾಂಶ" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "ಟೇಬಲ್ ನ ಸಾರಂಶ ಬದಲಾಗಿದೆ ಅಂತ ತಿಳಿಸುವುದಕ್ಕೆ ಬಳಸಲಾಗಿದೆ" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "ನಿಲುಕಿಸಿಕೊಳ್ಳಬಹುದಾದ ಟೇಬಲ್ ಶೀರ್ಷಿಕೆ ಆಬ್ಜೆಕ್ಟ್‍" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "ಟೇಬಲ್ ನ ಶಿರೊನಾಮ ಬದಲಾಗಿದೆ ಅಂತ ತಿಳಿಸುವುದಕ್ಕೆ ಬಳಸಲಾಗಿದೆ" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "ನಿಲುಕಿಸಿಕೊಳ್ಳಬಹುದಾದ AtkHypertext ಕೊಂಡಿಗಳ ಸಂಖ್ಯೆ" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "ಪ್ರಸಕ್ತ AtkHypertext ಹೊಂದಿರುವ ಕೊಂಡಿಗಳ ಸಂಖ್ಯೆ" + Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/ko.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/ko.gmo differ diff -Nru atk1.0-1.30.0/po/ko.po atk1.0-2.2.0/po/ko.po --- atk1.0-1.30.0/po/ko.po 2009-12-21 07:05:29.000000000 +0000 +++ atk1.0-2.2.0/po/ko.po 2011-09-19 17:06:54.000000000 +0000 @@ -1,466 +1,518 @@ # atk ko.po # This file is distributed under the same license as the atk package. # Nam SungHyun , 2002 -# Changwoo Ryu , 2004, 2006, 2008, 2009. +# Changwoo Ryu , 2004, 2006, 2008, 2009, 2011. # msgid "" msgstr "" "Project-Id-Version: atk\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-01-22 02:33+0900\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-08-16 17:08+0000\n" +"PO-Revision-Date: 2011-09-04 05:37+0900\n" "Last-Translator: Changwoo Ryu \n" -"Language-Team: GNOME Korea \n" +"Language-Team: GNOME Korea \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "링크 선택" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "해당 AtkHyperlink 오브젝트를 선택했는 지 여부를 지정합니다" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "연결 개수" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "AtkHyperlink 오브젝트에 연동된 연결의 개수" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "끝 인덱스" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "AtkHyperlink 오브젝트의 끝 인덱스" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "시작 인덱스" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "AtkHyperlink 오브젝트의 시작 인덱스" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "잘못됨" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "단축키 레이블" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "경보" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "에니메이션" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "화살표" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "달력" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "캔버스" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "확인란" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "확인 메뉴 항목" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "색 선택창" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "열 헤더" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "콤보 상자" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "날짜 편집기" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "바탕 화면 아이콘" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "바탕 화면 프레임" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "다이얼" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "대화상자" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" -msgstr "디렉토리 창" +msgstr "디렉터리 창" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "그리기 영역" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "파일 선택창" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "채우기" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "글꼴 선택창" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "프레임" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "투명 창" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "HTML 컨테이너" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "아이콘" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "그림" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "내부 프레임" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "레이블" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "계층 창" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "목록" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "목록 항목" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "메뉴" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "메뉴 모음" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "메뉴 항목" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "옵션 창" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "페이지 탭" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "페이지 탭 목록" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "패널" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "암호 텍스트" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "팝업 메뉴" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "진행률 표시줄" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "푸쉬 단추" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "라디오 단추" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "라디오 메뉴 항목" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "루트 창" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "열 헤더" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "스크롤 막대" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "스크롤 창" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "구분선" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "슬라이더" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "나눔 창" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "스핀 단추" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "상태 표시줄" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "테이블" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "테이블 셀" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "테이블 열 헤더" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "테이블 행 헤더" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "떼어내기 메뉴 항목" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "터미널" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "텍스트" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "토글 단추" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "도구 모음" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "도구 설명" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "트리" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "트리 테이블" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "알 수 없음" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "뷰포트" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "창" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "머리글" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "바닥글" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "단락" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "눈금자" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "응용프로그램" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "자동 완성" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "편집 막대" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "포함된 컴포넌트" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "입력창" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "표" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "캡션" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "문서 프레임" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "머리글" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "쪽" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "절" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "추가 객체" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "폼" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "링크" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "입력기 창" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "테이블 행" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "트리 항목" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "문서 스프레드시트" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "문서 프리젠테이션" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "문서 텍스트" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "문서 웹" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "문서 전자 메일" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "주석" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "목록 상자" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "모음" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "그림 맵" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "알림" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "정보 모음" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "접근성 이름" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "접근성 기술로 접근할 때 사용할 오브젝트 인스턴스의 이름" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "접근성 설명" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "접근성 기술로 접근할 때 사용할 오브젝트의 설명" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "접근성 상위" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "상위 오브젝트가 바뀐 걸 알릴 때 쓰입니다" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "접근성 값" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "값이 바뀐 걸 알릴 때 쓰입니다" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "접근 역할" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "이 오브젝트의 접근성 역할" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "접근성 레이어" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "이 오브젝트의 접근성 레이어" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "접근성 MDI 값" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "이 오브젝트의 접근성 MDI 값" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "접근성 테이블 캡션" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -468,58 +520,58 @@ "테이블 캡션이 바뀐 걸 알릴 때 쓰입니다; 이 속성은 사용하지 않아야 합니다. 대" "신에 accessible-table-caption-object를 사용해야 합니다" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "접근성 테이블 열 머리말" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "테이블 열 머리말이 바뀐 걸 알릴 때 쓰입니다" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "접근성 테이블 열 설명" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "테이블 열 설명이 바뀐 걸 알릴 때 쓰입니다" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "접근성 테이블 행 머리말" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "테이블 행 머리말이 바뀐 걸 알릴 때 쓰입니다" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "접근성 테이블 행 설명" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "테이블 행 설명이 바뀐 걸 알릴 때 쓰입니다" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "접근성 테이블 요약" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "테이블 요약이 바뀐 걸 알릴 때 쓰입니다" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "접근성 테이블 캡션 오브젝트" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "테이블 캡션이 바뀐 걸 알릴 때 쓰입니다" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "접근성 하이퍼텍스트 링크 개수" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "현재 AtkHyperlink에 들어 있는 링크의 개수" diff -Nru atk1.0-1.30.0/po/LINGUAS atk1.0-2.2.0/po/LINGUAS --- atk1.0-1.30.0/po/LINGUAS 2010-01-19 07:55:24.000000000 +0000 +++ atk1.0-2.2.0/po/LINGUAS 2011-09-19 17:06:54.000000000 +0000 @@ -35,11 +35,13 @@ hi hr hu +hy id is it ja ka +kk kn ko ku @@ -89,3 +91,4 @@ zh_CN zh_HK zh_TW +zu Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/lt.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/lt.gmo differ diff -Nru atk1.0-1.30.0/po/lt.po atk1.0-2.2.0/po/lt.po --- atk1.0-1.30.0/po/lt.po 2009-12-21 07:05:30.000000000 +0000 +++ atk1.0-2.2.0/po/lt.po 2011-09-19 17:06:54.000000000 +0000 @@ -7,521 +7,580 @@ msgid "" msgstr "" "Project-Id-Version: atk HEAD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-03-01 17:04+0200\n" -"Last-Translator: Vytautas Rėkus \n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-07-07 17:40+0000\n" +"PO-Revision-Date: 2011-07-12 23:00+0300\n" +"Last-Translator: Aurimas Černius \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Pasirinkta nuoroda" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Nurodo ar AtkHyperlink objektas pasirinktas" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Prieraišų kiekis" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "Su AtkHyperlink objektu susietų prieraišų kiekis" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Rodyklės pabaiga" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "AtkHyperlink objekto rodyklės pabaiga" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Rodyklės pradžia" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "AtkHyperlink objekto rodyklės pradžia" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "klaidingas" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "greita žymė" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "perspėjimas" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animacija" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "rodyklė" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "kalendorius" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "lapas" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "žymimasis langelis" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "žymimojo meniu punktas" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "spalvų parinkimas" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "stulpelio antraštė" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "laukas su sąrašu" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "datos redaktorius" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "darbastalio piktograma" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "darbastalio rėmelis" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "rinkiklis" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "dialogas" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "aplanko polangis" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "piešimo laukas" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "failų parinkiklis" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "užpildiklis" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "šriftų parinkimas" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "rėmelis" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "skaidrus polangis" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "html konteineris" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "piktograma" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "paveikslėlis" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "vidinis rėmelis" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "žymė" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "sluoksniuotas polangis" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "sąrašas" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "sąrašo punktas" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "meniu" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "meniu juosta" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "meniu punktas" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "nustatymų skydelis" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "lango kortelė" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "lango kortelių sąrašas" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "skydelis" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "slaptažodžio tekstas" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "išsiskleidžiantis meniu" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "eigos juosta" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "paspaudžiamasis mygtukas" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "žymimoji akutė" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "žymimojo meniu punktas" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "pagrindinis skydelis" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "eilutės antraštė" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "slinkties juosta" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "slinkties polangis" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "skyriklis" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "šliaužiklis" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "perskyrimo skydelis" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "pasukimo mygtukas" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "būsenos juosta" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "lentelė" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "lentelės langelis" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "lentelės stulpelio antraštė" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "lentelės eilutės antraštė" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "atkabinamo meniu punktas" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminalas" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "tekstas" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "perjungimo mygtukas" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "įrankių juosta" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "paaiškinimas" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "medis" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "medžio lentelė" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "nežinomas" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "peržiūros-kampas" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "langas" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "antraštė" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "poraštė" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "pastraipa" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "liniuotė" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "programa" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "automatinis užbaigimas" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "redagavimo juosta" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "įterpiamas komponentas" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "įrašas" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "diagrama" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "pavadinimas" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "dokumento rėmelis" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "antraštė" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "puslapis" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "skyrius" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "nereikalingas objektas" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "forma" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "nuoroda" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "įvesties metodo langas" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +#| msgid "table row header" +msgid "table row" +msgstr "lentelės eilutė" + +#: ../atk/atkobject.c:164 +#| msgid "tree table" +msgid "tree item" +msgstr "medžio elementas" + +#: ../atk/atkobject.c:165 +#| msgid "document frame" +msgid "document spreadsheet" +msgstr "skaičiuoklės dokumentas" + +#: ../atk/atkobject.c:166 +#| msgid "document frame" +msgid "document presentation" +msgstr "pateikties dokumentas" + +#: ../atk/atkobject.c:167 +#| msgid "document frame" +msgid "document text" +msgstr "teksto dokumentas" + +#: ../atk/atkobject.c:168 +#| msgid "document frame" +msgid "document web" +msgstr "žiniatinklio dokumentas" + +#: ../atk/atkobject.c:169 +#| msgid "document frame" +msgid "document email" +msgstr "el. pašto dokumentas" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "komentaras" + +#: ../atk/atkobject.c:171 +#| msgid "list" +msgid "list box" +msgstr "sąrašo laukas" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "grūpavimas" + +#: ../atk/atkobject.c:173 +#| msgid "image" +msgid "image map" +msgstr "paveikslėlio pateiktis" + +#: ../atk/atkobject.c:174 +#| msgid "animation" +msgid "notification" +msgstr "pranešimas" + +#: ../atk/atkobject.c:175 +#| msgid "menu bar" +msgid "info bar" +msgstr "informacinė juosta" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Prieinamas vardas" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" -msgstr "" -"Objekto kopijos vardas suformatuotas pagalbinių technologijų apdorojimui" +msgstr "Objekto kopijos vardas suformatuotas pagalbinių technologijų apdorojimui" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Prieinamas aprašymas" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "Objekto aprašymas suformuotas pagalbinių technologijų apdorojimui" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Prieinamas pirminis objektas" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Naudojamas informuoti apie motininio objekto pasikeitimus" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Prieinama reikšmė" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Naudojamas informuoti apie reikšmės pasikeitimus" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Prieinama paskirtis" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "Prieinama šio objekto paskirtis" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Prieinamas sluoksnis" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "Prieinamas šio objekto sluoksnis" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Prieinama MDI reikšmė" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "Prieinama objekto MDI reikšmė" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Prieinama lentelės antraštė" -#: atk/atkobject.c:546 -msgid "" -"Is used to notify that the table caption has changed; this property should " -"not be used. accessible-table-caption-object should be used instead" -msgstr "" -"Naudojamas informuoti apie lentelės poantraštės pasikeitimus. Ši savybė " -"neturėtų būti naudojama. Naudokite accessible-table-caption-object" +#: ../atk/atkobject.c:572 +msgid "Is used to notify that the table caption has changed; this property should not be used. accessible-table-caption-object should be used instead" +msgstr "Naudojamas informuoti apie lentelės poantraštės pasikeitimus. Ši savybė neturėtų būti naudojama. Naudokite accessible-table-caption-object" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Prieinama lentelės stulpelio antraštė" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "Naudojamas informuoti apie lentelės stulpelio antraštės pasikeitimus" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Prieinamas lentelės intarpo aprašymas" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "Naudojamas informuoti apie lentelės stulpelio aprašymo pasikeitimus" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Prieinama lentelės eilutės antraštė" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "Naudojamas informuoti apie lentelės eilutės antraštės pasikeitimus" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Prieinamas lentelės eilutės aprašymas" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "Naudojamas informuoti apie lentelės eilutės aprašymo pasikeitimus" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Prieinama lentelės santrauka" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Naudojamas informuoti apie lentelės santraukos pasikeitimus" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Prieinamas lentelės antraštės objektas" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Naudojamas informuoti apie lentelės poantraštės pasikeitimus" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Prieinamų hiperteksto nuorodų skaičius" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "Nuorodų kiekis esamame AtkHypertext objekte" + Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/lv.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/lv.gmo differ diff -Nru atk1.0-1.30.0/po/lv.po atk1.0-2.2.0/po/lv.po --- atk1.0-1.30.0/po/lv.po 2009-12-21 07:05:30.000000000 +0000 +++ atk1.0-2.2.0/po/lv.po 2011-09-19 17:06:54.000000000 +0000 @@ -5,467 +5,532 @@ # # Artis Trops , 2002. # Raivis Dejus , 2006, 2009. +# Rūdofls Mazurs , 2011. msgid "" msgstr "" "Project-Id-Version: lv\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-01-23 18:51+0200\n" -"Last-Translator: Raivis Dejus \n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug." +"cgi?product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-07-07 17:40+0000\n" +"PO-Revision-Date: 2011-07-10 11:33+0300\n" +"Last-Translator: Rūdofls Mazurs \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.11.4\n" +"X-Generator: Lokalize 1.1\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Izvēlētā saite" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Norāda kurš no AtkHipersaites objektiem ir izvēlēts" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Enkuru skaits" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "Enkuru skaits, kas tiek saistīts ar AtkHipersaišu objektiem" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Beigu indekss" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "AtkHipersaites objekta beigu indekss" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Sākuma indekss" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "AtkHipersaites objekta sākuma indekss" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "kļūdains" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "paātrinātāja etiķete" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "brīdinājums" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animācija" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "bulta" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "kalendārs" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "audekls" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "izvēles rūtiņa" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "izvēles izvēlnes elements" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "krāsas izvēlētājs" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "kolonnas galvene" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "lauku saraksts" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "datuma redaktors" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "darbvirsmas ikona" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "darbvirsmas rāmis" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "ciparnīca" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "dialogs" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "direktoriju uzskaitījums" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "zīmēšanas lauks" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "failu izvēlētājs" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "aizpldītājs" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "fontu izvēlētājs" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "rāmis" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "stikla rūts" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "html konteiners" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "ikona" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "attēls" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "iekšējais rāmis" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "etiķete" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "slāņotā rūts" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "saraksts" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "saraksta elements" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "izvēlne" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "izvēlnes josla" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "izvēlnes elements" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "opcijas rūts" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "lapas sadaļa" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "lapas sadaļu saraksts" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "panelis" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "paroles teksts" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "uznirstošā izvēlne" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "progresa josla" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "spiedpoga" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "radio poga" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "radio izvēlnes priekšmets" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "saknes rūts" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "rindas galvene" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "ritjosla" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "rit rūts" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "atdalītājs" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "slīnis" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "šķeltņ rūts" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "vērpj poga" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "statusjosla" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "tabula" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "tabulas šūna" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "tabulas kolonas galvene" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "tabul rindas galvene" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "pārceļamās izvēlnes elements" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminālis" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "teksts" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "slēgt poga" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "rīku josla" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "padoms" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "koks" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "koka tabula" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "nezināms" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "skatpunkts" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "logs" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "galvene" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "kājene" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "paragrāfs" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "lineāls" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "aplikācija" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "Automātiski pabeigt" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "rediģēt joslu" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "iedarināts komponents" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "ievadīšana" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "diagramma" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "virsraksts" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" -msgstr "dakumentu kadrs" +msgstr "dokumenta ietvars" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "virsraksts" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "lapa" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "sektors" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "pārērīgs objekts" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "forma" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "saite" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "ievada metodes logs" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +#| msgid "table row header" +msgid "table row" +msgstr "tabulas rinda" + +#: ../atk/atkobject.c:164 +#| msgid "tree table" +msgid "tree item" +msgstr "koka vienums" + +#: ../atk/atkobject.c:165 +#| msgid "document frame" +msgid "document spreadsheet" +msgstr "dokumenta izklājlapa" + +#: ../atk/atkobject.c:166 +#| msgid "document frame" +msgid "document presentation" +msgstr "dokumenta prezentācija" + +#: ../atk/atkobject.c:167 +#| msgid "document frame" +msgid "document text" +msgstr "dokumenta teksts" + +#: ../atk/atkobject.c:168 +#| msgid "document frame" +msgid "document web" +msgstr "dokumenta tīmeklis" + +#: ../atk/atkobject.c:169 +#| msgid "document frame" +msgid "document email" +msgstr "dokumenta e-pasts" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "komentārs" + +#: ../atk/atkobject.c:171 +#| msgid "list" +msgid "list box" +msgstr "saraksta lauks" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "grupēšana" + +#: ../atk/atkobject.c:173 +#| msgid "image" +msgid "image map" +msgstr "attēla karte" + +#: ../atk/atkobject.c:174 +#| msgid "animation" +msgid "notification" +msgstr "paziņojums" + +#: ../atk/atkobject.c:175 +#| msgid "menu bar" +msgid "info bar" +msgstr "informācijas josla" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Pieejamais vārds" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "Objekta eksemplāra vārds noformēts priekš palīg tehnoloģijas pieejas" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Pieejamais apraksts" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "Apraksts no objekta, noformēts priekš palīg tehnoloģijas pieejas" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Pieejamais vecāks" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Lietots lai paziņot, ka tēvs ir mainīts" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Pieejamā vērtība" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Lietots lai paziņot, ka vērtība ir mainīta" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Pieejamā loma" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "Pieejama loma no šī objekta" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Pieejamais slānis" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "Pieejams slānis no šī objekta" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Pieejamā MDI vērtība" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "Pieejamā MDI vērtība no šī objekta" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Pieejamais tabulas virsraksts" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -473,58 +538,59 @@ "Lietots lai paziņot, ka tabulas virsraksts ir mainīts; šī īpašība nau " "lietojama. piekļuve-tabula-virsraksts-objekts tāpat nau lietojami" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Pieejamā tabulas kolonnu galvene " -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "Lieto lai paziņotu, ka tabulas kolonnu galvene ir mainīta" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Pieejamais tabulas kolonnu apraksts" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "Lieto lai paziņotu, ka tabulas kolonnu apraksts ir mainīts" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Pieejamā tabulas rindas galvene" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "Lieto lai paziņotu, ka tabulas rinda ir mainīta" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Pieejamais tabulas rindas apraksts" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "Lieto lai paziņotu, ka tabulas rindas apraksts ir mainīts" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Pieejamais tabulas kopsavilkums" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Lieto lai paziņotu, ka tabulas kopsavilkums ir mainīts" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Pieejamais tabulas virsraksta objekts " -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Lieto lai paziņotu, ka tabulas virsraksts ir mainīts" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Pieejamo hiperteksta saišu nummurs" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "Saišu skaits kas ir ar AktHipertekstu tajās" + diff -Nru atk1.0-1.30.0/po/Makefile.in.in atk1.0-2.2.0/po/Makefile.in.in --- atk1.0-1.30.0/po/Makefile.in.in 2010-03-29 22:53:44.000000000 +0000 +++ atk1.0-2.2.0/po/Makefile.in.in 2011-09-26 22:24:55.000000000 +0000 @@ -79,7 +79,7 @@ $(MSGFMT) -o $@ $< .po.gmo: - file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \ + $(AM_V_GEN) file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \ && rm -f $$file && $(GMSGFMT) $(MSGFMT_OPTS) -o $$file $< .po.cat: @@ -93,11 +93,14 @@ all-no: $(srcdir)/$(GETTEXT_PACKAGE).pot: $(POTFILES) - $(XGETTEXT) --default-domain=$(GETTEXT_PACKAGE) --directory=$(top_srcdir) \ + $(XGETTEXT) --default-domain=$(GETTEXT_PACKAGE) \ + --msgid-bugs-address='http://bugzilla.gnome.org/enter_bug.cgi?product=glib&keywords=I18N+L10N&component=general' \ --add-comments --keyword=_ --keyword=N_ \ --keyword=C_:1c,2 \ --keyword=NC_:1c,2 \ + --keyword=g_dcgettext:2 \ --keyword=g_dngettext:2,3 \ + --keyword=g_dpgettext2:2c,3 \ --flag=N_:1:pass-c-format \ --flag=C_:2:pass-c-format \ --flag=NC_:2:pass-c-format \ @@ -117,7 +120,7 @@ --flag=g_snprintf:3:c-format \ --flag=g_scanner_error:2:c-format \ --flag=g_scanner_warn:2:c-format \ - --files-from=$(srcdir)/POTFILES.in \ + $(POTFILES) \ && test ! -f $(GETTEXT_PACKAGE).po \ || ( rm -f $(srcdir)/$(GETTEXT_PACKAGE).pot \ && mv $(GETTEXT_PACKAGE).po $(srcdir)/$(GETTEXT_PACKAGE).pot ) @@ -216,7 +219,7 @@ rm -f $(GMOFILES) distdir = ../$(GETTEXT_PACKAGE)-$(VERSION)/$(subdir) -dist distdir: update-po $(DISTFILES) +dist distdir: $(DISTFILES) dists="$(DISTFILES)"; \ for file in $$dists; do \ ln $(srcdir)/$$file $(distdir) 2> /dev/null \ Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/nb.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/nb.gmo differ diff -Nru atk1.0-1.30.0/po/nb.po atk1.0-2.2.0/po/nb.po --- atk1.0-1.30.0/po/nb.po 2009-12-21 07:05:30.000000000 +0000 +++ atk1.0-2.2.0/po/nb.po 2011-09-19 17:06:54.000000000 +0000 @@ -1,465 +1,518 @@ # Norwegian (bomål) translation of ATK. # Copyright (C) 2003 Free Software Foundation, Inc. -# Kjartan Maraas , 2003-2008. +# Kjartan Maraas , 2003-2011. # msgid "" msgstr "" "Project-Id-Version: atk 2.15.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2008-12-03 13:26+0100\n" +"POT-Creation-Date: 2011-07-12 12:36+0200\n" +"PO-Revision-Date: 2011-07-12 12:37+0200\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" +"Language: no\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:104 msgid "Selected Link" msgstr "Valgt lenke" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:105 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Oppgir om et AtkHyperlink-objekt er valgt" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:111 msgid "Number of Anchors" msgstr "Antall anker" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:112 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "Antall anker assosiert med AtkHyperlink-objektet" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:120 msgid "End index" msgstr "Sluttindeks" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:121 msgid "The end index of the AtkHyperlink object" msgstr "Sluttindeks for AtkHyperlink-objektet" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:129 msgid "Start index" msgstr "Startindeks" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:130 msgid "The start index of the AtkHyperlink object" msgstr "Startindeks for AtkHyperlink-objektet" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:76 msgid "invalid" msgstr "ugyldig" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:77 msgid "accelerator label" msgstr "etikett for snarveitast" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:78 msgid "alert" msgstr "varsel" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:79 msgid "animation" msgstr "animasjon" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:80 msgid "arrow" msgstr "pil" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:81 msgid "calendar" msgstr "kalender" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:82 msgid "canvas" msgstr "kanvas" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:83 msgid "check box" msgstr "avkryssingsboks" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:84 msgid "check menu item" msgstr "menyoppføring med avkryssingsboks" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:85 msgid "color chooser" msgstr "fargevelger" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:86 msgid "column header" msgstr "kolonnetopptekst" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:87 msgid "combo box" msgstr "komboboks" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:88 msgid "dateeditor" msgstr "datoredigering" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:89 msgid "desktop icon" msgstr "skrivebordsikon" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:90 msgid "desktop frame" msgstr "skrivebordsramme" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:91 msgid "dial" msgstr "nummeroppføring" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:92 msgid "dialog" msgstr "dialog" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:93 msgid "directory pane" msgstr "katalogområde" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:94 msgid "drawing area" msgstr "tegneområde" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:95 msgid "file chooser" msgstr "filvelger" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:96 msgid "filler" msgstr "fyll" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:98 msgid "fontchooser" msgstr "skriftvelger" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:99 msgid "frame" msgstr "ramme" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:100 msgid "glass pane" msgstr "glass-område" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:101 msgid "html container" msgstr "html-område" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:102 msgid "icon" msgstr "ikon" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:103 msgid "image" msgstr "bilde" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:104 msgid "internal frame" msgstr "intern ramme" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:105 msgid "label" msgstr "etikett" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:106 msgid "layered pane" msgstr "lagdelt område" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:107 msgid "list" msgstr "liste" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:108 msgid "list item" msgstr "listeoppføring" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:109 msgid "menu" msgstr "meny" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:110 msgid "menu bar" msgstr "menylinje" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:111 msgid "menu item" msgstr "menyoppføring" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:112 msgid "option pane" msgstr "alternativ-område" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:113 msgid "page tab" msgstr "sidefane" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:114 msgid "page tab list" msgstr "sidefaneliste" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:115 msgid "panel" msgstr "panel" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:116 msgid "password text" msgstr "passordtekst" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:117 msgid "popup menu" msgstr "oppsprettmeny" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:118 msgid "progress bar" msgstr "fremgangsmåler" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:119 msgid "push button" msgstr "trykknapp" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:120 msgid "radio button" msgstr "radioknapp" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:121 msgid "radio menu item" msgstr "radiomenyoppføring" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:122 msgid "root pane" msgstr "rotområde" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:123 msgid "row header" msgstr "radtoppekst" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:124 msgid "scroll bar" msgstr "rullefelt" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:125 msgid "scroll pane" msgstr "rulleområde" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:126 msgid "separator" msgstr "skillelinje" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:127 msgid "slider" msgstr "ruller" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:128 msgid "split pane" msgstr "delt område" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:129 msgid "spin button" msgstr "spin button" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:130 msgid "statusbar" msgstr "statuslinje" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:131 msgid "table" msgstr "tabell" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:132 msgid "table cell" msgstr "tabellcelle" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:133 msgid "table column header" msgstr "topptekst for kolonne i tabell" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:134 msgid "table row header" msgstr "topptekst for rad i tabell" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:135 msgid "tear off menu item" msgstr "avtagbar menyoppføring" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:136 msgid "terminal" msgstr "terminal" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:137 msgid "text" msgstr "tekst" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:138 msgid "toggle button" msgstr "av/på-knapp" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:139 msgid "tool bar" msgstr "verktøylinje" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:140 msgid "tool tip" msgstr "verktøytips" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:141 msgid "tree" msgstr "tre" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:142 msgid "tree table" msgstr "tretabell" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:143 msgid "unknown" msgstr "ukjent" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:144 msgid "viewport" msgstr "visningsport" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:145 msgid "window" msgstr "vindu" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:146 msgid "header" msgstr "topptekst" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:147 msgid "footer" msgstr "bunntekst" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:148 msgid "paragraph" msgstr "avsnitt" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:149 msgid "ruler" msgstr "linjal" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:150 msgid "application" msgstr "applikasjon" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:151 msgid "autocomplete" msgstr "autofullfør" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:152 msgid "edit bar" msgstr "rediger linje" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:153 msgid "embedded component" msgstr "innebygget komponent" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:154 msgid "entry" msgstr "oppføring" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:155 msgid "chart" msgstr "graf" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:156 msgid "caption" msgstr "bildetekst" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:157 msgid "document frame" msgstr "dokumentramme" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:158 msgid "heading" msgstr "topptekst" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:159 msgid "page" msgstr "side" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:160 msgid "section" msgstr "del" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:161 msgid "redundant object" msgstr "redundant objekt" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:162 msgid "form" msgstr "skjema" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:163 msgid "link" msgstr "lenke" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:164 msgid "input method window" msgstr "vindu for inndatametode" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:165 +msgid "table row" +msgstr "rad i tabell" + +#: ../atk/atkobject.c:166 +msgid "tree item" +msgstr "treoppføring" + +#: ../atk/atkobject.c:167 +msgid "document spreadsheet" +msgstr "regnearkdokument" + +#: ../atk/atkobject.c:168 +msgid "document presentation" +msgstr "presentasjonsdokument" + +#: ../atk/atkobject.c:169 +msgid "document text" +msgstr "tekstdokument" + +#: ../atk/atkobject.c:170 +msgid "document web" +msgstr "nettdokument" + +#: ../atk/atkobject.c:171 +msgid "document email" +msgstr "e-postdokument" + +#: ../atk/atkobject.c:172 +msgid "comment" +msgstr "kommentar" + +#: ../atk/atkobject.c:173 +msgid "list box" +msgstr "listeboks" + +#: ../atk/atkobject.c:174 +msgid "grouping" +msgstr "gruppering" + +#: ../atk/atkobject.c:175 +msgid "image map" +msgstr "bildekart" + +#: ../atk/atkobject.c:176 +msgid "notification" +msgstr "varsling" + +#: ../atk/atkobject.c:177 +msgid "info bar" +msgstr "informasjonslinje" + +#: ../atk/atkobject.c:516 msgid "Accessible Name" msgstr "Tilgjengelig navn" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:517 msgid "Object instance's name formatted for assistive technology access" msgstr "Objektinstansens navn formattert for aksess via hjelpefunksjoner" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:523 msgid "Accessible Description" msgstr "Tilgjengelig beskrivelse" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:524 msgid "Description of an object, formatted for assistive technology access" msgstr "Beskrivelse av et objekt formattert for aksess via hjelpefunksjoner" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:530 msgid "Accessible Parent" msgstr "Tilgjengelig opphav" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:531 msgid "Is used to notify that the parent has changed" msgstr "Brukes til å varsle at opphavet er endret" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:537 msgid "Accessible Value" msgstr "Tilgjengelig verdi" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:538 msgid "Is used to notify that the value has changed" msgstr "Brukes til å varsle at verdien er endret" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:546 msgid "Accessible Role" msgstr "Tilgjengelig rolle" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:547 msgid "The accessible role of this object" msgstr "Tilgjengelig rolle for dette objektet" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:555 msgid "Accessible Layer" msgstr "Tilgjengelig lag" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:556 msgid "The accessible layer of this object" msgstr "Tilgjengelig lag for dette objektet" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:564 msgid "Accessible MDI Value" msgstr "Tilgjengelig MDI-verdi" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:565 msgid "The accessible MDI value of this object" msgstr "Tilgjengelig MDI-verdi for dette objektet" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:573 msgid "Accessible Table Caption" msgstr "Tilgjengelig tabelltekst" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:574 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -467,58 +520,58 @@ "Brukes til å varsle at denne tabellteksten er endret; denne egenskapen bør " "ikke brukes. accessible-table-caption-object bør brukes i stedet" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:580 msgid "Accessible Table Column Header" msgstr "Topptekst for kolonne i tilgjengelig tabell" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:581 msgid "Is used to notify that the table column header has changed" msgstr "Brukes til å varsle at kolonnetopptekst for tabellen er endret" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:587 msgid "Accessible Table Column Description" msgstr "Tilgjengelig beskrivelse av kolonne i tabell" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:588 msgid "Is used to notify that the table column description has changed" msgstr "Brukes til å varsle at kolonnebeskrivelse for tabell er endret" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:594 msgid "Accessible Table Row Header" msgstr "Tilgjengelig topptekst for rad i tabell" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:595 msgid "Is used to notify that the table row header has changed" msgstr "Brukes til å varsle at radtopptekst for tabellen er endret" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:601 msgid "Accessible Table Row Description" msgstr "Tilgjengelig beskrivelse av rad i tabell" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:602 msgid "Is used to notify that the table row description has changed" msgstr "Brukes til å varsle at radbeskrivelse i tabell er endret" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:608 msgid "Accessible Table Summary" msgstr "Tilgjengelig tabellsammendrag" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:609 msgid "Is used to notify that the table summary has changed" msgstr "Brukes til å varsle at tabellsammendrag er endret" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:615 msgid "Accessible Table Caption Object" msgstr "Tilgjengelig objekt for tabelltekst" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:616 msgid "Is used to notify that the table caption has changed" msgstr "Brukes til å varsle at tabellteksten er endret" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:622 msgid "Number of Accessible Hypertext Links" msgstr "Antall tilgjengelige hypertekstlenker" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:623 msgid "The number of links which the current AtkHypertext has" msgstr "Antall lenker i aktiv AtkHypertext" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/or.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/or.gmo differ diff -Nru atk1.0-1.30.0/po/or.po atk1.0-2.2.0/po/or.po --- atk1.0-1.30.0/po/or.po 2009-12-21 07:05:31.000000000 +0000 +++ atk1.0-2.2.0/po/or.po 2011-09-26 11:54:31.000000000 +0000 @@ -6,527 +6,594 @@ # # Gora Mohanty , 2005, 2006. # Subhransu Behera , 2006. -# Manoj Kumar Giri , 2009. +# Manoj Kumar Giri , 2009, 2011. msgid "" msgstr "" "Project-Id-Version: or\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-01-28 15:19+0530\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug." +"cgi?product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-09-11 11:03+0000\n" +"PO-Revision-Date: 2011-09-22 10:21+0530\n" "Last-Translator: Manoj Kumar Giri \n" "Language-Team: Oriya \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.11.4\n" +"X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" "\n" +"Language: or\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "ବଚ୍ଛିତ ସଂଯୋଗ" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "ନିର୍ଦ୍ଦିଷ୍ଟ କରେ ଏ.ଟି.କେ.ହାଇପରସଂଯୋଗ ବସ୍ତୁ ବଛାଯାଇଛି କି ନାହିଁ" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "ସ୍ଥିରକର ସଂଖ୍ଯା" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "ଏ.ଟି.କେ.ହାଇପରସଂଯୋଗ ବସ୍ତୁ ସହିତ ସଂଯୁକ୍ତ ସ୍ଥିରକର ସଂଖ୍ଯା" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "ଶେଷ ଅନୁକ୍ରମଣିକା" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "ଏ.ଟି.କେ.ହାଇପରସଂଯୋଗ ବସ୍ତୁର ଶେଷ ଅନୁକ୍ରମଣିକା" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "ପ୍ରାରମ୍ଭିକ ଅନୁକ୍ରମଣିକା" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "ଏ.ଟି.କେ.ହାଇପରସଂଯୋଗ ବସ୍ତୁର ପ୍ରାରମ୍ଭିକ ଅନୁକ୍ରମଣିକା" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "ଅବୈଧ" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "ତ୍ବରକ ଚିହ୍ନକ" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "ଚେତାବନୀ" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "ଜୀବନାୟନ" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "ତୀର" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "କାଲେଣ୍ଡର" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "ଅଙ୍କନ କ୍ଷେତ୍ର" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "ତନଖି ବାକ୍ସ" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "ତନଖି ମେନୁ ବସ୍ତୁ" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "ରଙ୍ଗ ଚୟକ" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "ସ୍ତମ୍ଭ ଶୀର୍ଷକ" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "ସମ୍ମିଳିତ ବାକ୍ସ" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "ତାରୀଖ ସମ୍ପାଦକ" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "ଡେସ୍କଟପ ଚିତ୍ରସଙ୍କେତ" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "ଡେସ୍କଟପ ବନ୍ଧେଇ" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "ଡାଏଲ" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "ସଂଳାପ" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "ଡିରେକ୍ଟୋରି ଝରକା" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "ଅଙ୍କନ କ୍ଷେତ୍ର" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "ଫାଇଲ ଚୟକ" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "ଭରଣ ବସ୍ତୁ" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "ଅକ୍ଷରରୂପ ଚୟକ" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "ବନ୍ଧେଇ" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "କାଚ ବନ୍ଧେଇ" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "ଏଚ.ଟି.ଏମ.ଏଲ. ଧାରକ" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "ଚିତ୍ରସଙ୍କେତ" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "ଚିତ୍ର" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "ଆଭ୍ଯନ୍ତରୀଣ ବନ୍ଧେଇ" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "ଚିହ୍ନକ" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "ବହୁସ୍ତର ଝରକା" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "ତାଲିକା" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "ତାଲିକା ବସ୍ତୁ" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "ମେନୁ" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "ମେନୁ ପଟି" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "ମେନୁ ବସ୍ତୁ" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "ପସନ୍ଦ ଝରକା" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "ପୃଷ୍ଠା ଟାବ" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "ପୃଷ୍ଠା ଟାବର ତାଲିକା" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "ଫଳକ" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "ପ୍ରବେଶ ସଙ୍କେତ ପାଠ୍ଯ" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "ପପ୍ଅପ ମେନୁ" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "ପ୍ରଗତି ସୂଚକ" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "ଚିପା ଚାବି" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "ରେଡିଓ ଚାବି" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "ରେଡିଓ ତାଲିକା ବସ୍ତୁ" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "ମୂଳ ଝରକା" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "ଧାଡ଼ି ଶୀର୍ଷକ" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "ଦୃଶ୍ଯବଦଳା ପଟି" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "ଦୃଶ୍ଯବଦଳା ଝରକା" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "ବିଭାଜକ" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "ସର୍ପକ" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "ବିଭକ୍ତ ଝରକା" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "ଘୂର୍ଣନ ଚାବି" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "ଅବସ୍ଥିତି ପଟି" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "ସାରଣୀ" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "ସାରଣୀ କୋଷ" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "ସାରଣୀ ସ୍ତମ୍ଭ ଶୀର୍ଷକ" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "ସାରଣୀ ଧାଡ଼ି ଶୀର୍ଷକ" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "ବିଚ୍ଛିନ୍ନ ତାଲିକା ବସ୍ତୁ" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "ଟର୍ମିନାଲ" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "ପାଠ୍ଯ" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "ଅଦଳବଦଳ ଚାବି" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "ସାଧନ ପଟି" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "ଉପକରଣ ସୂଚନା" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "ବୃକ୍ଷ" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "ବୃକ୍ଷ ସାରଣୀ" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "ଅଜଣା" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "ଦୃଶ୍ଯ ସଂଯୋଗୀ" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "ୱିଣ୍ଡୋ" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "ଶୀର୍ଷକ" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "ପାଦିକା" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "ଅନୁଚ୍ଛେଦ" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "ଶାସକ" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "ପ୍ରୟୋଗ" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "ସ୍ବଂୟ ସମାପ୍ତି" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "ସମ୍ପାଦନ ପଟି" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "ସନ୍ନିବେଶିତ ଯନ୍ତ୍ରାଂଶ" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "ଭରଣ" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "ମାନଚିତ୍ର" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "ଶୀର୍ଷକ" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "ଦଲିଲ ବନ୍ଧେଇ" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "ଶୀର୍ଷକ" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "ପୃଷ୍ଠା" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "ଅଂଶ" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "ଅନାବଶ୍ଯକ ବସ୍ତୁ" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "ଫର୍ମ" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "ସଂଯୋଗ" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "ନିବେଶ ପଦ୍ଧତି ୱିଣ୍ଡୋ" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +#| msgid "table row header" +msgid "table row" +msgstr "ସାରଣୀ ଧାଡ଼ି" + +#: ../atk/atkobject.c:164 +#| msgid "tree table" +msgid "tree item" +msgstr "ବୃକ୍ଷ ବସ୍ତୁ" + +#: ../atk/atkobject.c:165 +#| msgid "document frame" +msgid "document spreadsheet" +msgstr "ଦଲିଲ ସ୍ପ୍ରେଡଶୀଟ" + +#: ../atk/atkobject.c:166 +#| msgid "document frame" +msgid "document presentation" +msgstr "ଦଲିଲ ଉପସ୍ଥାପନା" + +#: ../atk/atkobject.c:167 +#| msgid "document frame" +msgid "document text" +msgstr "ଦଲିଲ ପାଠ୍ୟ" + +#: ../atk/atkobject.c:168 +#| msgid "document frame" +msgid "document web" +msgstr "ଦଲିଲ ୱେବ" + +#: ../atk/atkobject.c:169 +#| msgid "document frame" +msgid "document email" +msgstr "ଦଲିଲ ଇମେଲ" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "ଟିପ୍ପଣୀ" + +#: ../atk/atkobject.c:171 +#| msgid "list" +msgid "list box" +msgstr "ତାଲିକା ବାକ୍ସ" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "ସମୂହୀକରଣ" + +#: ../atk/atkobject.c:173 +#| msgid "image" +msgid "image map" +msgstr "ଚିତ୍ର ମ୍ଯାପ" + +#: ../atk/atkobject.c:174 +#| msgid "animation" +msgid "notification" +msgstr "ବିଜ୍ଞପ୍ତି" + +#: ../atk/atkobject.c:175 +#| msgid "menu bar" +msgid "info bar" +msgstr "ସୂଚନା ପଟି" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "ସୁଗମ ନାମ" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "ସହାୟକ ଟେକନିକି ପ୍ରବେଶାନୁମତି ପାଇଁ ସଜ୍ଜିତ ବସ୍ତୁ ଉଦାହରଣର ନାମ" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "ସୁଗମ ବର୍ଣ୍ଣନା" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "ସହାୟକ ଟେକନିକି ପ୍ରବେଶାନୁମତି ପାଇଁ ସଜ୍ଜିତ ବସ୍ତୁର ବର୍ଣ୍ଣନା" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "ସୁଗମ ପୂର୍ବଜ" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "ପୂର୍ବଜ ବଦଳିଯାଇଥିବାର ସୂଚନା ପ୍ରଦାନ କରେ" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "ସୁଗମ ମୂଲ୍ଯ" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "ମୂଲ୍ଯ ବଦଳିଯାଇଥିବାର ସୂଚନା ପ୍ରଦାନ କରେ" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "ସୁଗମ ଭୂମିକା" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "ଏହି ବସ୍ତୁର ସୁଗମ ଭୂମିକା" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "ସୁଗମ ସ୍ତର" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "ଏହି ବସ୍ତୁର ସୁଗମ ସ୍ତର" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "ସୁଗମ ଏମ.ଡି.ଆଇ. ମୂଲ୍ଯ" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "ଏହି ବସ୍ତୁର ସୁଗମ ଏମ.ଡି.ଆଇ. ମୂଲ୍ଯ" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "ସୁଗମ ସାରଣୀ ଶୀର୍ଷକ" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" msgstr "" -"ସାରଣୀ ଶୀର୍ଷକ ବଦଳିଯାଇଥିବାର ସୂଚନା ପ୍ରଦାନ କରେ; ଏହି ଗୁଣଧର୍ମ ବ୍ଯବହାର କରିବା ଉଚିତ ନୁହେଁ. ଏହା " +"ସାରଣୀ ଶୀର୍ଷକ ବଦଳିଯାଇଥିବାର ସୂଚନା ପ୍ରଦାନ କରେ; ଏହି ଗୁଣଧର୍ମ ବ୍ଯବହାର କରିବା ଉଚିତ " +"ନୁହେଁ. ଏହା " "ବଦଳରେ ସୁଗମ ସାରଣୀ-ଶୀର୍ଷକ-ବସ୍ତୁ ବ୍ଯବହାର କରନ୍ତୁ" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "ସୁଗମ ସାରଣୀ ସ୍ତମ୍ଭ ଶୀର୍ଷକ" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "ସାରଣୀ ସ୍ତମ୍ଭ ଶୀର୍ଷକ ବଦଳିଯାଇଥିବାର ସୂଚନା ପ୍ରଦାନ କରେ" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "ସୁଗମ ସାରଣୀ ସ୍ତମ୍ଭ ବର୍ଣ୍ଣନା" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "ସାରଣୀ ସ୍ତମ୍ଭ ବର୍ଣ୍ଣନା ବଦଳିଯାଇଥିବାର ସୂଚନା ପ୍ରଦାନ କରେ" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "ସୁଗମ ସାରଣୀ ଧାଡ଼ି ଶୀର୍ଷକ" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "ସାରଣୀ ଧାଡ଼ି ଶୀର୍ଷକ ବଦଳିଯାଇଥିବାର ସୂଚନା ପ୍ରଦାନ କରେ" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "ସୁଗମ ସାରଣୀ ଧାଡ଼ି ବର୍ଣ୍ଣନା" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "ସାରଣୀ ଧାଡ଼ି ବର୍ଣ୍ଣନା ବଦଳିଯାଇଥିବାର ସୂଚନା ପ୍ରଦାନ କରେ" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "ସୁଗମ ସାରଣୀ ସାରାଂଶ" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "ସାରଣୀ ସାରାଂଶ ବଦଳିଯାଇଥିବାର ସୂଚନା ପ୍ରଦାନ କରେ" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "ସୁଗମ ସାରଣୀ ଶୀର୍ଷକ ବସ୍ତୁ" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "ସାରଣୀ ଶୀର୍ଷକ ବସ୍ତୁ ବଦଳିଯାଇଥିବାର ସୂଚନା ପ୍ରଦାନ କରେ" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "ସୁଗମ ହାଇପରପାଠ୍ଯର ସଂଯୋଗର ସଂଖ୍ଯା" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "ସାମ୍ପ୍ରତିକ ଏଟିକେହାଇପରପାଠ୍ଯର ସଂଯୋଗର ସଂଖ୍ଯା" + Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/pa.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/pa.gmo differ diff -Nru atk1.0-1.30.0/po/pa.po atk1.0-2.2.0/po/pa.po --- atk1.0-1.30.0/po/pa.po 2009-12-21 07:05:31.000000000 +0000 +++ atk1.0-2.2.0/po/pa.po 2011-09-19 17:06:54.000000000 +0000 @@ -7,526 +7,593 @@ # Amanpreet Singh Alam , 2004. # Amanpreet Singh Alam , 2004. # Amanpreet Singh Alam , 2005,2006. -# A S Alam , 2009. +# A S Alam , 2009, 2011. msgid "" msgstr "" "Project-Id-Version: atk.HEAD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-03-14 10:09+0000\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" +"product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-08-16 17:08+0000\n" +"PO-Revision-Date: 2011-09-11 16:32+0530\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi/Panjabi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 0.3\n" +"X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: pa\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "ਚੁਣਿਆ ਲਿੰਕ" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "ਦੱਸੋ ਕਿ AtkHyperlink ਆਬਜੈਕਟ ਚੁਣਿਆ ਜਾਵੇ" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "ਅੰਕਰ ਦੀ ਗਿਣਤੀ" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "AtkHyperlink ਇਕਾਈ ਨਾਲ ਸੰਬੰਧਤ ਅੰਕਰਾਂ ਦੀ ਗਿਣਤੀ" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "ਅੰਤ ਇੰਡੈਕਸ" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "AtkHyperlink ਇਕਾਈ ਦੇ ਇੰਡੈਕਸ ਦਾ ਅੰਤ" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "ਸ਼ੁਰੂ ਇੰਡੈਕਸ" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "AtkHyperlink ਇਕਾਈ ਦਾ ਇੰਡੈਕਸ ਸ਼ੁਰੂ" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "ਅਢੁੱਕਵਾਂ" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "ਐਕਸਰਲੇਸਟਰ ਲੇਬਲ" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "ਚੇਤਾਵਨੀ" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "ਐਨੀਮੇਸ਼ਨ" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "ਤੀਰ" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "ਕੈਲੰਡਰ" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "ਕੈਨਵਸ" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "ਚੈਕ-ਬਕਸਾ" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "ਚੈਕ ਮੇਨੂ ਆਈਟਮ" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "ਰੰਗ ਚੋਣਕਾਰ" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "ਕਾਲਮ ਹੈੱਡਰ" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "ਕੰਬੋ ਬਾਕਸ" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "ਮਿਤੀ-ਸੰਪਾਦਕ" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "ਡੈਸਕਟਾਪ ਆਈਕਾਨ" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "ਡੈਸਕਟਾਪ ਫਰੇਮ" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "ਡਾਇਲ" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "ਡਾਈਲਾਗ" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "ਡਾਇਰੈਕਟਰੀ ਬਾਹੀ" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "ਡਰਾਇੰਗ ਖੇਤਰ" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "ਫਾਇਲ ਚੋਣਕਾਰ" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "ਭਰਨ ਵਾਲਾ" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "ਫੋਂਟ ਚੋਣਕਾਰ" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "ਫਰੇਮ" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "ਗਲਾਸ ਬਾਹੀ" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "html ਬਕਸਾ" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "ਆਈਕਾਨ" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "ਚਿੱਤਰ" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "ਅੰਦਰੂਨੀ ਫਰੇਮ" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "ਲੇਬਲ" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "ਪਰਤਦਾਰ ਬਾਹੀ" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "ਲਿਸਟ" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "ਲਿਸਟ ਆਈਟਮ" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "ਮੇਨੂ" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "ਮੇਨੂ ਬਾਹੀ" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "ਮੇਨੂ ਆਈਟਮ" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "ਚੋਣ ਬਾਹੀ" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "ਪੇਜ਼ ਟੈਬ" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "ਪੇਜ਼ ਟੈਬ ਲਿਸਟ" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "ਪੈਨਲ" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "ਪਾਸਵਰਡ ਟੈਕਸਟ" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "ਪੋਪਅੱਪ ਮੇਨੂ" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "ਤਰੱਕੀ ਪੱਟੀ" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "ਦਬਾਉ ਬਟਨ" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "ਰੇਡੀਉ ਬਟਨ" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "ਰੇਡੀਉ ਮੇਨੂ ਆਈਟਮ" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "ਰੂਟ (root) ਬਾਹੀ" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "ਕਤਾਰ ਹੈੱਡਰ" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "ਸਕ੍ਰੋਲ ਪੱਟੀ" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "ਸਕ੍ਰੋਲ ਬਾਹੀ" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "ਵੱਖਰੇਵਾਂ" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "ਸਲਾਈਡਰ" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "ਵੱਖ ਬਾਹੀ" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "ਘੁੰਮਾਉ ਬਟਨ" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "ਹਾਲਤ-ਪੱਟੀ" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "ਟੇਬਲ" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "ਟੇਬਲ ਸੈੱਲ" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "ਟੇਬਲ ਕਾਲਮ ਹੈੱਡਰ" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "ਟੇਬਲ ਕਤਾਰ ਹੈੱਡਰ" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "ਵੱਖ ਹੋਣ ਵਾਲੀ ਮੇਨੂ ਇਕਾਈ" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "ਟਰਮੀਨਲ" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "ਟੈਕਸਟ" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "ਤਬਦੀਲ ਬਟਨ" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "ਟੂਲ ਬਾਰ" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "ਟੂਲ ਟਿੱਪ" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "ਲੜੀ" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "ਲੜੀ ਟੇਬਲ" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "ਅਣਜਾਣ" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "ਵਿਊਪੋਰਟ" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "ਵਿੰਡੋ" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "ਹੈੱਡਰ" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "ਫੁੱਟਰ" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "ਪੈਰ੍ਹਾ" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "ਰੂਲਰ" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "ਐਪਲੀਕੇਸ਼ਨ" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "ਸਵੈ-ਪੂਰਨ" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "ਸੋਧ ਪੱਟੀ" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "ਇੰਬੈੱਡ ਭਾਗ" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "ਐਂਟਰੀ" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "ਚਾਰਟ" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "ਸੁਰਖੀ" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "ਡੌਕੂਮੈਂਟ ਫਰੇਮ" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "ਹੈੱਡਿੰਗ" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "ਪੇਜ਼" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "ਸੈਕਸ਼ਨ" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "ਦੂਹਰਾ ਆਬਜੈਕਟ" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "ਫਾਰਮ" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "ਲਿੰਕ" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "ਇੰਪੁੱਟ ਢੰਗ ਵਿੰਡੋ" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +#| msgid "table row header" +msgid "table row" +msgstr "ਟੇਬਲ ਕਤਾਰ" + +#: ../atk/atkobject.c:164 +#| msgid "tree table" +msgid "tree item" +msgstr "ਲੜੀ ਆਈਟਮ" + +#: ../atk/atkobject.c:165 +#| msgid "document frame" +msgid "document spreadsheet" +msgstr "ਡੌਕੂਮੈਂਟ ਸਪਰੈਡਸ਼ੀਟ" + +#: ../atk/atkobject.c:166 +#| msgid "document frame" +msgid "document presentation" +msgstr "ਡੌਕੂਮੈਂਟ ਪਰਿਜੈਂਟੇਸ਼ਨ" + +#: ../atk/atkobject.c:167 +#| msgid "document frame" +msgid "document text" +msgstr "ਡੌਕੂਮੈਂਟ ਟੈਕਸਟ" + +#: ../atk/atkobject.c:168 +#| msgid "document frame" +msgid "document web" +msgstr "ਡੌਕੂਮੈਂਟ ਵੈੱਬ" + +#: ../atk/atkobject.c:169 +#| msgid "document frame" +msgid "document email" +msgstr "ਡੌਕੂਮੈਂਟ ਈਮੇਲ" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "ਟਿੱਪਣੀ" + +#: ../atk/atkobject.c:171 +#| msgid "list" +msgid "list box" +msgstr "ਲਿਸਟ ਬਾਕਸ" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "ਗਰੁੱਪਿੰਗ" + +#: ../atk/atkobject.c:173 +#| msgid "image" +msgid "image map" +msgstr "ਚਿੱਤਰ ਮੈਪ" + +#: ../atk/atkobject.c:174 +#| msgid "animation" +msgid "notification" +msgstr "ਨੋਟੀਫਿਕੇਸ਼ਨ" + +#: ../atk/atkobject.c:175 +#| msgid "menu bar" +msgid "info bar" +msgstr "ਜਾਣਕਾਰੀ ਬਾਹੀ" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "ਪਹੁੰਚ ਨਾਂ" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "ਸਹਾਇਕ ਤਕਨੀਕ ਪਹੁੰਚ ਲਈ ਮੌਜੂਦਾ ਆਬਜੈਕਟ ਦਾ ਫਾਰਮੈਟ ਨਾਂ" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "ਪਹੁੰਚਯੋਗ ਵੇਰਵਾ" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "ਸਹਾਇਕ ਤਕਨੀਕ ਲਈ ਆਬਜੈਕਟ ਦਾ ਵੇਰਵਾ ਫਾਰਮੈਟ ਕੀਤਾ" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "ਪਹੁੰਚਯੋਗ ਮੋਢੀ" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "ਜੇ ਮੋਢੀ (parent) ਬਦਲ ਗਿਆ ਹੈ ਤਾਂ ਇਹ ਟਿੱਪਣੀ ਕਰਨ ਲਈ ਵਰਤਿਆ ਜਾਂਦਾ ਹੈ " -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "ਪਹੁੰਚਯੋਗ ਮੁੱਲ" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "ਸੂਚਨਾ ਦੇਣ ਲਈ ਵਰਤਿਆ ਜਾਂਦਾ ਹੈ ਕਿ ਮੁੱਲ ਤਬਦੀਲ ਹੋ ਗਿਆ ਹੈ" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "ਪਹੁੰਚਯੋਗ ਰੋਲ" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "ਇਸ ਇਕਾਈ ਦਾ ਪਹੁੰਚਯੋਗ ਰੋਲ" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "ਪਹੁੰਚਯੋਗ ਲੇਅਰ" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "ਇਸ ਆਬਜੈਕਟ ਦਾ ਪਹੁੰਚਯੋਗ ਲੇਅਰ" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "ਪਹੁੰਚਯੋਗ MDI ਮੁੱਲ" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "ਇਸ ਆਬਜੈਕਟ ਦਾ ਪਹੁੰਚਯੋਗ MDI" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "ਪਹੁੰਚਯੋਗ ਟੇਬਲ ਸੁਰਖੀ" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" msgstr "" -"ਸੂਚਨਾ ਦੇਣ ਲਈ ਵਰਤੀ ਜਾਂਦੀ ਹੈ ਕਿ ਟੇਬਲ ਸੁਰਖੀ ਬਦਲ ਗਈ।ਇਹ ਵਿਸ਼ੇਸਤਾ ਵਰਤੀ ਨਹੀ ਜਾਣੀ ਚਾਹੀਦੀ ਹੈ। " +"ਸੂਚਨਾ ਦੇਣ ਲਈ ਵਰਤੀ ਜਾਂਦੀ ਹੈ ਕਿ ਟੇਬਲ ਸੁਰਖੀ ਬਦਲ ਗਈ।ਇਹ ਵਿਸ਼ੇਸਤਾ ਵਰਤੀ ਨਹੀ ਜਾਣੀ " +"ਚਾਹੀਦੀ ਹੈ। " "ਇਸ ਦੀ ਬਜਾਏ ਪਹੁੰਚ-ਟੇਬਲ-ਸੁਰਖੀ-ਇਕਾਈ ਇਸਤੇਮਾਲ ਕਰੋ।" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "ਪਹੁੰਚਯੋਗ ਟੇਬਲ ਕਾਲਮ ਹੈੱਡਰ" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "ਸੂਚਨਾ ਦੇਣ ਲਈ ਵਰਤਣਾ ਹੈ ਕਿ ਟੇਬਲ ਕਾਲਮ ਹੈੱਡਰ ਤਬਦੀਲ ਹੋ ਗਿਆ ਹੈ" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "ਪਹੁੰਚਯੋਗ ਟੇਬਲ ਕਾਲਮ ਵੇਰਵਾ" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "ਇਹ ਸੂਚਨਾ ਦੇਣ ਲਈ ਵਰਤਿਆ ਜਾਂਦਾ ਹੈ ਕਿ ਟੇਬਲ ਕਾਲਮ ਵੇਰਵਾ ਤਬਦੀਲ ਹੋ ਗਿਆ ਹੈ" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "ਪਹੁੰਚਯੋਗ ਟੇਬਲ ਕਤਾਰ ਹੈੱਡਰ" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "ਇਹ ਸੂਚਨਾ ਦੇਣ ਲਈ ਵਰਤਿਆ ਜਾਂਦਾ ਹੈ ਕਿ ਟੇਬਲ ਕਤਾਰ ਹੈੱਡਰ ਤਬਦੀਲ ਹੋ ਗਿਆ ਹੈ" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "ਪਹੁੰਚਯੋਗ ਟੇਬਲ ਕਤਾਰ ਵੇਰਵਾ" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "ਇਹ ਸੂਚਨਾ ਦੇਣ ਲਈ ਵਰਤਿਆ ਜਾਂਦਾ ਹੈ ਕਿ ਟੇਬਲ ਕਤਾਰ ਵੇਰਵਾ ਤਬਦੀਲ ਹੋ ਗਿਆ ਹੈ" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "ਪਹੁੰਚਯੋਗ ਟੇਬਲ ਸੰਖੇਪ" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "ਇਹ ਸੂਚਨਾ ਦੇਣ ਲਈ ਵਰਤਿਆ ਜਾਂਦਾ ਹੈ ਕਿ ਟੇਬਲ ਸੰਖੇਪ ਤਬਦੀਲ ਹੋ ਗਈ ਹੈ" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "ਪਹੁੰਚਯੋਗ ਟੇਬਲ ਨਾਂ ਇਕਾਈ" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "ਇਹ ਸੂਚਨਾ ਦੇਣ ਲਈ ਵਰਤਿਆ ਜਾਂਦਾ ਹੈ ਕਿ ਟੇਬਲ ਨਾਂ ਤਬਦੀਲ ਹੋ ਗਿਆ ਹੈ" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "ਪਹੁੰਚਯੋਗ ਹਾਈਪ੍ਰਟੈਕਸਟ ਲਿੰਕਾਂ ਦੀ ਗਿਣਤੀ" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "ਮੌਜੂਦਾ AtkHypertext ਵਿੱਚ ਲਿੰਕਾਂ ਦੀ ਗਿਣਤੀ" + Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/pl.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/pl.gmo differ diff -Nru atk1.0-1.30.0/po/pl.po atk1.0-2.2.0/po/pl.po --- atk1.0-1.30.0/po/pl.po 2010-03-08 10:23:42.000000000 +0000 +++ atk1.0-2.2.0/po/pl.po 2011-09-19 17:06:54.000000000 +0000 @@ -8,10 +8,11 @@ msgstr "" "Project-Id-Version: atk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2010-02-24 22:50+0100\n" +"POT-Creation-Date: 2011-09-08 20:38+0200\n" +"PO-Revision-Date: 2011-09-08 20:39+0200\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,456 +21,508 @@ "X-Poedit-Language: Polish\n" "X-Poedit-Country: Poland\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Zaznaczony odnośnik" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Określa, czy obiekt AtkHyperlink jest zaznaczony" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Liczba zakotwiczeń" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "Liczba zakotwiczeń powiązanych z obiektem AtkHyperlink" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Indeks końcowy" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "Indeks końcowy obiektu AtkHyperlink" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Indeks początkowy" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "Indeks początkowy obiektu AtkHyperlink" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "nieprawidłowy" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "etykieta z klawiszem skrótu" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "alarm" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animacja" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "strzałka" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "kalendarz" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "płótno" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "przycisk opcji" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "element menu wyboru" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "okno wyboru kolorów" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "nagłówek kolumny" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "wejście z opcjami" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "edytor dat" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "ikona pulpitu" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "ramka pulpitu" # chyba o to może chodzić # ew. wybieranie numeru. -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "tarcza liczbowa" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "okno dialogowe" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "obszar katalogu" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "obszar rysowania" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "okno wyboru pliku" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "wypełniacz" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "okno wyboru czcionki" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "ramka" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "obszar szklany" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "kontener HTML" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "ikona" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "obraz" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "ramka wewnętrzna" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "etykieta" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "obszar warstwowy" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "lista" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "element listy" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "menu" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "pasek menu" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "element menu" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "obszar opcji" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "zakładka strony" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "lista zakładek stron" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "panel" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "tekst hasła" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "menu podręczne" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "pasek postępu" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "przycisk" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "przycisk radiowy" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "radiowy element menu" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "obszar główny" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "nagłówek wiersza" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "pasek przewijania" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "obszar przewijania" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "separator" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "suwak" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "obszar podziału" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "wejście liczbowe" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "pasek stanu" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "tabela" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "komórka tabeli" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "nagłówek kolumny tabeli" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "nagłówek wiersza tabeli" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "odrywający element menu" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminal" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "napis" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "przycisk przełączania" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "pasek narzędziowy" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "podpowiedź" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "drzewo" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "tabela drzewiasta" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "nieznany" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "obszar wyświetlania" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "okno" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "nagłówek" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "stopka" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "akapit" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "linia" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "program" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "automatyczne uzupełnianie" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "pasek edycji" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "element osadzony" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "wejście" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "wykres" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "podpis" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "ramka dokumentu" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "nagłówek" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "strona" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "sekcja" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "obiekt nadmiarowy" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "formularz" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "odnośnik" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "okno metody wprowadzania" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "wiersz tabeli" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "element drzewa" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "arkusz kalkulacyjny dokumentu" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "prezentacja dokumentu" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "tekst dokumentu" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "witryna dokumentu" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "adres e-mail dokumentu" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "komentarz" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "przycisk listy" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "grupowanie" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "mapa obrazu" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "powiadomienie" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "pasek informacji" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Nazwa obiektu dostępności" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "" "Nazwa instancji obiektu, sformatowana dla dostępu technologii wspierających" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Opis obiektu dostępności" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "Opis obiektu, sformatowany dla dostępu technologii wspierających" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Nadrzędny obiekt dostępności" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Jest używany do powiadamiania o zmianie obiektu nadrzędnego" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Wartość obiektu dostępności" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Jest używany do powiadamiania o zmianie wartości obiektu" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Rola dostępności" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "Rola dostępności tego obiektu" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Warstwa dostępności" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "Warstwa dostępności tego obiektu" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Wartość dostępności MDI" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "Wartość dostępności MDI tego obiektu" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Nagłówek tabeli dostępności" # FIXME - Jakiś idiotyczny tekst tu wyszedł -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -477,58 +530,58 @@ "Jest używane do powiadamiania o zmianie nagłówka tabeli. Zamiast tej " "właściwości należy używać obiektu nagłówka tabeli dostępności" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Nagłówek kolumny tabeli dostępności" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "Jest używane do powiadamiania o zmianie nagłówka kolumny tabeli" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Opis kolumny tabeli dostępności" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "Jest używane do powiadamiania o zmianie opisu kolumny tabeli" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Nagłówek wiersza tabeli dostępności" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "Jest używane do powiadamiania o zmianie nagłówka wiersza tabeli" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Opis wiersza tabeli dostępności" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "Jest używane do powiadamiania o zmianie opisu wiersza tabeli" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Zestawienie tabeli dostępności" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Jest używane do powiadamiania o zmianie zestawienia tabeli" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Obiekt nagłówka tabeli dostępności" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Jest używane do powiadamiania o zmianie nagłówka tabeli" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Liczba hipertekstowych odnośników dostępności" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "Liczba odnośników posiadanych przez bieżący obiekt AtkHypertext" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/pt_BR.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/pt_BR.gmo differ diff -Nru atk1.0-1.30.0/po/pt_BR.po atk1.0-2.2.0/po/pt_BR.po --- atk1.0-1.30.0/po/pt_BR.po 2009-12-21 07:05:31.000000000 +0000 +++ atk1.0-2.2.0/po/pt_BR.po 2011-09-19 17:06:54.000000000 +0000 @@ -4,466 +4,520 @@ # Alexandre Folle de Menezes , 2003. # Claudio André , 2006. # Leonardo Ferreira Fontenelle , 2006, 2007, 2008, 2009. +# Flamarion Jorge , 2011. # msgid "" msgstr "" "Project-Id-Version: atk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-08-30 19:29-0300\n" -"Last-Translator: Leonardo Ferreira Fontenelle \n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2011-09-04 12:54-0400\n" +"PO-Revision-Date: 2011-09-04 09:31-0300\n" +"Last-Translator: Flamarion Jorge \n" +"Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" +"Content-Transfer-Encoding: 8bits\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Link selecionado" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Especifica se o objeto AtkHyperlink deve ser selecionado" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Número de âncoras" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "O número de âncoras associadas com o objeto AtkHyperlink" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Índice final" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "O índice final do objeto AtkHyperlink" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Índice inicial" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "O índice inicial do objeto AtkHyperlink" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "inválido" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "etiqueta aceleradora" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "alerta" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animação" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "seta" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "calendário" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "área de gráficos" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "caixa de seleção" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "item de menu de seleção" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "seletor de cores" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "cabeçalho de coluna" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "caixa de combinação" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "editor de datas" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "ícone da área de trabalho" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "quadro da área de trabalho" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "seletor" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "diálogo" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "painel de diretório" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "área de desenho" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "seletor de arquivos" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "preenchedor" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "seletor de fontes" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "quadro" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "painel transparente" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "recipiente de html" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "ícone" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "imagem" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "quadro interno" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "rótulo" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "painel sobreposto" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "lista" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "ítem de lista" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "menu" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "barra de menu" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "ítem de menu" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "painel de opções" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "aba de página" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "lista de abas de página" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "painel" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "texto da senha" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "menu de contexto" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "barra de progresso" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "botão de apertar" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "botão de opção" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "ítem de menu de opções" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "painel raiz" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "cabeçalho de linha" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "barra de rolagem" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "painel de rolagem" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "separador" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "controle deslizante" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "painel ajustável" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "botão do seletor numérico" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "barra de status" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "tabela" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "célula de tabela" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "cabeçalho de coluna de tabela" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "cabeçalho de linha de tabela" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "ítem de menu destacável" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminal" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "texto" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "botão de alternância" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "barra de ferramentas" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "dica" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "árvore" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "tabela de árvore" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "desconhecido" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "porta de visualização" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "janela" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "cabeçalho" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "rodapé" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "parágrafo" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "régua" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "aplicativo" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "completar automaticamente" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "barra de edição" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "componente embutido" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "entrada" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "diagrama" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "legenda" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "quadro de documento" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "cabeçalho" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "página" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "seção" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "objeto redundante" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "formulário" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "link" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "janela de método de entrada" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "linha da tabela" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "ítem da árvore" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "planilha de documento" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "documento de apresentação" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "documento de texto" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "documento da web" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "documento de e-mail" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "comentário" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "caixa de lista" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "agrupamento" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "mapa de imagens" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "notificação" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "barra de informações" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Nome acessível" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "" "Nome da instância do objeto formatado para acesso da tecnologia assistiva" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Descrição acessível" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "Descrição de um objeto, formatada para acesso da tecnologia assistiva" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Pai acessível" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "É usada para notificar que o pai mudou" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Valor acessível" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "É usado para notificar que um valor mudou" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Regra acessível" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "A regra acessível desse objeto" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Camada acessível" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "A camada acessível desse objeto" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Valor MDI acessível" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "O valor MDI acessível desse objeto" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Legenda acessível da tabela" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -471,58 +525,58 @@ "É usada para notificar que a legenda da tabela mudou; essa propriedade não " "deve ser usada. Em vez disso, accessible-table-caption-object deve ser usado" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Cabeçalho acessível de coluna da tabela" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "É usado para notificar que o cabeçalho de coluna da tabela mudou" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Descrição acessível de coluna da tabela" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "É usado para notificar que uma descrição de coluna da tabela mudou" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Cabeçalho acessível de coluna da tabela" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "É usado para notificar que o cabeçalho de linha da tabela mudou" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Descrição acessível de linha da tabela" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "É usado para notificar que a descrição de linha da tabela mudou" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Sumário acessível da tabela" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "É usado para notificar que o sumário da tabela mudou" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Objeto acessível de legenda da tabela" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "É usado para notificar que a legenda da tabela mudou" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Número de links de hipertexto acessíveis" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "O número de links com o AtkHypertext atual" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/pt.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/pt.gmo differ diff -Nru atk1.0-1.30.0/po/pt.po atk1.0-2.2.0/po/pt.po --- atk1.0-1.30.0/po/pt.po 2009-12-21 07:05:31.000000000 +0000 +++ atk1.0-2.2.0/po/pt.po 2011-09-26 11:54:31.000000000 +0000 @@ -1,469 +1,522 @@ # atk's Portuguese translation. -# Copyright © 2003, 2004, 2006, 2007, 2009 atk +# Copyright © 2003, 2004, 2006, 2007, 2009, 2011 atk # This file is distributed under the same license as the atk package. -# Duarte Loreto , 2003, 2004, 2006, 2007, 2009. +# Duarte Loreto , 2003, 2004, 2006, 2007, 2009, 2011. # Rui Batista , 2009 # msgid "" msgstr "" "Project-Id-Version: 2.26\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-02-13 21:40+0000\n" +"POT-Creation-Date: 2011-09-24 17:35+0100\n" +"PO-Revision-Date: 2011-09-24 17:40+0000\n" "Last-Translator: Rui Batista \n" "Language-Team: Portuguese \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Link Seleccionado" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Especifica se o objecto AtkHyperlink está seleccionado" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Número de Âncoras" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "O número de âncoras associadas com o objecto AtkHyperlink" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Índice final" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "O índice final do objecto AtkHyperlink" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Índice inicial" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "O Índice inicial do objecto AtkHyperlink" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "inválido" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "etiqueta de atalho" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "alerta" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animação" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "seta" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "calendário" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "tela" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "caixa de verificação" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "item de menu de verificação" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "selector de cores" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "cabeçalho de coluna" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "caixa de combinação" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "editor de datas" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "ícone de área de trabalho" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "moldura da área de trabalho" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "botão giratório" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "diálogo" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "painel de directório" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "área de desenho" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "selector de ficheiro" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "ferramenta de preencher" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "selector de fonte" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "moldura" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "painel transparente" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "contentor de html" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "ícone" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "imagem" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "moldura interna" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "etiqueta" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "painel em camadas" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "lista" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "item de lista" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "menu" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "barra de menu" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "item de menu" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "painel de opções" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "separador de página" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "lista de separadores de página" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "painel" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "texto da senha" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "menu de contexto" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "barra de progresso" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "botão de pressão" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "botão de opção" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "item de menu de opção" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "painel de raiz" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "cabeçalho de linha" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "barra de deslocamento" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "painel de deslocamento" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "separador" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "botão deslizante" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "painel dividido" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "botão giratório" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "barra de estado" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "tabela" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "célula de tabela" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "cabeçalho de coluna de tabela" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "cabeçalho de linha de tabela" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "item de menu destacável" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "consola" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "texto" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "botão de alternar" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "barra de ferramentas" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "dica" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "árvore" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "tabela de árvore" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "desconhecido" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "zona de vista" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "janela" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "cabeçalho" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "rodapé" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "parágrafo" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "régua" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "aplicação" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "auto-completar" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "barra de edição" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "componente embutido" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "entrada" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "gráfico" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "legenda" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "moldura de documento" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "cabeçalho" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "página" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "secção" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "objecto redundante" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "formulário" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "link" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "janela de método de introdução" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "linha de tabela" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "item de árvore" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "documento de folha de cálculo" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "documento de apresentação" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "documento de texto" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "documento web" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "documento de email" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "comentário" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "caixa de lista" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "agrupar" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "mapa de imagem" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "notificação" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "barra de info" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Nome Acessível" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "" "Nome de instância de objecto formatado para acesso por tecnologia assistiva" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Descrição Acessível" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "" "Descrição de um objecto, formatada para acesso por tecnologia assistiva" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Pai Acessível" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Utilizado para notificar que o pai foi alterado" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Valor Acessível" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Utilizado para notificar que o valor foi alterado" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Papel Acessível" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "O papel acessível deste objecto" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Camada Acessível" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "A camada acessível deste objecto" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Valor MDI Acessível" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "O valor MDI de acessibilidade deste objecto" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Legenda de Acessibilidade da Tabela" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -472,62 +525,62 @@ "propriedade não deverá ser utilizada. Deverá antes ser utilizado objecto-" "legenda-tabela-acessível" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Cabeçalho Coluna Tabela Acessível" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "" "Utilizado para notificar que o cabeçalho da coluna da tabela foi alterado" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Descrição de Coluna de Tabela Acessível" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "" "Utilizado para notificar que a descrição da coluna da tabela foi alterada" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Cabeçalho de Linha de Tabela Acessível" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "" "Utilizado para notificar que o cabeçalho da linha da tabela foi alterado" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Descrição de Linha de Tabela Acessível" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "" "Utilizado para notificar que a descrição da linha da tabela foi alterada" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Resumo de Tabela Acessível" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Utilizado para notificar que o resumo da tabela foi alterado" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Objecto de Legenda de Tabela Acessível" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Utilizado para notificar que a legenda da tabela foi alterada" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Número de Atalhos de Hipertexto Acessíveis" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "O número de atalhos que o AtkHypertext actual possui" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/ru.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/ru.gmo differ diff -Nru atk1.0-1.30.0/po/ru.po atk1.0-2.2.0/po/ru.po --- atk1.0-1.30.0/po/ru.po 2010-03-29 22:42:48.000000000 +0000 +++ atk1.0-2.2.0/po/ru.po 2011-09-19 17:06:54.000000000 +0000 @@ -5,469 +5,522 @@ # # Dmitry G. Mastrukov , 2002-2003. # Leonid Kanter , 2006. -# Yuri Kozlov , 2010. +# Yuri Kozlov , 2010, 2011. msgid "" msgstr "" "Project-Id-Version: atk trunk\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2010-03-17 19:16+0300\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" +"product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-07-20 16:58+0000\n" +"PO-Revision-Date: 2011-07-23 18:39+0400\n" "Last-Translator: Yuri Kozlov \n" -"Language-Team: Russian \n" +"Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: KBabel 1.11.4\n" +"X-Generator: Lokalize 1.0\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Выбранная ссылка" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Определяет, выделен ли объект AtkHyperlink" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Число якорей" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "Число якорей, связанных с текущим объектом AtkHypertext" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Конец индекса" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "Конец индекса объекта AtkHyperlink" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Начало индекса" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "Начало индекса объекта AtkHyperlink" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "недопустима" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "метка ускорителя" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "тревога" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "анимация" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "стрелка" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "календарь" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "канва" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "кнопка-флажок" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "элемент-флажок меню" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "выбор цвета" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "заголовок столбца" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "выпадающий список с возможностью ввода" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "редактор даты" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "значок рабочего стола" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "рамка рабочего стола" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "набор номера" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "диалог" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "панель каталога" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "область рисования" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "выбор файлов" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "заполнитель" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "выбор шрифта" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "рамка" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "прозрачная панель" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "содержимое с языком html" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "значок" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "изображение" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "внутренняя рамка" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "метка" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "панель с уровнями" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "список" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "элемент списка" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "меню" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "строка меню" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "элемент меню" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "панель опций" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "вкладка страницы" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "список вкладок страницы" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "панель" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "пароль" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "всплывающее меню" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "индикатор выполнения" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "нажимаемая кнопка" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "радио-кнопка" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "радио-элемент меню" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "корневая панель" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "заголовок строки" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "полоса прокрутки" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "панель прокрутки" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "разделитель" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "бегунок" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "двойная панель" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "кнопка вращения" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "строка состояния" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "таблица" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "ячейка таблицы" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "заголовок столбца таблицы" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "заголовок строки таблицы" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" -msgstr "неразрываемый элемент меню" +msgstr "неразрывный элемент меню" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "терминал" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "текст" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "кнопка-переключатель" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "панель инструментов" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "подсказка" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "дерево" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "таблица в виде дерева" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "неизвестна" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "область просмотра" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "окно" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "заголовок" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "подвал" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "абзац" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "линейка" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "приложение" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "автодополнение" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "строка редактирования" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "внедрённый компонент" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "запись" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "диаграмма" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "заголовок" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "рамка документа" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "заголовок" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "страница" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "раздел" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "Избыточный объект" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "форма" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "ссылка" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "окно метода ввода" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "строка таблицы" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "элемент дерева" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "документ электронной таблицы" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "документ презентации" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "текстовый документ" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "веб-документ" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "документ электронного сообщения" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "комментарий" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "списочный блок" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "группировка" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "карта изображения" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "уведомление" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "информационная полоса" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Облегчённое имя" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "" "Имя экземпляра объекта для доступа с использованием облегчающих технологий" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Облегчённое описание" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "Описание объекта для доступа с использованием облегчающих технологий" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Облегчённый предок" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Используется для уведомления, что предок изменился" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Облегчённое значение" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Используется для уведомления, что значение изменилось" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Облегчённая роль" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "Роль этого объекта в облегчающих технологиях" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Облегчённый уровень" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "Уровень этого объекта в облегчающих технологиях" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Облегчённое значение MDI" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "Значение MDI этого объекта в облегчающих технологиях" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Облегчённый заголовок таблицы" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -476,62 +529,62 @@ "свойство не должно использоваться. Вместо него должно использоваться " "свойство accessible-table-caption-object." -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Облегчённый заголовок столбца таблицы" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "" "Используется для уведомления о том, что заголовок столбца таблицы изменился" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Облегчённое описание столбца таблицы" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "" "Используется для уведомления о том, что описание столбца таблицы изменилось" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Облегчённый заголовок строки таблицы" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "" "Используется для уведомления о том, что заголовок строки таблицы изменился" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Облегчённое описание строки таблицы" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "" "Используется для уведомления о том, что описание строки таблицы изменилось" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Облегчённая сводка таблицы" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Используется для уведомления о том, что сводка таблицы изменилась" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Облегчённый объект заголовка таблицы" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Используется для уведомления о том, что заголовок таблицы изменился" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Число облегчённых гипертекстовых ссылок" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "Число ссылок, которые имеет текущий объект AtkHypertext" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/sl.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/sl.gmo differ diff -Nru atk1.0-1.30.0/po/sl.po atk1.0-2.2.0/po/sl.po --- atk1.0-1.30.0/po/sl.po 2009-12-21 07:05:31.000000000 +0000 +++ atk1.0-2.2.0/po/sl.po 2011-09-19 17:06:54.000000000 +0000 @@ -1,569 +1,622 @@ -# Copyright (C) 2005-2007 Free Software Foundation, Inc. -# This file is distributed under the same license as the program package. -# -# Andraz Tori 2002 -# Matej Urbančič 2007 - 2008. -# -msgid "" -msgstr "" -"Project-Id-Version: atk\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-04-23 09:48+0100\n" -"Last-Translator: Matej Urbančič \n" -"Language-Team: Slovenian GNOME Translation Team \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" -"%100==4 ? 3 : 0);\n" -"X-Poedit-Language: Slovenian\n" -"X-Poedit-Country: SLOVENIA\n" -"X-Poedit-SourceCharset: utf-8\n" - -#: atk/atkhyperlink.c:103 -msgid "Selected Link" -msgstr "Izbrana povezava" - -#: atk/atkhyperlink.c:104 -msgid "Specifies whether the AtkHyperlink object is selected" -msgstr "Določa, ali je predmet AtkHyperlink izbran" - -#: atk/atkhyperlink.c:110 -msgid "Number of Anchors" -msgstr "Število sider" - -#: atk/atkhyperlink.c:111 -msgid "The number of anchors associated with the AtkHyperlink object" -msgstr "Število sider, povezanih s predmetom AtkHyperlink" - -#: atk/atkhyperlink.c:119 -msgid "End index" -msgstr "Končni indeks" - -#: atk/atkhyperlink.c:120 -msgid "The end index of the AtkHyperlink object" -msgstr "Končni indeks predmeta AtkHyperlink" - -#: atk/atkhyperlink.c:128 -msgid "Start index" -msgstr "Začetni indeks" - -#: atk/atkhyperlink.c:129 -msgid "The start index of the AtkHyperlink object" -msgstr "Začetni indeks predmeta AtkHyperlink" - -#: atk/atkobject.c:74 -msgid "invalid" -msgstr "neveljavno" - -# G:3 K:0 O:0 -#: atk/atkobject.c:75 -msgid "accelerator label" -msgstr "označba pospeševalnika" - -#: atk/atkobject.c:76 -msgid "alert" -msgstr "alarm" - -#: atk/atkobject.c:77 -msgid "animation" -msgstr "animacija" - -# G:4 K:2 O:0 -#: atk/atkobject.c:78 -msgid "arrow" -msgstr "puščica" - -# G:0 K:1 O:0 -#: atk/atkobject.c:79 -msgid "calendar" -msgstr "koledar" - -# G:6 K:2 O:0 -#: atk/atkobject.c:80 -msgid "canvas" -msgstr "platno" - -# G:0 K:1 O:0 -#: atk/atkobject.c:81 -msgid "check box" -msgstr "potrditveno polje" - -#: atk/atkobject.c:82 -msgid "check menu item" -msgstr "označi predmet menija" - -#: atk/atkobject.c:83 -msgid "color chooser" -msgstr "izbirnik barv" - -# G:0 K:1 O:0 -#: atk/atkobject.c:84 -msgid "column header" -msgstr "glava stolpca" - -#: atk/atkobject.c:85 -msgid "combo box" -msgstr "spustno polje" - -# G:0 K:1 O:0 -#: atk/atkobject.c:86 -msgid "dateeditor" -msgstr "datumski urejevalnik" - -#: atk/atkobject.c:87 -msgid "desktop icon" -msgstr "ikona namizja" - -#: atk/atkobject.c:88 -msgid "desktop frame" -msgstr "okvir namizja" - -#: atk/atkobject.c:89 -msgid "dial" -msgstr "pokliči" - -# G:0 K:3 O:0 -#: atk/atkobject.c:90 -msgid "dialog" -msgstr "dialog" - -# G:1 K:0 O:0 -#: atk/atkobject.c:91 -msgid "directory pane" -msgstr "pult z mapami" - -#: atk/atkobject.c:92 -msgid "drawing area" -msgstr "risalna površina" - -#: atk/atkobject.c:93 -msgid "file chooser" -msgstr "izbirnik datotek" - -#: atk/atkobject.c:94 -msgid "filler" -msgstr "polnilnik" - -#. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 -msgid "fontchooser" -msgstr "izbirnik pisav" - -#: atk/atkobject.c:97 -msgid "frame" -msgstr "okvir" - -# G:2 K:1 O:0 -#: atk/atkobject.c:98 -msgid "glass pane" -msgstr "steklni pult" - -#: atk/atkobject.c:99 -msgid "html container" -msgstr "zabojnik html" - -#: atk/atkobject.c:100 -msgid "icon" -msgstr "ikona" - -# G:0 K:1 O:0 -#: atk/atkobject.c:101 -msgid "image" -msgstr "slika" - -# G:1 K:0 O:0 -#: atk/atkobject.c:102 -msgid "internal frame" -msgstr "notranji okvir" - -#: atk/atkobject.c:103 -msgid "label" -msgstr "oznaka" - -# G:3 K:4 O:0 -#: atk/atkobject.c:104 -msgid "layered pane" -msgstr "stopenjski pult" - -#: atk/atkobject.c:105 -msgid "list" -msgstr "seznam" - -# G:1 K:0 O:0 -#: atk/atkobject.c:106 -msgid "list item" -msgstr "predmet s seznamom" - -#: atk/atkobject.c:107 -msgid "menu" -msgstr "menu" - -# G:0 K:1 O:0 -#: atk/atkobject.c:108 -msgid "menu bar" -msgstr "menijska vrstica" - -# G:2 K:0 O:0 -#: atk/atkobject.c:109 -msgid "menu item" -msgstr "predmet menija" - -# G:1 K:0 O:0 -#: atk/atkobject.c:110 -msgid "option pane" -msgstr "pult možnosti" - -#: atk/atkobject.c:111 -msgid "page tab" -msgstr "zavihek strani" - -#: atk/atkobject.c:112 -msgid "page tab list" -msgstr "seznam zavihkov strani" - -#: atk/atkobject.c:113 -msgid "panel" -msgstr "pult" - -# G:0 K:1 O:0 -#: atk/atkobject.c:114 -msgid "password text" -msgstr "besedilo gesla" - -#: atk/atkobject.c:115 -msgid "popup menu" -msgstr "pojavni meni" - -#: atk/atkobject.c:116 -msgid "progress bar" -msgstr "kazalnik napredka" - -# G:0 K:1 O:0 -#: atk/atkobject.c:117 -msgid "push button" -msgstr "gumb" - -# G:0 K:1 O:0 -#: atk/atkobject.c:118 -msgid "radio button" -msgstr "radijski gumb" - -# G:0 K:1 O:0 -#: atk/atkobject.c:119 -msgid "radio menu item" -msgstr "predmet radijskega menija" - -#: atk/atkobject.c:120 -msgid "root pane" -msgstr "korenski pult" - -#: atk/atkobject.c:121 -msgid "row header" -msgstr "glava vrstice" - -#: atk/atkobject.c:122 -msgid "scroll bar" -msgstr "drsnik" - -# G:0 K:1 O:0 -#: atk/atkobject.c:123 -msgid "scroll pane" -msgstr "drsni pult" - -#: atk/atkobject.c:124 -msgid "separator" -msgstr "ločnica" - -# G:3 K:1 O:0 -#: atk/atkobject.c:125 -msgid "slider" -msgstr "drsnik" - -# G:0 K:1 O:0 -#: atk/atkobject.c:126 -msgid "split pane" -msgstr "delilni pult" - -#: atk/atkobject.c:127 -msgid "spin button" -msgstr "vrtilni gumb" - -#: atk/atkobject.c:128 -msgid "statusbar" -msgstr "vrstica stanja" - -# G:4 K:0 O:0 -#: atk/atkobject.c:129 -msgid "table" -msgstr "razpredelnica" - -# G:0 K:1 O:0 -#: atk/atkobject.c:130 -msgid "table cell" -msgstr "celica razpredelnice" - -#: atk/atkobject.c:131 -msgid "table column header" -msgstr "glava stolpca razpredelnice" - -#: atk/atkobject.c:132 -msgid "table row header" -msgstr "glava vrstice razpredelnice" - -#: atk/atkobject.c:133 -msgid "tear off menu item" -msgstr "predmet odcepljivega menija" - -#: atk/atkobject.c:134 -msgid "terminal" -msgstr "terminal" - -# G:0 K:1 O:0 -#: atk/atkobject.c:135 -msgid "text" -msgstr "besedilo" - -# G:1 K:1 O:0 -#: atk/atkobject.c:136 -msgid "toggle button" -msgstr "preklopni gumb" - -#: atk/atkobject.c:137 -msgid "tool bar" -msgstr "orodjarna" - -# G:1 K:1 O:0 -#: atk/atkobject.c:138 -msgid "tool tip" -msgstr "namig" - -#: atk/atkobject.c:139 -msgid "tree" -msgstr "drevo" - -# G:7 K:1 O:0 -#: atk/atkobject.c:140 -msgid "tree table" -msgstr "drevo razpredelnice" - -#: atk/atkobject.c:141 -msgid "unknown" -msgstr "neznan" - -# G:4 K:2 O:0 -#: atk/atkobject.c:142 -msgid "viewport" -msgstr "pogled" - -# G:1 K:0 O:0 -#: atk/atkobject.c:143 -msgid "window" -msgstr "okno" - -# G:7 K:6 O:0 -#: atk/atkobject.c:144 -msgid "header" -msgstr "glava" - -# G:1 K:0 O:0 -#: atk/atkobject.c:145 -msgid "footer" -msgstr "noga" - -# G:1 K:0 O:0 -#: atk/atkobject.c:146 -msgid "paragraph" -msgstr "odstavek" - -#: atk/atkobject.c:147 -msgid "ruler" -msgstr "merilnik" - -# G:1 K:0 O:0 -#: atk/atkobject.c:148 -msgid "application" -msgstr "program" - -#: atk/atkobject.c:149 -msgid "autocomplete" -msgstr "samodejno izpolnjevanje" - -#: atk/atkobject.c:150 -msgid "edit bar" -msgstr "uredi vrstico" - -#: atk/atkobject.c:151 -msgid "embedded component" -msgstr "vgrajene komponente" - -#: atk/atkobject.c:152 -msgid "entry" -msgstr "vnos" - -#: atk/atkobject.c:153 -msgid "chart" -msgstr "graf" - -# G:1 K:0 O:0 -#: atk/atkobject.c:154 -msgid "caption" -msgstr "naslov" - -#: atk/atkobject.c:155 -msgid "document frame" -msgstr "okvir dokumenta" - -# G:7 K:6 O:0 -#: atk/atkobject.c:156 -msgid "heading" -msgstr "glava" - -#: atk/atkobject.c:157 -msgid "page" -msgstr "stran" - -#: atk/atkobject.c:158 -msgid "section" -msgstr "izbira" - -#: atk/atkobject.c:159 -msgid "redundant object" -msgstr "odvečni predmet" - -#: atk/atkobject.c:160 -msgid "form" -msgstr "obrazec" - -#: atk/atkobject.c:161 -msgid "link" -msgstr "povezava" - -#: atk/atkobject.c:162 -msgid "input method window" -msgstr "okno načina vnosa" - -#: atk/atkobject.c:488 -msgid "Accessible Name" -msgstr "Dostopno ime" - -#: atk/atkobject.c:489 -msgid "Object instance's name formatted for assistive technology access" -msgstr "Ime primerka predmeta v obliki pomožnih tehnologij" - -#: atk/atkobject.c:495 -msgid "Accessible Description" -msgstr "Dostopen opis" - -#: atk/atkobject.c:496 -msgid "Description of an object, formatted for assistive technology access" -msgstr "Opis predmeta v obliki pomožnih tehnologij" - -#: atk/atkobject.c:502 -msgid "Accessible Parent" -msgstr "Dostopen nadrejeni" - -#: atk/atkobject.c:503 -msgid "Is used to notify that the parent has changed" -msgstr "Uporabljen pri opozarjanju o spremembah nadrejenega" - -#: atk/atkobject.c:509 -msgid "Accessible Value" -msgstr "Dostopna vrednost" - -#: atk/atkobject.c:510 -msgid "Is used to notify that the value has changed" -msgstr "Uporabljen pri opozarjanju o spremembah vrednosti" - -#: atk/atkobject.c:518 -msgid "Accessible Role" -msgstr "Dostopna vloga" - -#: atk/atkobject.c:519 -msgid "The accessible role of this object" -msgstr "Dostopna vloga tega predmeta" - -#: atk/atkobject.c:527 -msgid "Accessible Layer" -msgstr "Dostopna raven" - -#: atk/atkobject.c:528 -msgid "The accessible layer of this object" -msgstr "Dostopna raven tega predmeta" - -#: atk/atkobject.c:536 -msgid "Accessible MDI Value" -msgstr "Dostopna vrednost MDI" - -#: atk/atkobject.c:537 -msgid "The accessible MDI value of this object" -msgstr "Dostopna vrednost MDI tega predmeta" - -#: atk/atkobject.c:545 -msgid "Accessible Table Caption" -msgstr "Dostopen naziv razpredelnice" - -#: atk/atkobject.c:546 -msgid "" -"Is used to notify that the table caption has changed; this property should " -"not be used. accessible-table-caption-object should be used instead" -msgstr "" -"Uporabljen pri opozarjanju o spremembah naziva razpredelnice. Namesto te " -"lastnosti raje uporabite accessible-table-caption-object" - -#: atk/atkobject.c:552 -msgid "Accessible Table Column Header" -msgstr "Dostopna glava stolpca razpredelnice" - -#: atk/atkobject.c:553 -msgid "Is used to notify that the table column header has changed" -msgstr "Uporabljen pri opozarjanju o spremembah glave stolpca razpredelnice" - -#: atk/atkobject.c:559 -msgid "Accessible Table Column Description" -msgstr "Dostopen opis stolpca razpredelnice" - -#: atk/atkobject.c:560 -msgid "Is used to notify that the table column description has changed" -msgstr "Uporabljen pri opozarjanju o spremembah opisa stolpca razpredelnice" - -#: atk/atkobject.c:566 -msgid "Accessible Table Row Header" -msgstr "Dostopna glava vrstice razpredelnice" - -#: atk/atkobject.c:567 -msgid "Is used to notify that the table row header has changed" -msgstr "Uporabljen pri opozarjanju o spremembah glave vrstice razpredelnice" - -#: atk/atkobject.c:573 -msgid "Accessible Table Row Description" -msgstr "Dostopen opis vrstice razpredelnice" - -#: atk/atkobject.c:574 -msgid "Is used to notify that the table row description has changed" -msgstr "Uporabljen pri opozarjanju o spremembah opisa vrstice razpredelnice" - -#: atk/atkobject.c:580 -msgid "Accessible Table Summary" -msgstr "Dostopen povzetek razpredelnice" - -#: atk/atkobject.c:581 -msgid "Is used to notify that the table summary has changed" -msgstr "Uporabljen pri opozarjanju o spremembah povzetka razpredelnice" - -#: atk/atkobject.c:587 -msgid "Accessible Table Caption Object" -msgstr "Dostopen predmet naziva razpredelnice" - -#: atk/atkobject.c:588 -msgid "Is used to notify that the table caption has changed" -msgstr "Uporabljen pri opozarjanju o spremembah naziva razpredelnice" - -#: atk/atkobject.c:594 -msgid "Number of Accessible Hypertext Links" -msgstr "Število dostopnih hiperpovezav" - -#: atk/atkobject.c:595 -msgid "The number of links which the current AtkHypertext has" -msgstr "Število povezav, ki jih ima trenutni AtkHypertext" +# Slovenian translations for atk. +# Copyright (C) 2005-2007 Free Software Foundation, Inc. +# This file is distributed under the same license as the program package. +# +# Andraz Tori 2002 +# Matej Urbančič 2007 - 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: atk master\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-07-19 10:23+0000\n" +"PO-Revision-Date: 2011-07-19 21:57+0100\n" +"Last-Translator: Matej Urbančič \n" +"Language-Team: Slovenian GNOME Translation Team \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n" +"X-Poedit-Language: Slovenian\n" +"X-Poedit-Country: SLOVENIA\n" +"X-Poedit-SourceCharset: utf-8\n" + +#: ../atk/atkhyperlink.c:103 +msgid "Selected Link" +msgstr "Izbrana povezava" + +#: ../atk/atkhyperlink.c:104 +msgid "Specifies whether the AtkHyperlink object is selected" +msgstr "Določa, ali je predmet AtkHyperlink izbran" + +#: ../atk/atkhyperlink.c:110 +msgid "Number of Anchors" +msgstr "Število sider" + +#: ../atk/atkhyperlink.c:111 +msgid "The number of anchors associated with the AtkHyperlink object" +msgstr "Število sider, povezanih s predmetom AtkHyperlink" + +#: ../atk/atkhyperlink.c:119 +msgid "End index" +msgstr "Končno kazalo" + +#: ../atk/atkhyperlink.c:120 +msgid "The end index of the AtkHyperlink object" +msgstr "Končno kazalo predmeta AtkHyperlink" + +#: ../atk/atkhyperlink.c:128 +msgid "Start index" +msgstr "Začetno kazalo" + +#: ../atk/atkhyperlink.c:129 +msgid "The start index of the AtkHyperlink object" +msgstr "Začetno kazalo predmeta AtkHyperlink" + +#: ../atk/atkobject.c:74 +msgid "invalid" +msgstr "neveljavno" + +# G:3 K:0 O:0 +#: ../atk/atkobject.c:75 +msgid "accelerator label" +msgstr "oznaka pospeševalnika" + +#: ../atk/atkobject.c:76 +msgid "alert" +msgstr "opozorilo" + +#: ../atk/atkobject.c:77 +msgid "animation" +msgstr "animacija" + +# G:4 K:2 O:0 +#: ../atk/atkobject.c:78 +msgid "arrow" +msgstr "puščica" + +# G:0 K:1 O:0 +#: ../atk/atkobject.c:79 +msgid "calendar" +msgstr "koledar" + +# G:6 K:2 O:0 +#: ../atk/atkobject.c:80 +msgid "canvas" +msgstr "platno" + +# G:0 K:1 O:0 +#: ../atk/atkobject.c:81 +msgid "check box" +msgstr "potrditveno polje" + +#: ../atk/atkobject.c:82 +msgid "check menu item" +msgstr "potrditveno polje menija" + +#: ../atk/atkobject.c:83 +msgid "color chooser" +msgstr "izbirnik barv" + +# G:0 K:1 O:0 +#: ../atk/atkobject.c:84 +msgid "column header" +msgstr "glava stolpca" + +#: ../atk/atkobject.c:85 +msgid "combo box" +msgstr "spustno polje" + +# G:0 K:1 O:0 +#: ../atk/atkobject.c:86 +msgid "dateeditor" +msgstr "datumski urejevalnik" + +#: ../atk/atkobject.c:87 +msgid "desktop icon" +msgstr "ikona namizja" + +#: ../atk/atkobject.c:88 +msgid "desktop frame" +msgstr "okvir namizja" + +#: ../atk/atkobject.c:89 +msgid "dial" +msgstr "kliči" + +# G:0 K:3 O:0 +#: ../atk/atkobject.c:90 +msgid "dialog" +msgstr "pogovorno okno" + +# G:1 K:0 O:0 +#: ../atk/atkobject.c:91 +msgid "directory pane" +msgstr "pladenj z mapami" + +#: ../atk/atkobject.c:92 +msgid "drawing area" +msgstr "risalna površina" + +#: ../atk/atkobject.c:93 +msgid "file chooser" +msgstr "izbirnik datotek" + +#: ../atk/atkobject.c:94 +msgid "filler" +msgstr "polnilnik" + +#. I know it looks wrong but that is what Java returns +#: ../atk/atkobject.c:96 +msgid "fontchooser" +msgstr "izbirnik pisav" + +#: ../atk/atkobject.c:97 +msgid "frame" +msgstr "okvir" + +# G:2 K:1 O:0 +#: ../atk/atkobject.c:98 +msgid "glass pane" +msgstr "steklen pladenj" + +#: ../atk/atkobject.c:99 +msgid "html container" +msgstr "vsebovalnik html" + +#: ../atk/atkobject.c:100 +msgid "icon" +msgstr "ikona" + +# G:0 K:1 O:0 +#: ../atk/atkobject.c:101 +msgid "image" +msgstr "slika" + +# G:1 K:0 O:0 +#: ../atk/atkobject.c:102 +msgid "internal frame" +msgstr "notranji okvir" + +#: ../atk/atkobject.c:103 +msgid "label" +msgstr "oznaka" + +# G:3 K:4 O:0 +#: ../atk/atkobject.c:104 +msgid "layered pane" +msgstr "ravninski pladenj" + +#: ../atk/atkobject.c:105 +msgid "list" +msgstr "seznam" + +# G:1 K:0 O:0 +#: ../atk/atkobject.c:106 +msgid "list item" +msgstr "predmet seznama" + +#: ../atk/atkobject.c:107 +msgid "menu" +msgstr "meni" + +# G:0 K:1 O:0 +#: ../atk/atkobject.c:108 +msgid "menu bar" +msgstr "menijska vrstica" + +# G:2 K:0 O:0 +#: ../atk/atkobject.c:109 +msgid "menu item" +msgstr "predmet menija" + +# G:1 K:0 O:0 +#: ../atk/atkobject.c:110 +msgid "option pane" +msgstr "pladenj možnosti" + +#: ../atk/atkobject.c:111 +msgid "page tab" +msgstr "zavihek strani" + +#: ../atk/atkobject.c:112 +msgid "page tab list" +msgstr "seznam zavihkov strani" + +#: ../atk/atkobject.c:113 +msgid "panel" +msgstr "pult" + +# G:0 K:1 O:0 +#: ../atk/atkobject.c:114 +msgid "password text" +msgstr "besedilo gesla" + +#: ../atk/atkobject.c:115 +msgid "popup menu" +msgstr "pojavni meni" + +#: ../atk/atkobject.c:116 +msgid "progress bar" +msgstr "kazalnik napredka" + +# G:0 K:1 O:0 +#: ../atk/atkobject.c:117 +msgid "push button" +msgstr "gumb" + +# G:0 K:1 O:0 +#: ../atk/atkobject.c:118 +msgid "radio button" +msgstr "radijski gumb" + +# G:0 K:1 O:0 +#: ../atk/atkobject.c:119 +msgid "radio menu item" +msgstr "radijski predmet menija" + +#: ../atk/atkobject.c:120 +msgid "root pane" +msgstr "korenski pladenj" + +#: ../atk/atkobject.c:121 +msgid "row header" +msgstr "glava vrstice" + +#: ../atk/atkobject.c:122 +msgid "scroll bar" +msgstr "drsnik" + +# G:0 K:1 O:0 +#: ../atk/atkobject.c:123 +msgid "scroll pane" +msgstr "drsni pladenj" + +#: ../atk/atkobject.c:124 +msgid "separator" +msgstr "ločilnik" + +# G:3 K:1 O:0 +#: ../atk/atkobject.c:125 +msgid "slider" +msgstr "drsnik" + +# G:0 K:1 O:0 +#: ../atk/atkobject.c:126 +msgid "split pane" +msgstr "delilni pladenj" + +#: ../atk/atkobject.c:127 +msgid "spin button" +msgstr "vrtljivi gumb" + +#: ../atk/atkobject.c:128 +msgid "statusbar" +msgstr "vrstica stanja" + +# G:4 K:0 O:0 +#: ../atk/atkobject.c:129 +msgid "table" +msgstr "razpredelnica" + +# G:0 K:1 O:0 +#: ../atk/atkobject.c:130 +msgid "table cell" +msgstr "celica razpredelnice" + +#: ../atk/atkobject.c:131 +msgid "table column header" +msgstr "glava stolpca razpredelnice" + +#: ../atk/atkobject.c:132 +msgid "table row header" +msgstr "glava vrstice razpredelnice" + +#: ../atk/atkobject.c:133 +msgid "tear off menu item" +msgstr "predmet odtrgljivega menija" + +#: ../atk/atkobject.c:134 +msgid "terminal" +msgstr "terminal" + +# G:0 K:1 O:0 +#: ../atk/atkobject.c:135 +msgid "text" +msgstr "besedilo" + +# G:1 K:1 O:0 +#: ../atk/atkobject.c:136 +msgid "toggle button" +msgstr "preklopni gumb" + +#: ../atk/atkobject.c:137 +msgid "tool bar" +msgstr "orodna vrstica" + +# G:1 K:1 O:0 +#: ../atk/atkobject.c:138 +msgid "tool tip" +msgstr "orodni namig" + +#: ../atk/atkobject.c:139 +msgid "tree" +msgstr "drevo" + +# G:7 K:1 O:0 +#: ../atk/atkobject.c:140 +msgid "tree table" +msgstr "drevo razpredelnice" + +#: ../atk/atkobject.c:141 +msgid "unknown" +msgstr "neznano" + +# G:4 K:2 O:0 +#: ../atk/atkobject.c:142 +msgid "viewport" +msgstr "vidno polje" + +# G:1 K:0 O:0 +#: ../atk/atkobject.c:143 +msgid "window" +msgstr "okno" + +# G:7 K:6 O:0 +#: ../atk/atkobject.c:144 +msgid "header" +msgstr "glava" + +# G:1 K:0 O:0 +#: ../atk/atkobject.c:145 +msgid "footer" +msgstr "noga" + +# G:1 K:0 O:0 +#: ../atk/atkobject.c:146 +msgid "paragraph" +msgstr "odstavek" + +#: ../atk/atkobject.c:147 +msgid "ruler" +msgstr "merilnik" + +# G:1 K:0 O:0 +#: ../atk/atkobject.c:148 +msgid "application" +msgstr "program" + +#: ../atk/atkobject.c:149 +msgid "autocomplete" +msgstr "samodejno dopolnjevanje" + +#: ../atk/atkobject.c:150 +msgid "edit bar" +msgstr "vrstica za urejanje" + +#: ../atk/atkobject.c:151 +msgid "embedded component" +msgstr "vgrajene enote" + +#: ../atk/atkobject.c:152 +msgid "entry" +msgstr "vnos" + +#: ../atk/atkobject.c:153 +msgid "chart" +msgstr "graf" + +# G:1 K:0 O:0 +#: ../atk/atkobject.c:154 +msgid "caption" +msgstr "naslov" + +#: ../atk/atkobject.c:155 +msgid "document frame" +msgstr "okvir dokumenta" + +# G:7 K:6 O:0 +#: ../atk/atkobject.c:156 +msgid "heading" +msgstr "glava" + +#: ../atk/atkobject.c:157 +msgid "page" +msgstr "stran" + +#: ../atk/atkobject.c:158 +msgid "section" +msgstr "odsek" + +#: ../atk/atkobject.c:159 +msgid "redundant object" +msgstr "odvečni predmet" + +#: ../atk/atkobject.c:160 +msgid "form" +msgstr "obrazec" + +#: ../atk/atkobject.c:161 +msgid "link" +msgstr "povezava" + +#: ../atk/atkobject.c:162 +msgid "input method window" +msgstr "okno načina vnosa" + +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "vrstica preglednice" + +# G:7 K:1 O:0 +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "predmet drevesa" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "preglednica dokumenta" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "predstavitev dokumenta" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "besedilo dokumenta" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "spletni naslov dokumenta" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "elektronski naslov dokumenta" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "opomba" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "seznam" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "skupinjenje" + +# G:0 K:1 O:0 +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "zemljevid slike" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "obvestilo" + +# G:0 K:1 O:0 +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "vrstica podrobnosti" + +#: ../atk/atkobject.c:514 +msgid "Accessible Name" +msgstr "Dostopno ime" + +#: ../atk/atkobject.c:515 +msgid "Object instance's name formatted for assistive technology access" +msgstr "Ime primerka predmeta v obliki pomožnih tehnologij" + +#: ../atk/atkobject.c:521 +msgid "Accessible Description" +msgstr "Dostopni opis" + +#: ../atk/atkobject.c:522 +msgid "Description of an object, formatted for assistive technology access" +msgstr "Opis predmeta v obliki pomožnih tehnologij" + +#: ../atk/atkobject.c:528 +msgid "Accessible Parent" +msgstr "Dostopen nadrejeni" + +#: ../atk/atkobject.c:529 +msgid "Is used to notify that the parent has changed" +msgstr "Uporabljen pri opozarjanju o spremembah nadrejenega" + +#: ../atk/atkobject.c:535 +msgid "Accessible Value" +msgstr "Dostopna vrednost" + +#: ../atk/atkobject.c:536 +msgid "Is used to notify that the value has changed" +msgstr "Uporabljen pri opozarjanju o spremembah vrednosti" + +#: ../atk/atkobject.c:544 +msgid "Accessible Role" +msgstr "Dostopna vloga" + +#: ../atk/atkobject.c:545 +msgid "The accessible role of this object" +msgstr "Dostopna vloga tega predmeta" + +#: ../atk/atkobject.c:553 +msgid "Accessible Layer" +msgstr "Dostopna raven" + +#: ../atk/atkobject.c:554 +msgid "The accessible layer of this object" +msgstr "Dostopna raven tega predmeta" + +#: ../atk/atkobject.c:562 +msgid "Accessible MDI Value" +msgstr "Dostopna vrednost MDI" + +#: ../atk/atkobject.c:563 +msgid "The accessible MDI value of this object" +msgstr "Dostopna vrednost MDI tega predmeta" + +#: ../atk/atkobject.c:571 +msgid "Accessible Table Caption" +msgstr "Dostopen naziv razpredelnice" + +#: ../atk/atkobject.c:572 +msgid "Is used to notify that the table caption has changed; this property should not be used. accessible-table-caption-object should be used instead" +msgstr "Uporabljen pri opozarjanju o spremembah naziva razpredelnice. Namesto te lastnosti raje uporabite accessible-table-caption-object" + +#: ../atk/atkobject.c:578 +msgid "Accessible Table Column Header" +msgstr "Dostopna glava stolpca razpredelnice" + +#: ../atk/atkobject.c:579 +msgid "Is used to notify that the table column header has changed" +msgstr "Uporabljen pri opozarjanju o spremembah glave stolpca razpredelnice" + +#: ../atk/atkobject.c:585 +msgid "Accessible Table Column Description" +msgstr "Dostopen opis stolpca razpredelnice" + +#: ../atk/atkobject.c:586 +msgid "Is used to notify that the table column description has changed" +msgstr "Uporabljen pri opozarjanju o spremembah opisa stolpca razpredelnice" + +#: ../atk/atkobject.c:592 +msgid "Accessible Table Row Header" +msgstr "Dostopna glava vrstice razpredelnice" + +#: ../atk/atkobject.c:593 +msgid "Is used to notify that the table row header has changed" +msgstr "Uporabljen pri opozarjanju o spremembah glave vrstice razpredelnice" + +#: ../atk/atkobject.c:599 +msgid "Accessible Table Row Description" +msgstr "Dostopen opis vrstice razpredelnice" + +#: ../atk/atkobject.c:600 +msgid "Is used to notify that the table row description has changed" +msgstr "Uporabljen pri opozarjanju o spremembah opisa vrstice razpredelnice" + +#: ../atk/atkobject.c:606 +msgid "Accessible Table Summary" +msgstr "Dostopen povzetek razpredelnice" + +#: ../atk/atkobject.c:607 +msgid "Is used to notify that the table summary has changed" +msgstr "Uporabljen pri opozarjanju o spremembah povzetka razpredelnice" + +#: ../atk/atkobject.c:613 +msgid "Accessible Table Caption Object" +msgstr "Dostopen predmet naziva razpredelnice" + +#: ../atk/atkobject.c:614 +msgid "Is used to notify that the table caption has changed" +msgstr "Uporabljen pri opozarjanju o spremembah naziva razpredelnice" + +#: ../atk/atkobject.c:620 +msgid "Number of Accessible Hypertext Links" +msgstr "Število dostopnih hiperpovezav" + +#: ../atk/atkobject.c:621 +msgid "The number of links which the current AtkHypertext has" +msgstr "Število povezav, ki jih ima trenutni AtkHypertext" + Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/sq.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/sq.gmo differ diff -Nru atk1.0-1.30.0/po/sq.po atk1.0-2.2.0/po/sq.po --- atk1.0-1.30.0/po/sq.po 2009-12-21 07:05:31.000000000 +0000 +++ atk1.0-2.2.0/po/sq.po 2011-09-19 17:06:54.000000000 +0000 @@ -1,15 +1,15 @@ # Përkthimi i mesazheve të atk në shqip -# Copyright (C) 2002, 2004, 2005, 2006, 2008 Free Software Foundation, Inc. +# Copyright (C) 2002, 2004, 2005, 2006, 2008, 2010 Free Software Foundation, Inc. # This file is distributed under the same license as the atk package. # # Deep_Dark , 2003. -# Laurent Dhima , 2004, 2005, 2006, 2008. +# Laurent Dhima , 2004, 2005, 2006, 2008, 2010. msgid "" msgstr "" -"Project-Id-Version: atk HEAD\n" +"Project-Id-Version: atk master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2008-03-20 11:42+0100\n" +"POT-Creation-Date: 2010-05-11 19:32+0200\n" +"PO-Revision-Date: 2010-05-11 19:35+0200\n" "Last-Translator: Laurent Dhima \n" "Language-Team: albanian \n" "MIME-Version: 1.0\n" @@ -17,463 +17,461 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Lidhja e zgjedhur" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Specifikon nëse është zgjedhur objekti AtkHyperlink" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Numri i lidhjeve" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "Numri i spirancave shoqëruar me objektin AtkHyperlink" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Fundi i treguesit" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "Fundi i treguesit të objektit AtkHyperlink" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Fillimi i treguesit" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "Fillimi i treguesit të objektit AtkHyperlink" # (pofilter) startcaps: checks that the message starts with the correct capitalisation -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "i pavlefshëm" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "etiketa e përshpejtuesit" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "paralajmërim" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animacioni" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "shigjetë" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "kalendar" # (pofilter) brackets: translation has extra '(', ')' -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "telë" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "kuti zgjedhjeje" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "element menu zgjedhur" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "zgjedhësi i ngjyrave" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "kreu i kollonës" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "kuti e kombinuar" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "ndryshues date" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "ikonë për desktop" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "kornizë desktop-i" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "telefonatë" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "dritare dialogu" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "paneli i directory" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "sipërfaqja e vizatimit" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "zgjedhësi i file" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "mbushës" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "zgjedhës gërmash" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "kornizë" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "panel i tejdukshëm" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "përmbajtës html" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "ikonë" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "figurë" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "kornizë e brendshme" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "etiketë" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "panel me nivele" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "listë" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "element liste" # (pofilter) unchanged: please translate -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "menu" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "shtyllë menuje" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "element menuje" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "panel opsionesh" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "skedë" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "listë skedash" # (pofilter) unchanged: please translate -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "panel" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "tekst fjalëkalimi" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "menu e shpalosëshme" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "shtyllë ecurie" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "pulsant" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "pulsant zgjedhje" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "element menu zgjedhje" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "panel bazë" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "kreu i rreshtit" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "shtyllë rrëshkitje" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "panel me rrëshkitje" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "ndarës" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "kontrollues me rrëshkitje" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "panel i ndarë" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "pulsant numerik" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "shtyllë gjëndjeje" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "tabelë" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "qeli tabele" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "kreu kollone tabele" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "kreu rresht tabele" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "element i shkëputshëm menuje" # (pofilter) unchanged: please translate -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminal" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "tekst" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "pulsant me dy gjëndje" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "panel instrumentësh" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "propozim" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "degëzim" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "tabelë e degëzuar" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "nuk njihet" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "viewport" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "dritare" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "kreu" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "fundi" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "paragraf" -#: atk/atkobject.c:147 -#, fuzzy +#: ../atk/atkobject.c:147 msgid "ruler" -msgstr "paralajmërim" +msgstr "vizore" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "aplikativ" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "plotësim automatik" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "shtyllë ndryshimi" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "komponent i trupëzuar" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "fushë shtimi" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "diagramë" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "titull" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "kornizë dokumenti" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "titull" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "faqe" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "seksion" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "objekt i përsëritur" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "formular" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" -msgstr "" +msgstr "lidhje" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" -msgstr "" +msgstr "dritare metode të input" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:488 msgid "Accessible Name" msgstr "Emri açesibël" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:489 msgid "Object instance's name formatted for assistive technology access" msgstr "" "Emri i instancës së objektit i formatuar për të qenë i shfrytëzueshëm nga " "teknollogjitë asistuese" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:495 msgid "Accessible Description" msgstr "Përshkrimi açesibël" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:496 msgid "Description of an object, formatted for assistive technology access" -msgstr "" -"Përshkrimi i një objekti, formatuar për hyrje nga teknollogjia asistuese" +msgstr "Përshkrimi i një objekti, formatuar për hyrje nga teknollogjia asistuese" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:502 msgid "Accessible Parent" msgstr "Prind i përshtatshëm" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:503 msgid "Is used to notify that the parent has changed" msgstr "Përdoret për të njoftuar që prindi është ndryshuar" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:509 msgid "Accessible Value" msgstr "Vlerë e përshtatshme" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:510 msgid "Is used to notify that the value has changed" msgstr "Përdoret për të njoftuar që vlera është ndryshuar" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:518 msgid "Accessible Role" msgstr "Rol i përshtatshëm" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:519 msgid "The accessible role of this object" msgstr "Roli i përshtatshëm i këtij objekti" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:527 msgid "Accessible Layer" msgstr "Nivel i përshtatshëm" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:528 msgid "The accessible layer of this object" msgstr "Niveli i përshtatshëm i këtij objekti" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:536 msgid "Accessible MDI Value" msgstr "Vlerë MDI e përshtatshme" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:537 msgid "The accessible MDI value of this object" msgstr "Vlera e përshtatshme MDI e këtij objekti" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:545 msgid "Accessible Table Caption" msgstr "Titull i përshtatshëm tabele" # (pofilter) sentencecount: The number of sentences differ: 1 versus 2 # (pofilter) simplecaps: checks the capitalisation of two strings isn't wildly different -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:546 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -482,62 +480,59 @@ "pronësi nuk duhet përdorur. Në vend të saj duhet përdorur accessible-table-" "caption-object" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:552 msgid "Accessible Table Column Header" msgstr "Titulli i përshtatshëm i kollonës së tabelës" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:553 msgid "Is used to notify that the table column header has changed" -msgstr "" -"Përdoret për të njoftuar që titulli i kollonës së tabelës është ndryshuar" +msgstr "Përdoret për të njoftuar që titulli i kollonës së tabelës është ndryshuar" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:559 msgid "Accessible Table Column Description" msgstr "Përshkrim i përshtatshëm i kollonës së tabelës" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:560 msgid "Is used to notify that the table column description has changed" -msgstr "" -"Përdoret për të njoftuar që përshkrimi i kollonës së tabelës është ndryshuar" +msgstr "Përdoret për të njoftuar që përshkrimi i kollonës së tabelës është ndryshuar" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:566 msgid "Accessible Table Row Header" msgstr "Titulli i përshtatshëm i rreshtit të tabelës" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:567 msgid "Is used to notify that the table row header has changed" -msgstr "" -"Përdoret për të njoftuar që titulli i rreshtit të tabelës është ndryshuar" +msgstr "Përdoret për të njoftuar që titulli i rreshtit të tabelës është ndryshuar" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:573 msgid "Accessible Table Row Description" msgstr "Përshkrim i përshtatshëm i rreshtit të tabelës" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:574 msgid "Is used to notify that the table row description has changed" -msgstr "" -"Përdoret për të njoftuar që përshkrimi i rreshtit të tabelës është ndryshuar" +msgstr "Përdoret për të njoftuar që përshkrimi i rreshtit të tabelës është ndryshuar" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:580 msgid "Accessible Table Summary" msgstr "Përmbledhje e përshtatshme e tabelës" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:581 msgid "Is used to notify that the table summary has changed" msgstr "Përdoret për të njoftuar që përmbledhja e tabelës është ndryshuar" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:587 msgid "Accessible Table Caption Object" msgstr "Objekt titulli i përshtatshëm tabele" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:588 msgid "Is used to notify that the table caption has changed" msgstr "Përdoret për të njoftuar që titulli i tabelës është ndryshuar" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:594 msgid "Number of Accessible Hypertext Links" msgstr "Numër lidhjesh të përshtatshme në hypertext" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:595 msgid "The number of links which the current AtkHypertext has" msgstr "Numri i lidhjeve që ka AtkHypertext-i aktual" + Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/sr.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/sr.gmo differ Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/sr@latin.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/sr@latin.gmo differ diff -Nru atk1.0-1.30.0/po/sr@latin.po atk1.0-2.2.0/po/sr@latin.po --- atk1.0-1.30.0/po/sr@latin.po 2009-12-21 07:05:31.000000000 +0000 +++ atk1.0-2.2.0/po/sr@latin.po 2011-09-19 17:06:54.000000000 +0000 @@ -1,531 +1,598 @@ # Serbian translation of atk # Courtesy of Prevod.org team (http://www.prevod.org/) -- 2003, 2004, 2009. -# # This file is distributed under the same license as the atk package. -# # Maintainer: Danilo Šegan # Reviewed on 2004-03-05 by Aleksandar Urošević # Reviewed on 2004-08-06 by: Danilo Šegan -# +# Miroslav Nikolić , 2011. msgid "" msgstr "" "Project-Id-Version: atk\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2006-09-01 00:10+0200\n" -"Last-Translator: Goran Rakić \n" -"Language-Team: Serbian (sr) \n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=atk&ke" +"ywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-07-07 17:40+0000\n" +"PO-Revision-Date: 2011-08-08 08:15+0200\n" +"Last-Translator: Miroslav Nikolić \n" +"Language-Team: Serbian \n" +"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Virtaal 0.7.0\n" +"X-Project-Style: gnome\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Izabrana veza" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" -msgstr "Određuje da li je izabran AtkHyperlink objekat" +msgstr "Određuje da li je izabran objekat Atk Hiperveze" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Broj smernica" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" -msgstr "Broj smernica AtkHyperlink objekta" +msgstr "Broj smernica objekta Atk Hiperveze" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Završni indeks" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" -msgstr "Završni indeks AtkHyperlink objekta" +msgstr "Završni indeks objekta Atk Hiperveze" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Početni indeks" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" -msgstr "Početni indeks AtkHyperlink objekta" +msgstr "Početni indeks objekta Atk Hiperveze" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "neispravno" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "oznaka prečice" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "upozorenje" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animacija" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" -msgstr "strela" +msgstr "strelica" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "kalendar" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "slika" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "kućica za označavanje" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "stavka menija za označavanje" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "izbor boje" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "zaglavlje kolone" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "kombinovana kućica" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "uređivač datuma" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "ikonica radne površi" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "okvir radne površi" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "pozovi" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "prozorče" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "lista direktorijuma" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "površina za crtanje" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "izbor datoteke" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "punjač" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "izbor slovnog lika" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "okvir" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "staklena zona" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" -msgstr "sadržalac html-a" +msgstr "html sadržalac" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "ikonica" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "slika" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "unutrašnji okvir" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "oznaka" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "poslagane ploče" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "spisak" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "stavka spiska" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "meni" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "glavni meni" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "stavka menija" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "ploča opcija" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "list" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "spisak listova" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "panel" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "tekst lozinke" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "iskačući meni" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" -msgstr "linija toka" +msgstr "linija napredovanja" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "dugme" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "isključivo dugme" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "isključiva stavka menija" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "korena ploča" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "zaglavlje reda" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "linija za pomeranje" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "ploča za pomeranje" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "razdvajač" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "klizač" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "ploča za razdvajanje" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "vrteće dugme" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" -msgstr "linija sa stanjem" +msgstr "linija stanja" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "tabela" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "polje tabele" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "zaglavlje kolone tabele" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "zaglavlje reda tabele" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" -msgstr "odvojiva meni stavka" +msgstr "odvojiva stavka menija" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminal" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "tekst" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "prekidač dugme" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "linija alatki" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" -msgstr "oblačić" +msgstr "oblačić obaveštenja" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" -msgstr "drvo" +msgstr "stablo" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" -msgstr "drvo tabela" +msgstr "tabela stabla" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "nepoznato" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "pogled" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "prozor" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "zaglavlje" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "podnožje" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "pasus" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "lenjir" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "program" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "samodopunjavanje" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "polje za unos" # sastojak umesto „deo“ (part) -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "ugnježdeni sastojak" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "stavka" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "tabela" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "natpis" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "okvir dokumenta" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "kurs" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "strana" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "odeljak" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "ponovljeni objekat" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "formular" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "veza" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "prozor načina unosa" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +#| msgid "table row header" +msgid "table row" +msgstr "red tabele" + +#: ../atk/atkobject.c:164 +#| msgid "tree table" +msgid "tree item" +msgstr "stavka stabla" + +#: ../atk/atkobject.c:165 +#| msgid "document frame" +msgid "document spreadsheet" +msgstr "tablica dokumenta" + +#: ../atk/atkobject.c:166 +#| msgid "document frame" +msgid "document presentation" +msgstr "prezentacija dokumenta" + +#: ../atk/atkobject.c:167 +#| msgid "document frame" +msgid "document text" +msgstr "tekst dokumenta" + +#: ../atk/atkobject.c:168 +#| msgid "document frame" +msgid "document web" +msgstr "veb dokumenta" + +#: ../atk/atkobject.c:169 +#| msgid "document frame" +msgid "document email" +msgstr "e-pošta dokumenta" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "primedba" + +#: ../atk/atkobject.c:171 +#| msgid "list" +msgid "list box" +msgstr "lista" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "grupisanje" + +#: ../atk/atkobject.c:173 +#| msgid "image" +msgid "image map" +msgstr "mapa slike" + +#: ../atk/atkobject.c:174 +#| msgid "animation" +msgid "notification" +msgstr "obaveštenje" + +#: ../atk/atkobject.c:175 +#| msgid "menu bar" +msgid "info bar" +msgstr "linija obaveštenja" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Pristupačno ime" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "" "Ime instance objekta prilagođeno pristupu pomoću tehnologija za ispomoć" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Pristupačan opis" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "Opis objekta prilagođen pristupu pomoću tehnologija za ispomoć" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Pristupačan sadržalac" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Koristi se za obaveštavanje da je sadržalac izmenjen" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Pristupačna vrednost" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Koristi se za obaveštavanje da je vrednost izmenjena" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Pristupačna uloga" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "Pristupačna uloga ovog objekta" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Sloj pristupačnosti" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "Sloj pristupačnosti ovog objekta" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Pristupačna MDI vrednost" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "Pristupačna MDI vrednost ovog objekta" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Pristupačan naslov tabele" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" msgstr "" "Koristi se za obaveštavanje da je izmenjen naslov tabele; ne treba koristiti " -"ovu osobinu, već accessible-table-caption-object." +"ovu osobinu, već „accessible-table-caption-object“." -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Pristupačno zaglavlje kolone tabele" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "Koristi se za obaveštavanje da je izmenjeno zaglavlje kolone u tabeli" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Pristupačan opis kolone tabele" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "Koristi se za obaveštavanje da je izmenjen opis kolone u tabeli" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Pristupačno zaglavlje reda tabele" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "Koristi se za obaveštavanje da je izmenjeno zaglavlje reda u tabeli" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Pristupačan opis reda tabele" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "Koristi se za obaveštavanje da je izmenjen opis reda u tabeli" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Pristupačan sažetak tabele" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Koristi se za obaveštavanje da je izmenjen sažetak tabele" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Pristupačan objekat naslova tabele" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Koristi se za obaveštavanje da je izmenjen naslov tabele" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Broj pristupačnih veza u nadtekstu" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" -msgstr "Koliko veza sadrži tekući AtkHypertext" +msgstr "Koliko veza sadrži tekući Atk Hipertekst" diff -Nru atk1.0-1.30.0/po/sr.po atk1.0-2.2.0/po/sr.po --- atk1.0-1.30.0/po/sr.po 2009-12-21 07:05:31.000000000 +0000 +++ atk1.0-2.2.0/po/sr.po 2011-09-19 17:06:54.000000000 +0000 @@ -1,531 +1,598 @@ # Serbian translation of atk # Courtesy of Prevod.org team (http://www.prevod.org/) -- 2003, 2004, 2009. -# # This file is distributed under the same license as the atk package. -# # Maintainer: Данило Шеган # Reviewed on 2004-03-05 by Александар Урошевић # Reviewed on 2004-08-06 by: Данило Шеган -# +# Мирослав Николић , 2011. msgid "" msgstr "" "Project-Id-Version: atk\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2006-09-01 00:10+0200\n" -"Last-Translator: Горан Ракић \n" -"Language-Team: Serbian (sr) \n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=atk&ke" +"ywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-07-07 17:40+0000\n" +"PO-Revision-Date: 2011-08-08 08:15+0200\n" +"Last-Translator: Мирослав Николић \n" +"Language-Team: Serbian \n" +"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Virtaal 0.7.0\n" +"X-Project-Style: gnome\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Изабрана веза" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" -msgstr "Одређује да ли је изабран AtkHyperlink објекат" +msgstr "Одређује да ли је изабран објекат Атк Хипервезе" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Број смерница" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" -msgstr "Број смерница AtkHyperlink објекта" +msgstr "Број смерница објекта Атк Хипервезе" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Завршни индекс" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" -msgstr "Завршни индекс AtkHyperlink објекта" +msgstr "Завршни индекс објекта Атк Хипервезе" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Почетни индекс" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" -msgstr "Почетни индекс AtkHyperlink објекта" +msgstr "Почетни индекс објекта Атк Хипервезе" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "неисправно" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "ознака пречице" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "упозорење" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "анимација" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" -msgstr "стрела" +msgstr "стрелица" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "календар" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "слика" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "кућица за означавање" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "ставка менија за означавање" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "избор боје" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "заглавље колоне" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "комбинована кућица" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "уређивач датума" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "иконица радне површи" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "оквир радне површи" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "позови" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "прозорче" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "листа директоријума" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "површина за цртање" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "избор датотеке" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "пуњач" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "избор словног лика" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "оквир" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "стаклена зона" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" -msgstr "садржалац html-а" +msgstr "хтмл садржалац" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "иконица" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "слика" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "унутрашњи оквир" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "ознака" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "послагане плоче" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "списак" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "ставка списка" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "мени" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "главни мени" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "ставка менија" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "плоча опција" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "лист" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "списак листова" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "панел" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "текст лозинке" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "искачући мени" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" -msgstr "линија тока" +msgstr "линија напредовања" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "дугме" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "искључиво дугме" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "искључива ставка менија" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "корена плоча" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "заглавље реда" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "линија за померање" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "плоча за померање" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "раздвајач" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "клизач" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "плоча за раздвајање" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "вртеће дугме" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" -msgstr "линија са стањем" +msgstr "линија стања" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "табела" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "поље табеле" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "заглавље колоне табеле" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "заглавље реда табеле" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" -msgstr "одвојива мени ставка" +msgstr "одвојива ставка менија" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "терминал" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "текст" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "прекидач дугме" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "линија алатки" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" -msgstr "облачић" +msgstr "облачић обавештења" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" -msgstr "дрво" +msgstr "стабло" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" -msgstr "дрво табела" +msgstr "табела стабла" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "непознато" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "поглед" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "прозор" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "заглавље" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "подножје" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "пасус" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "лењир" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "програм" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "самодопуњавање" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "поље за унос" # састојак уместо „део“ (part) -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "угњеждени састојак" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "ставка" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "табела" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "натпис" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "оквир документа" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "курс" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "страна" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "одељак" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "поновљени објекат" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "формулар" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "веза" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "прозор начина уноса" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +#| msgid "table row header" +msgid "table row" +msgstr "ред табеле" + +#: ../atk/atkobject.c:164 +#| msgid "tree table" +msgid "tree item" +msgstr "ставка стабла" + +#: ../atk/atkobject.c:165 +#| msgid "document frame" +msgid "document spreadsheet" +msgstr "таблица документа" + +#: ../atk/atkobject.c:166 +#| msgid "document frame" +msgid "document presentation" +msgstr "презентација документа" + +#: ../atk/atkobject.c:167 +#| msgid "document frame" +msgid "document text" +msgstr "текст документа" + +#: ../atk/atkobject.c:168 +#| msgid "document frame" +msgid "document web" +msgstr "веб документа" + +#: ../atk/atkobject.c:169 +#| msgid "document frame" +msgid "document email" +msgstr "е-пошта документа" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "примедба" + +#: ../atk/atkobject.c:171 +#| msgid "list" +msgid "list box" +msgstr "листа" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "груписање" + +#: ../atk/atkobject.c:173 +#| msgid "image" +msgid "image map" +msgstr "мапа слике" + +#: ../atk/atkobject.c:174 +#| msgid "animation" +msgid "notification" +msgstr "обавештење" + +#: ../atk/atkobject.c:175 +#| msgid "menu bar" +msgid "info bar" +msgstr "линија обавештења" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Приступачно име" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "" "Име инстанце објекта прилагођено приступу помоћу технологија за испомоћ" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Приступачан опис" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "Опис објекта прилагођен приступу помоћу технологија за испомоћ" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Приступачан садржалац" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Користи се за обавештавање да је садржалац измењен" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Приступачна вредност" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Користи се за обавештавање да је вредност измењена" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Приступачна улога" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "Приступачна улога овог објекта" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Слој приступачности" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "Слој приступачности овог објекта" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" -msgstr "Приступачна MDI вредност" +msgstr "Приступачна МДИ вредност" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" -msgstr "Приступачна MDI вредност овог објекта" +msgstr "Приступачна МДИ вредност овог објекта" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Приступачан наслов табеле" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" msgstr "" "Користи се за обавештавање да је измењен наслов табеле; не треба користити " -"ову особину, већ accessible-table-caption-object." +"ову особину, већ „accessible-table-caption-object“." -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Приступачно заглавље колоне табеле" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "Користи се за обавештавање да је измењено заглавље колоне у табели" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Приступачан опис колоне табеле" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "Користи се за обавештавање да је измењен опис колоне у табели" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Приступачно заглавље реда табеле" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "Користи се за обавештавање да је измењено заглавље реда у табели" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Приступачан опис реда табеле" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "Користи се за обавештавање да је измењен опис реда у табели" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Приступачан сажетак табеле" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Користи се за обавештавање да је измењен сажетак табеле" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Приступачан објекат наслова табеле" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Користи се за обавештавање да је измењен наслов табеле" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Број приступачних веза у надтексту" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" -msgstr "Колико веза садржи текући AtkHypertext" +msgstr "Колико веза садржи текући Атк Хипертекст" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/sv.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/sv.gmo differ diff -Nru atk1.0-1.30.0/po/sv.po atk1.0-2.2.0/po/sv.po --- atk1.0-1.30.0/po/sv.po 2009-12-21 07:05:31.000000000 +0000 +++ atk1.0-2.2.0/po/sv.po 2011-09-19 17:06:54.000000000 +0000 @@ -1,8 +1,8 @@ # Swedish messages for atk. -# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc. +# Copyright (C) 2002-2011 Free Software Foundation, Inc. # This file is distributed under the same license as the atk package. -# Daniel Nylander , 2006, 2008. # Christian Rose , 2002, 2003, 2004, 2005, 2006. +# Daniel Nylander , 2006, 2008, 2011. # # $Id: sv.po,v 1.13 2006/12/15 05:17:55 liyuan Exp $ # @@ -10,520 +10,570 @@ msgstr "" "Project-Id-Version: atk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2008-12-01 21:53+0100\n" +"POT-Creation-Date: 2011-08-02 00:19+0200\n" +"PO-Revision-Date: 2011-08-02 00:21+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "Markerad länk" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "Anger huruvida AtkHyperlink-objektet är markerat" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "Antal ankare" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "Antalet ankare som är associerat med AtkHyperlink-objektet" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "Slutindex" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "Slutindexet för AtkHyperlink-objektet" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "Startindex" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "Startindexet för AtkHyperlink-objektet" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "ogiltig" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "genvägsetikett" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "varning" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "animering" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "pil" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "kalender" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "rityta" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "kryssruta" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "kryssmenypost" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "färgväljare" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "kolumnrubrik" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "komboruta" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "datumredigerare" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "skrivbordsikon" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "skrivbordsram" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "mätare" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "dialog" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "katalogpanel" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "rityta" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "filväljare" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "ifyllare" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "typsnittsväljare" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "ram" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "glaspanel" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "html-behållare" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "ikon" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "bild" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "intern ram" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "etikett" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "lagerpanel" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "lista" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "listpost" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "meny" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "menyrad" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "menypost" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "alternativpanel" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "sidflik" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "sidflikslist" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "panel" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "lösenordstext" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "popupmeny" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "förloppsmätare" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "tryckknapp" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "radioknapp" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "radiomenypost" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "rotpanel" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "radhuvud" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "rullningslist" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "rullningspanel" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "avskiljare" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "skjutreglage" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "delad panel" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "spinnknapp" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "statusrad" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "tabell" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "tabellcell" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "tabellkolumnhuvud" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "tabellradshuvud" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "avtagbar menypost" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "terminal" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "text" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "växlingsknapp" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "verktygsrad" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "verktygstips" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "träd" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "trädtabell" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "okänd" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "skrivbordsvy" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "fönster" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "huvud" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "fot" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "stycke" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "linjal" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "program" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "komplettera automatiskt" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "redigeringsrad" # Se http://www.nada.kth.se/dataterm/rek.html#a129 -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "inbyggd komponent" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "post" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "lista" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "rubrik" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "dokumentram" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "huvud" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "sida" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "sektion" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "redundant objekt" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "formulär" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "länk" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "inmatningsmetodfönster" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "tabellrad" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "trädobjekt" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "dokument kalkylark" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "dokument presentation" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "dokument text" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "dokument webb" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "dokument e-post" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "kommentar" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "listruta" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "gruppering" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "bildkarta" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "notifiering" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "informationsrad" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "Tillgängligt namn" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "Objektinstansens namn formaterat för åtkomst av hjälpmedelsteknik" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "Tillgänglig beskrivning" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "Beskrivning av ett objekt, formaterat för åtkomst av hjälpmedelsteknik" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "Tillgänglig förälder" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "Används för att meddela att föräldern har ändrats" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "Tillgängligt värde" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "Används för att meddela att värdet har ändrats" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "Tillgänglig roll" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "Den tillgängliga rollen för detta objekt" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "Tillgängligt lager" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "Det tillgängliga lagret för detta objekt" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "Tillgängligt MDI-värde" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "Det tillgängliga MDI-värdet för detta objekt" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "Tillgänglig tabellrubrik" -#: atk/atkobject.c:546 -msgid "" -"Is used to notify that the table caption has changed; this property should " -"not be used. accessible-table-caption-object should be used instead" -msgstr "" -"Används för att meddela att tabellrubriken har ändrats; denna egenskap ska " -"inte användas. accessible-table-caption-object ska användas istället" +#: ../atk/atkobject.c:572 +msgid "Is used to notify that the table caption has changed; this property should not be used. accessible-table-caption-object should be used instead" +msgstr "Används för att meddela att tabellrubriken har ändrats; denna egenskap ska inte användas. accessible-table-caption-object ska användas istället" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "Tillgängligt tabellkolumnhuvud" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "Används för att meddela att tabellkolumnrubriken har ändrats" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "Tillgänglig tabellkolumnbeskrivning" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "Används för att meddela att tabellkolumnbeskrivningen har ändrats" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "Tillgängligt tabellradshuvud" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "Används för att meddela att tabellradshuvudet har ändrats" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "Tillgänglig tabellradsbeskrivning" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "Används för att meddela att tabellradsbeskrivningen har ändrats" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "Tillgänglig tabellsammanfattning" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "Används för att meddela att tabellsammanfattningen har ändrats" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "Tillgängligt tabellrubriksobjekt" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "Används för att meddela att tabellrubriken har ändrats" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "Antal tillgängliga hypertextlänkar" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "Antalet länkar som den aktuella AtkHypertext har" + Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/ta.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/ta.gmo differ diff -Nru atk1.0-1.30.0/po/ta.po atk1.0-2.2.0/po/ta.po --- atk1.0-1.30.0/po/ta.po 2009-12-21 07:05:32.000000000 +0000 +++ atk1.0-2.2.0/po/ta.po 2011-09-19 17:06:54.000000000 +0000 @@ -7,530 +7,600 @@ # Jayaradha N , 2004. # Felix , 2006, 2007. # I. Felix , 2009. +# I Felix , 2011. msgid "" msgstr "" "Project-Id-Version: atk.HEAD.ta\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-03-04 15:16+0530\n" -"Last-Translator: I. Felix \n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" +"product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-08-16 17:08+0000\n" +"PO-Revision-Date: 2011-09-08 18:17+0530\n" +"Last-Translator: I Felix \n" "Language-Team: Tamil \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.11.4\n" -"Plural-Forms: nplurals=2; plural=(n!=1);\\n\n" +"X-Generator: Lokalize 1.2\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\\n" "\n" "\n" "\n" "\n" "\n" +"\n" +"Language: ta\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "தேர்ந்தெடுக்கப்பட்ட இணைப்பு" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "AtkHyperlink பொருள் தேர்வு செய்யப்பட்டதா என குறிப்பிடவும்" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "இணைப்புகளின் எண்ணிக்கை" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "AtkHyperlink பொருளோடு தொடர்புடைய இணைப்புகளின் எண்ணிக்கை" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "முடிவு அகரவரிசை" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "AtkHyperlink பொருளின் முடிவு அகரவரிசை" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "துவக்க அகரவரிசை" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "AtkHyperlink பொருளின் துவக்க அகரவரிசை" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "தவறானது" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "முடக்கி பெயர்" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "எச்சரிக்கை" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "உயிராக்கம்" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "அம்புக்குறி" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "நாள்காட்டி" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "கேன்வாஸ்" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "சோதனைப்பெட்டி" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "பட்டி உறுப்புகளை சோதித்தல்" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "நிறத் தேர்வி" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "நிரல் தலைப்பு" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "தேர்வுப்பெட்டி" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "தேதி தொகுப்பி" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "பணிமேடை சின்னம்" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "பணிமேடை சட்டம்" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "டயல்" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "உரையாடல்" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "அடைவுப் பகுதி" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "வரையும் பகுதி" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "கோப்பு தேர்வி" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "நிரப்பி" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "எழுத்துரு தேர்வி" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "சட்டம்" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "கண்ணாடி பகுதி" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "html பெட்டகம்" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "சின்னம்" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "உருவம்" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "உள்ளமை சட்டம்" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "பெயர்" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "அடுக்கிடப்பட்ட பகுதி" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "பட்டியல்" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "பட்டியல் உறுப்பு" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "பட்டி" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "பட்டி பட்டை" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "பட்டி உறுப்பு" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "விருப்பப் பகுதி" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "பக்கத் தத்தல்" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "பக்கத் தத்தல் பட்டியல்" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "பலகம்" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "கடவுச்சொல் உரை" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "கீழ்விரிப் பட்டி" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "முன்னேற்ற பட்டி" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "அழுத்தும் பொத்தான்" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "தேர்வு பொத்தான்" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "தேர்வு பட்டி உறுப்பு" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "மூலப் பகுதி" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "நிரை தலைப்பு" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "உருள் பட்டை" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "உருள் பகுதி" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "பிரிப்பி" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "ஸ்லைடர்" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "பிரிப்புப் பகுதி" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "சுழல் பொத்தான்" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "நிலைப்பட்டை" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "அட்டவணை" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "அட்டவணை அறை" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "அட்டவணை நிரல் தலைப்பு" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "அட்டவணை நிரை தலைப்பு" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "tear off பட்டி உறுப்பு" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "முனையம்" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "உரை" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "மாற்றி பொத்தான்" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "கருவிப்பட்டை" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "கருவிக் குறிப்பு" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "கிளை" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "கிளை அட்டவணை" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "தெரியாதது" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "viewport" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "சாளரம்" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "தலைப்பு" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "அடிக்குறிப்பு" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "பத்தி" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "அளவீடு" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "பயன்பாடு" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "தானாக முடித்தல்" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "திருத்தும் பட்டி" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "உட்பொதிந்த பொருள்" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "உள்ளீடு" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "வரைபடம்" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "தலைப்பு" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "ஆவண சட்டம்" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "தலைப்பு" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "பக்கம்" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "பிரிவு" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "மிகை பொருள்" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "படிவம்" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "இணைப்பு" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "உள்ளீடு முறை சாளரம்" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +#| msgid "table row header" +msgid "table row" +msgstr "அட்டவணை நிரை" + +#: ../atk/atkobject.c:164 +#| msgid "tree table" +msgid "tree item" +msgstr "கிளை உருப்படி" + +#: ../atk/atkobject.c:165 +#| msgid "document frame" +msgid "document spreadsheet" +msgstr "ஆவண விரிதாள்" + +#: ../atk/atkobject.c:166 +#| msgid "document frame" +msgid "document presentation" +msgstr "ஆவண வழங்கல்" + +#: ../atk/atkobject.c:167 +#| msgid "document frame" +msgid "document text" +msgstr "ஆவண உரை" + +#: ../atk/atkobject.c:168 +#| msgid "document frame" +msgid "document web" +msgstr "ஆவண வலை" + +#: ../atk/atkobject.c:169 +#| msgid "document frame" +msgid "document email" +msgstr "ஆவண மின்னஞ்சல்" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "கருத்து" + +#: ../atk/atkobject.c:171 +#| msgid "list" +msgid "list box" +msgstr "பட்டியல் பெட்டி" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "தொகுத்தல்" + +#: ../atk/atkobject.c:173 +#| msgid "image" +msgid "image map" +msgstr "பட மேப்" + +#: ../atk/atkobject.c:174 +#| msgid "animation" +msgid "notification" +msgstr "அறிவிப்பு" + +#: ../atk/atkobject.c:175 +#| msgid "menu bar" +msgid "info bar" +msgstr "தகவல் பட்டை" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "அணுகக்கூடிய பெயர்" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "தொழில்நுட்ப அணுகலுக்காக நிகழ்வின் பெயர் வடிவமைக்கப்பட்டது" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "அணுகக்கூடிய விளக்கம்" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "தொழில் நுட்ப அணுகலுக்காக வடிவமைக்கப்பட்ட பொருளின் விளக்கம்" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "அணுகக்கூடிய முதன்மை" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "முதன்மை அடைவு மாற்றப்பட்டதா என்பதை குறிப்பிட பயன்படும்" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "அணுகக்கூடிய மதிப்பு" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "மதிப்பு மாற்றப்பட்டதா என்பதை தெரிந்து கொள்ள பயன்படும்" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "அணுகக்கூடிய பங்களிப்பு" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "பொருளின் அணுகக்கூடிய பங்களிப்பு" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "அணுகக்கூடிய அடுக்கு" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "இந்தப் பொருளின் அணுகக்கூடிய அடுக்கு" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "அணுகக்கூடிய MDI மதிப்பு" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "இந்தப் பொருளின் அணுகக்கூடிய MDI மதிப்பு" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "அணுகக்கூடிய அட்டவணை தலைப்பு" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" msgstr "" -"இது பட்டியலின் தலைப்பு மாற்றப்பட்டதை அறிவிக்க பயன்படும்; அதற்குப் பதிலாக அணுகக்கூடிய-" +"இது பட்டியலின் தலைப்பு மாற்றப்பட்டதை அறிவிக்க பயன்படும்; அதற்குப் பதிலாக " +"அணுகக்கூடிய-" "அட்டவணை-தலைப்பு-பொருள் என பயன்படுத்த வேண்டும்" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "அணுகக்கூடிய அட்டவணை நிரல் தலைப்பு" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "இது அட்டவணை நிரல் தலைப்பு மாற்றப்பட்டதைக் குறிக்க பயன்படும்" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "அணுகக்கூடிய அட்டவணை நிரல் விளக்கம்" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "இது அட்டவணை தலைப்பு விளக்கம் மாற்றப்பட்டதை அறிவிக்க பயன்படும்" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "அணுகக்கூடிய நிரல் அட்டவணை தலைப்பு" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "அட்டவணை நிரை தலைப்பு மாற்றப்பட்டதை அறிவிக்க பயன்படும்" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "அணுகக்கூடிய அட்டவணை நிரை விளக்கம்" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "அணுகக்கூடிய அட்டவணை நிரை விளக்கம் மாற்றப்பட்டதைக் குறிக்க பயன்படும்" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "அணுகக்கூடிய அட்டவணை சுருக்கம்" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "அட்டவணை சுருக்கம் மாற்றப்பட்டதைக் குறிப்பிட பயன்படும்" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "அணுகக்கூடிய அட்டவணை தலைப்பு பொருள்" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "அட்டவணை தலைப்பு மாற்றப்பட்டதைக் குறிப்பிட பயன்படும்" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "அணுகக்கூடிய மீஉரை இணைப்புகளின் எண்ணிக்கை" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "தற்போதைய AtkHypertஇல் உள்ள இணைப்புகளின் எண்ணிக்கை" + + Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/te.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/te.gmo differ diff -Nru atk1.0-1.30.0/po/te.po atk1.0-2.2.0/po/te.po --- atk1.0-1.30.0/po/te.po 2009-12-21 07:05:32.000000000 +0000 +++ atk1.0-2.2.0/po/te.po 2011-09-19 17:06:54.000000000 +0000 @@ -4,526 +4,594 @@ # Copyright (C) Sree Ganesh , 2006. # # Krishna Babu K , 2009. +# Krishnababu Krothapalli , 2011. msgid "" msgstr "" "Project-Id-Version: te\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-03-03 11:24+0530\n" -"Last-Translator: Krishna Babu K \n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug." +"cgi?product=atk&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-08-16 17:08+0000\n" +"PO-Revision-Date: 2011-08-29 17:28+0530\n" +"Last-Translator: Krishnababu Krothapalli \n" "Language-Team: Telugu \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.11.4\n" +"X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" "\n" +"Language: te\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" -msgstr "ఎన్నుకోబడిన లింకు" +msgstr "ఎన్నుకోబడిన లంకె" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "ఎటికె అధిబంధ విషయం ఎన్నికచేయబడిందా తెల్పండి" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "ఏంకర్ల సంఖ్య" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "ఏంకర్ల సంఖ్య ఎటికె అధిబంధ విషయంతో కూడిఉంది" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "విషయ సూచిక సమాప్తి" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "ఎటికె అధిబంధ విషయ సూచిక చివర" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "విషయసూచికను ప్రారంభించు" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "ఏటికె అధిబంధ విషయ సూచిక ప్రారంభం" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "విలువలేనిది" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" -msgstr "వేగకారి గుర్తింపు" +msgstr "వేగకారి లేబుల్" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "జాగరూకత" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "యానిమేషన్" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "బాణం" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "కాలెండరు" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "కాన్వాసు" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" -msgstr "శోధక పేటిక" +msgstr "చెక్‌ బాక్స్" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" -msgstr "మెనూ విషయాన్ని శోధించు" +msgstr "మెనూ అంశమును చెక్‌చేయి" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" -msgstr "వర్ణ నిర్ధారిణి" +msgstr "రంగు యెంచుకొనునది" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" -msgstr "కాలమ్ శీర్షిక" +msgstr "నిలువు వరుస యెగువసూచి" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" -msgstr "కాంబో పెట్టి" +msgstr "కాంబో బాక్స్" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "తేదీ కూర్పరి" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" -msgstr "రంగస్థల రూపు" +msgstr "రంగస్థలం ప్రతిమ" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" -msgstr "రంగస్థల చట్రం" +msgstr "రంగస్థలం చట్రం" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "ముఖసూచిక" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "సంభాషణ" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" -msgstr "డైరెక్టరీ పేను" +msgstr "డైరెక్టరీ పేన్" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "చిత్రలేఖన ప్రాంతం" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" -msgstr "ఫైలును నిర్ణేత" +msgstr "ఫైలు యెంపికచేయునది" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "పూరకం" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" -msgstr "ఫాంటు నిర్ణేత" +msgstr "ఫాంటు యెంపికచేయునది" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "చట్రం" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" -msgstr "గ్లాసు పనే" +msgstr "గ్లాసు పేన్" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "html వాహిక" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" -msgstr "రూపు" +msgstr "ప్రతిమ" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" -msgstr "చిత్రం" +msgstr "ప్రతిరూపం" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "అంతర్గత చట్రం" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "లేబులు" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" -msgstr "స్తరిత పనే" +msgstr "స్తరిత పేన్" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "జాబితా" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" -msgstr "జాబితా విషయం" +msgstr "జాబితా అంశం" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "జాబితా" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" -msgstr "జాబితా బారు" +msgstr "జాబితా పట్టీ" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" -msgstr "జాబితా విషయం" +msgstr "జాబితా అంశం" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" -msgstr "ఐచ్ఛిక పనే" +msgstr "ఐచ్ఛిక పేన్" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" -msgstr "పుట టాబ్" +msgstr "పేజీ టాబ్" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" -msgstr "పుట టాబ్ జాబితా" +msgstr "పేజీ టాబ్ జాబితా" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" -msgstr "పనేల్" +msgstr "పేనల్" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" -msgstr "అనుమతిపద పాఠం" +msgstr "సంకేతపదం పాఠం" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "పాపప్ మెనూ" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" -msgstr "అబివౄద్ధి సూచిక" +msgstr "అబివృద్ధి సూచిక" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "మీటను నొక్కండి" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" -msgstr "రేదియో మీట" +msgstr "రేడియో మీట" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" -msgstr "రేడియో జాబితా విషయం" +msgstr "రేడియో జాబితా అంశం" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" -msgstr "రూట్ పనే" +msgstr "రూట్ పేన్" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" -msgstr "రో శీర్షిక" +msgstr "అడ్డువరుస యెగువసూచి" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" -msgstr "స్క్రోలు బారు" +msgstr "స్కోల్ బార్" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" -msgstr "స్క్రోలు పనే" +msgstr "స్క్రోల్ పేన్" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "వేర్పరి" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "స్లైడరు" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" -msgstr "విడి పనే" +msgstr "చీల్చు పేన్" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "స్పిన్ మీట" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" -msgstr "స్థితి పట్టీ" +msgstr "స్థితిపట్టీ" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "పట్టిక" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" -msgstr "పట్టీ గడి" +msgstr "పట్టిక అర" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" -msgstr "పట్టిక కాలమ్ శీర్షిక" +msgstr "పట్టిక నిలువువరుస యెగువసూచి" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" -msgstr "పట్టిక రో శీర్షిక" +msgstr "పట్టిక అడ్డువరుస యెగువసూచి" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" -msgstr "జాబితా అంశ భాగం" +msgstr "మెనూ అంశం చించివేయి" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "టెర్మినలు" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "పాఠం" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" -msgstr "టోగ్లె మీట" +msgstr "టోగుల్ మీట" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" -msgstr "ఉపకరణ పట్టీ" +msgstr "సాధన పట్టీ" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" -msgstr "ఉపకరణ సూచి" +msgstr "సాధన చిట్కా" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" -msgstr "వృక్షం" +msgstr "ట్రీ" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" -msgstr "వృక్ష పట్టిక" +msgstr "ట్రీ పట్టిక" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "తెలియని" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "దృశ్యపోర్టు" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "విండో" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" -msgstr "శీర్షిక" +msgstr "ఎగువ సూచి" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" -msgstr "పాదుక" +msgstr "దిగువ సూచి" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "పేరా" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" -msgstr "రూలర్" +msgstr "కొలమానం" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "అనువర్తనం" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" -msgstr "స్వీయసంమాప్తి" +msgstr "స్వయంసమాప్తి" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" -msgstr "కూర్చు మీట" +msgstr "కూర్చు పట్టి" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" -msgstr "ఉంచిన మూలకం" +msgstr "ఎంబెడెడ్ మూలకం" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "ప్రవేశం" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "చార్టు" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "శీర్షిక" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "పత్ర చట్రం" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" -msgstr "శీర్షిక" +msgstr "ఎగువ సూచి" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" -msgstr "పుట" +msgstr "పేజీ" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "విభాగం" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" -msgstr "వ్యర్ధ వస్తువు" +msgstr "రిడండెంట్ ఆబ్జక్ట్" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "రూపం" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" -msgstr "లింకు" +msgstr "లంకె" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "ఇన్పుట్ పద్దతి విండో" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +#| msgid "table row header" +msgid "table row" +msgstr "పట్టిక అడ్డువరుస" + +#: ../atk/atkobject.c:164 +#| msgid "tree table" +msgid "tree item" +msgstr "ట్రీ అంశం" + +#: ../atk/atkobject.c:165 +#| msgid "document frame" +msgid "document spreadsheet" +msgstr "పత్ర స్ప్రెడ్‌షీట్" + +#: ../atk/atkobject.c:166 +#| msgid "document frame" +msgid "document presentation" +msgstr "పత్ర సమర్పణ" + +#: ../atk/atkobject.c:167 +#| msgid "document frame" +msgid "document text" +msgstr "పత్ర పాఠం" + +#: ../atk/atkobject.c:168 +#| msgid "document frame" +msgid "document web" +msgstr "పత్ర వెబ్" + +#: ../atk/atkobject.c:169 +#| msgid "document frame" +msgid "document email" +msgstr "పత్ర ఈమెయిల్" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "వ్యాఖ్యానము" + +#: ../atk/atkobject.c:171 +#| msgid "list" +msgid "list box" +msgstr "జాబితా పెట్టె" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "సమూహీకరణ" + +#: ../atk/atkobject.c:173 +#| msgid "image" +msgid "image map" +msgstr "ప్రతిరూప పటం" + +#: ../atk/atkobject.c:174 +#| msgid "animation" +msgid "notification" +msgstr "ప్రకటన" + +#: ../atk/atkobject.c:175 +#| msgid "menu bar" +msgid "info bar" +msgstr "సమాచార పట్టీ" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "అందుబాటులోని పేరు" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" -msgstr "సహాయక సాంకేతికత అందుబాటుకు ఆకృతీకరించబడిన వస్తువు యొక్క సంకేత నామం" +msgstr "సహాయక సాంకేతికత అందుబాటుకు ఆకృతీకరించబడిన వస్తువు యొక్క సంకేత పేరు" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" -msgstr "సరైన వర్ణన" +msgstr "అందుబాటగు వర్ణన" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" -msgstr "విషయం యొక్క వివరణ, సాంకేతిక సహాయతకోసం ఆకృతీకరించబడింది" +msgstr "విషయం యొక్క వివరణ, సాంకేతిక సహాయతకోసం రూపుదిద్దబడింది" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "అందుబాటులోని మాతృక" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "మాతృక మారిందని చెప్పటానికి ఉపయోగపడుతుంది" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "సరైన విలువ" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "విలువ మారిందని చెప్పటానికి ఉపయోగపడుతుంది" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "గుర్తించదగ్గ పాత్ర" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "ఈ వస్తువుయొక్క గుర్తించదగ్గ పాత్ర" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "అందుబాటులో ఉన్న స్థరం" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "ఈ వస్తువు యొక్క అందుబాటులోని స్థరం" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "సరైన ఎండిఐ విలువ" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "ఈ వస్తువు యొక్క సరైన ఎండిఐ విలువ" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "సరైన పట్టిక శీర్షిక" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" msgstr "" -"మీరు పట్టిక శీర్షిక మారిందని గమనిస్తే; ఈ లక్షణాన్ని ఉపయోగించకండి. దానికి బదులు accessible-table-" +"మీరు పట్టిక శీర్షిక మారిందని గమనిస్తే; ఈ లక్షణాన్ని ఉపయోగించకండి. దానికి " +"బదులు accessible-table-" "caption-object ఉపయోగించాలి" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" -msgstr "సరైన పట్టిక కాలమ్ శీర్షిక" +msgstr "సరైన పట్టిక నిలువ వరుస యెగువ సూచి" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" -msgstr "పట్టిక కాలమ్ శీర్షిక మార్చబడిందని సూచించబడింది" +msgstr "పట్టిక నిలువవరుస యెగువసూచి మార్చబడిందని సూచించబడింది" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" -msgstr "సరైన పట్టిక కాలమ్ వర్ణన" +msgstr "సరైన పట్టిక నిలువవరుస వర్ణన" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "పట్టిక కాలమ్ వర్ణన మార్చబడిందని సూచించబడింది" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "సరైన పట్టిక రో శీర్షిక" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "పట్టిక కాలమ్ రో శీర్షిక మార్చబడిందని సూచించబడింది" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" -msgstr "సరైన పట్టిక రో వర్ణన" +msgstr "సరైన పట్టిక అడ్డువరుస వర్ణన" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" -msgstr "పట్టిక రో వర్ణన మార్చబడిందని సూచించబడింది" +msgstr "పట్టిక అడ్డువరుస వర్ణన మార్చబడిందని సూచించబడింది" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "అందుబాటులోఉన్న పట్టిక సంక్షిప్తత" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "పట్టిక సంక్షిప్తత మార్చబడిందని సూచించబడింది" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "అందుబాటులోఉన్న పట్టిక శీర్షికా వస్తువు" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "పట్టిక శీర్షిక మార్చబడిందని సూచించబడింది" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" -msgstr "అందుబాటులోఉన్న అధిపాఠ లింకుల సంఖ్య" +msgstr "అందుబాటులోఉన్న అధిపాఠ లంకెల సంఖ్య" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" -msgstr "ప్రస్తుత ఎటికె అధిపాఠం కలిగిఉన్న లింకుల సంఖ్య" +msgstr "ప్రస్తుత ఎటికె అధిపాఠం కలిగిఉన్న లంకెల సంఖ్య" + Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/ug.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/ug.gmo differ diff -Nru atk1.0-1.30.0/po/ug.po atk1.0-2.2.0/po/ug.po --- atk1.0-1.30.0/po/ug.po 2009-12-21 07:05:32.000000000 +0000 +++ atk1.0-2.2.0/po/ug.po 2011-09-19 17:06:54.000000000 +0000 @@ -1,532 +1,523 @@ # translation of atk to Uighur # This file is distributed under the same license as the PACKAGE package. # Gheyret T.Kenji , 2005. +# Sahran , 2010 # msgid "" msgstr "" "Project-Id-Version: atk 2.12 \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=atk&component=general\n" +"POT-Creation-Date: 2010-12-23 17:27+0000\n" "PO-Revision-Date: 2005-06-17 13:10+0000\n" -"Last-Translator: Gheyret Tohti \n" -"Language-Team: Gnome Uighur Translation Project \n" +"Last-Translator: Sahran \n" +"Language-Team: Gnome Uighur Translation Project \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" -msgstr "تاللانغان ئۇلىنىش" +msgstr "تاللانغان ئۇلانما" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" -msgstr "AtkHyperlink ئوبجېكىتى تاللاندىمۇ كۆرسىتىش" +msgstr "AtkHyperlink ئوبيېكت تاللانغان تاللانمىغانلىقىنى كۆرسەت" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" -msgstr "Anchors لارنىڭ سانى" +msgstr "لەڭگەر سانى" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "AtkHyperlink بىلەن باغلىنىشلىق بولغان anchor لارنىڭ سانى" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" -msgstr "ئاخىرلىشىش نۇمۇرى" +msgstr "ئاخىرلىشىش ئىندېكسى" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" -msgstr "AtkHyperlink ئوبجېكىتنىڭ ئاخىرلىشىش نۇمۇرى" +msgstr "AtkHyperlink ئوبيېكتنىڭ ئاخىرلىشىش ئىندېكسى" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" -msgstr "باشلىنىش نۇمۇرى" +msgstr "باشلىنىش ئىندېكسى" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" -msgstr "AtkHyperlink ئوبجېكىتىنىڭ باشلىنىش نۇمۇرى" +msgstr "AtkHyperlink ئوبيېكتىنىڭ باشلىنىش ئىندېكسى" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "ئىناۋەتسىز" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" -msgstr "تېزلەتكۈچنىڭ label ى " +msgstr "تېزلەتكۈچنىڭ ئېنى" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" -msgstr "ئەسكەرتىش" +msgstr "ئاگاھلاندۇرۇش" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" -msgstr "" +msgstr "جانلاندۇرۇم" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" -msgstr "ئىستىرېلكا" +msgstr "يا ئوق" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" -msgstr "كالېندار" +msgstr "يىلنامە" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" -msgstr "كانۋاس" +msgstr "رەسىم رەختى" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" -msgstr "check box" +msgstr "تاللاش كۆزنەكچىسى" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" -msgstr "check menu item" +msgstr "تىزىملىك تۈرىنى تاللا" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "رەڭ تاللىغۇچ" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" -msgstr "ستون قېشى" +msgstr "ئىستون قېشى" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" -msgstr "combo box" +msgstr "بىرىكمە رامكا" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" -msgstr "چىسلا تەھرىرلىگۈچ" +msgstr "چېسلا تەھرىرلىگۈچ" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" -msgstr "desktop تۇغى" +msgstr "ئۈستەلئۈستى سىنبەلگە" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" -msgstr "desktop كۆزنىكى" +msgstr "ئۈستەلئۈستى كۆزنىكى" -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" -msgstr "" +msgstr "نومۇر بۇراش" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" -msgstr "كۆزنەك" +msgstr "سۆزلەشكۈ" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "مۇندەرىجە پەنجىرىسى" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" -msgstr "سىزىش دائىرىسى" +msgstr "سىزمىچىلىق دائىرىسى" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "ھۆججەت تاللىغۇچ" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "تولدۇرغۇچ" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" -msgstr "فونت تاللىغۇچ" +msgstr "خەت نۇسخا تاللىغۇچ" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "كۆزنەك" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "ئەينەك پەنجىرە" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "HTML ساندۇقى" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" -msgstr "تۇغ" +msgstr "سىنبەلگە" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" -msgstr "رەسىم" +msgstr "سۈرەت" -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "ئىچكى كۆزنەك" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" -msgstr "label" +msgstr "ئەن" -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "قەۋەتلىك پەنجىرە" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" -msgstr "تىزىملىك" +msgstr "تىزىم" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" -msgstr "تىزىملىك ئەزالىرى" +msgstr "تىزىم تۈرى" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" -msgstr "مېنيۇ" +msgstr "تىزىملىك" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" -msgstr "مېنيۇ بالدىقى" +msgstr "تىزىملىك بالدىقى" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" -msgstr "مېنيۇ ئەزالىرى" +msgstr "تىزىملىك تۈرى" -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" -msgstr "تاللاش پەنجىرىسى" +msgstr "تاللانما پەنجىرىسى" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" -msgstr "بەت tab" +msgstr "بەتكۈچ" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" -msgstr "بەت tab تىىزىملىكى" +msgstr "بەتكۈچ تىزىملىكى" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" -msgstr "تاختاي" +msgstr "تاختا" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" -msgstr "پارول" +msgstr "ئىم تېكىست" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" -msgstr "سەكرىمە مېنيۇ" +msgstr "قاڭقىش تىزىملىكى" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" -msgstr "ئىلگىرلىمە بالدىقى" +msgstr "ئىلگىرىلەش بالدىقى" -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" -msgstr "بېسىلما كۇنۇوكا" +msgstr "بېسىلما توپچا" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" -msgstr "رادىئو كۇنۇپكىسى" +msgstr "تاق تاللاش توپچا" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" -msgstr "radio menu item" +msgstr "تاق تاللاش تىزىملىك تۈرى" -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "يىلتىز پەنجىرە" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "قۇر ماۋزۇسى" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" -msgstr "سېرىگۈچ بالدىقى" +msgstr "سىيرىغۇچ بالداق" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" -msgstr "سېرىگۈچ پەنجىرىسى" +msgstr "سىيرىغۇچ پەنجىرە" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "ئايرىغۇچ" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" -msgstr "سېرىگۈچ" +msgstr "سۈرگۈچ" -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "ئايرىغۇچ پەنجىرىسى" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" -msgstr "spin button" +msgstr "چىغ توپچا" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" -msgstr "ھالەت قۇرى" +msgstr "ھالەت بالداق" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" -msgstr "جەدىۋەل" +msgstr "جەدۋەل" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" -msgstr "كاتەك" +msgstr "جەدۋەل كاتەكچە" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" -msgstr "جەدىۋەل سىتونىنىڭ قېشى" +msgstr "جەدۋەل ئىستونىنىڭ قېشى" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" -msgstr "جەدىۋەل قۇرىنىڭ قېشى" +msgstr "جەدۋەل قۇرىنىڭ قېشى" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" -msgstr "menu item نىڭ تامچىسى" +msgstr "تىزىملىك تۈرىنى يىرتماق" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "تېرمىنال" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "تېكىست" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" -msgstr "toggle button" +msgstr "ئالماشتۇرغۇچ توپچا" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "قورال بالدىقى" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" -msgstr "كۆرسەتمە" +msgstr "قورال ئەسكەرتىشى" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "شاخسىمان" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" -msgstr "شاخسىمان جەدىۋەل" +msgstr "شاخسىمان جەدۋەل" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "نامەلۇم" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" -msgstr "viewport" +msgstr "كۆرۈنۈش ئېغىزى" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" -msgstr "رامكا" +msgstr "كۆزنەك" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "قاش" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" -msgstr "footer" +msgstr "بەت ئاستى" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" -msgstr "ئابزاز" +msgstr "ئابزاس" -#: atk/atkobject.c:147 -#, fuzzy +#: ../atk/atkobject.c:147 msgid "ruler" -msgstr "ئەسكەرتىش" +msgstr "سىزغۇچ" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "پروگرامما" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" -msgstr "ئاپتوماتىك تاماملاش" +msgstr "ئۆزلۈكىدىن تاماملا" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "تەھرىرلەش بالدىقى" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" -msgstr "سىڭدۈرۋېتىلگەن component" +msgstr "سىڭدۈرمە دېتال" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" -msgstr "" +msgstr "كىرگۈز" -#: atk/atkobject.c:153 -#, fuzzy +#: ../atk/atkobject.c:153 msgid "chart" -msgstr "ئەسكەرتىش" +msgstr "دىئاگرامما" -#: atk/atkobject.c:154 -#, fuzzy +#: ../atk/atkobject.c:154 msgid "caption" -msgstr "پروگرامما" +msgstr "ماۋزۇ" -#: atk/atkobject.c:155 -#, fuzzy +#: ../atk/atkobject.c:155 msgid "document frame" -msgstr "desktop كۆزنىكى" +msgstr "پۈتۈك كاندۇكى" -#: atk/atkobject.c:156 -#, fuzzy +#: ../atk/atkobject.c:156 msgid "heading" -msgstr "قاش" +msgstr "ماۋزۇ" -#: atk/atkobject.c:157 -#, fuzzy +#: ../atk/atkobject.c:157 msgid "page" -msgstr "رەسىم" +msgstr "بەت" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" -msgstr "" +msgstr "دائىرە" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" -msgstr "" +msgstr "ئارتۇقچە ئوبيېكت" -#: atk/atkobject.c:160 -#, fuzzy +#: ../atk/atkobject.c:160 msgid "form" msgstr "كۆزنەك" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" -msgstr "" +msgstr "ئۇلانما" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" -msgstr "" +msgstr "كىرگۈزگۈچ كۆزنىكى" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:488 msgid "Accessible Name" -msgstr "Accessible ئىسىمى" +msgstr "Accessible نىڭ ئاتى" -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:489 msgid "Object instance's name formatted for assistive technology access" -msgstr "" +msgstr "قوشۇمچە تېخنىكىلىق ساقلاش ئۈچۈن ئوبيېكت ئەمەلىي مىسال ئاتى فورماتلاندى" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:495 msgid "Accessible Description" -msgstr "Accessible چۈشەندۈرۈلىشى" +msgstr "Accessible نىڭ چۈشەندۈرۈلۈشى" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:496 msgid "Description of an object, formatted for assistive technology access" -msgstr "" +msgstr "ئوبيېكت چۈشەندۈرۈشى، قوشۇمچە تېخنىكىلىق ساقلاش ئۈچۈن فورماتلاندى" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:502 msgid "Accessible Parent" -msgstr "Accessible ئاتا" +msgstr "زىيارەتچان ئاتا كونترول" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:503 msgid "Is used to notify that the parent has changed" -msgstr "ئاتىسىنىڭ ئۆزگەرگەنلىگىنى خەۋەر قىلىشقا ئىشلىتىلىدۇ" +msgstr "ئاتا كونترولنىڭ ئۆزگەرگەنلىكىنى خەۋەر قىلىشقا ئىشلىتىلىدۇ" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:509 msgid "Accessible Value" -msgstr "Accessible قىممەت" +msgstr "زىيارەتچان قىممەت" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:510 msgid "Is used to notify that the value has changed" -msgstr "مەزكۇر قىممەتنىڭ ئۆزگەرگەنلىگىنى خەۋەر قىلىشقا ئىشلىتىلىدۇ" +msgstr "مەزكۇر قىممەتنىڭ ئۆزگەرگەنلىكىنى خەۋەر قىلىشقا ئىشلىتىلىدۇ" -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:518 msgid "Accessible Role" -msgstr "Accessible رولى" +msgstr "زىيارەتچان رولى" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:519 msgid "The accessible role of this object" -msgstr "مەكۇر ئوبجېكىتنىڭ accessible رولى" +msgstr "مەزكۇر ئوبيېكتنىڭ زىيارەتچان رولى" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:527 msgid "Accessible Layer" -msgstr "Accessible قەۋەت" +msgstr "زىيارەتچان قەۋەت" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:528 msgid "The accessible layer of this object" -msgstr "مەزكۇر ئوبجېكىتنىڭ accessible قەۋىتى" +msgstr "مەزكۇر ئوبيېكتنىڭ زىيارەتچان قەۋىتى" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:536 msgid "Accessible MDI Value" -msgstr "Accessible MDI قىممىتى" +msgstr "زىيارەتچان MDI قىممىتى" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:537 msgid "The accessible MDI value of this object" -msgstr "مەزكۇر ئوبجېكىتنىڭ accessible MDI قىممىتى" +msgstr "مەزكۇر ئوبيېكتنىڭ زىيارەتچان MDI قىممىتى" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:545 msgid "Accessible Table Caption" -msgstr "Accessible جەدىۋەل تېمىسى" +msgstr "زىيارەتچان جەدۋەل تېمىسى" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:546 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" -msgstr "" +msgstr "جەدۋەل قېشى ئۆزگەرگەندە خەۋەر بېرىش ئۈچۈن ئىشلىتىلىدۇ. بۇنى ئىشلەتمەي accessible-table-caption-object ئىشلەتكەن ياخشى" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:552 msgid "Accessible Table Column Header" -msgstr "Accessible جەدىۋەل سىتون قېشى" +msgstr "زىيارەتچان جەدۋەل ئىستون قېشى" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:553 msgid "Is used to notify that the table column header has changed" -msgstr "جەدىۋەل سىتون قېشىنىڭ ئۆزگەرگەنلىگىنى خەۋەر قىلىشقا ئىشلىتىلىدۇ" +msgstr "جەدۋەل ئىستون قېشىنىڭ ئۆزگەرگەنلىكىنى خەۋەر قىلىشقا ئىشلىتىلىدۇ" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:559 msgid "Accessible Table Column Description" -msgstr "Accessible جەدىۋەل سىتونىنىڭ چۈشەندۈرۈلىشى" +msgstr "زىيارەتچان جەدۋەل ئىستونىنىڭ چۈشەندۈرۈلۈشى" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:560 msgid "Is used to notify that the table column description has changed" -msgstr "" -"جەدىۋەل سىتونىنىڭ چۈشەندۈرىشىنىڭ ئۆزگەرگەنلىگىنى خەۋەر قىلىشقا ئىشلىتىلىدۇ" +msgstr "جەدۋەل ئىستونىنىڭ چۈشەندۈرۈشىنىڭ ئۆزگەرگەنلىكىنى خەۋەر قىلىشقا ئىشلىتىلىدۇ" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:566 msgid "Accessible Table Row Header" -msgstr "Accessible جەدىۋەل قۇر قېشى" +msgstr "زىيارەتچان جەدۋەل قۇر قېشى" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:567 msgid "Is used to notify that the table row header has changed" -msgstr "جەدىۋەل قۇر قېشىنىڭ ئۆزگەرگەنلىگىنى خەۋەر قىلىشقا ئىشلىتىلىدۇ" +msgstr "جەدۋەل قۇر قېشىنىڭ ئۆزگەرگەنلىكىنى خەۋەر قىلىشقا ئىشلىتىلىدۇ" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:573 msgid "Accessible Table Row Description" -msgstr "Accessible جەدىۋەل قۇرىنىڭ چۈشەندۈرۈلىشى" +msgstr "زىيارەتچان جەدۋەل قۇرىنىڭ چۈشەندۈرۈلۈشى" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:574 msgid "Is used to notify that the table row description has changed" -msgstr "" -"جەدىۋەل قۇرىنىڭ چۈشەندۈرىشىنىڭ ئۆزگەرگەنلىگىنى خەۋەر قىلىشقا ئىشلىتىلىدۇ" +msgstr "جەدۋەل قۇرىنىڭ چۈشەندۈرۈشىنىڭ ئۆزگەرگەنلىكىنى خەۋەر قىلىشقا ئىشلىتىلىدۇ" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:580 msgid "Accessible Table Summary" -msgstr "Accessible جەدىۋەل خۇلاسىسى" +msgstr "زىيارەتچان جەدۋەل خۇلاسىسى" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:581 msgid "Is used to notify that the table summary has changed" -msgstr "جەدىۋەل خۇلاسىسىنىڭ ئۆزگەرگەنلىگىنى خەۋەر قىلىشقا ئىشلىتىلىدۇ" +msgstr "جەدۋەل ئۈزۈندىسىنىڭ ئۆزگەرگەنلىكىنى خەۋەر قىلىشقا ئىشلىتىلىدۇ" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:587 msgid "Accessible Table Caption Object" -msgstr "Accessible جەدىۋەل تېما ئۆبجېكىتى" +msgstr "زىيارەتچان جەدۋەل تېما ئوبيېكتى" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:588 msgid "Is used to notify that the table caption has changed" -msgstr "جەدىۋەل تېمىسىنىڭ ئۆزگەرگەنلىگىنى خەۋەر قىلىشقا ئىشلىتىلىدۇ" +msgstr "جەدۋەل تېمىسىنىڭ ئۆزگەرگەنلىكىنى خەۋەر قىلىشقا ئىشلىتىلىدۇ" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:594 msgid "Number of Accessible Hypertext Links" -msgstr "Accessible Hypertext Links نىڭ سانى" +msgstr "زىيارەتچان مول تېكىست ئۇلانمىسىنىڭ سانى" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:595 msgid "The number of links which the current AtkHypertext has" msgstr "ھازىرقى AtkHypertext نىڭ ئۇلىنىشلىرىنىڭ سانى" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/zh_HK.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/zh_HK.gmo differ diff -Nru atk1.0-1.30.0/po/zh_HK.po atk1.0-2.2.0/po/zh_HK.po --- atk1.0-1.30.0/po/zh_HK.po 2009-12-21 07:05:32.000000000 +0000 +++ atk1.0-2.2.0/po/zh_HK.po 2011-09-19 17:06:54.000000000 +0000 @@ -5,535 +5,572 @@ # msgid "" msgstr "" -"Project-Id-Version: atk 1.25.2\n" +"Project-Id-Version: atk 2.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-02-25 19:57+0800\n" +"POT-Creation-Date: 2011-08-13 15:14+0800\n" +"PO-Revision-Date: 2011-08-13 15:14+0800\n" "Last-Translator: Chao-Hsiung Liao \n" "Language-Team: Chinese (Hong Kong) \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "選擇的連結" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "顯示 AtkHyperlink 物件是否被選擇" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "標定的數目" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "與 AtkHyperlink 物件有關的標定數目" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "結尾索引" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "AtkHyperlink 物件的結尾索引" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "起點索引" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "AtkHyperlink 物件的起點索引" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "無效" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "捷徑鍵標籤" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "警示" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "動畫" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "箭頭" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "月曆" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "畫布" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "核取方塊" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "核取選單項目" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "顏色選擇元件" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "欄位標頭" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "組合方塊" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "日期編輯器" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "桌面圖示" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "桌面框架" -# ATK_ROLE_DIAL An object whose purpose is to allow a user to set a value -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "設置值" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "對話盒" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "目錄窗格" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "繪圖區域" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "檔案選擇元件" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "填充元件" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "字型選擇元件" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "框架" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "頂層分格" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "HTML 容器元件" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "圖示" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "圖片" -# FIXME: This is just direct translation, and not what it should be -- Abel -# A frame-like object that is clipped by a desktop pane (Hsin) -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "內部框架" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "標籤" -# A specialized pane that allows its children to be drawn in layers, providing a form of stacking order -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "多層分格" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "清單" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "清單項目" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "選單" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "選單列" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "選單項目" -# A specialized pane whose primary use is inside a DIALOG -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "選項窗格" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "分頁標籤" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "分頁標籤清單" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "面板" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "密碼文字" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "彈出式選單" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "進度列" -# An object the user can manipulate to tell the application to do something -# 泛指一般按鈕 (Hsin) -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "按鈕" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "單選按鈕" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "單選選單項目" -# A specialized pane that has a glass pane and a layered pane as its children -# FIXME: It is almost impossible have any 'explaining' other then 'naming' (Hsin) -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "根窗格" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "列標頭" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "捲動列" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "捲動分格" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "分隔線" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "滑動鈕" -# A specialized panel that presents two other panels at the same time -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "分割窗格" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "微調按鈕" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "狀態列" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "表格" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "儲存格" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "表格直欄標頭" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "表格橫列標頭" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "卸下選單項目" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "終端機" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "文字" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "切換按鈕" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "工具列" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "工具提示" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "樹狀資料元件" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "樹狀資料表格" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "不明" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "視埠" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "視窗" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "頁首" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "頁尾" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "段落" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "水平線" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "應用程式" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "自動完成" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "編輯列" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "內嵌組成元件" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "項目" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "圖表" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "題目" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "文件框架" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "標題" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "頁" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "節" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "冗餘物件" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "表單" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "連結" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "輸入法視窗" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "表格列" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "樹狀項目" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "文件試算表" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "文件簡報" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "文件文字" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "文件網頁" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "文件郵件" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "註解" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "清單方塊" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "羣組" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "影像地圖" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "通知" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "資訊列" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "輔助鍵名稱" -# instance 可翻為'實例','案例','實體' I prefer 3 (hsin) -# assistive technology 翻為 輔助技術 -# (Abel) OK, 就用「實體」,好像多人用了 -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "已格式化的物件實體名稱,便於輔助技術存取" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "輔助鍵描述" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "已格式化的物件描述,便於輔助技術存取" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "輔助鍵母元件" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "用來知會母元件已有變動" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "輔助鍵設定值" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "用來知會該設定值已有變動" -# 我覺得 '類型' 或 '型態' 優於 '角色' 這樣的直譯 (Hsin) -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "輔助鍵類型" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "此物件的輔助鍵類型" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "輔助鍵層級" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "此物件的輔助鍵層級" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "輔助鍵 MDI 值" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "此物件的輔助鍵 MDI 值" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "輔助鍵表格標題" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" -msgstr "" -"用來知會表格標題已經改變;不應使用此屬性。應使用 accessible-table-caption-" -"object 代替" +msgstr "用來知會表格標題已經改變;不應使用此屬性。應使用 accessible-table-caption-object 代替" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "輔助鍵表格直欄標頭" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "用來知會表格直列標頭已變動" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "輔助鍵表格直欄描述" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "用來知會表格直欄描述以已變動" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "輔助鍵表格橫列標頭" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "用來知會表格橫列標頭已變動" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "輔助鍵表格橫列描述" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "用來知會表格橫列描述已變動" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "輔助鍵表格總結" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "用來知會表格總結描述已變動" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "輔助鍵表格標題物件" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "用來知會表格標題物件已變動" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "輔助鍵超連結總數" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "目前 AtkHypertext 含有的超連結數目" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/zh_TW.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/zh_TW.gmo differ diff -Nru atk1.0-1.30.0/po/zh_TW.po atk1.0-2.2.0/po/zh_TW.po --- atk1.0-1.30.0/po/zh_TW.po 2009-12-21 07:05:32.000000000 +0000 +++ atk1.0-2.2.0/po/zh_TW.po 2011-09-19 17:06:54.000000000 +0000 @@ -5,476 +5,515 @@ # msgid "" msgstr "" -"Project-Id-Version: atk 1.25.2\n" +"Project-Id-Version: atk 2.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-21 15:05+0800\n" -"PO-Revision-Date: 2009-02-23 20:10+0800\n" +"POT-Creation-Date: 2011-08-13 15:14+0800\n" +"PO-Revision-Date: 2011-08-13 14:37+0800\n" "Last-Translator: Chao-Hsiung Liao \n" "Language-Team: Chinese (Taiwan) \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: atk/atkhyperlink.c:103 +#: ../atk/atkhyperlink.c:103 msgid "Selected Link" msgstr "選擇的連結" -#: atk/atkhyperlink.c:104 +#: ../atk/atkhyperlink.c:104 msgid "Specifies whether the AtkHyperlink object is selected" msgstr "顯示 AtkHyperlink 物件是否被選擇" -#: atk/atkhyperlink.c:110 +#: ../atk/atkhyperlink.c:110 msgid "Number of Anchors" msgstr "標定的數目" -#: atk/atkhyperlink.c:111 +#: ../atk/atkhyperlink.c:111 msgid "The number of anchors associated with the AtkHyperlink object" msgstr "與 AtkHyperlink 物件有關的標定數目" -#: atk/atkhyperlink.c:119 +#: ../atk/atkhyperlink.c:119 msgid "End index" msgstr "結尾索引" -#: atk/atkhyperlink.c:120 +#: ../atk/atkhyperlink.c:120 msgid "The end index of the AtkHyperlink object" msgstr "AtkHyperlink 物件的結尾索引" -#: atk/atkhyperlink.c:128 +#: ../atk/atkhyperlink.c:128 msgid "Start index" msgstr "起點索引" -#: atk/atkhyperlink.c:129 +#: ../atk/atkhyperlink.c:129 msgid "The start index of the AtkHyperlink object" msgstr "AtkHyperlink 物件的起點索引" -#: atk/atkobject.c:74 +#: ../atk/atkobject.c:74 msgid "invalid" msgstr "無效" -#: atk/atkobject.c:75 +#: ../atk/atkobject.c:75 msgid "accelerator label" msgstr "捷徑鍵標籤" -#: atk/atkobject.c:76 +#: ../atk/atkobject.c:76 msgid "alert" msgstr "警示" -#: atk/atkobject.c:77 +#: ../atk/atkobject.c:77 msgid "animation" msgstr "動畫" -#: atk/atkobject.c:78 +#: ../atk/atkobject.c:78 msgid "arrow" msgstr "箭頭" -#: atk/atkobject.c:79 +#: ../atk/atkobject.c:79 msgid "calendar" msgstr "月曆" -#: atk/atkobject.c:80 +#: ../atk/atkobject.c:80 msgid "canvas" msgstr "畫布" -#: atk/atkobject.c:81 +#: ../atk/atkobject.c:81 msgid "check box" msgstr "核取方塊" -#: atk/atkobject.c:82 +#: ../atk/atkobject.c:82 msgid "check menu item" msgstr "核取選單項目" -#: atk/atkobject.c:83 +#: ../atk/atkobject.c:83 msgid "color chooser" msgstr "顏色選擇元件" -#: atk/atkobject.c:84 +#: ../atk/atkobject.c:84 msgid "column header" msgstr "欄位標頭" -#: atk/atkobject.c:85 +#: ../atk/atkobject.c:85 msgid "combo box" msgstr "組合方塊" -#: atk/atkobject.c:86 +#: ../atk/atkobject.c:86 msgid "dateeditor" msgstr "日期編輯器" -#: atk/atkobject.c:87 +#: ../atk/atkobject.c:87 msgid "desktop icon" msgstr "桌面圖示" -#: atk/atkobject.c:88 +#: ../atk/atkobject.c:88 msgid "desktop frame" msgstr "桌面框架" -# ATK_ROLE_DIAL An object whose purpose is to allow a user to set a value -#: atk/atkobject.c:89 +#: ../atk/atkobject.c:89 msgid "dial" msgstr "設置值" -#: atk/atkobject.c:90 +#: ../atk/atkobject.c:90 msgid "dialog" msgstr "對話盒" -#: atk/atkobject.c:91 +#: ../atk/atkobject.c:91 msgid "directory pane" msgstr "目錄窗格" -#: atk/atkobject.c:92 +#: ../atk/atkobject.c:92 msgid "drawing area" msgstr "繪圖區域" -#: atk/atkobject.c:93 +#: ../atk/atkobject.c:93 msgid "file chooser" msgstr "檔案選擇元件" -#: atk/atkobject.c:94 +#: ../atk/atkobject.c:94 msgid "filler" msgstr "填充元件" #. I know it looks wrong but that is what Java returns -#: atk/atkobject.c:96 +#: ../atk/atkobject.c:96 msgid "fontchooser" msgstr "字型選擇元件" -#: atk/atkobject.c:97 +#: ../atk/atkobject.c:97 msgid "frame" msgstr "框架" -#: atk/atkobject.c:98 +#: ../atk/atkobject.c:98 msgid "glass pane" msgstr "頂層分格" -#: atk/atkobject.c:99 +#: ../atk/atkobject.c:99 msgid "html container" msgstr "HTML 容器元件" -#: atk/atkobject.c:100 +#: ../atk/atkobject.c:100 msgid "icon" msgstr "圖示" -#: atk/atkobject.c:101 +#: ../atk/atkobject.c:101 msgid "image" msgstr "圖片" -# FIXME: This is just direct translation, and not what it should be -- Abel -# A frame-like object that is clipped by a desktop pane (Hsin) -#: atk/atkobject.c:102 +#: ../atk/atkobject.c:102 msgid "internal frame" msgstr "內部框架" -#: atk/atkobject.c:103 +#: ../atk/atkobject.c:103 msgid "label" msgstr "標籤" -# A specialized pane that allows its children to be drawn in layers, providing a form of stacking order -#: atk/atkobject.c:104 +#: ../atk/atkobject.c:104 msgid "layered pane" msgstr "多層分格" -#: atk/atkobject.c:105 +#: ../atk/atkobject.c:105 msgid "list" msgstr "清單" -#: atk/atkobject.c:106 +#: ../atk/atkobject.c:106 msgid "list item" msgstr "清單項目" -#: atk/atkobject.c:107 +#: ../atk/atkobject.c:107 msgid "menu" msgstr "選單" -#: atk/atkobject.c:108 +#: ../atk/atkobject.c:108 msgid "menu bar" msgstr "選單列" -#: atk/atkobject.c:109 +#: ../atk/atkobject.c:109 msgid "menu item" msgstr "選單項目" -# A specialized pane whose primary use is inside a DIALOG -#: atk/atkobject.c:110 +#: ../atk/atkobject.c:110 msgid "option pane" msgstr "選項窗格" -#: atk/atkobject.c:111 +#: ../atk/atkobject.c:111 msgid "page tab" msgstr "分頁標籤" -#: atk/atkobject.c:112 +#: ../atk/atkobject.c:112 msgid "page tab list" msgstr "分頁標籤清單" -#: atk/atkobject.c:113 +#: ../atk/atkobject.c:113 msgid "panel" msgstr "面板" -#: atk/atkobject.c:114 +#: ../atk/atkobject.c:114 msgid "password text" msgstr "密碼文字" -#: atk/atkobject.c:115 +#: ../atk/atkobject.c:115 msgid "popup menu" msgstr "彈出式選單" -#: atk/atkobject.c:116 +#: ../atk/atkobject.c:116 msgid "progress bar" msgstr "進度列" -# An object the user can manipulate to tell the application to do something -# 泛指一般按鈕 (Hsin) -#: atk/atkobject.c:117 +#: ../atk/atkobject.c:117 msgid "push button" msgstr "按鈕" -#: atk/atkobject.c:118 +#: ../atk/atkobject.c:118 msgid "radio button" msgstr "單選按鈕" -#: atk/atkobject.c:119 +#: ../atk/atkobject.c:119 msgid "radio menu item" msgstr "單選選單項目" -# A specialized pane that has a glass pane and a layered pane as its children -# FIXME: It is almost impossible have any 'explaining' other then 'naming' (Hsin) -#: atk/atkobject.c:120 +#: ../atk/atkobject.c:120 msgid "root pane" msgstr "根窗格" -#: atk/atkobject.c:121 +#: ../atk/atkobject.c:121 msgid "row header" msgstr "列標頭" -#: atk/atkobject.c:122 +#: ../atk/atkobject.c:122 msgid "scroll bar" msgstr "捲動列" -#: atk/atkobject.c:123 +#: ../atk/atkobject.c:123 msgid "scroll pane" msgstr "捲動分格" -#: atk/atkobject.c:124 +#: ../atk/atkobject.c:124 msgid "separator" msgstr "分隔線" -#: atk/atkobject.c:125 +#: ../atk/atkobject.c:125 msgid "slider" msgstr "滑動鈕" -# A specialized panel that presents two other panels at the same time -#: atk/atkobject.c:126 +#: ../atk/atkobject.c:126 msgid "split pane" msgstr "分割窗格" -#: atk/atkobject.c:127 +#: ../atk/atkobject.c:127 msgid "spin button" msgstr "微調按鈕" -#: atk/atkobject.c:128 +#: ../atk/atkobject.c:128 msgid "statusbar" msgstr "狀態列" -#: atk/atkobject.c:129 +#: ../atk/atkobject.c:129 msgid "table" msgstr "表格" -#: atk/atkobject.c:130 +#: ../atk/atkobject.c:130 msgid "table cell" msgstr "儲存格" -#: atk/atkobject.c:131 +#: ../atk/atkobject.c:131 msgid "table column header" msgstr "表格直欄標頭" -#: atk/atkobject.c:132 +#: ../atk/atkobject.c:132 msgid "table row header" msgstr "表格橫列標頭" -#: atk/atkobject.c:133 +#: ../atk/atkobject.c:133 msgid "tear off menu item" msgstr "卸下選單項目" -#: atk/atkobject.c:134 +#: ../atk/atkobject.c:134 msgid "terminal" msgstr "終端機" -#: atk/atkobject.c:135 +#: ../atk/atkobject.c:135 msgid "text" msgstr "文字" -#: atk/atkobject.c:136 +#: ../atk/atkobject.c:136 msgid "toggle button" msgstr "切換按鈕" -#: atk/atkobject.c:137 +#: ../atk/atkobject.c:137 msgid "tool bar" msgstr "工具列" -#: atk/atkobject.c:138 +#: ../atk/atkobject.c:138 msgid "tool tip" msgstr "工具提示" -#: atk/atkobject.c:139 +#: ../atk/atkobject.c:139 msgid "tree" msgstr "樹狀資料元件" -#: atk/atkobject.c:140 +#: ../atk/atkobject.c:140 msgid "tree table" msgstr "樹狀資料表格" -#: atk/atkobject.c:141 +#: ../atk/atkobject.c:141 msgid "unknown" msgstr "不明" -#: atk/atkobject.c:142 +#: ../atk/atkobject.c:142 msgid "viewport" msgstr "視埠" -#: atk/atkobject.c:143 +#: ../atk/atkobject.c:143 msgid "window" msgstr "視窗" -#: atk/atkobject.c:144 +#: ../atk/atkobject.c:144 msgid "header" msgstr "頁首" -#: atk/atkobject.c:145 +#: ../atk/atkobject.c:145 msgid "footer" msgstr "頁尾" -#: atk/atkobject.c:146 +#: ../atk/atkobject.c:146 msgid "paragraph" msgstr "段落" -#: atk/atkobject.c:147 +#: ../atk/atkobject.c:147 msgid "ruler" msgstr "水平線" -#: atk/atkobject.c:148 +#: ../atk/atkobject.c:148 msgid "application" msgstr "應用程式" -#: atk/atkobject.c:149 +#: ../atk/atkobject.c:149 msgid "autocomplete" msgstr "自動完成" -#: atk/atkobject.c:150 +#: ../atk/atkobject.c:150 msgid "edit bar" msgstr "編輯列" -#: atk/atkobject.c:151 +#: ../atk/atkobject.c:151 msgid "embedded component" msgstr "內嵌組成元件" -#: atk/atkobject.c:152 +#: ../atk/atkobject.c:152 msgid "entry" msgstr "項目" -#: atk/atkobject.c:153 +#: ../atk/atkobject.c:153 msgid "chart" msgstr "圖表" -#: atk/atkobject.c:154 +#: ../atk/atkobject.c:154 msgid "caption" msgstr "題目" -#: atk/atkobject.c:155 +#: ../atk/atkobject.c:155 msgid "document frame" msgstr "文件框架" -#: atk/atkobject.c:156 +#: ../atk/atkobject.c:156 msgid "heading" msgstr "標題" -#: atk/atkobject.c:157 +#: ../atk/atkobject.c:157 msgid "page" msgstr "頁" -#: atk/atkobject.c:158 +#: ../atk/atkobject.c:158 msgid "section" msgstr "節" -#: atk/atkobject.c:159 +#: ../atk/atkobject.c:159 msgid "redundant object" msgstr "冗餘物件" -#: atk/atkobject.c:160 +#: ../atk/atkobject.c:160 msgid "form" msgstr "表單" -#: atk/atkobject.c:161 +#: ../atk/atkobject.c:161 msgid "link" msgstr "連結" -#: atk/atkobject.c:162 +#: ../atk/atkobject.c:162 msgid "input method window" msgstr "輸入法視窗" -#: atk/atkobject.c:488 +#: ../atk/atkobject.c:163 +msgid "table row" +msgstr "表格列" + +#: ../atk/atkobject.c:164 +msgid "tree item" +msgstr "樹狀項目" + +#: ../atk/atkobject.c:165 +msgid "document spreadsheet" +msgstr "文件試算表" + +#: ../atk/atkobject.c:166 +msgid "document presentation" +msgstr "文件簡報" + +#: ../atk/atkobject.c:167 +msgid "document text" +msgstr "文件文字" + +#: ../atk/atkobject.c:168 +msgid "document web" +msgstr "文件網頁" + +#: ../atk/atkobject.c:169 +msgid "document email" +msgstr "文件郵件" + +#: ../atk/atkobject.c:170 +msgid "comment" +msgstr "註解" + +#: ../atk/atkobject.c:171 +msgid "list box" +msgstr "清單方塊" + +#: ../atk/atkobject.c:172 +msgid "grouping" +msgstr "群組" + +#: ../atk/atkobject.c:173 +msgid "image map" +msgstr "影像地圖" + +#: ../atk/atkobject.c:174 +msgid "notification" +msgstr "通知" + +#: ../atk/atkobject.c:175 +msgid "info bar" +msgstr "資訊列" + +#: ../atk/atkobject.c:514 msgid "Accessible Name" msgstr "輔助鍵名稱" -# instance 可翻為'實例','案例','實體' I prefer 3 (hsin) -# assistive technology 翻為 輔助技術 -# (Abel) OK, 就用「實體」,好像多人用了 -#: atk/atkobject.c:489 +#: ../atk/atkobject.c:515 msgid "Object instance's name formatted for assistive technology access" msgstr "已格式化的物件實體名稱,便於輔助技術存取" -#: atk/atkobject.c:495 +#: ../atk/atkobject.c:521 msgid "Accessible Description" msgstr "輔助鍵描述" -#: atk/atkobject.c:496 +#: ../atk/atkobject.c:522 msgid "Description of an object, formatted for assistive technology access" msgstr "已格式化的物件描述,便於輔助技術存取" -#: atk/atkobject.c:502 +#: ../atk/atkobject.c:528 msgid "Accessible Parent" msgstr "輔助鍵母元件" -#: atk/atkobject.c:503 +#: ../atk/atkobject.c:529 msgid "Is used to notify that the parent has changed" msgstr "用來知會母元件已有變動" -#: atk/atkobject.c:509 +#: ../atk/atkobject.c:535 msgid "Accessible Value" msgstr "輔助鍵設定值" -#: atk/atkobject.c:510 +#: ../atk/atkobject.c:536 msgid "Is used to notify that the value has changed" msgstr "用來知會該設定值已有變動" -# 我覺得 '類型' 或 '型態' 優於 '角色' 這樣的直譯 (Hsin) -#: atk/atkobject.c:518 +#: ../atk/atkobject.c:544 msgid "Accessible Role" msgstr "輔助鍵類型" -#: atk/atkobject.c:519 +#: ../atk/atkobject.c:545 msgid "The accessible role of this object" msgstr "此物件的輔助鍵類型" -#: atk/atkobject.c:527 +#: ../atk/atkobject.c:553 msgid "Accessible Layer" msgstr "輔助鍵層級" -#: atk/atkobject.c:528 +#: ../atk/atkobject.c:554 msgid "The accessible layer of this object" msgstr "此物件的輔助鍵層級" -#: atk/atkobject.c:536 +#: ../atk/atkobject.c:562 msgid "Accessible MDI Value" msgstr "輔助鍵 MDI 值" -#: atk/atkobject.c:537 +#: ../atk/atkobject.c:563 msgid "The accessible MDI value of this object" msgstr "此物件的輔助鍵 MDI 值" -#: atk/atkobject.c:545 +#: ../atk/atkobject.c:571 msgid "Accessible Table Caption" msgstr "輔助鍵表格標題" -#: atk/atkobject.c:546 +#: ../atk/atkobject.c:572 msgid "" "Is used to notify that the table caption has changed; this property should " "not be used. accessible-table-caption-object should be used instead" @@ -482,58 +521,58 @@ "用來知會表格標題已經改變;不應使用此屬性。應使用 accessible-table-caption-" "object 代替" -#: atk/atkobject.c:552 +#: ../atk/atkobject.c:578 msgid "Accessible Table Column Header" msgstr "輔助鍵表格直欄標頭" -#: atk/atkobject.c:553 +#: ../atk/atkobject.c:579 msgid "Is used to notify that the table column header has changed" msgstr "用來知會表格直列標頭已變動" -#: atk/atkobject.c:559 +#: ../atk/atkobject.c:585 msgid "Accessible Table Column Description" msgstr "輔助鍵表格直欄描述" -#: atk/atkobject.c:560 +#: ../atk/atkobject.c:586 msgid "Is used to notify that the table column description has changed" msgstr "用來知會表格直欄描述以已變動" -#: atk/atkobject.c:566 +#: ../atk/atkobject.c:592 msgid "Accessible Table Row Header" msgstr "輔助鍵表格橫列標頭" -#: atk/atkobject.c:567 +#: ../atk/atkobject.c:593 msgid "Is used to notify that the table row header has changed" msgstr "用來知會表格橫列標頭已變動" -#: atk/atkobject.c:573 +#: ../atk/atkobject.c:599 msgid "Accessible Table Row Description" msgstr "輔助鍵表格橫列描述" -#: atk/atkobject.c:574 +#: ../atk/atkobject.c:600 msgid "Is used to notify that the table row description has changed" msgstr "用來知會表格橫列描述已變動" -#: atk/atkobject.c:580 +#: ../atk/atkobject.c:606 msgid "Accessible Table Summary" msgstr "輔助鍵表格總結" -#: atk/atkobject.c:581 +#: ../atk/atkobject.c:607 msgid "Is used to notify that the table summary has changed" msgstr "用來知會表格總結描述已變動" -#: atk/atkobject.c:587 +#: ../atk/atkobject.c:613 msgid "Accessible Table Caption Object" msgstr "輔助鍵表格標題物件" -#: atk/atkobject.c:588 +#: ../atk/atkobject.c:614 msgid "Is used to notify that the table caption has changed" msgstr "用來知會表格標題物件已變動" -#: atk/atkobject.c:594 +#: ../atk/atkobject.c:620 msgid "Number of Accessible Hypertext Links" msgstr "輔助鍵超連結總數" -#: atk/atkobject.c:595 +#: ../atk/atkobject.c:621 msgid "The number of links which the current AtkHypertext has" msgstr "目前 AtkHypertext 含有的超連結數目" Binary files /tmp/POSdkCqhK6/atk1.0-1.30.0/po/zu.gmo and /tmp/rvoIeaF_DS/atk1.0-2.2.0/po/zu.gmo differ diff -Nru atk1.0-1.30.0/po/zu.po atk1.0-2.2.0/po/zu.po --- atk1.0-1.30.0/po/zu.po 1970-01-01 00:00:00.000000000 +0000 +++ atk1.0-2.2.0/po/zu.po 2011-09-19 17:06:54.000000000 +0000 @@ -0,0 +1,529 @@ +# Zulu translation for atk. +# Copyright (C) +# This file is distributed under the same license as the atk package. +# Priscilla Mahlangu , 2011. +# F Wolff , 2011. +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=atk&ke" +"ywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-03-30 11:30+0000\n" +"PO-Revision-Date: 2011-04-08 16:50+0200\n" +"Last-Translator: F Wolff \n" +"Language-Team: translate-discuss-af@lists.sourceforge.net\n" +"Language: zu\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-Generator: Virtaal 0.7.0-beta4\n" +"X-Project-Style: gnome\n" + +#: ../atk/atkhyperlink.c:103 +msgid "Selected Link" +msgstr "Isixhumanisi esikhethiwe" + +#: ../atk/atkhyperlink.c:104 +msgid "Specifies whether the AtkHyperlink object is selected" +msgstr "Kucacisa ukuthi yingabe into ye-AtkHyperlink ikhethiwe yini" + +#: ../atk/atkhyperlink.c:110 +msgid "Number of Anchors" +msgstr "Inani lama-Anchors" + +#: ../atk/atkhyperlink.c:111 +msgid "The number of anchors associated with the AtkHyperlink object" +msgstr "Inani lama-anchors elihlanganiswe nento ye-AtkHyperlink" + +#: ../atk/atkhyperlink.c:119 +msgid "End index" +msgstr "Inkomba yokugcina" + +#: ../atk/atkhyperlink.c:120 +msgid "The end index of the AtkHyperlink object" +msgstr "Inkomba yokugcina yento ye-AtkHyperlink" + +#: ../atk/atkhyperlink.c:128 +msgid "Start index" +msgstr "Inkomba yokuqala" + +#: ../atk/atkhyperlink.c:129 +msgid "The start index of the AtkHyperlink object" +msgstr "Inkomba yokuqala yento ye-AtkHyperlink" + +#: ../atk/atkobject.c:74 +msgid "invalid" +msgstr "okungavumelekile" + +#: ../atk/atkobject.c:75 +msgid "accelerator label" +msgstr "ilebula lokusheshisa" + +#: ../atk/atkobject.c:76 +msgid "alert" +msgstr "yazisa" + +#: ../atk/atkobject.c:77 +msgid "animation" +msgstr "ukugxwayiza" + +#: ../atk/atkobject.c:78 +msgid "arrow" +msgstr "umcibisholo" + +#: ../atk/atkobject.c:79 +msgid "calendar" +msgstr "ikhalenda" + +#: ../atk/atkobject.c:80 +msgid "canvas" +msgstr "useyili" + +#: ../atk/atkobject.c:81 +msgid "check box" +msgstr "ibhokisi lokuhlola" + +#: ../atk/atkobject.c:82 +msgid "check menu item" +msgstr "hlola intwana yemenyu" + +#: ../atk/atkobject.c:83 +msgid "color chooser" +msgstr "isikhethi sombala" + +#: ../atk/atkobject.c:84 +msgid "column header" +msgstr "inhloko yekholomu" + +#: ../atk/atkobject.c:85 +msgid "combo box" +msgstr "ibhokisi le-combo" + +#: ../atk/atkobject.c:86 +msgid "dateeditor" +msgstr "isihleli sedethi" + +#: ../atk/atkobject.c:87 +msgid "desktop icon" +msgstr "isithonjana sobuso bekhompuyutha" + +#: ../atk/atkobject.c:88 +msgid "desktop frame" +msgstr "ifulema yobuso bekhompyutha" + +#: ../atk/atkobject.c:89 +msgid "dial" +msgstr "chofoza" + +#: ../atk/atkobject.c:90 +msgid "dialog" +msgstr "ibhokisi" + +#: ../atk/atkobject.c:91 +msgid "directory pane" +msgstr "iwindi lohlu lwemibhalo" + +#: ../atk/atkobject.c:92 +msgid "drawing area" +msgstr "indawo yokudweba" + +#: ../atk/atkobject.c:93 +msgid "file chooser" +msgstr "isikhethi sefayela" + +#: ../atk/atkobject.c:94 +msgid "filler" +msgstr "isigcwalisi" + +#. I know it looks wrong but that is what Java returns +#: ../atk/atkobject.c:96 +msgid "fontchooser" +msgstr "isikhethi sombalo" + +#: ../atk/atkobject.c:97 +msgid "frame" +msgstr "ufulema" + +#: ../atk/atkobject.c:98 +msgid "glass pane" +msgstr "iwindi lengilasi" + +#: ../atk/atkobject.c:99 +msgid "html container" +msgstr "idlelo le-html" + +#: ../atk/atkobject.c:100 +msgid "icon" +msgstr "isithonjana" + +#: ../atk/atkobject.c:101 +msgid "image" +msgstr "isithombe" + +#: ../atk/atkobject.c:102 +msgid "internal frame" +msgstr "ifulema yangaphakathi" + +#: ../atk/atkobject.c:103 +msgid "label" +msgstr "ilebula" + +#: ../atk/atkobject.c:104 +msgid "layered pane" +msgstr "iwindi le-layered" + +#: ../atk/atkobject.c:105 +msgid "list" +msgstr "uhlu" + +#: ../atk/atkobject.c:106 +msgid "list item" +msgstr "intwana yohlu" + +#: ../atk/atkobject.c:107 +msgid "menu" +msgstr "imenyu" + +#: ../atk/atkobject.c:108 +msgid "menu bar" +msgstr "ibha yemenyu" + +#: ../atk/atkobject.c:109 +msgid "menu item" +msgstr "intwana yemenyu" + +#: ../atk/atkobject.c:110 +msgid "option pane" +msgstr "iwindi lenketho" + +#: ../atk/atkobject.c:111 +msgid "page tab" +msgstr "itabhu lekhasi" + +#: ../atk/atkobject.c:112 +msgid "page tab list" +msgstr "uhlu lwetebhu lekhasi" + +#: ../atk/atkobject.c:113 +msgid "panel" +msgstr "iwindi" + +#: ../atk/atkobject.c:114 +msgid "password text" +msgstr "umbalo wephasiwedi" + +#: ../atk/atkobject.c:115 +msgid "popup menu" +msgstr "imenyu eyisigelekeqe" + +#: ../atk/atkobject.c:116 +msgid "progress bar" +msgstr "ibha yokuqhubekayo" + +#: ../atk/atkobject.c:117 +msgid "push button" +msgstr "sunduza inkinobho" + +#: ../atk/atkobject.c:118 +msgid "radio button" +msgstr "inkinobho yokusakaza" + +#: ../atk/atkobject.c:119 +msgid "radio menu item" +msgstr "intwana yemenyu yesisakazi" + +#: ../atk/atkobject.c:120 +msgid "root pane" +msgstr "iwindi elingumsuka" + +#: ../atk/atkobject.c:121 +msgid "row header" +msgstr "isihloko somugqa" + +#: ../atk/atkobject.c:122 +msgid "scroll bar" +msgstr "insika yokwehlisa nokwenyusa" + +#: ../atk/atkobject.c:123 +msgid "scroll pane" +msgstr "iwindi yokwehlisa nokwenyusa" + +#: ../atk/atkobject.c:124 +msgid "separator" +msgstr "isihlukanisi" + +#: ../atk/atkobject.c:125 +msgid "slider" +msgstr "isishelelisi" + +#: ../atk/atkobject.c:126 +msgid "split pane" +msgstr "" + +#: ../atk/atkobject.c:127 +msgid "spin button" +msgstr "" + +#: ../atk/atkobject.c:128 +msgid "statusbar" +msgstr "umudwa ochaza ngesimo" + +#: ../atk/atkobject.c:129 +msgid "table" +msgstr "ithebula" + +#: ../atk/atkobject.c:130 +msgid "table cell" +msgstr "" + +#: ../atk/atkobject.c:131 +msgid "table column header" +msgstr "okungaphezulu kwekholomu yethebula" + +#: ../atk/atkobject.c:132 +msgid "table row header" +msgstr "okungaphezulu komugqa wethebula" + +#: ../atk/atkobject.c:133 +msgid "tear off menu item" +msgstr "" + +#: ../atk/atkobject.c:134 +msgid "terminal" +msgstr "" + +#: ../atk/atkobject.c:135 +msgid "text" +msgstr "umbhalo" + +#: ../atk/atkobject.c:136 +msgid "toggle button" +msgstr "" + +#: ../atk/atkobject.c:137 +msgid "tool bar" +msgstr "ibha yamathuluzi" + +#: ../atk/atkobject.c:138 +msgid "tool tip" +msgstr "ithiphu lethukuzi" + +#: ../atk/atkobject.c:139 +msgid "tree" +msgstr "isihlahla" + +#: ../atk/atkobject.c:140 +msgid "tree table" +msgstr "ithebula lesihlahla" + +#: ../atk/atkobject.c:141 +msgid "unknown" +msgstr "akwaziwa" + +#: ../atk/atkobject.c:142 +msgid "viewport" +msgstr "" + +#: ../atk/atkobject.c:143 +msgid "window" +msgstr "iwindi" + +#: ../atk/atkobject.c:144 +msgid "header" +msgstr "okuphezulu" + +#: ../atk/atkobject.c:145 +msgid "footer" +msgstr "okungezansi" + +#: ../atk/atkobject.c:146 +msgid "paragraph" +msgstr "indima" + +#: ../atk/atkobject.c:147 +msgid "ruler" +msgstr "" + +#: ../atk/atkobject.c:148 +msgid "application" +msgstr "uhlelo lokusebenza" + +#: ../atk/atkobject.c:149 +msgid "autocomplete" +msgstr "ukuqedela ngokuzenzakalela" + +#: ../atk/atkobject.c:150 +msgid "edit bar" +msgstr "hlela ibha" + +#: ../atk/atkobject.c:151 +#, fuzzy +msgid "embedded component" +msgstr "shumeka " + +#: ../atk/atkobject.c:152 +msgid "entry" +msgstr "okufakiweyo" + +#: ../atk/atkobject.c:153 +msgid "chart" +msgstr "" + +#: ../atk/atkobject.c:154 +msgid "caption" +msgstr "izwibela" + +#: ../atk/atkobject.c:155 +msgid "document frame" +msgstr "" + +#: ../atk/atkobject.c:156 +msgid "heading" +msgstr "isihloko" + +#: ../atk/atkobject.c:157 +msgid "page" +msgstr "ikhasi" + +#: ../atk/atkobject.c:158 +msgid "section" +msgstr "isigaba" + +#: ../atk/atkobject.c:159 +msgid "redundant object" +msgstr "" + +#: ../atk/atkobject.c:160 +msgid "form" +msgstr "ifomu" + +#: ../atk/atkobject.c:161 +msgid "link" +msgstr "isixhumanisi" + +#: ../atk/atkobject.c:162 +msgid "input method window" +msgstr "iwindi lendlela yokufaka" + +#: ../atk/atkobject.c:488 +msgid "Accessible Name" +msgstr "Igama elifinyelelekayo" + +#: ../atk/atkobject.c:489 +msgid "Object instance's name formatted for assistive technology access" +msgstr "" + +#: ../atk/atkobject.c:495 +msgid "Accessible Description" +msgstr "Incazelo efinyelelekayo" + +#: ../atk/atkobject.c:496 +msgid "Description of an object, formatted for assistive technology access" +msgstr "" + +#: ../atk/atkobject.c:502 +msgid "Accessible Parent" +msgstr "Umzali ofinyelelekayo" + +#: ../atk/atkobject.c:503 +msgid "Is used to notify that the parent has changed" +msgstr "Bengazisa ukuthi umzali useshintshile" + +#: ../atk/atkobject.c:509 +msgid "Accessible Value" +msgstr "Inani elifinyelelekayo" + +#: ../atk/atkobject.c:510 +msgid "Is used to notify that the value has changed" +msgstr "Bengazise ukuthi inani lishintshile" + +#: ../atk/atkobject.c:518 +msgid "Accessible Role" +msgstr "Indima efinyelelekayo" + +#: ../atk/atkobject.c:519 +msgid "The accessible role of this object" +msgstr "Indima efinyalelekayo yale nto" + +#: ../atk/atkobject.c:527 +msgid "Accessible Layer" +msgstr "Isindlali esifinyelelekayo" + +#: ../atk/atkobject.c:528 +msgid "The accessible layer of this object" +msgstr "Isindlali esifinyelelkayo sale nto" + +#: ../atk/atkobject.c:536 +msgid "Accessible MDI Value" +msgstr "Inani le-MDI elifinyelelekayo" + +#: ../atk/atkobject.c:537 +msgid "The accessible MDI value of this object" +msgstr "Inani le-MDI elifinyelelekayo lale nto" + +#: ../atk/atkobject.c:545 +msgid "Accessible Table Caption" +msgstr "Amazwibela wethebula afinyelelekayo" + +#: ../atk/atkobject.c:546 +msgid "" +"Is used to notify that the table caption has changed; this property should " +"not be used. accessible-table-caption-object should be used instead" +msgstr "" + +#: ../atk/atkobject.c:552 +msgid "Accessible Table Column Header" +msgstr "" + +#: ../atk/atkobject.c:553 +msgid "Is used to notify that the table column header has changed" +msgstr "" + +#: ../atk/atkobject.c:559 +msgid "Accessible Table Column Description" +msgstr "" + +#: ../atk/atkobject.c:560 +msgid "Is used to notify that the table column description has changed" +msgstr "" + +#: ../atk/atkobject.c:566 +msgid "Accessible Table Row Header" +msgstr "" + +#: ../atk/atkobject.c:567 +msgid "Is used to notify that the table row header has changed" +msgstr "" + +#: ../atk/atkobject.c:573 +msgid "Accessible Table Row Description" +msgstr "" + +#: ../atk/atkobject.c:574 +msgid "Is used to notify that the table row description has changed" +msgstr "" + +#: ../atk/atkobject.c:580 +msgid "Accessible Table Summary" +msgstr "" + +#: ../atk/atkobject.c:581 +msgid "Is used to notify that the table summary has changed" +msgstr "" + +#: ../atk/atkobject.c:587 +msgid "Accessible Table Caption Object" +msgstr "" + +#: ../atk/atkobject.c:588 +msgid "Is used to notify that the table caption has changed" +msgstr "Bengazisa ukuthi amazwibela wethebula ashintshile" + +#: ../atk/atkobject.c:594 +msgid "Number of Accessible Hypertext Links" +msgstr "" + +#: ../atk/atkobject.c:595 +msgid "The number of links which the current AtkHypertext has" +msgstr "" diff -Nru atk1.0-1.30.0/tests/Makefile.in atk1.0-2.2.0/tests/Makefile.in --- atk1.0-1.30.0/tests/Makefile.in 2010-03-29 22:53:48.000000000 +0000 +++ atk1.0-2.2.0/tests/Makefile.in 2011-09-26 22:25:00.000000000 +0000 @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.11 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, @@ -41,7 +41,7 @@ $(top_srcdir)/m4/introspection.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.in + $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs @@ -53,28 +53,46 @@ libtestrelation_la_DEPENDENCIES = $(libatk) $(am__DEPENDENCIES_1) am_libtestrelation_la_OBJECTS = testrelation.lo libtestrelation_la_OBJECTS = $(am_libtestrelation_la_OBJECTS) -libtestrelation_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(libtestrelation_la_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +libtestrelation_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(AM_CFLAGS) $(CFLAGS) $(libtestrelation_la_LDFLAGS) \ + $(LDFLAGS) -o $@ libteststateset_la_DEPENDENCIES = $(libatk) $(am__DEPENDENCIES_1) am_libteststateset_la_OBJECTS = teststateset.lo libteststateset_la_OBJECTS = $(am_libteststateset_la_OBJECTS) -libteststateset_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(libteststateset_la_LDFLAGS) $(LDFLAGS) -o $@ +libteststateset_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(AM_CFLAGS) $(CFLAGS) $(libteststateset_la_LDFLAGS) \ + $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libtestrelation_la_SOURCES) $(libteststateset_la_SOURCES) DIST_SOURCES = $(libtestrelation_la_SOURCES) \ $(libteststateset_la_SOURCES) @@ -83,6 +101,7 @@ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AS = @AS@ ATK_API_VERSION = @ATK_API_VERSION@ @@ -130,6 +149,10 @@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@ +GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@ +GTKDOC_MKPDF = @GTKDOC_MKPDF@ +GTKDOC_REBASE = @GTKDOC_REBASE@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ @@ -178,6 +201,8 @@ PATH_SEPARATOR = @PATH_SEPARATOR@ PERL = @PERL@ 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,9 +345,9 @@ rm -f "$${dir}/so_locations"; \ done libtestrelation.la: $(libtestrelation_la_OBJECTS) $(libtestrelation_la_DEPENDENCIES) - $(libtestrelation_la_LINK) $(libtestrelation_la_OBJECTS) $(libtestrelation_la_LIBADD) $(LIBS) + $(AM_V_CCLD)$(libtestrelation_la_LINK) $(libtestrelation_la_OBJECTS) $(libtestrelation_la_LIBADD) $(LIBS) libteststateset.la: $(libteststateset_la_OBJECTS) $(libteststateset_la_DEPENDENCIES) - $(libteststateset_la_LINK) $(libteststateset_la_OBJECTS) $(libteststateset_la_LIBADD) $(LIBS) + $(AM_V_CCLD)$(libteststateset_la_LINK) $(libteststateset_la_OBJECTS) $(libteststateset_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) @@ -334,22 +359,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/teststateset.Plo@am__quote@ .c.o: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< diff -Nru atk1.0-1.30.0/tests/testrelation.c atk1.0-2.2.0/tests/testrelation.c --- atk1.0-1.30.0/tests/testrelation.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/tests/testrelation.c 2011-09-19 17:06:54.000000000 +0000 @@ -28,7 +28,7 @@ test_relation (void) { AtkRelationType type1, type2; - G_CONST_RETURN gchar *name; + const gchar *name; AtkObject *obj; gboolean ret_value; AtkRelationSet *set; @@ -169,7 +169,7 @@ test_role (void) { AtkRole role1, role2; - G_CONST_RETURN gchar *name; + const gchar *name; name = atk_role_get_name (ATK_ROLE_PAGE_TAB); g_return_val_if_fail (name, FALSE); @@ -230,7 +230,7 @@ test_text_attr (void) { AtkTextAttribute attr1, attr2; - G_CONST_RETURN gchar *name; + const gchar *name; name = atk_text_attribute_get_name (ATK_TEXT_ATTR_PIXELS_INSIDE_WRAP); g_return_val_if_fail (name, FALSE); diff -Nru atk1.0-1.30.0/tests/teststateset.c atk1.0-2.2.0/tests/teststateset.c --- atk1.0-1.30.0/tests/teststateset.c 2009-10-13 09:05:45.000000000 +0000 +++ atk1.0-2.2.0/tests/teststateset.c 2011-09-19 17:06:54.000000000 +0000 @@ -208,7 +208,7 @@ test_state (void) { AtkStateType type1, type2; - G_CONST_RETURN gchar *name; + const gchar *name; name = atk_state_type_get_name (ATK_STATE_VISIBLE); g_return_val_if_fail (name, FALSE);