commit 078859af53858cddfa99c4b72070a70ed3eb6772
Author: Alexander Schwinn <alexxcons@xfce.org>
Date:   Sun Dec 15 10:33:04 2024 +0100

    Updates for release

commit 0a51917b5904943bb7fed32d3974073c52c23a4f
Author: Anonymous <noreply@xfce.org>
Date:   Mon Dec 9 12:53:44 2024 +0100

    I18n: Update translation ro (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 6e13d2576b3c46b6b9f0f6ee4ad1b7f146ca77ec
Author: Alexander Schwinn <alexxcons@xfce.org>
Date:   Sun Dec 1 16:26:25 2024 +0100

    Back to development

commit 8f9d673b363100a7642a3730b99c03800de40e0b
Author: Alexander Schwinn <alexxcons@xfce.org>
Date:   Sun Dec 1 16:24:54 2024 +0100

    Updates for release

commit 225d3c8979c4d2b3692603d58871b680ae3b23a1
Author: correctmost <11866-correctmost@users.noreply.gitlab.xfce.org>
Date:   Tue Nov 26 14:20:24 2024 -0500

    Fix FakeGdkRGBA and FakeGdkColor leaks

commit 9c4ea6c1c4c5f67ef825a614faa06bb9f90d6e28
Author: correctmost <11866-correctmost@users.noreply.gitlab.xfce.org>
Date:   Tue Nov 26 15:16:20 2024 -0500

    tests: Fix D-Bus error reporting when xfconfd is not auto-started
    
    Completes: 54df98d3fd

commit 508d6e6c3b38a98de58d977ca66d29d463841749
Author: Anonymous <noreply@xfce.org>
Date:   Thu Nov 21 00:53:33 2024 +0100

    I18n: Update translation pl (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 48ee66a2b78ffb599f8108503ab4d8f544b40683
Author: Anonymous <noreply@xfce.org>
Date:   Sat Nov 16 12:53:01 2024 +0100

    I18n: Update translation gl (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 621ce5ad7bb7553da11876d93137b8b9a4ed791c
Author: Anonymous <noreply@xfce.org>
Date:   Mon Nov 4 00:59:02 2024 +0100

    I18n: Update translation cs (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 37a1bac17f74f11efa339b2e087c0fc2806cfd20
Author: Alexander Schwinn <alexxcons@xfce.org>
Date:   Fri Nov 1 22:31:22 2024 +0100

    Back to development

commit 7125e2fb4c8c7503ff5d7bb5f868731b2b1a0130
Author: Alexander Schwinn <alexxcons@xfce.org>
Date:   Fri Nov 1 21:40:21 2024 +0100

    Updates for release

commit 263f1e930f6d11a8e0b33b71bccd36f9040db89e
Author: Veronika Kerm <veronika.kerm@gmail.com>
Date:   Tue Oct 22 16:17:53 2024 +0000

    xfconf-query: print array property values when -lv

commit 490ccadb25037cf80bd68cc1df4ac3082de5dd51
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Oct 18 08:18:34 2024 +0200

    Back to development

commit 10e420b0b73917e2afb1e9b73a843d679333df85
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Oct 18 08:09:56 2024 +0200

    Updates for release

commit 80c2d44a6587fb209ce6196e2096ce3c99df9140
Author: Brian J. Tarricone <brian@tarricone.org>
Date:   Mon Oct 14 21:52:33 2024 -0700

    Safer/better way to find GdkColor/GdkRGBA GTypes in the unified API
    
    Since an app may never load or use a GObject class or anything that ever
    calls gdk_color_get_type() / gdk_rgba_get_type(), those types may never
    get registered with the type system.  And since now we try to find their
    types much earlier, that could result in a g_critical warning, even if
    the callers never intended to use those types.
    
    Just as bad, if a caller *does* want to use those types, but first binds
    something that doesn't use those types, before they're registered with
    the type system, then they will fail to work even once they *are*
    registered with the type system, because of the GOnce.
    
    So instead, unless xfconf_g_property_bind_gdkcolor() or
    xfconf_g_property_bind_gdkrgba() are called directly, we ignore failures
    to resolve those types, and, further, only try to resolve them in
    xfconf_g_property_bind() in situations where someone might actually be
    trying to bind one of those types.
    
    Closes #42

commit 12f310338ef39abfd26b4d4575ea98b6a45aba15
Author: Brian J. Tarricone <brian@tarricone.org>
Date:   Thu Oct 10 14:06:58 2024 -0700

    Mark xfconf_g_property_bind_gdkcolor/gdkrgba() as deprecated

commit 60f7d8cf6c9e63d8879837f5b4542a2ee8493455
Author: Brian J. Tarricone <brian@tarricone.org>
Date:   Thu Oct 10 14:05:53 2024 -0700

    Allow calling xfconf_g_property_bind() with GdkColor or GdkRGBA types
    
    There's really no reason for the "special case" public APIs for binding
    GdkColor and GdkRGBA types: we can simply check for these in
    xfconf_g_property_bind() and handle them specially.
    
    This is helpful for cases where you have a bunch of properties to bind,
    and have listed them in a struct that matches setting names and types
    with gobject property names.  That way you don't have to special-case
    any GdkRGBA or GdkColor types when creating the binding.

commit 982ef93c95e63b6e0dd89386cf499e1edf41720d
Author: Brian J. Tarricone <brian@tarricone.org>
Date:   Thu Oct 10 14:04:38 2024 -0700

    Clean up how GdkColor/GdkRGBA GTypes are initialized
    
    This should be done behind a GOnce for safety; while XfconfChannel isn't
    thread-safe, users can create separate channels on separate threads.

commit 38e0c40201ec8a455a1421967a9a7d7a458fe7d0
Author: Anonymous <noreply@xfce.org>
Date:   Fri Oct 4 12:53:56 2024 +0200

    I18n: Update translation pl (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 95436f2f709f519760fad17e1e554acf4d05ad32
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Oct 2 18:56:14 2024 +0200

    build: Bump requirements for Xfce 4.20

commit 54df98d3fd27fec38ab0e261b9707b12293e2d33
Author: correctmost <11866-correctmost@users.noreply.gitlab.xfce.org>
Date:   Thu Sep 19 13:48:38 2024 -0400

    tests: Report D-Bus error when xfconfd is not auto-started
    
    This should make it easier to debug intermittent distcheck failures
    on CI.

commit 2b2c15e464846ebff7d3fd731093276565a4d1aa
Author: correctmost <11866-correctmost@users.noreply.gitlab.xfce.org>
Date:   Thu Sep 19 13:44:16 2024 -0400

    tests: Fix xfconf_channel_get_string leak

commit 3e9742ea45a97df0cc269ab996158d43410cc619
Author: correctmost <11866-correctmost@users.noreply.gitlab.xfce.org>
Date:   Thu Sep 19 05:41:01 2024 -0400

    cache: Fix leaks in xfconf_cache_handle_property_changed

commit e6156aac0c94210d87efed63f522d301f5e00933
Author: correctmost <11866-correctmost@users.noreply.gitlab.xfce.org>
Date:   Thu Sep 19 06:30:14 2024 -0400

    ci: Update references for autotools/meson split

commit 2153939683e4829520803d769366993ce06b0f29
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Sep 17 23:26:26 2024 +0200

    Apply .clang-format file

commit 9ffdfc26e7f8aaef8381446b8f7a6dfd69b3d51b
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Sep 17 23:41:47 2024 +0200

    Preliminary cleanup

commit a3d4ca2a9b272a473261738ec444bd438ca13a45
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Sep 17 19:43:53 2024 +0200

    Sort includes

commit 62814f9d3e93303d6a5531b98373c9a327ba7964
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Sep 17 19:37:57 2024 +0200

    clang-format: Add file
    
    Related: apps/orage#32, xfce/xfce4-dev-tools!101

commit 459394387170b99c24478b4698c6ed5378258e2a
Author: Brian J. Tarricone <brian@tarricone.org>
Date:   Tue Sep 3 15:04:46 2024 -0700

    Clarify xfconf_channel_set_string() API docs

commit c2356e16f3a1588051332c233ef401fb8827627d
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Sep 3 16:01:04 2024 +0200

    channel: Fix get_string() return value
    
    NULL is an authorized value for set_string() as it is for GValue (unlike
    GVariant).

commit 619cb8e945cd568083809ca7ff4b1f4856d5a4f9
Author: correctmost <11866-correctmost@users.noreply.gitlab.xfce.org>
Date:   Thu Aug 15 10:53:45 2024 -0400

    cache: Fix leak in xfconf_cache_prefetch
    
    Closes #41

commit d21a1a55ef8d8f765d5d6aaffb57a102ffe0290b
Author: correctmost <11866-correctmost@users.noreply.gitlab.xfce.org>
Date:   Thu Aug 15 07:54:44 2024 -0400

    xfconf-query: Fix GOptionContext memory leak

commit b92616d302ca9ab6920d1c6e693f5ce6c511394f
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jul 24 00:55:18 2024 +0200

    I18n: Update translation ast (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 4acf029b2de18ae8a8bf0f3c197a87e9c1ed6c1c
Author: Simon McVittie <simon.mcvittie@collabora.co.uk>
Date:   Mon Sep 28 17:01:36 2015 +0100

    Add a systemd user unit corresponding to the D-Bus session service
    
    This lets systemd put xfconfd in its own cgroup, instead of treating it
    as part of dbus.service.
    
    Closes: #4
    Co-authored-by: Gaël Bonithon <gael@xfce.org>

commit 6153ff41b102d4d09a5eae39415292f49ef57b89
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Jun 7 16:30:55 2024 +0200

    gcc-analyzer: Fix -Wanalyzer-null-dereference
    
    property != NULL is checked upstream in xfconf-channel.c, and this
    probably shouldn't be an assert in xfconf_cache_old_item_new() (which
    by itself works with property == NULL)
    
    Name validation in xfconf-backend-perchannel-xml.c however should
    probably be turned into normal checks instead of asserts, let's add
    these sanity checks anyway.

commit 3204a6394279c2d1a0ce3b5757cb279eb4ffdd9b
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Jun 7 16:11:20 2024 +0200

    scan-build: Add false positive file

commit a442633bb3e7aa816e03dcd1469d6cdbba538eb7
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Jun 4 22:37:44 2024 +0200

    ci: Fix jobs extending .distcheck
    
    Update after xfce4-dev-tools@8bf2175d178313c2b6b6a7efb634cd98917c2290.

commit c3c525bf0487e0abce8ee480b70bd7dd5db791a9
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Jun 4 13:00:28 2024 +0200

    build: Use AM_DISTCHECK_CONFIGURE_FLAGS
    
    So user can extend or override the flags provided there by defining the
    DISTCHECK_CONFIGURE_FLAGS variable. Especially required since
    xfce/xfce4-dev-tools!108.

commit 573e01d304e00eafc5c47fcb969b210630a1591a
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jun 1 17:40:19 2024 +0200

    channel: Fix get_properties()
    
    This function is documented as returning a new GHashTable when there is
    no programmer error, so it should return an empty GHashTable when it
    fails to get the result for some reason (e.g. the requested base
    property does not exist).

commit 1a79acdcf04ff7b293b3a7f7272a054c6a80c054
Author: Gaël Bonithon <gael@xfce.org>
Date:   Thu May 23 10:33:33 2024 +0200

    channel: Warn if queried type does not match property type
    
    See !39 for a discussion of possible type conversion.
    
    Closes: #39

commit e90b4c635345fce9b3a166f7163c34c8d23ed13f
Author: Brian J. Tarricone <brian@tarricone.org>
Date:   Thu Apr 4 16:54:29 2024 -0700

    Add missing GIR annotations
    
    Some nullability and constructor annotations were missing, causing the
    Rust binding generator to make a few mistakes.

commit 522c6d4b6ff441bd585f3a436eb41e5a03607ca3
Author: Gaël Bonithon <gael@xfce.org>
Date:   Thu Feb 29 15:26:02 2024 +0100

    Back to development

commit 71e742d3a79193899ed37a007b0abcc4b8ce1f5d
Author: Gaël Bonithon <gael@xfce.org>
Date:   Thu Feb 29 15:25:39 2024 +0100

    Updates for release

commit 22f291a0c290b2a5cb2790a4df10f8441f494fde
Author: Gaël Bonithon <gael@xfce.org>
Date:   Thu Feb 29 15:09:56 2024 +0100

    Update copyright year

commit 0614876537931a12e809621d8987baa9abe5d1b0
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Feb 13 20:09:14 2024 +0100

    xml-backend: Bump XML version to 1.1 in written files
    
    We use g_markup_escape_text() to write these files and its documentation
    states that it can produce characters that are not valid XML 1.0 but
    only 1.1, so that sounds better.

commit 9f1cbdd2520756e1475cf2de6adea16d92337c94
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Feb 13 19:57:27 2024 +0100

    xml-backend: Escape whitespaces when writing file to disk
    
    An old bug that has surprisingly never been reported. As stated in the
    g_markup_escape_text() documentation, white spaces are not escaped,
    whereas GMarkupParser expects them to be escaped on reading (otherwise
    they are replaced by a space).
    
    Related: https://gitlab.gnome.org/GNOME/glib/-/issues/2080

commit 6f4c1344093e315ab5bc7746859b02537deda889
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jan 5 12:53:47 2024 +0100

    I18n: Update po/LINGUAS list

commit 88a616d5264713551666ddf1c65922884c7d9d68
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jan 5 12:53:47 2024 +0100

    I18n: Add new translation et (52%).
    
    35 translated messages, 32 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 8e99ca4d7b62b2779e566b853033c139bbe85cf7
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Dec 20 13:08:58 2023 +0100

    Fix memory leaks around xfconf_gvariant_to_gvalue()

commit c80a84cdd6767a8722b5955669c4732d2a31a7e8
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Dec 20 13:00:15 2023 +0100

    Fix memory management of xfconf arrays
    
    Sometimes there's a leak if arrays don't always have a destroy function,
    and sometimes a segfault if they always do. This commit fixes both
    points.

commit ade7e8e017e9d1ba5dfc098bb392f73d0a153e66
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Oct 17 17:01:27 2023 +0200

    cache: Fix overwritten error
    
    Fixes: 6561c9fe940d4acb07c5eae63867c46683a02f2c
    Related: !33

commit 03f7ff961fd46c9141aba624a278e19de0bf3211
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Oct 18 07:50:16 2023 +0200

    cache: Fix uncached value
    
    Closes: #35
    Fixes: 6561c9fe940d4acb07c5eae63867c46683a02f2c
    Related: !33

commit 832750ba9bc1c0f28efb28df530f01e8ccc1b14f
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Oct 17 11:12:36 2023 +0200

    Back to development

commit cd5400ab6071837c505256f5c028f41b9035264c
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Oct 17 11:11:59 2023 +0200

    Updates for release

commit 6561c9fe940d4acb07c5eae63867c46683a02f2c
Author: Brian J. Tarricone <brian@tarricone.org>
Date:   Wed Oct 11 21:41:02 2023 -0700

    Cache property-not-found responses in XfconfCache
    
    Some apps (like xfce4-terminal) will query certain properties very
    often, and those properties are often not changed from their defaults,
    and thus do not have any value stored in xfconf.  If properties are not
    found, we can cache that state in XfconfCache and avoid xfconfd
    round-trips.  If the property is later set, xfconfd will emit
    PropertyChanged, and we will update our cache with the newly-set value.

commit 94a4f1c28498c31776a5ce701e6228ef77c5a468
Author: Brian J. Tarricone <brian@tarricone.org>
Date:   Fri Sep 22 17:49:47 2023 -0700

    Don't reset scheduled save timer on every write
    
    While perhaps unlikely, if even one xfconf client modifies a setting at
    an interval of less than 5 seconds (or there are just enough random
    setting modifications from random apps), then changes to various
    channels could never get written to disk until xfconfd shuts down.  If
    xfconfd never shuts down in an orderly manner (crash, power failure,
    whatever), then every settings write could be lost.
    
    Even if the situation is much more mild, and some sort of settings
    modification "storm" only happens every now and then, we could see the
    actual flush to disk being delayed by several minutes, which increases
    the window of time for possible data loss if there's a crash or power
    failure.
    
    Instead, we should just flush to disk *at most* 5 seconds after a write.
    If more writes come in during that 5-second delay, they shouldn't reset
    the timer; they should just get flushed out after whatever remaining
    seconds have elapsed.

commit f8e9bf3e84b08f763b5bfb811a3a5f0429908994
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Aug 5 20:46:46 2023 +0200

    xfconf-query: Sort channel list (-l or -m alone)

commit 8a341d710853cc00f97366fe0ead034238186435
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Aug 5 20:00:29 2023 +0200

    docs: Fix transfer type of xfconf_list_channels()

commit 1c81b4b024df154028716debcbc5453da355ba21
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jun 13 00:53:24 2023 +0200

    I18n: Update translation ca (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit a49427240d5ec1253fd7bed8787016f3f72061a2
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 15 19:33:28 2023 +0200

    docs: Add clarification about bindings

commit e22141cfa1c4ee6bc72b463bc6148840038e0c17
Author: Gaël Bonithon <gael@xfce.org>
Date:   Thu May 4 22:47:44 2023 +0200

    I18n: Update po/LINGUAS list

commit 8c65c536e51ed9846e1eedbca27082c335b9c284
Author: Gaël Bonithon <gael@xfce.org>
Date:   Thu May 4 21:52:36 2023 +0200

    I18n: Update po/LINGUAS list

commit c2f4dcc0f0294fd3ef4ec0912b83ffb62a5d104a
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Apr 17 12:49:20 2023 +0200

    Back to development

commit fe40df842700a5062e4c5a1f7de00e782c299ee4
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Apr 17 12:48:43 2023 +0200

    Updates for release

commit ae8208bd3dd0f3eee96863bf99d4b36b53b142ac
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Apr 17 12:24:23 2023 +0200

    Update copyright year

commit a96bb8429bec8be49c8504cc469bdf1557908467
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Apr 12 19:45:27 2023 +0200

    build: Use m4_defined min versions and cleanup

commit 9e4fcbd48562efc48f769ead4c1d463cc0ac4258
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Apr 12 19:41:53 2023 +0200

    build: Use XDT_CHECK_PACKAGE_BINARY

commit 852a56e0924331b52ca5cf90993647aba0381701
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Apr 12 19:35:25 2023 +0200

    build: Use XDT_VERSION_INIT and get rid of configure.ac.in

commit 340798371ce2ba101232fc73dde9d52607816f05
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Apr 12 19:25:58 2023 +0200

    build: Switch from intltool to gettext
    
    Related: xfce/xfce4-dev-tools#41

commit 84dfcafb561b61edadc0b021f6f28c45b070e28d
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 03:00:01 2023 +0200

    I18n: Update translation zh_TW (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 5382784d6b9ce848172cc57b3654b08a8394798a
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 03:00:00 2023 +0200

    I18n: Update translation zh_HK (94%).
    
    63 translated messages, 4 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 331b1ae4445d1ccef5c1e44f4783d8cb3582438d
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 03:00:00 2023 +0200

    I18n: Update translation zh_CN (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 419ef5aa88ed28417d00a6ca0b7e3357c40f60ac
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 03:00:00 2023 +0200

    I18n: Update translation uk (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit e7cff21e02d521235242ac9de02c5d50fb6814da
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 03:00:00 2023 +0200

    I18n: Update translation tr (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit d342cd730b10263da36436fcb42ccf9bacf37c11
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 03:00:00 2023 +0200

    I18n: Update translation th (98%).
    
    66 translated messages, 1 untranslated message.
    
    Transifex (https://explore.transifex.com/xfce/).

commit ee78e63e62fef381db82c6337d258fc7f34f8c27
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 03:00:00 2023 +0200

    I18n: Update translation sv (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 9a43bf0b91ebee76ddc047e28c99b6c73691439e
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 03:00:00 2023 +0200

    I18n: Update translation sr (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit f4f2520e36a5aa32c08cc32bccb760fa751eb604
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 03:00:00 2023 +0200

    I18n: Update translation sq (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 6d86f17d5831238ba8ffe0084b535335ec94f689
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 03:00:00 2023 +0200

    I18n: Update translation sl (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 50d65df5242b7917c7d620bbbab6987827dbd2c3
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:59 2023 +0200

    I18n: Update translation sk (97%).
    
    65 translated messages, 2 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit e9e9dd98219b0daa34c2acc12b2c9f0698b50802
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:59 2023 +0200

    I18n: Update translation ru (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 6eebe4780ab275ddfc5572099428e286fc3db36a
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:59 2023 +0200

    I18n: Update translation ro (97%).
    
    65 translated messages, 2 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit af2d0cec185dc2a1ae90292040fcaf9697759f49
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:59 2023 +0200

    I18n: Update translation pt_BR (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 129e14f42baf94b19bbd48245152e6a251eab14b
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:59 2023 +0200

    I18n: Update translation pt (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 9c7ca5d36859b98f39776fa62e25deadb5bc6c90
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:59 2023 +0200

    I18n: Update translation pl (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 824b0a09e8e828985df433a0c822d51c85513fce
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:59 2023 +0200

    I18n: Update translation oc (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 87512a341402765bf21c563ed397630229534786
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:59 2023 +0200

    I18n: Update translation nl (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit ce3d464811416709cd7a255722ff2db4ec3d6bd2
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:59 2023 +0200

    I18n: Update translation nb (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 23d337b78eba0f4b9ded3bbf4c8db55e91ab1fc0
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:59 2023 +0200

    I18n: Update translation ms (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit c70c7186e2c579744ad3a5e718ea218aa6cb5a0f
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:58 2023 +0200

    I18n: Update translation lt (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit dcf240b71e15dd3147cd669e3e101b952bcdab4f
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:58 2023 +0200

    I18n: Update translation ko (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit eebfd5fed0e4f5a6f38c6560c7750b931bb019f6
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:58 2023 +0200

    I18n: Update translation kk (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 989921397bd9b4e79677a43eaf05331358bd84c4
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:58 2023 +0200

    I18n: Update translation ja (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 99dfd244fbaddf9d8b9f72185e0a4572cfff4d94
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:58 2023 +0200

    I18n: Update translation it (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 40641514b14b37e348116ca287f5f8908514b2e1
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:58 2023 +0200

    I18n: Update translation is (64%).
    
    43 translated messages, 24 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit f32b26feed2e5c2e4b4e474d7c7d98220672aa17
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:58 2023 +0200

    I18n: Update translation id (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 784d489f71171a95ee825501d0e13b477d86b093
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:58 2023 +0200

    I18n: Update translation hye (98%).
    
    66 translated messages, 1 untranslated message.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 38c42eae01ec7f67631ab2f99f9b90380ae0b877
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:58 2023 +0200

    I18n: Update translation hy_AM (98%).
    
    66 translated messages, 1 untranslated message.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 76194f7428cdeda03a58eda2058b8cbd89a94511
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:57 2023 +0200

    I18n: Update translation hu (98%).
    
    66 translated messages, 1 untranslated message.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 327e22446104c6f7e9207322ba234337d2189666
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:57 2023 +0200

    I18n: Update translation hr (97%).
    
    65 translated messages, 2 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 90ef852296e9a5c9b6c9587afb7aaee2735a0dbd
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:57 2023 +0200

    I18n: Update translation hi (52%).
    
    35 translated messages, 32 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 0853323931076a5fee2b44019b7928d3d428d262
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:57 2023 +0200

    I18n: Update translation he (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 2e86c31cdd25f4f0f95c9e0b9a69681ba8c689b2
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:57 2023 +0200

    I18n: Update translation gl (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 05ac40341ce0f2a0735aa98aaa014e00b9658397
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:57 2023 +0200

    I18n: Update translation fr (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 3fdd500fae2691a3cf877fa8c7a0e36cf480f898
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:57 2023 +0200

    I18n: Update translation fi (98%).
    
    66 translated messages, 1 untranslated message.
    
    Transifex (https://explore.transifex.com/xfce/).

commit e7cdb2232b1c48b3f0d2c1b63f8351b3f6158249
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:57 2023 +0200

    I18n: Update translation eu (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 24ce6cca851fbae3c3f6b8374041cfdedd9d02be
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:57 2023 +0200

    I18n: Update translation es (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit ae8178beb470210c375b8905d90a8ae4920a772b
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:56 2023 +0200

    I18n: Update translation en_GB (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit c2f4c5d0885607794f43c4f7f1a4ec8dbacbb911
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:56 2023 +0200

    I18n: Update translation en_CA (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 710d09dbe08be95f178978d3dcb5128829d41617
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:56 2023 +0200

    I18n: Update translation en_AU (98%).
    
    66 translated messages, 1 untranslated message.
    
    Transifex (https://explore.transifex.com/xfce/).

commit fd934b252f64238a15bd957b27e4b8f6d3be4b19
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:56 2023 +0200

    I18n: Update translation el (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 3f1cb2573f896508ace2eb29c9ebbde1eb36267b
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 7 02:59:56 2023 +0200

    I18n: Update translation de (100%).
    
    67 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).
[--snip--]
