Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gnome-desktop for openSUSE:Factory checked in at 2021-11-06 18:15:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-desktop (Old) and /work/SRC/openSUSE:Factory/.gnome-desktop.new.1890 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-desktop" Sat Nov 6 18:15:26 2021 rev:173 rq:929597 version:41.1 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-desktop/gnome-desktop.changes 2021-09-29 20:17:47.998820781 +0200 +++ /work/SRC/openSUSE:Factory/.gnome-desktop.new.1890/gnome-desktop.changes 2021-11-06 18:17:39.264872861 +0100 @@ -1,0 +2,8 @@ +Tue Nov 2 21:54:36 UTC 2021 - Bj??rn Lie <bjorn....@gmail.com> + +- Update to version 41.1: + + gnome-languages: Avoid passing NULL to newlocale. + + Avoid the use of `allow-none` for out parameters. + + Updated translations. + +------------------------------------------------------------------- Old: ---- gnome-desktop-41.0.tar.xz New: ---- gnome-desktop-41.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-desktop.spec ++++++ --- /var/tmp/diff_new_pack.JxlWYl/_old 2021-11-06 18:17:39.904873191 +0100 +++ /var/tmp/diff_new_pack.JxlWYl/_new 2021-11-06 18:17:39.908873194 +0100 @@ -17,7 +17,7 @@ Name: gnome-desktop -Version: 41.0 +Version: 41.1 Release: 0 Summary: The GNOME Desktop API Library License: LGPL-2.1-or-later ++++++ gnome-desktop-41.0.tar.xz -> gnome-desktop-41.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-desktop-41.0/NEWS new/gnome-desktop-41.1/NEWS --- old/gnome-desktop-41.0/NEWS 2021-09-20 20:21:50.107713700 +0200 +++ new/gnome-desktop-41.1/NEWS 2021-11-02 19:14:18.432022300 +0100 @@ -1,4 +1,12 @@ ============ +Version 41.1 +============ + +- gnome-languages: Avoid passing NULL to newlocale +- Avoid the use of `allow-none` for out parameters +- Translation updates + +============ Version 41.0 ============ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-desktop-41.0/libgnome-desktop/gnome-languages.c new/gnome-desktop-41.1/libgnome-desktop/gnome-languages.c --- old/gnome-desktop-41.0/libgnome-desktop/gnome-languages.c 2021-09-20 20:21:50.137714000 +0200 +++ new/gnome-desktop-41.1/libgnome-desktop/gnome-languages.c 2021-11-02 19:14:18.449022500 +0100 @@ -104,13 +104,13 @@ /** * gnome_parse_locale: * @locale: a locale string - * @language_codep: (out) (allow-none) (transfer full): location to + * @language_codep: (out) (optional) (transfer full): location to * store the language code, or %NULL - * @country_codep: (out) (allow-none) (transfer full): location to + * @country_codep: (out) (optional) (nullable) (transfer full): location to * store the country code, or %NULL - * @codesetp: (out) (allow-none) (transfer full): location to + * @codesetp: (out) (optional) (nullable) (transfer full): location to * store the codeset, or %NULL - * @modifierp: (out) (allow-none) (transfer full): location to + * @modifierp: (out) (optional) (nullable) (transfer full): location to * store the modifier, or %NULL * * Extracts the various components of a locale string of the form @@ -289,6 +289,9 @@ { locale_t locale; + if (language_name == NULL) + return FALSE; + locale = newlocale (LC_MESSAGES_MASK, language_name, (locale_t) 0); if (locale != (locale_t) 0) { freelocale (locale); @@ -306,6 +309,9 @@ locale_t locale; const char *codeset = NULL; + if (language_name == NULL) { + language_name = setlocale (LC_MESSAGES, NULL); + } locale = newlocale (LC_CTYPE_MASK, language_name, (locale_t) 0); if (locale == (locale_t) 0) return; @@ -1065,7 +1071,7 @@ /** * gnome_get_language_from_locale: * @locale: a locale string - * @translation: (allow-none): a locale string + * @translation: (nullable): a locale string * * Gets the language description for @locale. If @translation is * provided the returned string is translated accordingly. @@ -1157,7 +1163,7 @@ /** * gnome_get_country_from_locale: * @locale: a locale string - * @translation: (allow-none): a locale string + * @translation: (nullable): a locale string * * Gets the country description for @locale. If @translation is * provided the returned string is translated accordingly. @@ -1284,7 +1290,7 @@ /** * gnome_get_language_from_code: * @code: an ISO 639 code string - * @translation: (allow-none): a locale string + * @translation: (nullable): a locale string * * Gets the language name for @code. If @translation is provided the * returned string is translated accordingly. @@ -1308,7 +1314,7 @@ /** * gnome_get_country_from_code: * @code: an ISO 3166 code string - * @translation: (allow-none): a locale string + * @translation: (nullable): a locale string * * Gets the country name for @code. If @translation is provided the * returned string is translated accordingly. @@ -1332,7 +1338,7 @@ /** * gnome_get_translated_modifier: * @modifier: the modifier part of a locale name - * @translation: (allow-none): a locale string + * @translation: (nullable): a locale string * * Gets a translation of the raw @modifier string. If @translation * is provided the returned string is translated accordingly. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-desktop-41.0/libgnome-desktop/gnome-xkb-info.c new/gnome-desktop-41.1/libgnome-desktop/gnome-xkb-info.c --- old/gnome-desktop-41.0/libgnome-desktop/gnome-xkb-info.c 2021-09-20 20:21:50.139714000 +0200 +++ new/gnome-desktop-41.1/libgnome-desktop/gnome-xkb-info.c 2021-11-02 19:14:18.450022500 +0100 @@ -1014,13 +1014,13 @@ * gnome_xkb_info_get_layout_info: * @self: a #GnomeXkbInfo * @id: layout's identifier about which to retrieve the info - * @display_name: (out) (allow-none) (transfer none): location to store + * @display_name: (out) (optional) (nullable) (transfer none): location to store * the layout's display name, or %NULL - * @short_name: (out) (allow-none) (transfer none): location to store + * @short_name: (out) (optional) (nullable) (transfer none): location to store * the layout's short name, or %NULL - * @xkb_layout: (out) (allow-none) (transfer none): location to store + * @xkb_layout: (out) (optional) (nullable) (transfer none): location to store * the layout's XKB name, or %NULL - * @xkb_variant: (out) (allow-none) (transfer none): location to store + * @xkb_variant: (out) (optional) (nullable) (transfer none): location to store * the layout's XKB variant, or %NULL * * Retrieves information about a layout. Both @display_name and diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-desktop-41.0/meson.build new/gnome-desktop-41.1/meson.build --- old/gnome-desktop-41.0/meson.build 2021-09-20 20:21:50.140714000 +0200 +++ new/gnome-desktop-41.1/meson.build 2021-11-02 19:14:18.450022500 +0100 @@ -1,6 +1,6 @@ project('gnome-desktop', 'c', meson_version: '>= 0.49.0', - version: '41.0', + version: '41.1', license: ['GPL2+', 'LGPL2+'] ) @@ -14,7 +14,7 @@ # to 0. When bumping the second version, set the third one to zero. # # A lot easier than libtool, right? -libversion = '19.1.6' +libversion = '19.1.7' soversion = libversion.split('.')[0] gdk_pixbuf_req = '>= 2.36.5' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-desktop-41.0/po/LINGUAS new/gnome-desktop-41.1/po/LINGUAS --- old/gnome-desktop-41.0/po/LINGUAS 2021-09-20 20:21:50.141713900 +0200 +++ new/gnome-desktop-41.1/po/LINGUAS 2021-11-02 19:14:18.451022400 +0100 @@ -54,6 +54,7 @@ it ja ka +kab kg kk km diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-desktop-41.0/po/fa.po new/gnome-desktop-41.1/po/fa.po --- old/gnome-desktop-41.0/po/fa.po 2021-09-20 20:21:50.148714000 +0200 +++ new/gnome-desktop-41.1/po/fa.po 2021-11-02 19:14:18.454022600 +0100 @@ -13,66 +13,22 @@ msgstr "" "Project-Id-Version: gnome-desktop HEAD\n" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-desktop/issues\n" -"POT-Creation-Date: 2020-05-31 13:21+0000\n" -"PO-Revision-Date: 2020-09-01 09:04+0000\n" -"Last-Translator: Danial Behzadi <dani.be...@ubuntu.com>\n" +"POT-Creation-Date: 2021-05-10 19:31+0000\n" +"PO-Revision-Date: 2021-10-15 14:14+0330\n" +"Last-Translator: eshagh <eshagh...@gmail.com>\n" "Language-Team: Persian <>\n" "Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 2.4.1\n" +"X-Generator: Poedit 3.0\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: libgnome-desktop/gnome-languages.c:717 +#: libgnome-desktop/gnome-languages.c:714 msgid "Unspecified" msgstr "??????????????" -#. TRANSLATORS: Used to distinguish the labels representing the gez_ER -#. and gez_ET locales from gez_ER@abegede respective gez_ET@abegede. The -#. difference is related to collation. -#: libgnome-desktop/gnome-languages.c:1382 -msgid "Abegede" -msgstr "????????" - -#. TRANSLATORS: Used to distinguish Cyrillic from Latin written language variants. -#: libgnome-desktop/gnome-languages.c:1384 -msgid "Cyrillic" -msgstr "??????????????" - -#. TRANSLATORS: Also known as "Nagari", a written variant for many languages -#. of the Indian subcontinent. See: -#. https://en.wikipedia.org/wiki/Devanagari -#: libgnome-desktop/gnome-languages.c:1388 -msgid "Devanagari" -msgstr "????????????????" - -#. TRANSLATORS: Used to distinguish the label representing the tt_RU -#. locale from tt_RU@iqtelif. It's a special alphabet for Tatar. -#: libgnome-desktop/gnome-languages.c:1391 -msgid "IQTElif" -msgstr "??????????" - -#. TRANSLATORS: The alphabet/script, not the language. Used to distinguish -#. Latin from Cyrillic written language variants. -#: libgnome-desktop/gnome-languages.c:1394 -msgid "Latin" -msgstr "??????????" - -#. TRANSLATORS: "Saho" is a variant of the Afar language. Used to -#. distinguish the label representing the aa_ER locale from aa_ER@saaho. -#: libgnome-desktop/gnome-languages.c:1397 -msgid "Saho" -msgstr "????????" - -#. TRANSLATORS: "Valencia" is a dialect of the Catalan language spoken -#. in Valencia. Used to distinguish the label representing the ca_ES -#. locale from ca_ES@valencia. -#: libgnome-desktop/gnome-languages.c:1401 -msgid "Valencia" -msgstr "??????????????" - #: libgnome-desktop/gnome-rr-config.c:754 #, c-format msgid "CRTC %d cannot drive output %s" @@ -115,8 +71,8 @@ #, c-format msgid "CRTC %d: trying mode %dx%d@%dHz with output at %dx%d@%dHz (pass %d)\n" msgstr "" -"???????????? ?????????????????? %Id: ???? ?????? ???????????? ???????? ???????? %Idx%Id ???? %Id ???????? ???? ?????????? ???? %Idx" -"%Id ???? %Id ???????? (?????? %Id )\n" +"???????????? ?????????????????? %Id: ???? ?????? ???????????? ???????? ???????? %Idx%Id ???? %Id ???????? ???? ?????????? ???? %Idx%Id ???? %Id " +"???????? (?????? %Id )\n" #: libgnome-desktop/gnome-rr-config.c:997 #, c-format @@ -142,100 +98,137 @@ #: libgnome-desktop/gnome-rr-config.c:1082 #, c-format msgid "" -"required virtual size does not fit available size: requested=(%d, %d), " -"minimum=(%d, %d), maximum=(%d, %d)" +"required virtual size does not fit available size: requested=(%d, %d), minimum=(%d, %d), " +"maximum=(%d, %d)" msgstr "" -"?????????????? ?????????? ???????? ???????? ???? ?????????????? ???? ?????????? ?????? ???????????????: ?????????????? ??????= (%Id, %Id) ?? " -"??????????= (%Id, %Id)?? ????????????= (%Id, %Id)" +"?????????????? ?????????? ???????? ???????? ???? ?????????????? ???? ?????????? ?????? ???????????????: ?????????????? ??????=(%Id, %Id)?? ??????????=(%Id, " +"%Id)?? ????????????=(%Id, %Id)" #: libgnome-desktop/gnome-wall-clock.c:258 msgctxt "time separator" msgid "???" msgstr "???" +# ???? ?????? ?????????? ???? ??????????????????? ???????????? ?????????????????????? ?????????????? ?????? ?????? #. Translators: This is the time format with full date #. plus day used in 24-hour mode. Please keep the under- #. score to separate the date from the time. -#: libgnome-desktop/gnome-wall-clock.c:340 +#: libgnome-desktop/gnome-wall-clock.c:335 msgid "%a %b %-e_%R:%S" -msgstr "%a %Ob %-Oe_%OR:%OS" +msgstr "%a %-Oe %Ob_???%OH:%OM:%OS???" -#: libgnome-desktop/gnome-wall-clock.c:341 +# ???? ?????? ?????????? ???? ??????????????????? ???????????? ?????????????????????? ?????????????? ?????? ?????? +#: libgnome-desktop/gnome-wall-clock.c:336 msgid "%a %b %-e_%R" -msgstr "%a %Ob %-Oe_%OR" +msgstr "%a %-Oe %Ob_???%OH:%OM???" +# ???? ?????? ?????????? ???? ??????????????????? ???????????? ?????????????????????? ?????????????? ?????? ?????? #. Translators: This is the time format with full date #. used in 24-hour mode. Please keep the underscore to #. separate the date from the time. -#: libgnome-desktop/gnome-wall-clock.c:346 +#: libgnome-desktop/gnome-wall-clock.c:341 msgid "%b %-e_%R:%S" -msgstr "%Ob %-Oe_%OR:%OS" +msgstr "%-Oe %Ob_???%OH:%OM:%OS???" -#: libgnome-desktop/gnome-wall-clock.c:347 +# ???? ?????? ?????????? ???? ??????????????????? ???????????? ?????????????????????? ?????????????? ?????? ?????? +#: libgnome-desktop/gnome-wall-clock.c:342 msgid "%b %-e_%R" -msgstr "%Ob %-Oe_%OR" +msgstr "%-Oe %Ob_???%OH:%OM???" +# ???? ?????? ?????????? ???? ??????????????????? ???????????? ?????????????????????? ?????????????? ?????? ?????? #. Translators: This is the time format with day used #. in 24-hour mode. -#: libgnome-desktop/gnome-wall-clock.c:351 +#: libgnome-desktop/gnome-wall-clock.c:346 msgid "%a %R:%S" -msgstr "%a %OR:%OS" +msgstr "%a ???%OH:%OM:%OS???" -#: libgnome-desktop/gnome-wall-clock.c:352 +# ???? ?????? ?????????? ???? ??????????????????? ???????????? ?????????????????????? ?????????????? ?????? ?????? +#: libgnome-desktop/gnome-wall-clock.c:347 msgid "%a %R" -msgstr "%a %OR" +msgstr "%a ???%OH:%OM???" +# ???? ?????? ?????????? ???? ??????????????????? ???????????? ?????????????????????? ?????????????? ?????? ?????? #. Translators: This is the time format without date used #. in 24-hour mode. -#: libgnome-desktop/gnome-wall-clock.c:356 +#: libgnome-desktop/gnome-wall-clock.c:351 msgid "%R:%S" -msgstr "%OR:%OS" +msgstr "???%OH:%OM:%OS???" -#: libgnome-desktop/gnome-wall-clock.c:357 +# ???? ?????? ?????????? ???? ??????????????????? ???????????? ?????????????????????? ?????????????? ?????? ?????? +#: libgnome-desktop/gnome-wall-clock.c:352 msgid "%R" -msgstr "%OR" +msgstr "???%OH:%OM???" +# ???? ?????? ?????????? ???? ??????????????????? ???????????? ?????????????????????? ?????????????? ?????? ?????? #. Translators: This is a time format with full date #. plus day used for AM/PM. Please keep the under- #. score to separate the date from the time. -#: libgnome-desktop/gnome-wall-clock.c:365 +#: libgnome-desktop/gnome-wall-clock.c:360 msgid "%a %b %-e_%l:%M:%S %p" -msgstr "%a %Ob %-Oe_%OI:%OM:%OS %p" +msgstr "%a %-Oe %Ob_???%OI:%OM:%OS??? %p" -#: libgnome-desktop/gnome-wall-clock.c:366 +# ???? ?????? ?????????? ???? ??????????????????? ???????????? ?????????????????????? ?????????????? ?????? ?????? +#: libgnome-desktop/gnome-wall-clock.c:361 msgid "%a %b %-e_%l:%M %p" -msgstr "%a %Ob %-Oe_%OI:%OM %p" +msgstr "%a %-Oe %Ob_???%OI:%OM??? %p" +# ???? ?????? ?????????? ???? ??????????????????? ???????????? ?????????????????????? ?????????????? ?????? ?????? #. Translators: This is a time format with full date #. used for AM/PM. Please keep the underscore to #. separate the date from the time. -#: libgnome-desktop/gnome-wall-clock.c:371 +#: libgnome-desktop/gnome-wall-clock.c:366 msgid "%b %-e_%l:%M:%S %p" -msgstr "%Ob %-Oe_%OI:%OM:%OS %p" +msgstr "%-Oe %Ob_???%OI:%OM:%OS??? %p" -#: libgnome-desktop/gnome-wall-clock.c:372 +# ???? ?????? ?????????? ???? ??????????????????? ???????????? ?????????????????????? ?????????????? ?????? ?????? +#: libgnome-desktop/gnome-wall-clock.c:367 msgid "%b %-e_%l:%M %p" -msgstr "%Ob %-Oe_%OI:%OM %p" +msgstr "%-Oe %Ob_???%OI:%OM??? %p" +# ???? ?????? ?????????? ???? ??????????????????? ???????????? ?????????????????????? ?????????????? ?????? ?????? #. Translators: This is a time format with day used #. for AM/PM. -#: libgnome-desktop/gnome-wall-clock.c:376 +#: libgnome-desktop/gnome-wall-clock.c:371 msgid "%a %l:%M:%S %p" -msgstr "%a %OI:%OM:%OS %p" +msgstr "%a ???%OI:%OM:%OS??? %p" -#: libgnome-desktop/gnome-wall-clock.c:377 +# ???? ?????? ?????????? ???? ??????????????????? ???????????? ?????????????????????? ?????????????? ?????? ?????? +#: libgnome-desktop/gnome-wall-clock.c:372 msgid "%a %l:%M %p" -msgstr "%a %OI:%OM %p" +msgstr "%a ???%OI:%OM??? %p" +# ???? ?????? ?????????? ???? ??????????????????? ???????????? ?????????????????????? ?????????????? ?????? ?????? #. Translators: This is a time format without date used #. for AM/PM. -#: libgnome-desktop/gnome-wall-clock.c:381 +#: libgnome-desktop/gnome-wall-clock.c:376 msgid "%l:%M:%S %p" -msgstr "%OI:%OM:%OS %p" +msgstr "???%OI:%OM:%OS??? %p" -#: libgnome-desktop/gnome-wall-clock.c:382 +# ???? ?????? ?????????? ???? ??????????????????? ???????????? ?????????????????????? ?? RLM ?????????????? ?????? ?????? +#: libgnome-desktop/gnome-wall-clock.c:377 msgid "%l:%M %p" -msgstr "%OI:%OM %p" +msgstr "??????%OI:%OM??? %p" + +#~ msgid "Abegede" +#~ msgstr "????????" + +#~ msgid "Cyrillic" +#~ msgstr "??????????????" + +#~ msgid "Devanagari" +#~ msgstr "????????????????" + +#~ msgid "IQTElif" +#~ msgstr "??????????" + +#~ msgid "Latin" +#~ msgstr "??????????" + +#~ msgid "Saho" +#~ msgstr "????????" + +#~ msgid "Valencia" +#~ msgstr "??????????????" #~ msgctxt "Monitor vendor" #~ msgid "Unknown" @@ -268,11 +261,11 @@ #~ msgstr "?????????????? ????????????" #~ msgid "" -#~ "requested position/size for CRTC %d is outside the allowed limit: " -#~ "position=(%d, %d), size=(%d, %d), maximum=(%d, %d)" +#~ "requested position/size for CRTC %d is outside the allowed limit: position=(%d, %d), " +#~ "size=(%d, %d), maximum=(%d, %d)" #~ msgstr "" -#~ "????????????/????????????????? ?????????????? ?????? ???????? ???????????????????????????? ?????????????????? %d ???? ???????? ???? ???? ???????? ??????: " -#~ "????????????=(%d, %d) ?? , ????????????=(%d, %d), ????????????=(%d, %d)" +#~ "????????????/????????????????? ?????????????? ?????? ???????? ???????????????????????????? ?????????????????? %d ???? ???????? ???? ???? ???????? ??????: ????????????=(%d, " +#~ "%d) ?? , ????????????=(%d, %d), ????????????=(%d, %d)" #~ msgid "could not set the configuration for CRTC %d" #~ msgstr "??????????????????? ???????? ???????????? ?????????????????? %d ?????????? ??????" @@ -280,11 +273,9 @@ #~ msgid "could not get information about CRTC %d" #~ msgstr "?????????????? ????????????????? ???????????? ?????????????????? %d ?????????? ??????" -#~ msgid "" -#~ "none of the saved display configurations matched the active configuration" +#~ msgid "none of the saved display configurations matched the active configuration" #~ msgstr "" -#~ "????????????????? ???? ????????????????????????? ?????????? ?????? ???????? ?????????? ?????????? ???? ???????????????? ???????? ???????? ???????????? " -#~ "??????????." +#~ "????????????????? ???? ????????????????????????? ?????????? ?????? ???????? ?????????? ?????????? ???? ???????????????? ???????? ???????? ???????????? ??????????." #~| msgid "%a %b %e, %R:%S" #~ msgid "%a %b %e, %R???%S" @@ -298,8 +289,8 @@ #~ msgid "Cannot find a terminal, using xterm, even if it may not work" #~ msgstr "" -#~ "??????????????????? ???????? ????????????????? ???? ?????????????? ???? ???????? ???????????? ???? ?????????? ???????????? ?????????? ?????? ?????? " -#~ "???????? ?????? ?????? ????????" +#~ "??????????????????? ???????? ????????????????? ???? ?????????????? ???? ???????? ???????????? ???? ?????????? ???????????? ?????????? ?????? ?????? ???????? ?????? ?????? " +#~ "????????" #~ msgid "Laptop" #~ msgstr "?????????????" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-desktop-41.0/po/is.po new/gnome-desktop-41.1/po/is.po --- old/gnome-desktop-41.0/po/is.po 2021-09-20 20:21:50.152714000 +0200 +++ new/gnome-desktop-41.1/po/is.po 2021-11-02 19:14:18.454022600 +0100 @@ -2,42 +2,42 @@ # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Sam??el J??n Gunnarsson <sa...@techattack.nu>, 2003. -# Sveinn ?? Felli <svei...@nett.is>, 2009, 2015, 2019. +# Sveinn ?? Felli <svei...@nett.is>, 2009, 2015, 2019, 2021. msgid "" msgstr "" "Project-Id-Version: gnome-desktop.master\n" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-desktop/issues\n" -"POT-Creation-Date: 2018-09-07 17:29+0000\n" -"PO-Revision-Date: 2019-02-21 08:28+0000\n" +"POT-Creation-Date: 2021-05-10 19:31+0000\n" +"PO-Revision-Date: 2021-09-29 07:45+0000\n" "Last-Translator: Sveinn ?? Felli <s...@fellsnet.is>\n" "Language-Team: Icelandic <translation-team...@lists.sourceforge.net>\n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 19.12.3\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: libgnome-desktop/gnome-languages.c:711 +#: libgnome-desktop/gnome-languages.c:714 msgid "Unspecified" msgstr "??skilgreint" -#: libgnome-desktop/gnome-rr-config.c:759 +#: libgnome-desktop/gnome-rr-config.c:754 #, c-format msgid "CRTC %d cannot drive output %s" msgstr "CRTC skj??st??ringin %d getur ekki me??h??ndla?? ??ttaki?? ?? %s" -#: libgnome-desktop/gnome-rr-config.c:766 +#: libgnome-desktop/gnome-rr-config.c:761 #, c-format msgid "output %s does not support mode %dx%d@%dHz" msgstr "??ttaki?? %s sty??ur ekki upplausnina %dx%d@%dHz" -#: libgnome-desktop/gnome-rr-config.c:777 +#: libgnome-desktop/gnome-rr-config.c:772 #, c-format msgid "CRTC %d does not support rotation=%d" msgstr "CRTC skj??st??ringin %d sty??ur ekki sn??ninginn rotation=%d" -#: libgnome-desktop/gnome-rr-config.c:790 +#: libgnome-desktop/gnome-rr-config.c:785 #, c-format msgid "" "output %s does not have the same parameters as another cloned output:\n" @@ -50,24 +50,24 @@ "n??verandi hnit = (%d, %d), n?? hnit = (%d, %d)\n" "n??verandi stefna = %d, n?? stefna = %d" -#: libgnome-desktop/gnome-rr-config.c:805 +#: libgnome-desktop/gnome-rr-config.c:800 #, c-format msgid "cannot clone to output %s" msgstr "get ekki kl??na?? ??ttaki?? %s" -#: libgnome-desktop/gnome-rr-config.c:931 +#: libgnome-desktop/gnome-rr-config.c:926 #, c-format msgid "Trying modes for CRTC %d\n" msgstr "Pr??fa upplausnir fyrir CRTC skj??st??ringuna %d\n" -#: libgnome-desktop/gnome-rr-config.c:955 +#: libgnome-desktop/gnome-rr-config.c:950 #, c-format msgid "CRTC %d: trying mode %dx%d@%dHz with output at %dx%d@%dHz (pass %d)\n" msgstr "" "CRTC skj??st??ringin %d: pr??fa upplausn %dx%d@%dHz me?? ??ttak ?? %dx%d@%dHz " "(pass %d)\n" -#: libgnome-desktop/gnome-rr-config.c:1002 +#: libgnome-desktop/gnome-rr-config.c:997 #, c-format msgid "" "could not assign CRTCs to outputs:\n" @@ -76,7 +76,7 @@ "gat ekki ??thluta?? CRTC-um ?? ??tt??k:\n" "%s" -#: libgnome-desktop/gnome-rr-config.c:1006 +#: libgnome-desktop/gnome-rr-config.c:1001 #, c-format msgid "" "none of the selected modes were compatible with the possible modes:\n" @@ -88,7 +88,7 @@ #. Translators: the "requested", "minimum", and #. * "maximum" words here are not keywords; please #. * translate them as usual. -#: libgnome-desktop/gnome-rr-config.c:1087 +#: libgnome-desktop/gnome-rr-config.c:1082 #, c-format msgid "" "required virtual size does not fit available size: requested=(%d, %d), " @@ -97,95 +97,92 @@ "umbe??in s??ndarst??r?? passar ekki: umbe??in st??r??=(%d, %d), l??gmark=(%d, %d), " "h??mark=(%d, %d)" +#: libgnome-desktop/gnome-wall-clock.c:258 +msgctxt "time separator" +msgid "???" +msgstr "???" + #. Translators: This is the time format with full date #. plus day used in 24-hour mode. Please keep the under- #. score to separate the date from the time. -#: libgnome-desktop/gnome-wall-clock.c:290 -#| msgid "%a %b %e, %R:%S" +#: libgnome-desktop/gnome-wall-clock.c:335 msgid "%a %b %-e_%R:%S" msgstr "%a %e. %b_%R:%S" -#: libgnome-desktop/gnome-wall-clock.c:291 -#| msgid "%a %b %e, %R" +#: libgnome-desktop/gnome-wall-clock.c:336 msgid "%a %b %-e_%R" msgstr "%a %e. %b_%R" #. Translators: This is the time format with full date #. used in 24-hour mode. Please keep the underscore to #. separate the date from the time. -#: libgnome-desktop/gnome-wall-clock.c:296 -#| msgid "%a %b %e, %R:%S" +#: libgnome-desktop/gnome-wall-clock.c:341 msgid "%b %-e_%R:%S" msgstr "%e. %b_%R:%S" -#: libgnome-desktop/gnome-wall-clock.c:297 -#| msgid "%a %b %e, %R" +#: libgnome-desktop/gnome-wall-clock.c:342 msgid "%b %-e_%R" msgstr "%e. %b_%R" #. Translators: This is the time format with day used #. in 24-hour mode. -#: libgnome-desktop/gnome-wall-clock.c:301 +#: libgnome-desktop/gnome-wall-clock.c:346 msgid "%a %R:%S" msgstr "%a %R:%S" -#: libgnome-desktop/gnome-wall-clock.c:302 +#: libgnome-desktop/gnome-wall-clock.c:347 msgid "%a %R" msgstr "%a %R" #. Translators: This is the time format without date used #. in 24-hour mode. -#: libgnome-desktop/gnome-wall-clock.c:306 +#: libgnome-desktop/gnome-wall-clock.c:351 msgid "%R:%S" msgstr "%R:%S" -#: libgnome-desktop/gnome-wall-clock.c:306 +#: libgnome-desktop/gnome-wall-clock.c:352 msgid "%R" msgstr "%R" #. Translators: This is a time format with full date #. plus day used for AM/PM. Please keep the under- #. score to separate the date from the time. -#: libgnome-desktop/gnome-wall-clock.c:314 -#| msgid "%a %b %e, %l:%M:%S %p" +#: libgnome-desktop/gnome-wall-clock.c:360 msgid "%a %b %-e_%l:%M:%S %p" msgstr "%a %e. %b_%l:%M:%S %p" -#: libgnome-desktop/gnome-wall-clock.c:315 -#| msgid "%a %b %e, %l:%M %p" +#: libgnome-desktop/gnome-wall-clock.c:361 msgid "%a %b %-e_%l:%M %p" msgstr "%a %e_%b, %l:%M" #. Translators: This is a time format with full date #. used for AM/PM. Please keep the underscore to #. separate the date from the time. -#: libgnome-desktop/gnome-wall-clock.c:320 -#| msgid "%a %b %e, %l:%M:%S %p" +#: libgnome-desktop/gnome-wall-clock.c:366 msgid "%b %-e_%l:%M:%S %p" msgstr "%e. %b_%l:%M:%S %p" -#: libgnome-desktop/gnome-wall-clock.c:321 -#| msgid "%a %b %e, %l:%M %p" +#: libgnome-desktop/gnome-wall-clock.c:367 msgid "%b %-e_%l:%M %p" msgstr "%e. %b_%l:%M" #. Translators: This is a time format with day used #. for AM/PM. -#: libgnome-desktop/gnome-wall-clock.c:325 +#: libgnome-desktop/gnome-wall-clock.c:371 msgid "%a %l:%M:%S %p" msgstr "%a %l:%M:%S %p" -#: libgnome-desktop/gnome-wall-clock.c:326 +#: libgnome-desktop/gnome-wall-clock.c:372 msgid "%a %l:%M %p" msgstr "%a %l:%M" #. Translators: This is a time format without date used #. for AM/PM. -#: libgnome-desktop/gnome-wall-clock.c:330 +#: libgnome-desktop/gnome-wall-clock.c:376 msgid "%l:%M:%S %p" msgstr "%l:%M:%S %p" -#: libgnome-desktop/gnome-wall-clock.c:331 +#: libgnome-desktop/gnome-wall-clock.c:377 msgid "%l:%M %p" msgstr "%H:%M" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-desktop-41.0/po/kab.po new/gnome-desktop-41.1/po/kab.po --- old/gnome-desktop-41.0/po/kab.po 1970-01-01 01:00:00.000000000 +0100 +++ new/gnome-desktop-41.1/po/kab.po 2021-11-02 19:14:18.455022600 +0100 @@ -0,0 +1,188 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-desktop/" +"issues\n" +"POT-Creation-Date: 2021-10-06 14:06+0000\n" +"PO-Revision-Date: 2021-10-16 15:15+0100\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 3.0\n" +"Last-Translator: Slimane Selyan Amiri <selyan....@protonmail.com>\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Language: kab\n" + +#: libgnome-desktop/gnome-languages.c:720 +msgid "Unspecified" +msgstr "Non sp??cifi??" + +#: libgnome-desktop/gnome-rr-config.c:754 +#, c-format +msgid "CRTC %d cannot drive output %s" +msgstr "CRTC %d cannot drive output %s" + +#: libgnome-desktop/gnome-rr-config.c:761 +#, c-format +msgid "output %s does not support mode %dx%d@%dHz" +msgstr "output %s does not support mode %dx%d@%dHz" + +#: libgnome-desktop/gnome-rr-config.c:772 +#, c-format +msgid "CRTC %d does not support rotation=%d" +msgstr "CRTC %d does not support rotation=%d" + +#: libgnome-desktop/gnome-rr-config.c:785 +#, c-format +msgid "" +"output %s does not have the same parameters as another cloned output:\n" +"existing mode = %d, new mode = %d\n" +"existing coordinates = (%d, %d), new coordinates = (%d, %d)\n" +"existing rotation = %d, new rotation = %d" +msgstr "" +"output %s does not have the same parameters as another cloned output:\n" +"existing mode = %d, new mode = %d\n" +"existing coordinates = (%d, %d), new coordinates = (%d, %d)\n" +"existing rotation = %d, new rotation = %d" + +#: libgnome-desktop/gnome-rr-config.c:800 +#, c-format +msgid "cannot clone to output %s" +msgstr "cannot clone to output %s" + +#: libgnome-desktop/gnome-rr-config.c:926 +#, c-format +msgid "Trying modes for CRTC %d\n" +msgstr "Trying modes for CRTC %d\n" + +#: libgnome-desktop/gnome-rr-config.c:950 +#, c-format +msgid "" +"CRTC %d: trying mode %dx%d@%dHz with output at %dx%d@%dHz (pass %d)\n" +msgstr "" +"CRTC %d: trying mode %dx%d@%dHz with output at %dx%d@%dHz (pass %d)\n" + +#: libgnome-desktop/gnome-rr-config.c:997 +#, c-format +msgid "" +"could not assign CRTCs to outputs:\n" +"%s" +msgstr "" +"could not assign CRTCs to outputs:\n" +"%s" + +#: libgnome-desktop/gnome-rr-config.c:1001 +#, c-format +msgid "" +"none of the selected modes were compatible with the possible modes:\n" +"%s" +msgstr "" +"none of the selected modes were compatible with the possible modes:\n" +"%s" + +#. Translators: the "requested", "minimum", and +#. * "maximum" words here are not keywords; please +#. * translate them as usual. +#: libgnome-desktop/gnome-rr-config.c:1082 +#, c-format +msgid "" +"required virtual size does not fit available size: requested=(%d, %d), " +"minimum=(%d, %d), maximum=(%d, %d)" +msgstr "" +"required virtual size does not fit available size: requested=(%d, %d), " +"minimum=(%d, %d), maximum=(%d, %d)" + +#: libgnome-desktop/gnome-wall-clock.c:258 +msgctxt "time separator" +msgid "???" +msgstr ":" + +#. Translators: This is the time format with full date +#. plus day used in 24-hour mode. Please keep the under- +#. score to separate the date from the time. +#: libgnome-desktop/gnome-wall-clock.c:335 +msgid "%a %b %-e_%R:%S" +msgstr "%a %b %-e_%R:%S" + +#: libgnome-desktop/gnome-wall-clock.c:336 +msgid "%a %b %-e_%R" +msgstr "%a %b %-e_%R" + +#. Translators: This is the time format with full date +#. used in 24-hour mode. Please keep the underscore to +#. separate the date from the time. +#: libgnome-desktop/gnome-wall-clock.c:341 +msgid "%b %-e_%R:%S" +msgstr "%b %-e_%R:%S" + +#: libgnome-desktop/gnome-wall-clock.c:342 +msgid "%b %-e_%R" +msgstr "%b %-e_%R" + +#. Translators: This is the time format with day used +#. in 24-hour mode. +#: libgnome-desktop/gnome-wall-clock.c:346 +msgid "%a %R:%S" +msgstr "%a %R:%S" + +#: libgnome-desktop/gnome-wall-clock.c:347 +msgid "%a %R" +msgstr "%a %R" + +#. Translators: This is the time format without date used +#. in 24-hour mode. +#: libgnome-desktop/gnome-wall-clock.c:351 +msgid "%R:%S" +msgstr "%R:%S" + +#: libgnome-desktop/gnome-wall-clock.c:352 +msgid "%R" +msgstr "%R" + +#. Translators: This is a time format with full date +#. plus day used for AM/PM. Please keep the under- +#. score to separate the date from the time. +#: libgnome-desktop/gnome-wall-clock.c:360 +msgid "%a %b %-e_%l:%M:%S %p" +msgstr "%a %b %-e_%l:%M:%S %p" + +#: libgnome-desktop/gnome-wall-clock.c:361 +msgid "%a %b %-e_%l:%M %p" +msgstr "%a %b %-e_%l:%M %p" + +#. Translators: This is a time format with full date +#. used for AM/PM. Please keep the underscore to +#. separate the date from the time. +#: libgnome-desktop/gnome-wall-clock.c:366 +msgid "%b %-e_%l:%M:%S %p" +msgstr "%b %-e_%l:%M:%S %p" + +#: libgnome-desktop/gnome-wall-clock.c:367 +msgid "%b %-e_%l:%M %p" +msgstr "%b %-e_%l:%M %p" + +#. Translators: This is a time format with day used +#. for AM/PM. +#: libgnome-desktop/gnome-wall-clock.c:371 +msgid "%a %l:%M:%S %p" +msgstr "%a %l:%M:%S %p" + +#: libgnome-desktop/gnome-wall-clock.c:372 +msgid "%a %l:%M %p" +msgstr "%a %l:%M %p" + +#. Translators: This is a time format without date used +#. for AM/PM. +#: libgnome-desktop/gnome-wall-clock.c:376 +msgid "%l:%M:%S %p" +msgstr "%l:%M:%S %p" + +#: libgnome-desktop/gnome-wall-clock.c:377 +msgid "%l:%M %p" +msgstr "%l:%M %p"