Hello community, here is the log from the commit of package at-spi2-core for openSUSE:Factory checked in at 2016-10-03 09:34:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/at-spi2-core (Old) and /work/SRC/openSUSE:Factory/.at-spi2-core.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "at-spi2-core" Changes: -------- --- /work/SRC/openSUSE:Factory/at-spi2-core/at-spi2-core.changes 2016-09-21 18:27:01.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.at-spi2-core.new/at-spi2-core.changes 2016-10-03 09:34:16.000000000 +0200 @@ -1,0 +2,8 @@ +Mon Sep 26 07:56:47 UTC 2016 - [email protected] + +- Update to version 2.22.0: + + at-spi-bus-launcher: Fix uninitialized variable. + + Fix return value error in session_manager_connect (bgo#768881). + + Updated translations. + +------------------------------------------------------------------- Old: ---- at-spi2-core-2.21.4.tar.xz New: ---- at-spi2-core-2.22.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ at-spi2-core.spec ++++++ --- /var/tmp/diff_new_pack.Q8VqTa/_old 2016-10-03 09:34:17.000000000 +0200 +++ /var/tmp/diff_new_pack.Q8VqTa/_new 2016-10-03 09:34:17.000000000 +0200 @@ -17,13 +17,13 @@ Name: at-spi2-core -Version: 2.21.4 +Version: 2.22.0 Release: 0 Summary: Assistive Technology Service Provider Interface - D-Bus based implementation License: GPL-2.0+ Group: System/Libraries Url: http://www.gnome.org/ -Source0: http://download.gnome.org/sources/at-spi2-core/2.21/%{name}-%{version}.tar.xz +Source0: http://download.gnome.org/sources/at-spi2-core/2.22/%{name}-%{version}.tar.xz Source99: baselibs.conf BuildRequires: intltool BuildRequires: update-desktop-files ++++++ at-spi2-core-2.21.4.tar.xz -> at-spi2-core-2.22.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.21.4/NEWS new/at-spi2-core-2.22.0/NEWS --- old/at-spi2-core-2.21.4/NEWS 2016-07-19 01:48:08.000000000 +0200 +++ new/at-spi2-core-2.22.0/NEWS 2016-09-26 03:11:21.000000000 +0200 @@ -1,3 +1,11 @@ +What's new in at-spi2-core 2.2.0: + +* at-spi-bus-launcher: fix uninitialized variable. + +* Fix return value error in session_manager_connect (bgo#768881). + +* Updated translations. + What's new in at-spi2-core 2.21.4: * Fixed a crash in atspi_accessible_clear_cache. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.21.4/aclocal.m4 new/at-spi2-core-2.22.0/aclocal.m4 --- old/at-spi2-core-2.21.4/aclocal.m4 2016-07-19 01:49:15.000000000 +0200 +++ new/at-spi2-core-2.22.0/aclocal.m4 2016-09-26 03:11:48.000000000 +0200 @@ -410,10 +410,9 @@ # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], -[dnl Rely on autoconf to set up CDPATH properly. -AC_PREREQ([2.50])dnl -# expand $ac_aux_dir to an absolute path -am_aux_dir=`cd $ac_aux_dir && pwd` +[AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl +# Expand $ac_aux_dir to an absolute path. +am_aux_dir=`cd "$ac_aux_dir" && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.21.4/bus/at-spi-bus-launcher.c new/at-spi2-core-2.22.0/bus/at-spi-bus-launcher.c --- old/at-spi2-core-2.21.4/bus/at-spi-bus-launcher.c 2016-07-19 01:45:01.000000000 +0200 +++ new/at-spi2-core-2.22.0/bus/at-spi-bus-launcher.c 2016-09-14 19:15:37.000000000 +0200 @@ -225,7 +225,7 @@ A11yBusLauncher *app = user_data; GVariant *values; GError *error = NULL; - gboolean is_running; + gboolean is_running = FALSE; proxy = G_DBUS_PROXY (source_object); values = g_dbus_proxy_call_finish (proxy, res, &error); @@ -254,7 +254,7 @@ g_warning ("Failed to get session manager proxy: %s", error->message); g_error_free (error); - return; + return FALSE; } g_dbus_proxy_call (sm_proxy, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.21.4/configure new/at-spi2-core-2.22.0/configure --- old/at-spi2-core-2.21.4/configure 2016-07-19 01:49:16.000000000 +0200 +++ new/at-spi2-core-2.22.0/configure 2016-09-26 03:11:49.000000000 +0200 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for at-spi2-core 2.21.4. +# Generated by GNU Autoconf 2.69 for at-spi2-core 2.22.0. # # Report bugs to <[email protected]>. # @@ -590,8 +590,8 @@ # Identity of this package. PACKAGE_NAME='at-spi2-core' PACKAGE_TARNAME='at-spi2-core' -PACKAGE_VERSION='2.21.4' -PACKAGE_STRING='at-spi2-core 2.21.4' +PACKAGE_VERSION='2.22.0' +PACKAGE_STRING='at-spi2-core 2.22.0' PACKAGE_BUGREPORT='[email protected]' PACKAGE_URL='' @@ -1432,7 +1432,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 at-spi2-core 2.21.4 to adapt to many kinds of systems. +\`configure' configures at-spi2-core 2.22.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1506,7 +1506,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of at-spi2-core 2.21.4:";; + short | recursive ) echo "Configuration of at-spi2-core 2.22.0:";; esac cat <<\_ACEOF @@ -1643,7 +1643,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -at-spi2-core configure 2.21.4 +at-spi2-core configure 2.22.0 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2195,7 +2195,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by at-spi2-core $as_me 2.21.4, which was +It was created by at-spi2-core $as_me 2.22.0, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2764,8 +2764,8 @@ ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` -# expand $ac_aux_dir to an absolute path -am_aux_dir=`cd $ac_aux_dir && pwd` +# Expand $ac_aux_dir to an absolute path. +am_aux_dir=`cd "$ac_aux_dir" && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in @@ -3078,7 +3078,7 @@ # Define the identity of the package. PACKAGE='at-spi2-core' - VERSION='2.21.4' + VERSION='2.22.0' cat >>confdefs.h <<_ACEOF @@ -15501,7 +15501,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by at-spi2-core $as_me 2.21.4, which was +This file was extended by at-spi2-core $as_me 2.22.0, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -15567,7 +15567,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -at-spi2-core config.status 2.21.4 +at-spi2-core config.status 2.22.0 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.21.4/configure.ac new/at-spi2-core-2.22.0/configure.ac --- old/at-spi2-core-2.21.4/configure.ac 2016-07-19 01:48:17.000000000 +0200 +++ new/at-spi2-core-2.22.0/configure.ac 2016-09-26 03:11:31.000000000 +0200 @@ -1,4 +1,4 @@ -AC_INIT([at-spi2-core], [2.21.4], [[email protected]]) +AC_INIT([at-spi2-core], [2.22.0], [[email protected]]) AC_PREREQ([2.59]) AC_CONFIG_AUX_DIR(config) AC_CONFIG_MACRO_DIR([m4]) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.21.4/doc/libatspi/html/AtspiAccessible.html new/at-spi2-core-2.22.0/doc/libatspi/html/AtspiAccessible.html --- old/at-spi2-core-2.21.4/doc/libatspi/html/AtspiAccessible.html 2016-07-19 01:51:29.000000000 +0200 +++ new/at-spi2-core-2.22.0/doc/libatspi/html/AtspiAccessible.html 2016-09-26 03:12:22.000000000 +0200 @@ -314,7 +314,7 @@ <a name="AtspiAccessible.implemented-interfaces"></a><h2>Implemented Interfaces</h2> <p> AtspiAccessible implements - <a class="link" href="libatspi-atspi-action.html#AtspiAction">AtspiAction</a>, <a class="link" href="libatspi-atspi-collection.html#AtspiCollection">AtspiCollection</a>, <a class="link" href="libatspi-atspi-component.html#AtspiComponent">AtspiComponent</a>, <a class="link" href="libatspi-atspi-document.html#AtspiDocument">AtspiDocument</a>, <a class="link" href="libatspi-atspi-editabletext.html#AtspiEditableText">AtspiEditableText</a>, <a class="link" href="libatspi-atspi-hypertext.html#AtspiHypertext">AtspiHypertext</a>, <a class="link" href="libatspi-atspi-image.html#AtspiImage">AtspiImage</a>, <a class="link" href="libatspi-atspi-selection.html#AtspiSelection">AtspiSelection</a>, <a class="link" href="libatspi-atspi-table.html#AtspiTable">AtspiTable</a>, <a class="link" href="libatspi-atspi-text.html#AtspiText">AtspiText</a> and <a class="link" href="libatspi-atspi-value.html#AtspiValue">AtspiValue</a>.</p> + <a class="link" href="libatspi-atspi-action.html#AtspiAction">AtspiAction</a>, <a class="link" href="libatspi-atspi-collection.html#AtspiCollection">AtspiCollection</a>, <a class="link" href="libatspi-atspi-component.html#AtspiComponent">AtspiComponent</a>, <a class="link" href="libatspi-atspi-document.html#AtspiDocument">AtspiDocument</a>, <a class="link" href="libatspi-atspi-editabletext.html#AtspiEditableText">AtspiEditableText</a>, <a class="link" href="libatspi-atspi-hypertext.html#AtspiHypertext">AtspiHypertext</a>, <a class="link" href="libatspi-atspi-image.html#AtspiImage">AtspiImage</a>, <a class="link" href="libatspi-atspi-selection.html#AtspiSelection">AtspiSelection</a>, <a class="link" href="libatspi-atspi-table.html#AtspiTable">AtspiTable</a>, <a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell">AtspiTableCell</a>, <a class="link" href="libatspi-atspi-text.html#AtspiText">AtspiText</a> and <a class="link" href="libatspi-atspi-value.html#AtspiValue">AtspiValue</a>.</p> </div> <div class="refsect1"> <a name="AtspiAccessible.description"></a><h2>Description</h2> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.21.4/doc/libatspi/html/api-index-full.html new/at-spi2-core-2.22.0/doc/libatspi/html/api-index-full.html --- old/at-spi2-core-2.21.4/doc/libatspi/html/api-index-full.html 2016-07-19 01:51:29.000000000 +0200 +++ new/at-spi2-core-2.22.0/doc/libatspi/html/api-index-full.html 2016-09-26 03:12:22.000000000 +0200 @@ -1055,7 +1055,7 @@ </dt> <dd></dd> <dt> -<a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell" title="AtspiTableCell">AtspiTableCell</a>, struct in <a class="link" href="libatspi-atspi-types.html" title="atspi-types">atspi-types</a> +<a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell-struct" title="AtspiTableCell">AtspiTableCell</a>, struct in <a class="link" href="libatspi-atspi-types.html" title="atspi-types">atspi-types</a> </dt> <dd></dd> <dt> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.21.4/doc/libatspi/html/index.html new/at-spi2-core-2.22.0/doc/libatspi/html/index.html --- old/at-spi2-core-2.21.4/doc/libatspi/html/index.html 2016-07-19 01:51:29.000000000 +0200 +++ new/at-spi2-core-2.22.0/doc/libatspi/html/index.html 2016-09-26 03:12:22.000000000 +0200 @@ -15,7 +15,7 @@ <div> <div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">libatspi Reference Manual</p></th></tr></table></div> <div><p class="releaseinfo"> - for libatspi 2.21.4 + for libatspi 2.22.0 . The latest version of this documentation can be found on-line at <a class="ulink" href="http://developer.gnome.org/libatspi/" target="_top">http://developer.gnome.org/libatspi/</a>. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.21.4/doc/libatspi/html/libatspi-atspi-table-cell.html new/at-spi2-core-2.22.0/doc/libatspi/html/libatspi-atspi-table-cell.html --- old/at-spi2-core-2.21.4/doc/libatspi/html/libatspi-atspi-table-cell.html 2016-07-19 01:51:29.000000000 +0200 +++ new/at-spi2-core-2.22.0/doc/libatspi/html/libatspi-atspi-table-cell.html 2016-09-26 03:12:22.000000000 +0200 @@ -15,7 +15,9 @@ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle"> <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> - <a href="#libatspi-atspi-table-cell.description" class="shortcut">Description</a></span> + <a href="#libatspi-atspi-table-cell.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> + <a href="#libatspi-atspi-table-cell.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_implementations"> <span class="dim">|</span> + <a href="#libatspi-atspi-table-cell.implementations" class="shortcut">Known Implementations</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -98,7 +100,7 @@ </tbody> </table></div> </div> -<a name="AtspiTable"></a><div class="refsect1"> +<a name="AtspiTable"></a><a name="AtspiTableCell"></a><div class="refsect1"> <a name="libatspi-atspi-table-cell.other"></a><h2>Types and Values</h2> <div class="informaltable"><table width="100%" border="0"> <colgroup> @@ -107,11 +109,23 @@ </colgroup> <tbody><tr> <td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell" title="AtspiTableCell">AtspiTableCell</a></td> +<td class="function_name"><a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell-struct" title="AtspiTableCell">AtspiTableCell</a></td> </tr></tbody> </table></div> </div> <div class="refsect1"> +<a name="libatspi-atspi-table-cell.object-hierarchy"></a><h2>Object Hierarchy</h2> +<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/GTypeModule.html">GInterface</a> + <span class="lineart">╰──</span> AtspiTableCell +</pre> +</div> +<div class="refsect1"> +<a name="libatspi-atspi-table-cell.implementations"></a><h2>Known Implementations</h2> +<p> +AtspiTableCell is implemented by + <a class="link" href="AtspiAccessible.html" title="AtspiAccessible">AtspiAccessible</a>.</p> +</div> +<div class="refsect1"> <a name="libatspi-atspi-table-cell.description"></a><h2>Description</h2> </div> <div class="refsect1"> @@ -119,7 +133,7 @@ <div class="refsect2"> <a name="atspi-table-cell-get-column-span"></a><h3>atspi_table_cell_get_column_span ()</h3> <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> -atspi_table_cell_get_column_span (<em class="parameter"><code><a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell" title="AtspiTableCell"><span class="type">AtspiTableCell</span></a> *obj</code></em>, +atspi_table_cell_get_column_span (<em class="parameter"><code><a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell"><span class="type">AtspiTableCell</span></a> *obj</code></em>, <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre> </div> <hr> @@ -127,35 +141,35 @@ <a name="atspi-table-cell-get-column-header-cells"></a><h3>atspi_table_cell_get_column_header_cells ()</h3> <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Pointer-Arrays.html#GPtrArray"><span class="returnvalue">GPtrArray</span></a> * atspi_table_cell_get_column_header_cells - (<em class="parameter"><code><a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell" title="AtspiTableCell"><span class="type">AtspiTableCell</span></a> *obj</code></em>, + (<em class="parameter"><code><a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell"><span class="type">AtspiTableCell</span></a> *obj</code></em>, <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre> </div> <hr> <div class="refsect2"> <a name="atspi-table-cell-get-column-index"></a><h3>atspi_table_cell_get_column_index ()</h3> <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> -atspi_table_cell_get_column_index (<em class="parameter"><code><a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell" title="AtspiTableCell"><span class="type">AtspiTableCell</span></a> *obj</code></em>, +atspi_table_cell_get_column_index (<em class="parameter"><code><a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell"><span class="type">AtspiTableCell</span></a> *obj</code></em>, <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre> </div> <hr> <div class="refsect2"> <a name="atspi-table-cell-get-row-span"></a><h3>atspi_table_cell_get_row_span ()</h3> <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> -atspi_table_cell_get_row_span (<em class="parameter"><code><a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell" title="AtspiTableCell"><span class="type">AtspiTableCell</span></a> *obj</code></em>, +atspi_table_cell_get_row_span (<em class="parameter"><code><a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell"><span class="type">AtspiTableCell</span></a> *obj</code></em>, <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre> </div> <hr> <div class="refsect2"> <a name="atspi-table-cell-get-row-header-cells"></a><h3>atspi_table_cell_get_row_header_cells ()</h3> <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Pointer-Arrays.html#GPtrArray"><span class="returnvalue">GPtrArray</span></a> * -atspi_table_cell_get_row_header_cells (<em class="parameter"><code><a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell" title="AtspiTableCell"><span class="type">AtspiTableCell</span></a> *obj</code></em>, +atspi_table_cell_get_row_header_cells (<em class="parameter"><code><a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell"><span class="type">AtspiTableCell</span></a> *obj</code></em>, <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre> </div> <hr> <div class="refsect2"> <a name="atspi-table-cell-get-row-column-span"></a><h3>atspi_table_cell_get_row_column_span ()</h3> <pre class="programlisting"><span class="returnvalue">void</span> -atspi_table_cell_get_row_column_span (<em class="parameter"><code><a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell" title="AtspiTableCell"><span class="type">AtspiTableCell</span></a> *obj</code></em>, +atspi_table_cell_get_row_column_span (<em class="parameter"><code><a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell"><span class="type">AtspiTableCell</span></a> *obj</code></em>, <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="type">gint</span></a> *row</code></em>, <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="type">gint</span></a> *column</code></em>, <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="type">gint</span></a> *row_span</code></em>, @@ -166,18 +180,15 @@ <div class="refsect2"> <a name="atspi-table-cell-get-table"></a><h3>atspi_table_cell_get_table ()</h3> <pre class="programlisting"><a class="link" href="AtspiAccessible.html" title="AtspiAccessible"><span class="returnvalue">AtspiAccessible</span></a> * -atspi_table_cell_get_table (<em class="parameter"><code><a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell" title="AtspiTableCell"><span class="type">AtspiTableCell</span></a> *obj</code></em>, +atspi_table_cell_get_table (<em class="parameter"><code><a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell"><span class="type">AtspiTableCell</span></a> *obj</code></em>, <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre> </div> </div> <div class="refsect1"> <a name="libatspi-atspi-table-cell.other_details"></a><h2>Types and Values</h2> <div class="refsect2"> -<a name="AtspiTableCell"></a><h3>AtspiTableCell</h3> -<pre class="programlisting">typedef struct { - GTypeInterface parent; -} AtspiTableCell; -</pre> +<a name="AtspiTableCell-struct"></a><h3>AtspiTableCell</h3> +<pre class="programlisting">typedef struct _AtspiTableCell AtspiTableCell;</pre> </div> </div> </div> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.21.4/doc/libatspi/html/libatspi-atspi-types.html new/at-spi2-core-2.22.0/doc/libatspi/html/libatspi-atspi-types.html --- old/at-spi2-core-2.21.4/doc/libatspi/html/libatspi-atspi-types.html 2016-07-19 01:51:29.000000000 +0200 +++ new/at-spi2-core-2.22.0/doc/libatspi/html/libatspi-atspi-types.html 2016-09-26 03:12:22.000000000 +0200 @@ -34,7 +34,7 @@ </td> <td class="gallery_image" valign="top" align="right"></td> </tr></table></div> -<a name="AtspiAccessible"></a><a name="AtspiAction"></a><a name="AtspiCollection"></a><a name="AtspiComponent"></a><a name="AtspiDocument"></a><a name="AtspiEditableText"></a><a name="AtspiHyperlink"></a><a name="AtspiHypertext"></a><a name="AtspiImage"></a><a name="AtspiSelection"></a><a name="AtspiTable"></a><a name="AtspiText"></a><a name="AtspiValue"></a><a name="AtspiKeyDefinition"></a><a name="AtspiEvent"></a><div class="refsect1"> +<a name="AtspiAccessible"></a><a name="AtspiAction"></a><a name="AtspiCollection"></a><a name="AtspiComponent"></a><a name="AtspiDocument"></a><a name="AtspiEditableText"></a><a name="AtspiHyperlink"></a><a name="AtspiHypertext"></a><a name="AtspiImage"></a><a name="AtspiSelection"></a><a name="AtspiTable"></a><a name="AtspiTableCell"></a><a name="AtspiText"></a><a name="AtspiValue"></a><a name="AtspiKeyDefinition"></a><a name="AtspiEvent"></a><div class="refsect1"> <a name="libatspi-atspi-types.other"></a><h2>Types and Values</h2> <div class="informaltable"><table width="100%" border="0"> <colgroup> @@ -88,7 +88,7 @@ </tr> <tr> <td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell" title="AtspiTableCell">AtspiTableCell</a></td> +<td class="function_name"><a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell-struct" title="AtspiTableCell">AtspiTableCell</a></td> </tr> <tr> <td class="datatype_keyword"> </td> @@ -160,6 +160,7 @@ <span class="lineart">├──</span> AtspiImage <span class="lineart">├──</span> AtspiSelection <span class="lineart">├──</span> AtspiTable + <span class="lineart">├──</span> AtspiTableCell <span class="lineart">├──</span> AtspiText <span class="lineart">╰──</span> AtspiValue <a href="/usr/share/gtk-doc/html/gobjectgobject-The-Base-Object-Type.html#GObject-struct">GObject</a> @@ -172,7 +173,7 @@ <a name="libatspi-atspi-types.implemented-interfaces"></a><h2>Implemented Interfaces</h2> <p> AtspiAccessible implements - <a class="link" href="libatspi-atspi-action.html#AtspiAction">AtspiAction</a>, <a class="link" href="libatspi-atspi-collection.html#AtspiCollection">AtspiCollection</a>, <a class="link" href="libatspi-atspi-component.html#AtspiComponent">AtspiComponent</a>, <a class="link" href="libatspi-atspi-document.html#AtspiDocument">AtspiDocument</a>, <a class="link" href="libatspi-atspi-editabletext.html#AtspiEditableText">AtspiEditableText</a>, <a class="link" href="libatspi-atspi-hypertext.html#AtspiHypertext">AtspiHypertext</a>, <a class="link" href="libatspi-atspi-image.html#AtspiImage">AtspiImage</a>, <a class="link" href="libatspi-atspi-selection.html#AtspiSelection">AtspiSelection</a>, <a class="link" href="libatspi-atspi-table.html#AtspiTable">AtspiTable</a>, <a class="link" href="libatspi-atspi-text.html#AtspiText">AtspiText</a> and <a class="link" href="libatspi-atspi-value.html#AtspiValue">AtspiValue</a>.</p> + <a class="link" href="libatspi-atspi-action.html#AtspiAction">AtspiAction</a>, <a class="link" href="libatspi-atspi-collection.html#AtspiCollection">AtspiCollection</a>, <a class="link" href="libatspi-atspi-component.html#AtspiComponent">AtspiComponent</a>, <a class="link" href="libatspi-atspi-document.html#AtspiDocument">AtspiDocument</a>, <a class="link" href="libatspi-atspi-editabletext.html#AtspiEditableText">AtspiEditableText</a>, <a class="link" href="libatspi-atspi-hypertext.html#AtspiHypertext">AtspiHypertext</a>, <a class="link" href="libatspi-atspi-image.html#AtspiImage">AtspiImage</a>, <a class="link" href="libatspi-atspi-selection.html#AtspiSelection">AtspiSelection</a>, <a class="link" href="libatspi-atspi-table.html#AtspiTable">AtspiTable</a>, <a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell">AtspiTableCell</a>, <a class="link" href="libatspi-atspi-text.html#AtspiText">AtspiText</a> and <a class="link" href="libatspi-atspi-value.html#AtspiValue">AtspiValue</a>.</p> </div> <div class="refsect1"> <a name="libatspi-atspi-types.implementations"></a><h2>Known Implementations</h2> @@ -204,6 +205,9 @@ AtspiTable is implemented by <a class="link" href="AtspiAccessible.html" title="AtspiAccessible">AtspiAccessible</a>.</p> <p> +AtspiTableCell is implemented by + <a class="link" href="AtspiAccessible.html" title="AtspiAccessible">AtspiAccessible</a>.</p> +<p> AtspiText is implemented by <a class="link" href="AtspiAccessible.html" title="AtspiAccessible">AtspiAccessible</a>.</p> <p> @@ -300,11 +304,8 @@ </div> <hr> <div class="refsect2"> -<a name="AtspiTableCell"></a><h3>AtspiTableCell</h3> -<pre class="programlisting">typedef struct { - GTypeInterface parent; -} AtspiTableCell; -</pre> +<a name="AtspiTableCell-struct"></a><h3>AtspiTableCell</h3> +<pre class="programlisting">typedef struct _AtspiTableCell AtspiTableCell;</pre> <p> </p> </div> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.21.4/doc/libatspi/html/libatspi.devhelp2 new/at-spi2-core-2.22.0/doc/libatspi/html/libatspi.devhelp2 --- old/at-spi2-core-2.21.4/doc/libatspi/html/libatspi.devhelp2 2016-07-19 01:51:28.000000000 +0200 +++ new/at-spi2-core-2.22.0/doc/libatspi/html/libatspi.devhelp2 2016-09-26 03:12:21.000000000 +0200 @@ -205,7 +205,7 @@ <keyword type="function" name="atspi_table_cell_get_row_header_cells ()" link="libatspi-atspi-table-cell.html#atspi-table-cell-get-row-header-cells"/> <keyword type="function" name="atspi_table_cell_get_row_column_span ()" link="libatspi-atspi-table-cell.html#atspi-table-cell-get-row-column-span"/> <keyword type="function" name="atspi_table_cell_get_table ()" link="libatspi-atspi-table-cell.html#atspi-table-cell-get-table"/> - <keyword type="struct" name="AtspiTableCell" link="libatspi-atspi-table-cell.html#AtspiTableCell"/> + <keyword type="struct" name="AtspiTableCell" link="libatspi-atspi-table-cell.html#AtspiTableCell-struct"/> <keyword type="function" name="atspi_selection_get_n_selected_children ()" link="libatspi-atspi-selection.html#atspi-selection-get-n-selected-children"/> <keyword type="function" name="atspi_selection_get_selected_child ()" link="libatspi-atspi-selection.html#atspi-selection-get-selected-child"/> <keyword type="function" name="atspi_selection_select_child ()" link="libatspi-atspi-selection.html#atspi-selection-select-child"/> @@ -271,7 +271,7 @@ <keyword type="struct" name="AtspiImage" link="libatspi-atspi-types.html#AtspiImage-struct"/> <keyword type="struct" name="AtspiSelection" link="libatspi-atspi-types.html#AtspiSelection-struct"/> <keyword type="struct" name="AtspiTable" link="libatspi-atspi-types.html#AtspiTable-struct"/> - <keyword type="struct" name="AtspiTableCell" link="libatspi-atspi-types.html#AtspiTableCell"/> + <keyword type="struct" name="AtspiTableCell" link="libatspi-atspi-types.html#AtspiTableCell-struct"/> <keyword type="struct" name="AtspiText" link="libatspi-atspi-types.html#AtspiText-struct"/> <keyword type="struct" name="AtspiValue" link="libatspi-atspi-types.html#AtspiValue-struct"/> <keyword type="typedef" name="AtspiControllerEventMask" link="libatspi-atspi-types.html#AtspiControllerEventMask"/> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.21.4/doc/libatspi/html/object-tree.html new/at-spi2-core-2.22.0/doc/libatspi/html/object-tree.html --- old/at-spi2-core-2.21.4/doc/libatspi/html/object-tree.html 2016-07-19 01:51:29.000000000 +0200 +++ new/at-spi2-core-2.22.0/doc/libatspi/html/object-tree.html 2016-09-26 03:12:22.000000000 +0200 @@ -42,6 +42,7 @@ <span class="lineart">├──</span> <a class="link" href="libatspi-atspi-image.html#AtspiImage">AtspiImage</a> <span class="lineart">├──</span> <a class="link" href="libatspi-atspi-selection.html#AtspiSelection">AtspiSelection</a> <span class="lineart">├──</span> <a class="link" href="libatspi-atspi-table.html#AtspiTable">AtspiTable</a> + <span class="lineart">├──</span> <a class="link" href="libatspi-atspi-table-cell.html#AtspiTableCell">AtspiTableCell</a> <span class="lineart">├──</span> <a class="link" href="libatspi-atspi-text.html#AtspiText">AtspiText</a> <span class="lineart">╰──</span> <a class="link" href="libatspi-atspi-value.html#AtspiValue">AtspiValue</a> <a href="https://developer.gnome.org/gobject/unstable/gobject-Boxed-Types.html">GBoxed</a> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.21.4/po/LINGUAS new/at-spi2-core-2.22.0/po/LINGUAS --- old/at-spi2-core-2.21.4/po/LINGUAS 2016-07-19 01:45:01.000000000 +0200 +++ new/at-spi2-core-2.22.0/po/LINGUAS 2016-09-26 03:09:42.000000000 +0200 @@ -27,6 +27,7 @@ gu he hi +hr hu id it diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.21.4/po/en_GB.po new/at-spi2-core-2.22.0/po/en_GB.po --- old/at-spi2-core-2.21.4/po/en_GB.po 2013-11-18 17:19:37.000000000 +0100 +++ new/at-spi2-core-2.22.0/po/en_GB.po 2016-09-26 03:09:42.000000000 +0200 @@ -5,10 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: at-spi2-core\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-08 20:01+0000\n" -"PO-Revision-Date: 2011-03-08 20:02+0100\n" -"Last-Translator: Bruce Cowan <[email protected]>\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=at-" +"spi&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2014-02-03 23:50+0000\n" +"PO-Revision-Date: 2016-09-18 12:38+0200\n" +"Last-Translator: David King <[email protected]>\n" "Language-Team: British English <[email protected]>\n" "Language: en_GB\n" "MIME-Version: 1.0\n" @@ -17,98 +18,74 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.6.1\n" -#: ../atspi/atspi-misc.c:290 -#, c-format -msgid "AT-SPI: Unknown signature %s for RemoveAccessible" -msgstr "AT-SPI: Unknown signature %s for RemoveAccessible" - -#: ../atspi/atspi-misc.c:327 -#, c-format -msgid "AT-SPI: Error calling getRoot for %s: %s" -msgstr "AT-SPI: Error calling getRoot for %s: %s" - -#: ../atspi/atspi-misc.c:485 -#, c-format -msgid "AT-SPI: Error in GetItems, sender=%s, error=%s" -msgstr "AT-SPI: Error in GetItems, sender=%s, error=%s" +#: ../atspi/atspi-component.c:325 ../atspi/atspi-misc.c:1034 +#: ../atspi/atspi-value.c:111 +msgid "The application no longer exists" +msgstr "The application no longer exists" -#: ../atspi/atspi-misc.c:587 -#, c-format -msgid "" -"AT-SPI: Called _atspi_dbus_return_accessible_from_message with strange " -"signature %s" -msgstr "" -"AT-SPI: Called _atspi_dbus_return_accessible_from_message with strange " -"signature %s" +#: ../atspi/atspi-misc.c:1777 +msgid "Attempted synchronous call where prohibited" +msgstr "Attempted synchronous call where prohibited" -#: ../atspi/atspi-misc.c:616 -#, c-format -msgid "" -"AT-SPI: Called _atspi_dbus_return_hyperlink_from_message with strange " -"signature %s" -msgstr "" -"AT-SPI: Called _atspi_dbus_return_hyperlink_from_message with strange " -"signature %s" +#~ msgid "AT-SPI: Unknown signature %s for RemoveAccessible" +#~ msgstr "AT-SPI: Unknown signature %s for RemoveAccessible" -#: ../atspi/atspi-misc.c:641 -#, c-format -msgid "AT-SPI: AddAccessible with unknown signature %s\n" -msgstr "AT-SPI: AddAccessible with unknown signature %s\n" - -#: ../atspi/atspi-misc.c:826 -msgid "AT-SPI: Could not get the display\n" -msgstr "AT-SPI: Could not get the display\n" - -#: ../atspi/atspi-misc.c:844 -msgid "AT-SPI: Accessibility bus not found - Using session bus.\n" -msgstr "AT-SPI: Accessibility bus not found - Using session bus.\n" - -#: ../atspi/atspi-misc.c:848 ../atspi/atspi-misc.c:857 -#, c-format -msgid "AT-SPI: Couldn't connect to bus: %s\n" -msgstr "AT-SPI: Couldn't connect to bus: %s\n" - -#: ../atspi/atspi-misc.c:864 -#, c-format -msgid "AT-SPI: Couldn't register with bus: %s\n" -msgstr "AT-SPI: Couldn't register with bus: %s\n" +#~ msgid "AT-SPI: Error calling getRoot for %s: %s" +#~ msgstr "AT-SPI: Error calling getRoot for %s: %s" -#: ../atspi/atspi-misc.c:1002 ../atspi/atspi-misc.c:1053 -#: ../atspi/atspi-misc.c:1094 -msgid "The application no longer exists" -msgstr "The application no longer exists" +#~ msgid "AT-SPI: Error in GetItems, sender=%s, error=%s" +#~ msgstr "AT-SPI: Error in GetItems, sender=%s, error=%s" -#: ../atspi/atspi-misc.c:1130 -#, c-format -msgid "AT-SPI: expected a variant when fetching %s from interface %s; got %s\n" -msgstr "AT-SPI: expected a variant when fetching %s from interface %s; got %s\n" - -#: ../atspi/atspi-misc.c:1136 -#, c-format -msgid "atspi_dbus_get_property: Wrong type: expected %s, got %c\n" -msgstr "atspi_dbus_get_property: Wrong type: expected %s, got %c\n" - -#: ../atspi/atspi-misc.c:1279 -#, c-format -msgid "AT-SPI: Unknown interface %s" -msgstr "AT-SPI: Unknown interface %s" - -#: ../atspi/atspi-misc.c:1299 -#, c-format -msgid "AT-SPI: expected 2 values in states array; got %d\n" -msgstr "AT-SPI: expected 2 values in states array; got %d\n" - -#: ../atspi/atspi-accessible.c:997 -msgid "Streamable content not implemented" -msgstr "Streamable content not implemented" +#~ msgid "" +#~ "AT-SPI: Called _atspi_dbus_return_accessible_from_message with strange " +#~ "signature %s" +#~ msgstr "" +#~ "AT-SPI: Called _atspi_dbus_return_accessible_from_message with strange " +#~ "signature %s" -#: ../atspi/atspi-event-listener.c:510 -msgid "" -"called atspi_event_listener_register_from_callback with a NULL event_type" -msgstr "" -"called atspi_event_listener_register_from_callback with a NULL event_type" +#~ msgid "" +#~ "AT-SPI: Called _atspi_dbus_return_hyperlink_from_message with strange " +#~ "signature %s" +#~ msgstr "" +#~ "AT-SPI: Called _atspi_dbus_return_hyperlink_from_message with strange " +#~ "signature %s" + +#~ msgid "AT-SPI: AddAccessible with unknown signature %s\n" +#~ msgstr "AT-SPI: AddAccessible with unknown signature %s\n" + +#~ msgid "AT-SPI: Could not get the display\n" +#~ msgstr "AT-SPI: Could not get the display\n" + +#~ msgid "AT-SPI: Accessibility bus not found - Using session bus.\n" +#~ msgstr "AT-SPI: Accessibility bus not found - Using session bus.\n" + +#~ msgid "AT-SPI: Couldn't connect to bus: %s\n" +#~ msgstr "AT-SPI: Couldn't connect to bus: %s\n" + +#~ msgid "AT-SPI: Couldn't register with bus: %s\n" +#~ msgstr "AT-SPI: Couldn't register with bus: %s\n" + +#~ msgid "" +#~ "AT-SPI: expected a variant when fetching %s from interface %s; got %s\n" +#~ msgstr "" +#~ "AT-SPI: expected a variant when fetching %s from interface %s; got %s\n" + +#~ msgid "atspi_dbus_get_property: Wrong type: expected %s, got %c\n" +#~ msgstr "atspi_dbus_get_property: Wrong type: expected %s, got %c\n" + +#~ msgid "AT-SPI: Unknown interface %s" +#~ msgstr "AT-SPI: Unknown interface %s" + +#~ msgid "AT-SPI: expected 2 values in states array; got %d\n" +#~ msgstr "AT-SPI: expected 2 values in states array; got %d\n" + +#~ msgid "Streamable content not implemented" +#~ msgstr "Streamable content not implemented" + +#~ msgid "" +#~ "called atspi_event_listener_register_from_callback with a NULL event_type" +#~ msgstr "" +#~ "called atspi_event_listener_register_from_callback with a NULL event_type" -#: ../atspi/atspi-event-listener.c:777 -#, c-format -msgid "Got invalid signature %s for signal %s from interface %s\n" -msgstr "Got invalid signature %s for signal %s from interface %s\n" +#~ msgid "Got invalid signature %s for signal %s from interface %s\n" +#~ msgstr "Got invalid signature %s for signal %s from interface %s\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.21.4/po/hr.po new/at-spi2-core-2.22.0/po/hr.po --- old/at-spi2-core-2.21.4/po/hr.po 1970-01-01 01:00:00.000000000 +0100 +++ new/at-spi2-core-2.22.0/po/hr.po 2016-09-26 03:09:42.000000000 +0200 @@ -0,0 +1,30 @@ +# Croatian translation for at-spi2-core. +# Copyright (C) 2016 at-spi2-core's COPYRIGHT HOLDER +# This file is distributed under the same license as the at-spi2-core package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: at-spi2-core master\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=at-" +"spi&keywords=I18N+L10N&component=at-spi2-core\n" +"POT-Creation-Date: 2016-09-21 16:49+0000\n" +"PO-Revision-Date: 2016-09-24 12:21+0200\n" +"Language-Team: Croatian <[email protected]>\n" +"Language: hr\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" +"Last-Translator: gogo <[email protected]>\n" +"X-Generator: Poedit 1.8.7.1\n" + +#: ../atspi/atspi-component.c:326 ../atspi/atspi-misc.c:1073 +#: ../atspi/atspi-value.c:111 +msgid "The application no longer exists" +msgstr "Aplikacija više ne postoji" + +#: ../atspi/atspi-misc.c:1832 +msgid "Attempted synchronous call where prohibited" +msgstr "Pokušaj usklađenog poziva gdje je zabranjeno" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/at-spi2-core-2.21.4/po/pl.po new/at-spi2-core-2.22.0/po/pl.po --- old/at-spi2-core-2.21.4/po/pl.po 2014-09-15 23:21:47.000000000 +0200 +++ new/at-spi2-core-2.22.0/po/pl.po 2016-09-14 19:14:34.000000000 +0200 @@ -1,34 +1,30 @@ -# -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -# Aviary.pl -# Jeśli masz jakiekolwiek uwagi odnoszące się do tłumaczenia lub chcesz -# pomóc w jego rozwijaniu i pielęgnowaniu, napisz do nas: -# [email protected] -# -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- +# Polish translation for at-spi2-core. +# Copyright © 2003-2014 the at-spi2-core authors. +# This file is distributed under the same license as the at-spi2-core package. # Artur Flinta <[email protected]>, 2003. # Piotr Drąg <[email protected]>, 2011-2014. -# Aviary.pl <[email protected]>, 2011-2014. +# Aviary.pl <[email protected]>, 2011-2014. +# msgid "" msgstr "" "Project-Id-Version: at-spi2-core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-02 18:34+0100\n" +"POT-Creation-Date: 2016-08-22 20:42+0200\n" "PO-Revision-Date: 2014-03-02 18:35+0100\n" "Last-Translator: Piotr Drąg <[email protected]>\n" -"Language-Team: Polish <[email protected]>\n" +"Language-Team: Polish <[email protected]>\n" "Language: pl\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==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -"X-Poedit-Language: Polish\n" -"X-Poedit-Country: Poland\n" -#: ../atspi/atspi-component.c:325 ../atspi/atspi-misc.c:1036 +#: ../atspi/atspi-component.c:326 ../atspi/atspi-misc.c:1073 #: ../atspi/atspi-value.c:111 msgid "The application no longer exists" msgstr "Program już nie istnieje" -#: ../atspi/atspi-misc.c:1779 +#: ../atspi/atspi-misc.c:1832 msgid "Attempted synchronous call where prohibited" msgstr "Próbowano synchronicznego wywołania tam, gdzie jest to zabronione"
