Hello community, here is the log from the commit of package kdnssd for openSUSE:Factory checked in at 2020-04-29 20:48:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdnssd (Old) and /work/SRC/openSUSE:Factory/.kdnssd.new.2738 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "kdnssd" Wed Apr 29 20:48:20 2020 rev:86 rq:796925 version:20.04.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kdnssd/kdnssd.changes 2020-03-12 23:03:37.351117869 +0100 +++ /work/SRC/openSUSE:Factory/.kdnssd.new.2738/kdnssd.changes 2020-04-29 20:49:12.772562264 +0200 @@ -1,0 +2,28 @@ +Thu Apr 23 12:23:22 UTC 2020 - Luca Beltrame <lbeltrame@kde.org> + +- Update to 20.04.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/releases/2020-04-apps-update +- No code change since 20.03.90 + +------------------------------------------------------------------- +Sun Apr 5 20:30:51 UTC 2020 - Luca Beltrame <lbeltrame@kde.org> + +- Update to 20.03.90 + * New feature release + * For more details please see: + * https://kde.org/announcements/releases/20.04-rc +- No code change since 20.03.80 + +------------------------------------------------------------------- +Sun Mar 22 09:17:48 UTC 2020 - Luca Beltrame <lbeltrame@kde.org> + +- Update to 20.03.80 + * New feature release + * For more details please see: + * https://kde.org/announcements/releases/20.04-beta +- Changes since 19.12.3: + * It compiles fine without deprecated methods + +------------------------------------------------------------------- Old: ---- zeroconf-ioslave-19.12.3.tar.xz zeroconf-ioslave-19.12.3.tar.xz.sig New: ---- zeroconf-ioslave-20.04.0.tar.xz zeroconf-ioslave-20.04.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdnssd.spec ++++++ --- /var/tmp/diff_new_pack.EwsNjK/_old 2020-04-29 20:49:13.620564206 +0200 +++ /var/tmp/diff_new_pack.EwsNjK/_new 2020-04-29 20:49:13.624564216 +0200 @@ -1,7 +1,7 @@ # # spec file for package kdnssd # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -22,17 +22,13 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: kdnssd -Version: 19.12.3 +Version: 20.04.0 Release: 0 Summary: Zeroconf Support for KIO applications License: GPL-2.0-or-later Group: Productivity/Networking/System URL: https://www.kde.org Source: https://download.kde.org/stable/release-service/%{version}/src/%{rname}-%{version}.tar.xz -%if %{with lang} -Source1: https://download.kde.org/stable/release-service/%{version}/src/%{rname}-%{version}.tar.xz.sig -Source2: applications.keyring -%endif BuildRequires: extra-cmake-modules BuildRequires: kf5-filesystem BuildRequires: cmake(KF5DBusAddons) @@ -40,11 +36,11 @@ BuildRequires: cmake(KF5I18n) BuildRequires: cmake(KF5KIO) %if %{with lang} -Recommends: %{name}-lang +Source1: https://download.kde.org/stable/release-service/%{version}/src/%{rname}-%{version}.tar.xz.sig +Source2: applications.keyring %endif -%if %{with lang} +Recommends: %{name}-lang %lang_package -%endif %description This package adds Zeroconf support to KIO, allowing the use of this protocol ++++++ zeroconf-ioslave-19.12.3.tar.xz -> zeroconf-ioslave-20.04.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zeroconf-ioslave-19.12.3/.gitignore new/zeroconf-ioslave-20.04.0/.gitignore --- old/zeroconf-ioslave-19.12.3/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/zeroconf-ioslave-20.04.0/.gitignore 2020-04-09 09:21:15.000000000 +0200 @@ -0,0 +1,21 @@ +# Ignore the following files +*~ +*.[oa] +*.diff +*.kate-swp +*.kdev4 +.kdev_include_paths +*.kdevelop.pcs +*.moc +*.moc.cpp +*.orig +*.user +.*.swp +.swp.* +Doxyfile +Makefile +avail +random_seed +/build*/ +CMakeLists.txt.user* +*.unc-backup* diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zeroconf-ioslave-19.12.3/CMakeLists.txt new/zeroconf-ioslave-20.04.0/CMakeLists.txt --- old/zeroconf-ioslave-19.12.3/CMakeLists.txt 2020-03-03 01:27:18.000000000 +0100 +++ new/zeroconf-ioslave-20.04.0/CMakeLists.txt 2020-04-17 02:35:42.000000000 +0200 @@ -18,6 +18,12 @@ find_package(KF5 ${KF_MIN_VERSION} REQUIRED COMPONENTS DBusAddons DNSSD I18n KIO) +if (EXISTS "${CMAKE_SOURCE_DIR}/.git") + add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000) + add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x060000) +endif() + + add_subdirectory(ioslave) add_subdirectory(kdedmodule) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zeroconf-ioslave-19.12.3/ioslave/dnssd.cpp new/zeroconf-ioslave-20.04.0/ioslave/dnssd.cpp --- old/zeroconf-ioslave-19.12.3/ioslave/dnssd.cpp 2020-02-04 08:52:55.000000000 +0100 +++ new/zeroconf-ioslave-20.04.0/ioslave/dnssd.cpp 2020-04-09 09:21:15.000000000 +0200 @@ -234,12 +234,12 @@ void ZeroConfProtocol::addService( KDNSSD::RemoteService::Ptr service ) { UDSEntry entry; - entry.insert( UDSEntry::UDS_NAME, service->serviceName() ); - entry.insert( UDSEntry::UDS_ACCESS, 0666); - entry.insert( UDSEntry::UDS_FILE_TYPE, S_IFDIR ); + entry.fastInsert(UDSEntry::UDS_NAME, service->serviceName() ); + entry.fastInsert( UDSEntry::UDS_ACCESS, 0666); + entry.fastInsert( UDSEntry::UDS_FILE_TYPE, S_IFDIR ); const QString iconName = KProtocolInfo::icon( knownProtocols[service->type()].protocol ); if (!iconName.isNull()) - entry.insert( UDSEntry::UDS_ICON_NAME, iconName ); + entry.fastInsert( UDSEntry::UDS_ICON_NAME, iconName ); listEntry( entry ); } @@ -266,12 +266,12 @@ void ZeroConfProtocol::feedEntryAsDir( UDSEntry* entry, const QString& name, const QString& displayName ) { - entry->insert( UDSEntry::UDS_NAME, name ); - entry->insert( UDSEntry::UDS_ACCESS, 0555 ); - entry->insert( UDSEntry::UDS_FILE_TYPE, S_IFDIR ); - entry->insert( UDSEntry::UDS_MIME_TYPE, QStringLiteral("inode/directory") ); + entry->fastInsert( UDSEntry::UDS_NAME, name ); + entry->fastInsert( UDSEntry::UDS_ACCESS, 0555 ); + entry->fastInsert( UDSEntry::UDS_FILE_TYPE, S_IFDIR ); + entry->fastInsert( UDSEntry::UDS_MIME_TYPE, QStringLiteral("inode/directory") ); if (!displayName.isEmpty()) - entry->insert( UDSEntry::UDS_DISPLAY_NAME, displayName ); + entry->fastInsert( UDSEntry::UDS_DISPLAY_NAME, displayName ); } void ZeroConfProtocol::enterLoop() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zeroconf-ioslave-19.12.3/kdedmodule/dnssdwatcher.desktop new/zeroconf-ioslave-20.04.0/kdedmodule/dnssdwatcher.desktop --- old/zeroconf-ioslave-19.12.3/kdedmodule/dnssdwatcher.desktop 2020-02-04 08:52:55.000000000 +0100 +++ new/zeroconf-ioslave-20.04.0/kdedmodule/dnssdwatcher.desktop 2020-04-09 09:21:15.000000000 +0200 @@ -24,7 +24,7 @@ Name[kk]=DNS-SD қызметін бақылау мониторы Name[km]=ត្រួតពិនិត្យមើលការរកឃើញសេវា DNS-SD Name[ko]=DNS-SD 서비스 발견 모니터 -Name[lt]=DNS-SD tarnybų aptikimo stebėjimas +Name[lt]=DNS-SD tarnybų atradimo prižiūryklė Name[nb]=DNS-SD tjenesteoppdager Name[nds]=DNS-SD-Kieker Name[nl]=DNS-SD-diensten zoekbewaking @@ -73,7 +73,7 @@ Comment[kk]=Желіде DNS-SD қызметтерін бақылау мониторы Comment[km]=ត្រួតពិនិត្យបណ្ដាញសម្រាប់សេវា DNS-SD Comment[ko]=네트워크의 DNS-SD 서비스를 찾습니다 -Comment[lt]=Stebi tinklo DNS-SD tarnybas +Comment[lt]=Stebi tinkle DNS-SD tarnybas Comment[nb]=Overvåler nettverket etter DNS SD-tjenester Comment[nds]=Kiekt dat Nettwark na DNS-SD-Deensten dör Comment[nl]=Bewaakt het netwerk op DNS-SD-diensten diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zeroconf-ioslave-19.12.3/org.kde.zeroconf-ioslave.metainfo.xml new/zeroconf-ioslave-20.04.0/org.kde.zeroconf-ioslave.metainfo.xml --- old/zeroconf-ioslave-19.12.3/org.kde.zeroconf-ioslave.metainfo.xml 2020-02-04 08:52:55.000000000 +0100 +++ new/zeroconf-ioslave-20.04.0/org.kde.zeroconf-ioslave.metainfo.xml 2020-04-09 09:21:15.000000000 +0200 @@ -9,6 +9,7 @@ <name>Zeroconf Support</name> <name xml:lang="ca">Suport de Zeroconf</name> <name xml:lang="ca-valencia">Suport de Zeroconf</name> + <name xml:lang="da">Zeroconf-understøttelse</name> <name xml:lang="de">Unterstützung für ZeroConf</name> <name xml:lang="el">Υποστήριξη zeroconf</name> <name xml:lang="en-GB">Zeroconf Support</name> @@ -19,6 +20,7 @@ <name xml:lang="fr">Prise en charge de Zeroconf</name> <name xml:lang="it">Supporto per Zeroconf</name> <name xml:lang="ko">Zeroconf 지원</name> + <name xml:lang="lt">Zeroconf palaikymas</name> <name xml:lang="nl">Ondersteuning van Zeroconf</name> <name xml:lang="pl">Obsługa Zeroconf</name> <name xml:lang="pt">Suporte para Zeroconf</name> @@ -42,6 +44,7 @@ <summary xml:lang="fr">Parcourir les services des réseaux locaux sur la page Réseau de Dolphin</summary> <summary xml:lang="it">Sfoglia i servizi della rete locale nella pagina della rete di Dolphin</summary> <summary xml:lang="ko">Dolphin의 네트워크 페이지에서 로컬 네트워크 서비스 탐색</summary> + <summary xml:lang="lt">Naršyti Dolphin tinklo puslapyje vietinio tinklo tarnybas</summary> <summary xml:lang="nl">Bladeren in lokale netwerkservices in de netwerkpagina van Dolphin</summary> <summary xml:lang="pl">Przeglądaj usługi w sieci lokalnej na stronie sieci Dolphina</summary> <summary xml:lang="pt">Navegue nos serviços da rede local com a página de Rede do Dolphin</summary> @@ -66,11 +69,12 @@ <p xml:lang="fr">Ajoute un menu dans la page Réseau de Dolphin permettant d'afficher les services locaux, par exemple les imprimantes, qui s'annoncent par l'intermédiaire de DNSSD (appelé Avahi ou Bonjour par d'autres projets).</p> <p xml:lang="it">Aggiunge una voce alla pagina della rete di Dolphin che mostra i servizi locali come le stampanti che si auto-annunciano tramite DNSSD (chiamato Avahi o Bonjour da altri progetti).</p> <p xml:lang="ko">Dolphin의 네트워크 페이지에 DNSSD(Avahi, Bonjour로도 알려져 있음)로 자기 자신을 알리는 프린터와 같은 로컬 서비스 항목을 추가합니다.</p> + <p xml:lang="lt">Į programos Dolphin tinklo puslapį, prideda įrašą, skirtą rodyti vietines tarnybas, tokias kaip spausdintuvai, kurie skelbiasi naudodami DNSSD (kituose projektuose dar vadinamą kaip Avahi ar Bonjour)</p> <p xml:lang="nl">Voegt een item toe aan de netwerkpagina van Dolphin om lokale services te tonen zoals printers die zichzelf adverteren met DNSSD (Avahi of Bonjour genoemd door andere projecten).</p> <p xml:lang="pl">Dodaje wpis do strony sieci Dolphina, aby pokazać lokalne usługi takie jak drukarki oraz ogłosić się przez DNSSD (zwanym Avahi lub Bonjour w innych projektach).</p> <p xml:lang="pt">Adiciona um elemento à página de Rede do Dolphin que mostra os serviços locais, como as impressoras que se anunciam a elas próprias com o DNSSD (chamado de Avahi ou Bonjour noutros projectos).</p> <p xml:lang="pt-BR">Adiciona um item à página de Rede do Dolphin que mostra os serviços locais, como as impressoras que se auto-anunciam com o DNSSD (chamado de Avahi ou Bonjour por outros projetos).</p> - <p xml:lang="sk">Pridá položku na stránku Siete v Dolphin, na zobrazenie miestnych služieb, ako sú tlačiarne, ktoré sa propagujú sami s DNSSD (nazývané Avahi alebo Bonjour podľa iných projektov).</p> + <p xml:lang="sk">Pridá položku na stránku siete v Dolphin, na zobrazenie miestnych služieb, ako sú tlačiarne, ktoré sa propagujú sami s DNSSD (nazývané Avahi alebo Bonjour podľa iných projektov).</p> <p xml:lang="sv">Lägger till en post på Dolphins nätverkssida för att visa lokala tjänster såsom skrivare, som tillkännager sig med DNSSD (kallat Avahi eller Bonjour av andra projekt).</p> <p xml:lang="uk">Додає на сторінку «Мережа» Dolphin пункт для показу служб локальної мережі, зокрема принтерів, які повідомляють про себе за допомогою DNSSD (системи, яка має назву Avahi або Bonjour у інших проєктах).</p> <p xml:lang="x-test">xxAdds an entry to Dolphin's Network page to show local services such as printers which advertise themselves with DNSSD (called Avahi or Bonjour by other projects).xx</p> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zeroconf-ioslave-19.12.3/po/en_GB/kio5_zeroconf.po new/zeroconf-ioslave-20.04.0/po/en_GB/kio5_zeroconf.po --- old/zeroconf-ioslave-19.12.3/po/en_GB/kio5_zeroconf.po 2020-03-03 01:27:14.000000000 +0100 +++ new/zeroconf-ioslave-20.04.0/po/en_GB/kio5_zeroconf.po 2020-04-17 02:35:41.000000000 +0200 @@ -9,7 +9,7 @@ "POT-Creation-Date: 2019-05-20 03:11+0200\n" "PO-Revision-Date: 2017-11-26 14:21+0000\n" "Last-Translator: Steve Allewell <steve.allewell@gmail.com>\n" -"Language-Team: British English <kde-i18n-doc@kde.org>\n" +"Language-Team: British English <kde-l10n-en_gb@kde.org>\n" "Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zeroconf-ioslave-19.12.3/po/ia/kio5_zeroconf.po new/zeroconf-ioslave-20.04.0/po/ia/kio5_zeroconf.po --- old/zeroconf-ioslave-19.12.3/po/ia/kio5_zeroconf.po 2020-03-03 01:27:16.000000000 +0100 +++ new/zeroconf-ioslave-20.04.0/po/ia/kio5_zeroconf.po 2020-04-17 02:35:42.000000000 +0200 @@ -1,20 +1,20 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# g.sora <g.sora@tiscali.it>, 2011, 2020. +# g.sora <g.sora@tiscali.it>, 2011. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2019-05-20 03:11+0200\n" -"PO-Revision-Date: 2020-01-18 23:29+0100\n" -"Last-Translator: Giovanni Sora <g.sora@tiscali.it>\n" -"Language-Team: Interlingua <kde-i18n-doc@kde.org>\n" +"PO-Revision-Date: 2011-04-29 14:13+0200\n" +"Last-Translator: g.sora <g.sora@tiscali.it>\n" +"Language-Team: Interlingua <kde-i18n-it@kde.org>\n" "Language: ia\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 1.2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #: dnssd.cpp:63 @@ -48,9 +48,10 @@ msgstr "Le demone Zeroconf (mdnsd) non es executante." #: dnssd.cpp:174 -#, kde-format +#, fuzzy, kde-format +#| msgid "KDE has been built without Zeroconf support." msgid "The KDNSSD library has been built without Zeroconf support." -msgstr "Le bibliotheca KDNSSD ha essite construite sin supporto de Zeroconf." +msgstr "KDE ha essite construite sin supporto de Zeroconf." #~ msgid "Plasma remote widget" #~ msgstr "Widget remote de Plasma" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zeroconf-ioslave-19.12.3/po/lt/kio5_zeroconf.po new/zeroconf-ioslave-20.04.0/po/lt/kio5_zeroconf.po --- old/zeroconf-ioslave-19.12.3/po/lt/kio5_zeroconf.po 2020-03-03 01:27:16.000000000 +0100 +++ new/zeroconf-ioslave-20.04.0/po/lt/kio5_zeroconf.po 2020-04-17 02:35:42.000000000 +0200 @@ -6,7 +6,7 @@ "Project-Id-Version: kio_zeroconf\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2019-05-20 03:11+0200\n" -"PO-Revision-Date: 2008-06-03 22:30+0100\n" +"PO-Revision-Date: 2019-12-30 01:03+0200\n" "Last-Translator: Dovydas Sankauskas <laisve@gmail.com>\n" "Language-Team: Lithuanian <kde-i18n-lt@kde.org>\n" "Language: lt\n" @@ -15,6 +15,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n" "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" +"X-Generator: Poedit 2.2.4\n" #: dnssd.cpp:63 #, kde-format @@ -24,22 +25,22 @@ #: dnssd.cpp:64 #, kde-format msgid "WebDav remote directory" -msgstr "WebDav nutolęs aplankas" +msgstr "WebDav nuotolinis katalogas" #: dnssd.cpp:65 #, kde-format msgid "Remote disk (sftp)" -msgstr "Nutolęs diskas (sftp)" +msgstr "Nuotolinis diskas (sftp)" #: dnssd.cpp:66 #, kde-format msgid "Remote disk (fish)" -msgstr "Nutolęs diskas (fish)" +msgstr "Nuotolinis diskas (fish)" #: dnssd.cpp:67 #, kde-format msgid "NFS remote directory" -msgstr "NFS nutolęs aplankas" +msgstr "NFS nuotolinis katalogas" #: dnssd.cpp:169 #, kde-format @@ -47,7 +48,6 @@ msgstr "Zeroconf tarnyba (mdnsd) nepaleista." #: dnssd.cpp:174 -#, fuzzy, kde-format -#| msgid "KDE has been built without Zeroconf support." +#, kde-format msgid "The KDNSSD library has been built without Zeroconf support." -msgstr "KDE buvo sukompiliuotas be Zeroconf." +msgstr "KDNSSD biblioteka buvo sukompiliuota be Zeroconf palaikymo." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zeroconf-ioslave-19.12.3/po/ml/kio5_zeroconf.po new/zeroconf-ioslave-20.04.0/po/ml/kio5_zeroconf.po --- old/zeroconf-ioslave-19.12.3/po/ml/kio5_zeroconf.po 2020-03-03 01:27:17.000000000 +0100 +++ new/zeroconf-ioslave-20.04.0/po/ml/kio5_zeroconf.po 2020-04-17 02:35:42.000000000 +0200 @@ -9,7 +9,7 @@ "POT-Creation-Date: 2019-05-20 03:11+0200\n" "PO-Revision-Date: 2009-01-16 HO:MI+ZONE\n" "Last-Translator: SANKARANARAYANAN | ശങ്കരനാരായണന്<snalledam@dataone.in>\n" -"Language-Team: MALAYALAM |മലയാളം<smc-discuss@googlegroups.com>\n" +"Language-Team: SMC <smc.org.in>\n" "Language: ml\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zeroconf-ioslave-19.12.3/po/nb/kio5_zeroconf.po new/zeroconf-ioslave-20.04.0/po/nb/kio5_zeroconf.po --- old/zeroconf-ioslave-19.12.3/po/nb/kio5_zeroconf.po 2020-03-03 01:27:17.000000000 +0100 +++ new/zeroconf-ioslave-20.04.0/po/nb/kio5_zeroconf.po 2020-04-17 02:35:42.000000000 +0200 @@ -8,7 +8,7 @@ "POT-Creation-Date: 2019-05-20 03:11+0200\n" "PO-Revision-Date: 2008-07-14 15:21+0200\n" "Last-Translator: Bjørn Steensrud <bjornst@skogkatt.homelinux.org>\n" -"Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\n" +"Language-Team: Norwegian Bokmål <l10n-no@lister.huftis.org>\n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zeroconf-ioslave-19.12.3/po/nn/kio5_zeroconf.po new/zeroconf-ioslave-20.04.0/po/nn/kio5_zeroconf.po --- old/zeroconf-ioslave-19.12.3/po/nn/kio5_zeroconf.po 2020-03-03 01:27:17.000000000 +0100 +++ new/zeroconf-ioslave-20.04.0/po/nn/kio5_zeroconf.po 2020-04-17 02:35:42.000000000 +0200 @@ -9,7 +9,7 @@ "POT-Creation-Date: 2019-05-20 03:11+0200\n" "PO-Revision-Date: 2018-01-24 20:07+0100\n" "Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n" -"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n" +"Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zeroconf-ioslave-19.12.3/po/zh_CN/kio5_zeroconf.po new/zeroconf-ioslave-20.04.0/po/zh_CN/kio5_zeroconf.po --- old/zeroconf-ioslave-19.12.3/po/zh_CN/kio5_zeroconf.po 2020-03-03 01:27:18.000000000 +0100 +++ new/zeroconf-ioslave-20.04.0/po/zh_CN/kio5_zeroconf.po 2020-04-17 02:35:42.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2019-05-20 03:11+0200\n" -"PO-Revision-Date: 2020-01-20 21:56\n" +"PO-Revision-Date: 2020-03-25 19:57\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n"
participants (1)
-
root