Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package at-spi2-core for openSUSE:Factory 
checked in at 2026-05-05 15:14:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/at-spi2-core (Old)
 and      /work/SRC/openSUSE:Factory/.at-spi2-core.new.30200 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "at-spi2-core"

Tue May  5 15:14:43 2026 rev:125 rq:1350830 version:2.60.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/at-spi2-core/at-spi2-core.changes        
2026-04-29 19:17:51.349111175 +0200
+++ /work/SRC/openSUSE:Factory/.at-spi2-core.new.30200/at-spi2-core.changes     
2026-05-05 15:15:53.264466798 +0200
@@ -1,0 +2,6 @@
+Wed Apr 29 18:13:08 UTC 2026 - Bjørn Lie <[email protected]>
+
+- Update to version 2.60.3:
+  + libatspi: Fix another NULL pointer dereference.
+
+-------------------------------------------------------------------

Old:
----
  at-spi2-core-2.60.2.tar.xz

New:
----
  at-spi2-core-2.60.3.tar.xz

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

Other differences:
------------------
++++++ at-spi2-core.spec ++++++
--- /var/tmp/diff_new_pack.ancmIP/_old  2026-05-05 15:15:53.888492577 +0200
+++ /var/tmp/diff_new_pack.ancmIP/_new  2026-05-05 15:15:53.888492577 +0200
@@ -23,7 +23,7 @@
 %define atspiconfdir %{?_distconfdir}%{!?_distconfdir:%{_sysconfdir}}
 
 Name:           at-spi2-core
-Version:        2.60.2
+Version:        2.60.3
 Release:        0
 Summary:        Assistive Technology Service Provider Interface - D-Bus based 
implementation
 License:        LGPL-2.1-or-later

++++++ _scmsync.obsinfo ++++++
--- /var/tmp/diff_new_pack.ancmIP/_old  2026-05-05 15:15:53.920493898 +0200
+++ /var/tmp/diff_new_pack.ancmIP/_new  2026-05-05 15:15:53.928494229 +0200
@@ -1,6 +1,6 @@
-mtime: 1777200165
-commit: fe1f13866c2c7bc8adddc5c37a873bc7893b124d842a2624477c269945723ee7
+mtime: 1777486438
+commit: 65e6cf4256063ff5c2c51a36e02d1ce403c8872fc3eed3c9590867481c0a4500
 url: https://src.opensuse.org/GNOME/at-spi2-core
-revision: fe1f13866c2c7bc8adddc5c37a873bc7893b124d842a2624477c269945723ee7
+revision: 65e6cf4256063ff5c2c51a36e02d1ce403c8872fc3eed3c9590867481c0a4500
 projectscmsync: https://src.opensuse.org/GNOME/_ObsPrj
 

++++++ _service ++++++
--- /var/tmp/diff_new_pack.ancmIP/_old  2026-05-05 15:15:53.948495055 +0200
+++ /var/tmp/diff_new_pack.ancmIP/_new  2026-05-05 15:15:53.952495221 +0200
@@ -3,7 +3,7 @@
   <service name="obs_scm" mode="manual">
     <param name="scm">git</param>
     <param name="url">https://gitlab.gnome.org/GNOME/at-spi2-core.git</param>
-    <param name="revision">2.60.2</param>
+    <param name="revision">2.60.3</param>
     <param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
     <param name="versionrewrite-pattern">(.*)\+0</param>
     <param name="versionrewrite-replacement">\1</param>

++++++ at-spi2-core-2.60.2.tar.xz -> at-spi2-core-2.60.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.60.2/NEWS new/at-spi2-core-2.60.3/NEWS
--- old/at-spi2-core-2.60.2/NEWS        2026-04-25 21:17:12.000000000 +0200
+++ new/at-spi2-core-2.60.3/NEWS        2026-04-29 17:23:50.000000000 +0200
@@ -1,3 +1,7 @@
+What's new in at-spi2-core 2.60.3:
+
+* libatspi: Fix another NULL pointer dereference.
+
 What's new in at-spi2-core 2.60.2:
 
 * atspi-device-legacy: add null checks for when x11 isnt available.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.60.2/atspi/atspi-event-listener.c 
new/at-spi2-core-2.60.3/atspi/atspi-event-listener.c
--- old/at-spi2-core-2.60.2/atspi/atspi-event-listener.c        2026-04-25 
21:17:12.000000000 +0200
+++ new/at-spi2-core-2.60.3/atspi/atspi-event-listener.c        2026-04-29 
17:23:50.000000000 +0200
@@ -255,8 +255,7 @@
 {
   if (!strcmp (event->type, "object:property-change:accessible-parent"))
     {
-      if (event->source->accessible_parent)
-        g_object_unref (event->source->accessible_parent);
+      AtspiAccessible *old_parent = event->source->accessible_parent;
       if (G_VALUE_HOLDS (&event->any_data, ATSPI_TYPE_ACCESSIBLE))
         {
           event->source->accessible_parent = g_value_dup_object 
(&event->any_data);
@@ -267,6 +266,7 @@
           event->source->accessible_parent = NULL;
           event->source->cached_properties &= ~ATSPI_CACHE_PARENT;
         }
+      g_clear_object (&old_parent);
     }
   else if (!strcmp (event->type, "object:property-change:accessible-name"))
     {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.60.2/meson.build 
new/at-spi2-core-2.60.3/meson.build
--- old/at-spi2-core-2.60.2/meson.build 2026-04-25 21:17:12.000000000 +0200
+++ new/at-spi2-core-2.60.3/meson.build 2026-04-29 17:23:50.000000000 +0200
@@ -1,5 +1,5 @@
 project('at-spi2-core', 'c',
-        version: '2.60.2',
+        version: '2.60.3',
         license: 'LGPLv2.1+',
         default_options: [
           'buildtype=debugoptimized',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.60.2/po/LINGUAS 
new/at-spi2-core-2.60.3/po/LINGUAS
--- old/at-spi2-core-2.60.2/po/LINGUAS  2026-04-25 21:17:12.000000000 +0200
+++ new/at-spi2-core-2.60.3/po/LINGUAS  2026-04-29 17:23:50.000000000 +0200
@@ -53,6 +53,7 @@
 ko
 ku
 li
+lo
 lt
 lv
 mai
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.60.2/po/lo.po 
new/at-spi2-core-2.60.3/po/lo.po
--- old/at-spi2-core-2.60.2/po/lo.po    1970-01-01 01:00:00.000000000 +0100
+++ new/at-spi2-core-2.60.3/po/lo.po    2026-04-29 17:23:50.000000000 +0200
@@ -0,0 +1,817 @@
+# Lao translation for at-spi2-core.
+# Copyright (C) 2025 at-spi2-core's COPYRIGHT HOLDER
+# This file is distributed under the same license as the at-spi2-core package.
+# bone NI <[email protected]>,  2025.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: at-spi2-core gnome-49\n"
+"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/at-spi2-core/issues/\n";
+"POT-Creation-Date: 2025-09-21 15:05+0000\n"
+"PO-Revision-Date: 2025-09-21 15:05+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Lao <[email protected]>\n"
+"Language: lo\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: atk/atkhyperlink.c:127
+msgid "Selected Link"
+msgstr "ລິ້ງທີ່ເລືອກ"
+
+#: atk/atkhyperlink.c:128
+msgid "Specifies whether the AtkHyperlink object is selected"
+msgstr "ລະບຸວ່າວັດຖຸ AtkHyperlink ຖືກເລືອກຫຼືບໍ່"
+
+#: atk/atkhyperlink.c:134
+msgid "Number of Anchors"
+msgstr "ຈຳນວນຈຸດເຊື່ອມຕໍ່"
+
+#: atk/atkhyperlink.c:135
+msgid "The number of anchors associated with the AtkHyperlink object"
+msgstr "ຈຳນວນຈຸດເຊື່ອມຕໍ່ທີ່ກ່ຽວຂ້ອງກັບວັດຖຸ AtkHyperlink"
+
+#: atk/atkhyperlink.c:143
+msgid "End index"
+msgstr "ດັດຊະນີຈຸດສິ້ນສຸດ"
+
+#: atk/atkhyperlink.c:144
+msgid "The end index of the AtkHyperlink object"
+msgstr "ດັດຊະນີຈຸດສິ້ນສຸດຂອງວັດຖຸ AtkHyperlink"
+
+#: atk/atkhyperlink.c:152
+msgid "Start index"
+msgstr "ດັດຊະນີຈຸດເລີ່ມຕົ້ນ"
+
+#: atk/atkhyperlink.c:153
+msgid "The start index of the AtkHyperlink object"
+msgstr "ດັດຊະນີຈຸດເລີ່ມຕົ້ນຂອງວັດຖຸ AtkHyperlink"
+
+#: atk/atkobject.c:273
+msgid "Accessible Name"
+msgstr "ຊື່ທີ່ເຂົ້າເຖິງໄດ້"
+
+#: atk/atkobject.c:274
+msgid "Object instance’s name formatted for assistive technology access"
+msgstr "ຊື່ຂອງວັດຖຸທີ່ຈັດຮູບແບບສຳລັບການເຂົ້າເຖິງດ້ວຍເທັກໂນໂລຢີຊ່ວຍເຫຼືອ"
+
+#: atk/atkobject.c:280
+msgid "Accessible Description"
+msgstr "ຄຳອະທິບາຍທີ່ເຂົ້າເຖິງໄດ້"
+
+#: atk/atkobject.c:281
+msgid "Description of an object, formatted for assistive technology access"
+msgstr "ຄຳອະທິບາຍຂອງວັດຖຸ, ຈັດຮູບແບບສຳລັບການເຂົ້າເຖິງດ້ວຍເທັກໂນໂລຢີຊ່ວຍເຫຼືອ"
+
+#: atk/atkobject.c:287
+msgid "Accessible Parent"
+msgstr "ວັດຖຸແມ່ທີ່ເຂົ້າເຖິງໄດ້"
+
+#: atk/atkobject.c:288
+msgid "Parent of the current accessible as returned by atk_object_get_parent()"
+msgstr "ວັດຖຸແມ່ຂອງວັດຖຸປັດຈຸບັນທີ່ເຂົ້າເຖິງໄດ້ ດັ່ງທີ່ສົ່ງຄືນໂດຍ 
atk_object_get_parent()"
+
+#: atk/atkobject.c:304
+msgid "Accessible Value"
+msgstr "ຄ່າທີ່ເຂົ້າເຖິງໄດ້"
+
+#: atk/atkobject.c:305
+msgid "Is used to notify that the value has changed"
+msgstr "ໃຊ້ເພື່ອແຈ້ງເຕືອນວ່າຄ່າໄດ້ມີການປ່ຽນແປງ"
+
+#: atk/atkobject.c:313
+msgid "Accessible Role"
+msgstr "ບົດບາດທີ່ເຂົ້າເຖິງໄດ້"
+
+#: atk/atkobject.c:314
+msgid "The accessible role of this object"
+msgstr "ບົດບາດທີ່ເຂົ້າເຖິງໄດ້ຂອງວັດຖຸນີ້"
+
+#: atk/atkobject.c:321
+msgid "Accessible Layer"
+msgstr "ຊັ້ນທີ່ເຂົ້າເຖິງໄດ້"
+
+#: atk/atkobject.c:322
+msgid "The accessible layer of this object"
+msgstr "ຊັ້ນທີ່ເຂົ້າເຖິງໄດ້ຂອງວັດຖຸນີ້"
+
+#: atk/atkobject.c:330
+msgid "Accessible MDI Value"
+msgstr "ຄ່າ MDI ທີ່ເຂົ້າເຖິງໄດ້"
+
+#: atk/atkobject.c:331
+msgid "The accessible MDI value of this object"
+msgstr "ຄ່າ MDI ທີ່ເຂົ້າເຖິງໄດ້ຂອງວັດຖຸນີ້"
+
+#: atk/atkobject.c:347
+msgid "Accessible Table Caption"
+msgstr "ຄຳບັນຍາຍຕາຕະລາງທີ່ເຂົ້າເຖິງໄດ້"
+
+#: atk/atkobject.c:348
+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:362
+msgid "Accessible Table Column Header"
+msgstr "ຫົວຂໍ້ຖັນຕາຕະລາງທີ່ເຂົ້າເຖິງໄດ້"
+
+#: atk/atkobject.c:363
+msgid "Is used to notify that the table column header has changed"
+msgstr "ໃຊ້ເພື່ອແຈ້ງເຕືອນວ່າຫົວຂໍ້ຖັນຕາຕະລາງໄດ້ປ່ຽນແປງ"
+
+#: atk/atkobject.c:378
+msgid "Accessible Table Column Description"
+msgstr "ຄຳອະທິບາຍຖັນຕາຕະລາງທີ່ເຂົ້າເຖິງໄດ້"
+
+#: atk/atkobject.c:379
+msgid "Is used to notify that the table column description has changed"
+msgstr "ໃຊ້ເພື່ອແຈ້ງເຕືອນວ່າຄຳອະທິບາຍຖັນຕາຕະລາງໄດ້ປ່ຽນແປງ"
+
+#: atk/atkobject.c:394
+msgid "Accessible Table Row Header"
+msgstr "ຫົວຂໍ້ແຖວຕາຕະລາງທີ່ເຂົ້າເຖິງໄດ້"
+
+#: atk/atkobject.c:395
+msgid "Is used to notify that the table row header has changed"
+msgstr "ໃຊ້ເພື່ອແຈ້ງເຕືອນວ່າຫົວຂໍ້ແຖວຕາຕະລາງໄດ້ປ່ຽນແປງ"
+
+#: atk/atkobject.c:409
+msgid "Accessible Table Row Description"
+msgstr "ຄຳອະທິບາຍແຖວຕາຕະລາງທີ່ເຂົ້າເຖິງໄດ້"
+
+#: atk/atkobject.c:410
+msgid "Is used to notify that the table row description has changed"
+msgstr "ໃຊ້ເພື່ອແຈ້ງເຕືອນວ່າຄຳອະທິບາຍແຖວຕາຕະລາງໄດ້ປ່ຽນແປງ"
+
+#: atk/atkobject.c:416
+msgid "Accessible Table Summary"
+msgstr "ສະຫຼຸບຕາຕະລາງທີ່ເຂົ້າເຖິງໄດ້"
+
+#: atk/atkobject.c:417
+msgid "Is used to notify that the table summary has changed"
+msgstr "ໃຊ້ເພື່ອແຈ້ງເຕືອນວ່າສະຫຼຸບຕາຕະລາງໄດ້ປ່ຽນແປງ"
+
+#: atk/atkobject.c:423
+msgid "Accessible Table Caption Object"
+msgstr "ວັດຖຸຄຳບັນຍາຍຕາຕະລາງທີ່ເຂົ້າເຖິງໄດ້"
+
+#: atk/atkobject.c:424
+msgid "Is used to notify that the table caption has changed"
+msgstr "ໃຊ້ເພື່ອແຈ້ງເຕືອນວ່າຄຳບັນຍາຍຕາຕະລາງໄດ້ປ່ຽນແປງ"
+
+#: atk/atkobject.c:430
+msgid "Number of Accessible Hypertext Links"
+msgstr "ຈຳນວນລິ້ງຂໍ້ຄວາມພິເສດທີ່ເຂົ້າເຖິງໄດ້"
+
+#: atk/atkobject.c:431
+msgid "The number of links which the current AtkHypertext has"
+msgstr "ຈຳນວນລິ້ງທີ່ AtkHypertext ປັດຈຸບັນມີຢູ່"
+
+#: atk/atkobject.c:440
+msgid "Accessible ID"
+msgstr "ໄອດີທີ່ເຂົ້າເຖິງໄດ້"
+
+#: atk/atkobject.c:441
+msgid "ID for the accessible; useful for automated testing"
+msgstr "ໄອດີສຳລັບວັດຖຸທີ່ເຂົ້າເຖິງໄດ້; ເປັນປະໂຫຍດສຳລັບການທົດສອບແບບອັດຕະໂນມັດ"
+
+#: atk/atkobject.c:447
+msgid "Help text"
+msgstr "ຂໍ້ຄວາມຊ່ວຍເຫຼືອ"
+
+#: atk/atkobject.c:448
+msgid "Help text associated with the accessible"
+msgstr "ຂໍ້ຄວາມຊ່ວຍເຫຼືອທີ່ກ່ຽວຂ້ອງກັບວັດຖຸທີ່ເຂົ້າເຖິງໄດ້"
+
+#. Translators: This string describes a range within value-related
+#. * widgets such as a password-strength meter. Note that what such a
+#. * widget presents is controlled by application developers. Thus
+#. * assistive technologies such as screen readers are expected to
+#. * present this string alone or as a token in a list.
+#.
+#: atk/atkvalue.c:193
+msgid "very weak"
+msgstr "ອ່ອນຫຼາຍ"
+
+#. Translators: This string describes a range within value-related
+#. * widgets such as a password-strength meter. Note that what such a
+#. * widget presents is controlled by application developers. Thus
+#. * assistive technologies such as screen readers are expected to
+#. * present this string alone or as a token in a list.
+#.
+#: atk/atkvalue.c:200
+msgid "weak"
+msgstr "ອ່ອນ"
+
+#. Translators: This string describes a range within value-related
+#. * widgets such as a password-strength meter. Note that what such a
+#. * widget presents is controlled by application developers. Thus
+#. * assistive technologies such as screen readers are expected to
+#. * present this string alone or as a token in a list.
+#.
+#: atk/atkvalue.c:207
+msgid "acceptable"
+msgstr "ພໍໃຊ້ໄດ້"
+
+#. Translators: This string describes a range within value-related
+#. * widgets such as a password-strength meter. Note that what such a
+#. * widget presents is controlled by application developers. Thus
+#. * assistive technologies such as screen readers are expected to
+#. * present this string alone or as a token in a list.
+#.
+#: atk/atkvalue.c:214
+msgid "strong"
+msgstr "ແຂງແຮງ"
+
+#. Translators: This string describes a range within value-related
+#. * widgets such as a password-strength meter. Note that what such a
+#. * widget presents is controlled by application developers. Thus
+#. * assistive technologies such as screen readers are expected to
+#. * present this string alone or as a token in a list.
+#.
+#: atk/atkvalue.c:221
+msgid "very strong"
+msgstr "ແຂງແຮງຫຼາຍ"
+
+#. Translators: This string describes a range within value-related
+#. * widgets such as a volume slider. Note that what such a widget
+#. * presents (e.g. temperature, volume, price) is controlled by
+#. * application developers. Thus assistive technologies such as screen
+#. * readers are expected to present this string alone or as a token in
+#. * a list.
+#.
+#: atk/atkvalue.c:229
+msgid "very low"
+msgstr "ຕ່ຳຫຼາຍ"
+
+#. Translators: This string describes a range within value-related
+#. * widgets such as a volume slider. Note that what such a widget
+#. * presents (e.g. temperature, volume, price) is controlled by
+#. * application developers. Thus assistive technologies such as screen
+#. * readers are expected to present this string alone or as a token in
+#. * a list.
+#.
+#: atk/atkvalue.c:237
+msgid "medium"
+msgstr "ປານກາງ"
+
+#. Translators: This string describes a range within value-related
+#. * widgets such as a volume slider. Note that what such a widget
+#. * presents (e.g. temperature, volume, price) is controlled by
+#. * application developers. Thus assistive technologies such as screen
+#. * readers are expected to present this string alone or as a token in
+#. * a list.
+#.
+#: atk/atkvalue.c:245
+msgid "high"
+msgstr "ສູງ"
+
+#. Translators: This string describes a range within value-related
+#. * widgets such as a volume slider. Note that what such a widget
+#. * presents (e.g. temperature, volume, price) is controlled by
+#. * application developers. Thus assistive technologies such as screen
+#. * readers are expected to present this string alone or as a token in
+#. * a list.
+#.
+#: atk/atkvalue.c:253
+msgid "very high"
+msgstr "ສູງຫຼາຍ"
+
+#. Translators: This string describes a range within value-related
+#. * widgets such as a hard drive usage. Note that what such a widget
+#. * presents (e.g. hard drive usage, network traffic) is controlled by
+#. * application developers. Thus assistive technologies such as screen
+#. * readers are expected to present this string alone or as a token in
+#. * a list.
+#.
+#: atk/atkvalue.c:261
+msgid "very bad"
+msgstr "ບໍ່ດີຫຼາຍ"
+
+#. Translators: This string describes a range within value-related
+#. * widgets such as a hard drive usage. Note that what such a widget
+#. * presents (e.g. hard drive usage, network traffic) is controlled by
+#. * application developers. Thus assistive technologies such as screen
+#. * readers are expected to present this string alone or as a token in
+#. * a list.
+#.
+#: atk/atkvalue.c:269
+msgid "bad"
+msgstr "ບໍ່ດີ"
+
+#. Translators: This string describes a range within value-related
+#. * widgets such as a hard drive usage. Note that what such a widget
+#. * presents (e.g. hard drive usage, network traffic) is controlled by
+#. * application developers. Thus assistive technologies such as screen
+#. * readers are expected to present this string alone or as a token in
+#. * a list.
+#.
+#: atk/atkvalue.c:277
+msgid "good"
+msgstr "ດີ"
+
+#. Translators: This string describes a range within value-related
+#. * widgets such as a hard drive usage. Note that what such a widget
+#. * presents (e.g. hard drive usage, network traffic) is controlled by
+#. * application developers. Thus assistive technologies such as screen
+#. * readers are expected to present this string alone or as a token in
+#. * a list.
+#.
+#: atk/atkvalue.c:285
+msgid "very good"
+msgstr "ດີຫຼາຍ"
+
+#. Translators: This string describes a range within value-related
+#. * widgets such as a hard drive usage. Note that what such a widget
+#. * presents (e.g. hard drive usage, network traffic) is controlled by
+#. * application developers. Thus assistive technologies such as screen
+#. * readers are expected to present this string alone or as a token in
+#. * a list.
+#.
+#: atk/atkvalue.c:293
+msgid "best"
+msgstr "ດີທີ່ສຸດ"
+
+#: atspi/atspi-component.c:341 atspi/atspi-misc.c:1230 atspi/atspi-value.c:123
+msgid "The application no longer exists"
+msgstr "ແອັບພລິເຄຊັນບໍ່ມີຢູອີກຕໍ່ໄປ"
+
+#: atspi/atspi-misc.c:49
+msgid "invalid"
+msgstr "ບໍ່ຖືກຕ້ອງ"
+
+#: atspi/atspi-misc.c:50
+msgid "accelerator label"
+msgstr "ປ້າຍກຳກັບປຸ່ມລັດ"
+
+#: atspi/atspi-misc.c:51
+msgid "alert"
+msgstr "ແຈ້ງເຕືອນ"
+
+#: atspi/atspi-misc.c:52
+msgid "animation"
+msgstr "ພາບເຄື່ອນໄຫວ"
+
+#: atspi/atspi-misc.c:53
+msgid "arrow"
+msgstr "ລູກສອນ"
+
+#: atspi/atspi-misc.c:54
+msgid "calendar"
+msgstr "ປະຕິທິນ"
+
+#: atspi/atspi-misc.c:55
+msgid "canvas"
+msgstr "ຜ້າໃບ"
+
+#: atspi/atspi-misc.c:56
+msgid "check box"
+msgstr "ກ່ອງໝາຍ"
+
+#: atspi/atspi-misc.c:57
+msgid "check menu item"
+msgstr "ລາຍການເມນູແບບໝາຍ"
+
+#: atspi/atspi-misc.c:58
+msgid "color chooser"
+msgstr "ໂຕເລືອກສີ"
+
+#: atspi/atspi-misc.c:59
+msgid "column header"
+msgstr "ຫົວຂໍ້ຖັນ"
+
+#: atspi/atspi-misc.c:60
+msgid "combo box"
+msgstr "ກ່ອງລວມ"
+
+#: atspi/atspi-misc.c:61
+msgid "dateeditor"
+msgstr "ໂຕແກ້ໄຂວັນທີ"
+
+#: atspi/atspi-misc.c:62
+msgid "desktop icon"
+msgstr "ໄອຄອນໜ້າເດສທັອບ"
+
+#: atspi/atspi-misc.c:63
+msgid "desktop frame"
+msgstr "ຂອບໜ້າເດສທັອບ"
+
+#: atspi/atspi-misc.c:64
+msgid "dial"
+msgstr "ໜ້າປັດ"
+
+#: atspi/atspi-misc.c:65
+msgid "dialog"
+msgstr "ກ່ອງໂຕ້ຕອບ"
+
+#: atspi/atspi-misc.c:66
+msgid "directory pane"
+msgstr "ແຖບໄດເຣັກທໍຣີ"
+
+#: atspi/atspi-misc.c:67
+msgid "drawing area"
+msgstr "ພື້ນທີ່ແຕ້ມຮູບ"
+
+#: atspi/atspi-misc.c:68
+msgid "file chooser"
+msgstr "ໂຕເລືອກໄຟລ໌"
+
+#: atspi/atspi-misc.c:69
+msgid "filler"
+msgstr "ໂຕເຕີມເຕັມ"
+
+#. I know it looks wrong but that is what Java returns
+#: atspi/atspi-misc.c:71
+msgid "fontchooser"
+msgstr "ໂຕເລືອກຟອນ"
+
+#: atspi/atspi-misc.c:72
+msgid "frame"
+msgstr "ຂອບ"
+
+#: atspi/atspi-misc.c:73
+msgid "glass pane"
+msgstr "ແຖບແກ້ວ"
+
+#: atspi/atspi-misc.c:74
+msgid "html container"
+msgstr "ໂຕບັນຈຸ HTML"
+
+#: atspi/atspi-misc.c:75
+msgid "icon"
+msgstr "ໄອຄອນ"
+
+#: atspi/atspi-misc.c:76
+msgid "image"
+msgstr "ຮູບພາບ"
+
+#: atspi/atspi-misc.c:77
+msgid "internal frame"
+msgstr "ຂອບພາຍໃນ"
+
+#: atspi/atspi-misc.c:78
+msgid "label"
+msgstr "ປ້າຍກຳກັບ"
+
+#: atspi/atspi-misc.c:79
+msgid "layered pane"
+msgstr "ແຖບຊ້ອນ"
+
+#: atspi/atspi-misc.c:80
+msgid "list"
+msgstr "ລາຍການ"
+
+#: atspi/atspi-misc.c:81
+msgid "list item"
+msgstr "ລາຍການຍ່ອຍ"
+
+#: atspi/atspi-misc.c:82
+msgid "menu"
+msgstr "ເມນູ"
+
+#: atspi/atspi-misc.c:83
+msgid "menu bar"
+msgstr "ແຖບເມນູ"
+
+#: atspi/atspi-misc.c:84
+msgid "menu button"
+msgstr "ປຸ່ມເມນູ"
+
+#: atspi/atspi-misc.c:85
+msgid "menu item"
+msgstr "ລາຍການເມນູ"
+
+#: atspi/atspi-misc.c:86
+msgid "option pane"
+msgstr "ແຖບຕົວເລືອກ"
+
+#: atspi/atspi-misc.c:87
+msgid "page tab"
+msgstr "ແຖບໜ້າ"
+
+#: atspi/atspi-misc.c:88
+msgid "page tab list"
+msgstr "ລາຍການແຖບໜ້າ"
+
+#: atspi/atspi-misc.c:89
+msgid "panel"
+msgstr "ແຜງຄວບຄຸມ"
+
+#: atspi/atspi-misc.c:90
+msgid "password text"
+msgstr "ຂໍ້ຄວາມລະຫັດຜ່ານ"
+
+#: atspi/atspi-misc.c:91
+msgid "popup menu"
+msgstr "ເມນູປັອບອັບ"
+
+#: atspi/atspi-misc.c:92
+msgid "progress bar"
+msgstr "ແຖບຄວາມຄືບໜ້າ"
+
+#: atspi/atspi-misc.c:93
+msgid "button"
+msgstr "ປຸ່ມ"
+
+#: atspi/atspi-misc.c:94
+msgid "radio button"
+msgstr "ປຸ່ມເຣດິໂອ"
+
+#: atspi/atspi-misc.c:95
+msgid "radio menu item"
+msgstr "ລາຍການເມນູແບບເຣດິໂອ"
+
+#: atspi/atspi-misc.c:96
+msgid "root pane"
+msgstr "ແຖບຮາກ"
+
+#: atspi/atspi-misc.c:97
+msgid "row header"
+msgstr "ຫົວຂໍ້ແຖວ"
+
+#: atspi/atspi-misc.c:98
+msgid "scroll bar"
+msgstr "ແຖບເລື່ອນ"
+
+#: atspi/atspi-misc.c:99
+msgid "scroll pane"
+msgstr "ພື້ນທີ່ເລື່ອນ"
+
+#: atspi/atspi-misc.c:100
+msgid "separator"
+msgstr "ເສັ້ນຂັ້ນ"
+
+#: atspi/atspi-misc.c:101
+msgid "slider"
+msgstr "ໂຕເລື່ອນ"
+
+#: atspi/atspi-misc.c:102
+msgid "split pane"
+msgstr "ແຖບແບ່ງ"
+
+#: atspi/atspi-misc.c:103
+msgid "spin button"
+msgstr "ປຸ່ມໝຸນ"
+
+#: atspi/atspi-misc.c:104
+msgid "statusbar"
+msgstr "ແຖບສະຖານະ"
+
+#: atspi/atspi-misc.c:105
+msgid "switch"
+msgstr "ສະວິດ"
+
+#: atspi/atspi-misc.c:106
+msgid "table"
+msgstr "ຕາຕະລາງ"
+
+#: atspi/atspi-misc.c:107
+msgid "table cell"
+msgstr "ຫ້ອງຕາຕະລາງ"
+
+#: atspi/atspi-misc.c:108
+msgid "table column header"
+msgstr "ຫົວຂໍ້ຖັນຕາຕະລາງ"
+
+#: atspi/atspi-misc.c:109
+msgid "table row header"
+msgstr "ຫົວຂໍ້ແຖວຕາຕະລາງ"
+
+#: atspi/atspi-misc.c:110
+msgid "tear off menu item"
+msgstr "ລາຍການເມນູແບບດຶງອອກ"
+
+#: atspi/atspi-misc.c:111
+msgid "terminal"
+msgstr "ເທີມິນໍ"
+
+#: atspi/atspi-misc.c:112
+msgid "text"
+msgstr "ຂໍ້ຄວາມ"
+
+#: atspi/atspi-misc.c:113
+msgid "toggle button"
+msgstr "ປຸ່ມສະຫຼັບ"
+
+#: atspi/atspi-misc.c:114
+msgid "tool bar"
+msgstr "ແຖບເຄື່ອງມື"
+
+#: atspi/atspi-misc.c:115
+msgid "tool tip"
+msgstr "ຄຳແນະນຳເຄື່ອງມື"
+
+#: atspi/atspi-misc.c:116
+msgid "tree"
+msgstr "ຕົ້ນໄມ້"
+
+#: atspi/atspi-misc.c:117
+msgid "tree table"
+msgstr "ຕາຕະລາງແບບຕົ້ນໄມ້"
+
+#: atspi/atspi-misc.c:118
+msgid "unknown"
+msgstr "ບໍ່ຮູ້ຈັກ"
+
+#: atspi/atspi-misc.c:119
+msgid "viewport"
+msgstr "ຊ່ອງເບິ່ງ"
+
+#: atspi/atspi-misc.c:120
+msgid "window"
+msgstr "ໜ້າຕ່າງ"
+
+#: atspi/atspi-misc.c:121
+msgid "header"
+msgstr "ຫົວຂໍ້"
+
+#: atspi/atspi-misc.c:122
+msgid "footer"
+msgstr "ທ້າຍຂໍ້"
+
+#: atspi/atspi-misc.c:123
+msgid "paragraph"
+msgstr "ຫຍໍ້ໜ້າ"
+
+#: atspi/atspi-misc.c:124
+msgid "ruler"
+msgstr "ໄມ້ບັນທັດ"
+
+#: atspi/atspi-misc.c:125
+msgid "application"
+msgstr "ແອັບພລິເຄຊັນ"
+
+#: atspi/atspi-misc.c:126
+msgid "autocomplete"
+msgstr "ເຕີມເຕັມອັດຕະໂນມັດ"
+
+#: atspi/atspi-misc.c:127
+msgid "edit bar"
+msgstr "ແຖບແກ້ໄຂ"
+
+#: atspi/atspi-misc.c:128
+msgid "embedded component"
+msgstr "ສ່ວນປະກອບຝັງ"
+
+#: atspi/atspi-misc.c:129
+msgid "entry"
+msgstr "ຊ່ອງປ້ອນຂໍ້ມູນ"
+
+#: atspi/atspi-misc.c:130
+msgid "chart"
+msgstr "ແຜນພູມ"
+
+#: atspi/atspi-misc.c:131
+msgid "caption"
+msgstr "ຄຳບັນຍາຍ"
+
+#: atspi/atspi-misc.c:132
+msgid "document frame"
+msgstr "ຂອບເອກະສານ"
+
+#: atspi/atspi-misc.c:133
+msgid "heading"
+msgstr "ຫົວເລື່ອງ"
+
+#: atspi/atspi-misc.c:134
+msgid "page"
+msgstr "ໜ້າ"
+
+#: atspi/atspi-misc.c:135
+msgid "section"
+msgstr "ພາກສ່ວນ"
+
+#: atspi/atspi-misc.c:136
+msgid "redundant object"
+msgstr "ວັດຖຸຊ້ຳຊ້ອນ"
+
+#: atspi/atspi-misc.c:137
+msgid "form"
+msgstr "ແບບຟອມ"
+
+#: atspi/atspi-misc.c:138
+msgid "link"
+msgstr "ລິ້ງ"
+
+#: atspi/atspi-misc.c:139
+msgid "input method window"
+msgstr "ໜ້າຕ່າງວິທີປ້ອນຂໍ້ມູນ"
+
+#: atspi/atspi-misc.c:140
+msgid "table row"
+msgstr "ແຖວຕາຕະລາງ"
+
+#: atspi/atspi-misc.c:141
+msgid "tree item"
+msgstr "ລາຍການຕົ້ນໄມ້"
+
+#: atspi/atspi-misc.c:142
+msgid "document spreadsheet"
+msgstr "ເອກະສານຕາຕະລາງ"
+
+#: atspi/atspi-misc.c:143
+msgid "document presentation"
+msgstr "ເອກະສານນຳສະເໜີ"
+
+#: atspi/atspi-misc.c:144
+msgid "document text"
+msgstr "ເອກະສານຂໍ້ຄວາມ"
+
+#: atspi/atspi-misc.c:145
+msgid "document web"
+msgstr "ເອກະສານເວັບ"
+
+#: atspi/atspi-misc.c:146
+msgid "document email"
+msgstr "ເອກະສານອີເມລ"
+
+#: atspi/atspi-misc.c:147
+msgid "comment"
+msgstr "ຄວາມຄິດເຫັນ"
+
+#: atspi/atspi-misc.c:148
+msgid "list box"
+msgstr "ກ່ອງລາຍການ"
+
+#: atspi/atspi-misc.c:149
+msgid "grouping"
+msgstr "ການຈັດກຸ່ມ"
+
+#: atspi/atspi-misc.c:150
+msgid "image map"
+msgstr "ແຜນທີ່ຮູບພາບ"
+
+#: atspi/atspi-misc.c:151
+msgid "notification"
+msgstr "ການແຈ້ງເຕືອນ"
+
+#: atspi/atspi-misc.c:152
+msgid "info bar"
+msgstr "ແຖບຂໍ້ມູນ"
+
+#: atspi/atspi-misc.c:153
+msgid "level bar"
+msgstr "ແຖບລະດັບ"
+
+#: atspi/atspi-misc.c:154
+msgid "title bar"
+msgstr "ແຖບຫົວເລື່ອງ"
+
+#: atspi/atspi-misc.c:155
+msgid "block quote"
+msgstr "ຂໍ້ອ້າງອີງແບບບລັອກ"
+
+#: atspi/atspi-misc.c:156
+msgid "audio"
+msgstr "ສຽງ"
+
+#: atspi/atspi-misc.c:157
+msgid "video"
+msgstr "ວິດີໂອ"
+
+#: atspi/atspi-misc.c:158
+msgid "definition"
+msgstr "ຄຳນິຍາມ"
+
+#: atspi/atspi-misc.c:159
+msgid "article"
+msgstr "ບົດຄວາມ"
+
+#: atspi/atspi-misc.c:160
+msgid "landmark"
+msgstr "ຈຸດສັງເກດ"
+
+#: atspi/atspi-misc.c:161
+msgid "log"
+msgstr "ບັນທຶກ"
+
+#: atspi/atspi-misc.c:162
+msgid "marquee"
+msgstr "ຂໍ້ຄວາມເລື່ອນ"
+
+#: atspi/atspi-misc.c:163
+msgid "math"
+msgstr "ຄະນິດສາດ"
+
+#: atspi/atspi-misc.c:164
+msgid "rating"
+msgstr "ການໃຫ້ຄະແນນ"
+
+#: atspi/atspi-misc.c:165
+msgid "timer"
+msgstr "ໂຕຈັບເວລາ"
+
+#: atspi/atspi-misc.c:166
+msgid "description list"
+msgstr "ລາຍການຄຳອະທິບາຍ"
+
+#: atspi/atspi-misc.c:167
+msgid "description term"
+msgstr "ຄຳສັບຄຳອະທິບາຍ"
+
+#: atspi/atspi-misc.c:168
+msgid "description value"
+msgstr "ຄ່າຄຳອະທິບາຍ"

++++++ at-spi2-core.obsinfo ++++++
--- /var/tmp/diff_new_pack.ancmIP/_old  2026-05-05 15:15:54.392513398 +0200
+++ /var/tmp/diff_new_pack.ancmIP/_new  2026-05-05 15:15:54.396513564 +0200
@@ -1,5 +1,5 @@
 name: at-spi2-core
-version: 2.60.2
-mtime: 1777144632
-commit: af9820fca7d5eedd7aa03c22ac211296dec5b17b
+version: 2.60.3
+mtime: 1777476230
+commit: d2c5f8a4663c286eb927a6e4ed799135fcaf3018
 

++++++ build.specials.obscpio ++++++

++++++ build.specials.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore      1970-01-01 01:00:00.000000000 +0100
+++ new/.gitignore      2026-04-29 20:13:58.000000000 +0200
@@ -0,0 +1,5 @@
+*.obscpio
+*.osc
+_build.*
+.pbuild
+osc-collab.*

Reply via email to