Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package purpose for openSUSE:Factory checked in at 2021-10-18 21:58:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/purpose (Old) and /work/SRC/openSUSE:Factory/.purpose.new.1890 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "purpose" Mon Oct 18 21:58:58 2021 rev:53 rq:924478 version:5.87.0 Changes: -------- --- /work/SRC/openSUSE:Factory/purpose/purpose.changes 2021-09-16 23:16:32.939914917 +0200 +++ /work/SRC/openSUSE:Factory/.purpose.new.1890/purpose.changes 2021-10-18 22:01:16.746053940 +0200 @@ -1,0 +2,12 @@ +Sun Oct 3 20:34:06 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 5.87.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.87.0 +- Changes since 5.86.0: + * Add Gitlab CI configuration + * plugins/barcode: Call it a "QR code" in the UI + * Add Barcode plugin + +------------------------------------------------------------------- Old: ---- purpose-5.86.0.tar.xz purpose-5.86.0.tar.xz.sig New: ---- purpose-5.87.0.tar.xz purpose-5.87.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ purpose.spec ++++++ --- /var/tmp/diff_new_pack.b0bpMp/_old 2021-10-18 22:01:17.298054339 +0200 +++ /var/tmp/diff_new_pack.b0bpMp/_new 2021-10-18 22:01:17.298054339 +0200 @@ -20,14 +20,14 @@ %global __requires_exclude qmlimport\\((Ubuntu\\.OnlineAccounts|org\\.kde\\.kdeconnect).* %define lname libKF5Purpose5 -%define _tar_path 5.86 +%define _tar_path 5.87 # Full KF5 version (e.g. 5.33.0) %{!?_kf5_version: %global _kf5_version %{version}} # Last major and minor KF5 version (e.g. 5.33) %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')} %bcond_without lang Name: purpose -Version: 5.86.0 +Version: 5.87.0 Release: 0 Summary: Framework to integrate services and actions in applications License: LGPL-2.1-or-later @@ -127,6 +127,7 @@ %find_lang libpurpose_quick %{name}.lang %find_lang libpurpose_widgets %{name}.lang %find_lang purpose-fileitemaction %{name}.lang + %find_lang purpose_barcode %{name}.lang %find_lang purpose_bluetooth %{name}.lang %find_lang purpose_email %{name}.lang %find_lang purpose_imgur %{name}.lang ++++++ purpose-5.86.0.tar.xz -> purpose-5.87.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/.gitlab-ci.yml new/purpose-5.87.0/.gitlab-ci.yml --- old/purpose-5.86.0/.gitlab-ci.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/.gitlab-ci.yml 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,5 @@ +# SPDX-FileCopyrightText: 2020 Volker Krause <[email protected]> +# SPDX-License-Identifier: CC0-1.0 + +include: + - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/linux.yml diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/.kde-ci.yml new/purpose-5.87.0/.kde-ci.yml --- old/purpose-5.86.0/.kde-ci.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/.kde-ci.yml 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,12 @@ +Dependencies: +- 'on': ['Linux', 'FreeBSD', 'Windows', 'macOS'] + 'require': + 'frameworks/extra-cmake-modules': '@same' + 'frameworks/kcoreaddons' : '@same' + 'frameworks/kconfig' : '@same' + 'frameworks/ki18n' : '@same' + 'frameworks/kio' : '@same' + 'frameworks/kirigami' : '@same' + +Options: + test-before-installing: True diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/CMakeLists.txt new/purpose-5.87.0/CMakeLists.txt --- old/purpose-5.86.0/CMakeLists.txt 2021-09-04 19:08:58.000000000 +0200 +++ new/purpose-5.87.0/CMakeLists.txt 2021-10-02 16:35:29.000000000 +0200 @@ -2,7 +2,7 @@ project(Purpose) -find_package(ECM 5.86.0 REQUIRED NO_MODULE) +find_package(ECM 5.87.0 REQUIRED NO_MODULE) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH}) @@ -25,8 +25,8 @@ include(ECMGenerateQmlTypes) include(ECMQMLModules) -set(KF_VERSION "5.86.0") # handled by release scripts -set(KF_DEP_VERSION "5.86.0") # handled by release scripts +set(KF_VERSION "5.87.0") # handled by release scripts +set(KF_DEP_VERSION "5.87.0") # handled by release scripts find_package(KF5 ${KF_DEP_VERSION} REQUIRED COMPONENTS CoreAddons I18n Config Kirigami2 Notifications KIO) @@ -40,6 +40,7 @@ ecm_find_qmlmodule(Ubuntu.OnlineAccounts 0.1) ecm_find_qmlmodule(org.kde.kdeconnect 1.0) ecm_find_qmlmodule(org.kde.kquickcontrolsaddons 2.0) +ecm_find_qmlmodule(org.kde.prison 1.0) ecm_setup_version(${KF_VERSION} VARIABLE_PREFIX PURPOSE VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/purpose_version.h" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/az/purpose_barcode.po new/purpose-5.87.0/po/az/purpose_barcode.po --- old/purpose-5.86.0/po/az/purpose_barcode.po 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/po/az/purpose_barcode.po 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,38 @@ +# Copyright (C) YEAR This file is copyright: +# This file is distributed under the same license as the purpose package. +# +# Kheyyam Gojayev <[email protected]>, 2021. +msgid "" +msgstr "" +"Project-Id-Version: purpose\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2021-09-21 00:14+0000\n" +"PO-Revision-Date: 2021-09-21 17:30+0400\n" +"Last-Translator: Kheyyam Gojayev <[email protected]>\n" +"Language-Team: Azerbaijani <[email protected]>\n" +"Language: az\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 21.08.1\n" + +#: barcodeplugin_config.qml:53 +#, kde-format +msgid "Type a URL or some text to generate a QR code" +msgstr "QR kod yaratmaq ??????n bir URL v?? ya n?? is?? yaz??n" + +#: barcodeplugin_config.qml:62 +#, kde-format +msgid "Creating QR code failed" +msgstr "QR kodu yard??lmas?? al??nmad??" + +#: barcodeplugin_config.qml:71 +#, kde-format +msgid "The QR code is too large to be displayed" +msgstr "G??st??rm??k ??????n bu QR kod ??ox b??y??kd??r" + +#: barcodeplugin_config.qml:83 +#, kde-format +msgid "Type a URL or some text..." +msgstr "Bir URL v?? ya m??tn yaz??n...s" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/ca/purpose_barcode.po new/purpose-5.87.0/po/ca/purpose_barcode.po --- old/purpose-5.86.0/po/ca/purpose_barcode.po 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/po/ca/purpose_barcode.po 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,40 @@ +# Translation of purpose_barcode.po to Catalan +# Copyright (C) 2021 This_file_is_part_of_KDE +# This file is distributed under the license LGPL version 2.1 or +# version 3 or later versions approved by the membership of KDE e.V. +# +# Josep M. Ferrer <[email protected]>, 2021. +msgid "" +msgstr "" +"Project-Id-Version: purpose\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2021-09-21 00:14+0000\n" +"PO-Revision-Date: 2021-09-21 11:29+0200\n" +"Last-Translator: Josep M. Ferrer <[email protected]>\n" +"Language-Team: Catalan <[email protected]>\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 20.12.0\n" + +#: barcodeplugin_config.qml:53 +#, kde-format +msgid "Type a URL or some text to generate a QR code" +msgstr "Teclegeu un URL o un text per a generar un codi QR" + +#: barcodeplugin_config.qml:62 +#, kde-format +msgid "Creating QR code failed" +msgstr "Ha fallat la creaci?? del codi QR" + +#: barcodeplugin_config.qml:71 +#, kde-format +msgid "The QR code is too large to be displayed" +msgstr "El codi QR ??s massa gran per a mostrar-se" + +#: barcodeplugin_config.qml:83 +#, kde-format +msgid "Type a URL or some text..." +msgstr "Teclegeu un URL o un text..." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/cs/purpose_barcode.po new/purpose-5.87.0/po/cs/purpose_barcode.po --- old/purpose-5.86.0/po/cs/purpose_barcode.po 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/po/cs/purpose_barcode.po 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,38 @@ +# Copyright (C) YEAR This file is copyright: +# This file is distributed under the same license as the purpose package. +# Vit Pelcak <[email protected]>, 2021. +# +msgid "" +msgstr "" +"Project-Id-Version: purpose\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2021-09-21 00:14+0000\n" +"PO-Revision-Date: 2021-09-14 17:33+0200\n" +"Last-Translator: Vit Pelcak <[email protected]>\n" +"Language-Team: Czech <[email protected]>\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Lokalize 21.08.1\n" + +#: barcodeplugin_config.qml:53 +#, kde-format +msgid "Type a URL or some text to generate a QR code" +msgstr "" + +#: barcodeplugin_config.qml:62 +#, kde-format +msgid "Creating QR code failed" +msgstr "" + +#: barcodeplugin_config.qml:71 +#, kde-format +msgid "The QR code is too large to be displayed" +msgstr "" + +#: barcodeplugin_config.qml:83 +#, kde-format +msgid "Type a URL or some text..." +msgstr "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/da/libpurpose_quick.po new/purpose-5.87.0/po/da/libpurpose_quick.po --- old/purpose-5.86.0/po/da/libpurpose_quick.po 2021-09-04 19:08:58.000000000 +0200 +++ new/purpose-5.87.0/po/da/libpurpose_quick.po 2021-10-02 16:35:29.000000000 +0200 @@ -1,13 +1,13 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# Martin Schlander <[email protected]>, 2016. +# Martin Schlander <[email protected]>, 2016, 2021. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-08-04 00:15+0000\n" -"PO-Revision-Date: 2016-05-12 20:31+0100\n" +"PO-Revision-Date: 2021-09-09 21:40+0200\n" "Last-Translator: Martin Schlander <[email protected]>\n" "Language-Team: Danish <[email protected]>\n" "Language: da\n" @@ -15,7 +15,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 20.04.2\n" #: AlternativesView.qml:34 #, kde-format @@ -29,6 +29,9 @@ "\n" "%1" msgstr "" +"Kunne ikke indl??se konfigurationssiden for denne handling:\n" +"\n" +"%1" #: JobView.qml:117 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/da/purpose_nextcloud.po new/purpose-5.87.0/po/da/purpose_nextcloud.po --- old/purpose-5.86.0/po/da/purpose_nextcloud.po 2021-09-04 19:08:58.000000000 +0200 +++ new/purpose-5.87.0/po/da/purpose_nextcloud.po 2021-10-02 16:35:29.000000000 +0200 @@ -1,13 +1,13 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # scootergrisen, 2017. -# Martin Schlander <[email protected]>, 2018. +# Martin Schlander <[email protected]>, 2018, 2021. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-01-13 02:57+0100\n" -"PO-Revision-Date: 2018-07-12 09:52+0100\n" +"PO-Revision-Date: 2021-09-09 21:40+0200\n" "Last-Translator: Martin Schlander <[email protected]>\n" "Language-Team: Danish <[email protected]>\n" "Language: da\n" @@ -15,22 +15,22 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 20.04.2\n" #: nextcloudplugin_config.qml:24 #, kde-format msgid "Select an account:" -msgstr "" +msgstr "V??lg en konto:" #: nextcloudplugin_config.qml:63 #, kde-format msgid "No account configured" -msgstr "" +msgstr "Ingen konto konfigureret" #: nextcloudplugin_config.qml:71 #, kde-format msgid "Configure Accounts" -msgstr "" +msgstr "Indstil online konti" #: nextcloudplugin_config.qml:78 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/el/purpose_barcode.po new/purpose-5.87.0/po/el/purpose_barcode.po --- old/purpose-5.86.0/po/el/purpose_barcode.po 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/po/el/purpose_barcode.po 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,38 @@ +# Copyright (C) YEAR This file is copyright: +# This file is distributed under the same license as the purpose package. +# +# Stelios <[email protected]>, 2021. +msgid "" +msgstr "" +"Project-Id-Version: purpose\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2021-09-21 00:14+0000\n" +"PO-Revision-Date: 2021-09-23 08:30+0300\n" +"Last-Translator: Stelios <[email protected]>\n" +"Language-Team: Greek <[email protected]>\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 20.04.2\n" + +#: barcodeplugin_config.qml:53 +#, kde-format +msgid "Type a URL or some text to generate a QR code" +msgstr "???????????????????????????? ?????? URL ?? ?????????????? ?????? ???? ???????????????? ???????? ?????????????? QR" + +#: barcodeplugin_config.qml:62 +#, kde-format +msgid "Creating QR code failed" +msgstr "???????????????? ?????????????????????? QR ??????????????" + +#: barcodeplugin_config.qml:71 +#, kde-format +msgid "The QR code is too large to be displayed" +msgstr "?? ?????????????? QR ?????????? ???????? ?????????????? ?????? ???? ????????????????????" + +#: barcodeplugin_config.qml:83 +#, kde-format +msgid "Type a URL or some text..." +msgstr "???????????????????????????? ?????? URL ?? ??????????????..." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/es/purpose_barcode.po new/purpose-5.87.0/po/es/purpose_barcode.po --- old/purpose-5.86.0/po/es/purpose_barcode.po 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/po/es/purpose_barcode.po 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,40 @@ +# Spanish translations for purpose_barcode.po package. +# Copyright (C) 2021 This file is copyright: +# This file is distributed under the same license as the purpose package. +# +# Automatically generated, 2021. +# Eloy Cuadra <[email protected]>, 2021. +msgid "" +msgstr "" +"Project-Id-Version: purpose_barcode\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2021-09-21 00:14+0000\n" +"PO-Revision-Date: 2021-09-21 05:06+0200\n" +"Last-Translator: Eloy Cuadra <[email protected]>\n" +"Language-Team: Spanish <[email protected]>\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 21.08.1\n" + +#: barcodeplugin_config.qml:53 +#, kde-format +msgid "Type a URL or some text to generate a QR code" +msgstr "Escriba un URL o un texto para generar un c??digo QR" + +#: barcodeplugin_config.qml:62 +#, kde-format +msgid "Creating QR code failed" +msgstr "La creaci??n del c??digo QR ha fallado" + +#: barcodeplugin_config.qml:71 +#, kde-format +msgid "The QR code is too large to be displayed" +msgstr "El c??digo QR es demasiado grande para mostrarlo" + +#: barcodeplugin_config.qml:83 +#, kde-format +msgid "Type a URL or some text..." +msgstr "Escriba un URL o un texto..." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/fr/purpose_barcode.po new/purpose-5.87.0/po/fr/purpose_barcode.po --- old/purpose-5.86.0/po/fr/purpose_barcode.po 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/po/fr/purpose_barcode.po 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,35 @@ +# Xavier Besnard <[email protected]>, 2021. +msgid "" +msgstr "" +"Project-Id-Version: purpose\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2021-09-21 00:14+0000\n" +"PO-Revision-Date: 2021-09-21 19:08+0200\n" +"Last-Translator: Xavier Besnard <[email protected]>\n" +"Language-Team: French <[email protected]>\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Lokalize 21.08.1\n" + +#: barcodeplugin_config.qml:53 +#, kde-format +msgid "Type a URL or some text to generate a QR code" +msgstr "Saisissez une URL ou du texte pour g??n??rer un QR-code" + +#: barcodeplugin_config.qml:62 +#, kde-format +msgid "Creating QR code failed" +msgstr "La cr??ation du QR-code a ??chou??." + +#: barcodeplugin_config.qml:71 +#, kde-format +msgid "The QR code is too large to be displayed" +msgstr "Le QR-code est trop grand pour ??tre affich??." + +#: barcodeplugin_config.qml:83 +#, kde-format +msgid "Type a URL or some text..." +msgstr "Saisissez une URL ou du texte..." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/hu/purpose_barcode.po new/purpose-5.87.0/po/hu/purpose_barcode.po --- old/purpose-5.86.0/po/hu/purpose_barcode.po 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/po/hu/purpose_barcode.po 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,38 @@ +# Copyright (C) YEAR This file is copyright: +# This file is distributed under the same license as the purpose package. +# +# Kristof Kiszel <[email protected]>, 2021. +msgid "" +msgstr "" +"Project-Id-Version: purpose\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2021-09-21 00:14+0000\n" +"PO-Revision-Date: 2021-09-22 09:58+0200\n" +"Last-Translator: Kristof Kiszel <[email protected]>\n" +"Language-Team: Hungarian <[email protected]>\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 21.03.80\n" + +#: barcodeplugin_config.qml:53 +#, kde-format +msgid "Type a URL or some text to generate a QR code" +msgstr "G??peljen be egy URL-t vagy valamilyen sz??veget QR-k??d gener??l??s??hoz" + +#: barcodeplugin_config.qml:62 +#, kde-format +msgid "Creating QR code failed" +msgstr "Nem siker??lt l??trehozni a QR-k??dot" + +#: barcodeplugin_config.qml:71 +#, kde-format +msgid "The QR code is too large to be displayed" +msgstr "A QR-k??d t??l nagy, nem lehet megjelen??teni" + +#: barcodeplugin_config.qml:83 +#, kde-format +msgid "Type a URL or some text..." +msgstr "G??peljen be egy URL-t vagy sz??veget..." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/ia/purpose_barcode.po new/purpose-5.87.0/po/ia/purpose_barcode.po --- old/purpose-5.86.0/po/ia/purpose_barcode.po 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/po/ia/purpose_barcode.po 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,38 @@ +# Copyright (C) YEAR This file is copyright: +# This file is distributed under the same license as the purpose package. +# +# giovanni <[email protected]>, 2021. +msgid "" +msgstr "" +"Project-Id-Version: purpose\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2021-09-21 00:14+0000\n" +"PO-Revision-Date: 2021-09-23 23:08+0200\n" +"Last-Translator: giovanni <[email protected]>\n" +"Language-Team: Interlingua <[email protected]>\n" +"Language: ia\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 21.08.1\n" + +#: barcodeplugin_config.qml:53 +#, kde-format +msgid "Type a URL or some text to generate a QR code" +msgstr "Typa un URL o alcun texto per generar un codice QR" + +#: barcodeplugin_config.qml:62 +#, kde-format +msgid "Creating QR code failed" +msgstr "Il falleva crear codice QR" + +#: barcodeplugin_config.qml:71 +#, kde-format +msgid "The QR code is too large to be displayed" +msgstr "Il codice QR es troppo grande per essser monstrate" + +#: barcodeplugin_config.qml:83 +#, kde-format +msgid "Type a URL or some text..." +msgstr "Typa un URL o alcun texto..." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/nl/purpose_barcode.po new/purpose-5.87.0/po/nl/purpose_barcode.po --- old/purpose-5.86.0/po/nl/purpose_barcode.po 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/po/nl/purpose_barcode.po 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,38 @@ +# Copyright (C) YEAR This file is copyright: +# This file is distributed under the same license as the purpose package. +# +# Freek de Kruijf <[email protected]>, 2021. +msgid "" +msgstr "" +"Project-Id-Version: purpose\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2021-09-21 00:14+0000\n" +"PO-Revision-Date: 2021-09-21 15:04+0200\n" +"Last-Translator: Freek de Kruijf <[email protected]>\n" +"Language-Team: \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 21.08.1\n" + +#: barcodeplugin_config.qml:53 +#, kde-format +msgid "Type a URL or some text to generate a QR code" +msgstr "Typ een URL of een tekst om een QR-code te maken" + +#: barcodeplugin_config.qml:62 +#, kde-format +msgid "Creating QR code failed" +msgstr "Aanmaken van QR-code is mislukt" + +#: barcodeplugin_config.qml:71 +#, kde-format +msgid "The QR code is too large to be displayed" +msgstr "De QR-code is te groot om te worden getoond" + +#: barcodeplugin_config.qml:83 +#, kde-format +msgid "Type a URL or some text..." +msgstr "Typ een URL of een tekst..." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/pt_BR/purpose_barcode.po new/purpose-5.87.0/po/pt_BR/purpose_barcode.po --- old/purpose-5.86.0/po/pt_BR/purpose_barcode.po 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/po/pt_BR/purpose_barcode.po 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,41 @@ +# Copyright (C) YEAR This file is copyright: +# This file is distributed under the same license as the purpose package. +# +# Luiz Fernando Ranghetti <[email protected]>, 2021. +msgid "" +msgstr "" +"Project-Id-Version: purpose\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2021-09-21 00:14+0000\n" +"PO-Revision-Date: 2021-09-15 09:02-0300\n" +"Last-Translator: Luiz Fernando Ranghetti <[email protected]>\n" +"Language-Team: Portuguese <[email protected]>\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Lokalize 20.04.2\n" + +#: barcodeplugin_config.qml:53 +#, fuzzy, kde-format +#| msgid "Type a URL or some text to generate a barcode" +msgid "Type a URL or some text to generate a QR code" +msgstr "Digite uma URL ou algum texto para gerar um c??digo de barras" + +#: barcodeplugin_config.qml:62 +#, fuzzy, kde-format +#| msgid "Creating barcode failed" +msgid "Creating QR code failed" +msgstr "Falha ao criar c??digo de barras" + +#: barcodeplugin_config.qml:71 +#, fuzzy, kde-format +#| msgid "The barcode is too large to be displayed" +msgid "The QR code is too large to be displayed" +msgstr "O c??digo de barras ?? muito longo para ser exibido" + +#: barcodeplugin_config.qml:83 +#, kde-format +msgid "Type a URL or some text..." +msgstr "Digite uma URL ou algum texto..." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/sk/purpose_barcode.po new/purpose-5.87.0/po/sk/purpose_barcode.po --- old/purpose-5.86.0/po/sk/purpose_barcode.po 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/po/sk/purpose_barcode.po 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,36 @@ +# translation of purpose_barcode.po to Slovak +# Roman Pahol??k <[email protected]>, 2021. +msgid "" +msgstr "" +"Project-Id-Version: purpose_barcode\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2021-09-21 00:14+0000\n" +"PO-Revision-Date: 2021-09-21 17:12+0200\n" +"Last-Translator: Roman Paholik <[email protected]>\n" +"Language-Team: Slovak <[email protected]>\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 21.08.1\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: barcodeplugin_config.qml:53 +#, kde-format +msgid "Type a URL or some text to generate a QR code" +msgstr "" + +#: barcodeplugin_config.qml:62 +#, kde-format +msgid "Creating QR code failed" +msgstr "Vytvorenie QR k??du zlyhalo" + +#: barcodeplugin_config.qml:71 +#, kde-format +msgid "The QR code is too large to be displayed" +msgstr "" + +#: barcodeplugin_config.qml:83 +#, kde-format +msgid "Type a URL or some text..." +msgstr "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/sl/purpose_barcode.po new/purpose-5.87.0/po/sl/purpose_barcode.po --- old/purpose-5.86.0/po/sl/purpose_barcode.po 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/po/sl/purpose_barcode.po 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,39 @@ +# Copyright (C) YEAR This file is copyright: +# This file is distributed under the same license as the purpose package. +# +# Matja?? Jeran <[email protected]>, 2021. +msgid "" +msgstr "" +"Project-Id-Version: purpose\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2021-09-21 00:14+0000\n" +"PO-Revision-Date: 2021-09-22 15:09+0200\n" +"Last-Translator: Matja?? Jeran <[email protected]>\n" +"Language-Team: Slovenian <[email protected]>\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 20.12.2\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" +"%100==4 ? 3 : 0);\n" + +#: barcodeplugin_config.qml:53 +#, kde-format +msgid "Type a URL or some text to generate a QR code" +msgstr "Vnesite URL ali neko besedilo za generiranje kode QR" + +#: barcodeplugin_config.qml:62 +#, kde-format +msgid "Creating QR code failed" +msgstr "Ustvarjanje kode QR ni uspelo" + +#: barcodeplugin_config.qml:71 +#, kde-format +msgid "The QR code is too large to be displayed" +msgstr "Koda QR je predolga za prikaz" + +#: barcodeplugin_config.qml:83 +#, kde-format +msgid "Type a URL or some text..." +msgstr "Vnesite URL ali neko besedilo..." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/sv/purpose_barcode.po new/purpose-5.87.0/po/sv/purpose_barcode.po --- old/purpose-5.86.0/po/sv/purpose_barcode.po 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/po/sv/purpose_barcode.po 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,38 @@ +# Copyright (C) YEAR This file is copyright: +# This file is distributed under the same license as the purpose package. +# +# Stefan Asserh??ll <[email protected]>, 2021. +msgid "" +msgstr "" +"Project-Id-Version: purpose\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2021-09-21 00:14+0000\n" +"PO-Revision-Date: 2021-09-21 18:38+0200\n" +"Last-Translator: Stefan Asserh??ll <[email protected]>\n" +"Language-Team: Swedish <[email protected]>\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 20.08.1\n" + +#: barcodeplugin_config.qml:53 +#, kde-format +msgid "Type a URL or some text to generate a QR code" +msgstr "Skriv in webbadress eller n??gon text f??r att skapa en QR-kod" + +#: barcodeplugin_config.qml:62 +#, kde-format +msgid "Creating QR code failed" +msgstr "Misslyckades skapa QR-kod" + +#: barcodeplugin_config.qml:71 +#, kde-format +msgid "The QR code is too large to be displayed" +msgstr "QR-koden ??r f??r stor att visas" + +#: barcodeplugin_config.qml:83 +#, kde-format +msgid "Type a URL or some text..." +msgstr "Skriv in webbadress eller n??gon text..." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/uk/purpose_barcode.po new/purpose-5.87.0/po/uk/purpose_barcode.po --- old/purpose-5.86.0/po/uk/purpose_barcode.po 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/po/uk/purpose_barcode.po 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,39 @@ +# Copyright (C) YEAR This file is copyright: +# This file is distributed under the same license as the purpose package. +# +# Yuri Chornoivan <[email protected]>, 2021. +msgid "" +msgstr "" +"Project-Id-Version: purpose\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2021-09-21 00:14+0000\n" +"PO-Revision-Date: 2021-09-21 09:04+0300\n" +"Last-Translator: Yuri Chornoivan <[email protected]>\n" +"Language-Team: Ukrainian <[email protected]>\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" +"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Lokalize 20.12.0\n" + +#: barcodeplugin_config.qml:53 +#, kde-format +msgid "Type a URL or some text to generate a QR code" +msgstr "?????????????? ???????????? ?????? ???????????? ?????????? ?????? ?????????????????? QR-????????" + +#: barcodeplugin_config.qml:62 +#, kde-format +msgid "Creating QR code failed" +msgstr "?????????????????? QR-???????? ?????????????? ??????????????" + +#: barcodeplugin_config.qml:71 +#, kde-format +msgid "The QR code is too large to be displayed" +msgstr "QR-?????? ?? ?????????? ?????????????? ?????? ????????????" + +#: barcodeplugin_config.qml:83 +#, kde-format +msgid "Type a URL or some text..." +msgstr "?????????????? ???????????? ?????? ???????????? ?????????????" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/zh_CN/libpurpose_quick.po new/purpose-5.87.0/po/zh_CN/libpurpose_quick.po --- old/purpose-5.86.0/po/zh_CN/libpurpose_quick.po 2021-09-04 19:08:58.000000000 +0200 +++ new/purpose-5.87.0/po/zh_CN/libpurpose_quick.po 2021-10-02 16:35:29.000000000 +0200 @@ -7,7 +7,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-08-04 00:15+0000\n" -"PO-Revision-Date: 2021-08-30 11:44\n" +"PO-Revision-Date: 2021-09-27 13:09\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/zh_CN/libpurpose_widgets.po new/purpose-5.87.0/po/zh_CN/libpurpose_widgets.po --- old/purpose-5.86.0/po/zh_CN/libpurpose_widgets.po 2021-09-04 19:08:58.000000000 +0200 +++ new/purpose-5.87.0/po/zh_CN/libpurpose_widgets.po 2021-10-02 16:35:29.000000000 +0200 @@ -7,7 +7,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2020-08-29 02:10+0200\n" -"PO-Revision-Date: 2021-08-30 11:44\n" +"PO-Revision-Date: 2021-09-27 13:09\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/zh_CN/purpose-fileitemaction.po new/purpose-5.87.0/po/zh_CN/purpose-fileitemaction.po --- old/purpose-5.86.0/po/zh_CN/purpose-fileitemaction.po 2021-09-04 19:08:58.000000000 +0200 +++ new/purpose-5.87.0/po/zh_CN/purpose-fileitemaction.po 2021-10-02 16:35:29.000000000 +0200 @@ -8,7 +8,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-04-20 00:15+0000\n" -"PO-Revision-Date: 2021-08-30 11:44\n" +"PO-Revision-Date: 2021-09-27 13:09\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/zh_CN/purpose_barcode.po new/purpose-5.87.0/po/zh_CN/purpose_barcode.po --- old/purpose-5.86.0/po/zh_CN/purpose_barcode.po 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/po/zh_CN/purpose_barcode.po 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,38 @@ +msgid "" +msgstr "" +"Project-Id-Version: kdeorg\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2021-09-21 00:14+0000\n" +"PO-Revision-Date: 2021-09-27 13:09\n" +"Last-Translator: \n" +"Language-Team: Chinese Simplified\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: kdeorg\n" +"X-Crowdin-Project-ID: 269464\n" +"X-Crowdin-Language: zh-CN\n" +"X-Crowdin-File: /kf5-trunk/messages/purpose/purpose_barcode.pot\n" +"X-Crowdin-File-ID: 25661\n" + +#: barcodeplugin_config.qml:53 +#, kde-format +msgid "Type a URL or some text to generate a QR code" +msgstr "??????????????????????????? URL ?????????" + +#: barcodeplugin_config.qml:62 +#, kde-format +msgid "Creating QR code failed" +msgstr "?????????????????????" + +#: barcodeplugin_config.qml:71 +#, kde-format +msgid "The QR code is too large to be displayed" +msgstr "??????????????????????????????" + +#: barcodeplugin_config.qml:83 +#, kde-format +msgid "Type a URL or some text..." +msgstr "?????? URL ?????????..." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/zh_CN/purpose_bluetooth.po new/purpose-5.87.0/po/zh_CN/purpose_bluetooth.po --- old/purpose-5.86.0/po/zh_CN/purpose_bluetooth.po 2021-09-04 19:08:58.000000000 +0200 +++ new/purpose-5.87.0/po/zh_CN/purpose_bluetooth.po 2021-10-02 16:35:29.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-07-20 00:14+0000\n" -"PO-Revision-Date: 2021-08-30 11:44\n" +"PO-Revision-Date: 2021-09-27 13:09\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/zh_CN/purpose_email.po new/purpose-5.87.0/po/zh_CN/purpose_email.po --- old/purpose-5.86.0/po/zh_CN/purpose_email.po 2021-09-04 19:08:58.000000000 +0200 +++ new/purpose-5.87.0/po/zh_CN/purpose_email.po 2021-10-02 16:35:29.000000000 +0200 @@ -8,7 +8,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-07-27 00:14+0000\n" -"PO-Revision-Date: 2021-08-30 11:44\n" +"PO-Revision-Date: 2021-09-27 13:09\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/zh_CN/purpose_imgur.po new/purpose-5.87.0/po/zh_CN/purpose_imgur.po --- old/purpose-5.86.0/po/zh_CN/purpose_imgur.po 2021-09-04 19:08:58.000000000 +0200 +++ new/purpose-5.87.0/po/zh_CN/purpose_imgur.po 2021-10-02 16:35:29.000000000 +0200 @@ -7,7 +7,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-03-06 02:34+0100\n" -"PO-Revision-Date: 2021-08-30 11:44\n" +"PO-Revision-Date: 2021-09-27 13:09\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/zh_CN/purpose_kdeconnect.po new/purpose-5.87.0/po/zh_CN/purpose_kdeconnect.po --- old/purpose-5.86.0/po/zh_CN/purpose_kdeconnect.po 2021-09-04 19:08:58.000000000 +0200 +++ new/purpose-5.87.0/po/zh_CN/purpose_kdeconnect.po 2021-10-02 16:35:29.000000000 +0200 @@ -8,7 +8,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-07-20 00:14+0000\n" -"PO-Revision-Date: 2021-08-30 11:44\n" +"PO-Revision-Date: 2021-09-27 13:09\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/zh_CN/purpose_kdeconnectsms.po new/purpose-5.87.0/po/zh_CN/purpose_kdeconnectsms.po --- old/purpose-5.86.0/po/zh_CN/purpose_kdeconnectsms.po 2021-09-04 19:08:58.000000000 +0200 +++ new/purpose-5.87.0/po/zh_CN/purpose_kdeconnectsms.po 2021-10-02 16:35:29.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-03-06 02:34+0100\n" -"PO-Revision-Date: 2021-08-30 11:44\n" +"PO-Revision-Date: 2021-09-27 13:09\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/zh_CN/purpose_ktp-sendfile.po new/purpose-5.87.0/po/zh_CN/purpose_ktp-sendfile.po --- old/purpose-5.86.0/po/zh_CN/purpose_ktp-sendfile.po 2021-09-04 19:08:58.000000000 +0200 +++ new/purpose-5.87.0/po/zh_CN/purpose_ktp-sendfile.po 2021-10-02 16:35:29.000000000 +0200 @@ -7,7 +7,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-03-06 02:34+0100\n" -"PO-Revision-Date: 2021-08-30 11:44\n" +"PO-Revision-Date: 2021-09-27 13:09\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/zh_CN/purpose_nextcloud.po new/purpose-5.87.0/po/zh_CN/purpose_nextcloud.po --- old/purpose-5.86.0/po/zh_CN/purpose_nextcloud.po 2021-09-04 19:08:58.000000000 +0200 +++ new/purpose-5.87.0/po/zh_CN/purpose_nextcloud.po 2021-10-02 16:35:29.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-01-13 02:57+0100\n" -"PO-Revision-Date: 2021-08-30 11:44\n" +"PO-Revision-Date: 2021-09-27 13:09\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/zh_CN/purpose_pastebin.po new/purpose-5.87.0/po/zh_CN/purpose_pastebin.po --- old/purpose-5.86.0/po/zh_CN/purpose_pastebin.po 2021-09-04 19:08:58.000000000 +0200 +++ new/purpose-5.87.0/po/zh_CN/purpose_pastebin.po 2021-10-02 16:35:29.000000000 +0200 @@ -7,7 +7,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-03-06 02:34+0100\n" -"PO-Revision-Date: 2021-08-30 11:44\n" +"PO-Revision-Date: 2021-09-27 13:09\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/zh_CN/purpose_phabricator.po new/purpose-5.87.0/po/zh_CN/purpose_phabricator.po --- old/purpose-5.86.0/po/zh_CN/purpose_phabricator.po 2021-09-04 19:08:58.000000000 +0200 +++ new/purpose-5.87.0/po/zh_CN/purpose_phabricator.po 2021-10-02 16:35:29.000000000 +0200 @@ -8,7 +8,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-03-06 02:34+0100\n" -"PO-Revision-Date: 2021-08-30 11:44\n" +"PO-Revision-Date: 2021-09-27 13:09\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/zh_CN/purpose_reviewboard.po new/purpose-5.87.0/po/zh_CN/purpose_reviewboard.po --- old/purpose-5.86.0/po/zh_CN/purpose_reviewboard.po 2021-09-04 19:08:58.000000000 +0200 +++ new/purpose-5.87.0/po/zh_CN/purpose_reviewboard.po 2021-10-02 16:35:29.000000000 +0200 @@ -8,7 +8,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-03-06 02:34+0100\n" -"PO-Revision-Date: 2021-08-30 11:44\n" +"PO-Revision-Date: 2021-09-27 13:09\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/zh_CN/purpose_saveas.po new/purpose-5.87.0/po/zh_CN/purpose_saveas.po --- old/purpose-5.86.0/po/zh_CN/purpose_saveas.po 2021-09-04 19:08:58.000000000 +0200 +++ new/purpose-5.87.0/po/zh_CN/purpose_saveas.po 2021-10-02 16:35:29.000000000 +0200 @@ -7,7 +7,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-03-06 02:34+0100\n" -"PO-Revision-Date: 2021-08-30 11:44\n" +"PO-Revision-Date: 2021-09-27 13:09\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/po/zh_CN/purpose_youtube.po new/purpose-5.87.0/po/zh_CN/purpose_youtube.po --- old/purpose-5.86.0/po/zh_CN/purpose_youtube.po 2021-09-04 19:08:58.000000000 +0200 +++ new/purpose-5.87.0/po/zh_CN/purpose_youtube.po 2021-10-02 16:35:29.000000000 +0200 @@ -7,7 +7,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2020-08-03 02:07+0200\n" -"PO-Revision-Date: 2021-08-30 11:44\n" +"PO-Revision-Date: 2021-09-27 13:09\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/src/plugins/CMakeLists.txt new/purpose-5.87.0/src/plugins/CMakeLists.txt --- old/purpose-5.86.0/src/plugins/CMakeLists.txt 2021-09-04 19:08:58.000000000 +0200 +++ new/purpose-5.87.0/src/plugins/CMakeLists.txt 2021-10-02 16:35:29.000000000 +0200 @@ -34,3 +34,4 @@ add_subdirectory(telegram) add_subdirectory(bluetooth) add_subdirectory(kdeconnect_sms) +add_subdirectory(barcode) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/src/plugins/barcode/CMakeLists.txt new/purpose-5.87.0/src/plugins/barcode/CMakeLists.txt --- old/purpose-5.86.0/src/plugins/barcode/CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/src/plugins/barcode/CMakeLists.txt 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,3 @@ +add_definitions(-DTRANSLATION_DOMAIN=\"purpose_barcode\") +add_share_plugin(barcodeplugin barcodeplugin.cpp) + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/src/plugins/barcode/Messages.sh new/purpose-5.87.0/src/plugins/barcode/Messages.sh --- old/purpose-5.86.0/src/plugins/barcode/Messages.sh 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/src/plugins/barcode/Messages.sh 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,2 @@ +#!/bin/sh +$XGETTEXT `find . -name \*.cpp -o -name \*.qml` -o $podir/purpose_barcode.pot diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/src/plugins/barcode/barcodeplugin.cpp new/purpose-5.87.0/src/plugins/barcode/barcodeplugin.cpp --- old/purpose-5.86.0/src/plugins/barcode/barcodeplugin.cpp 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/src/plugins/barcode/barcodeplugin.cpp 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,31 @@ +/* + SPDX-FileCopyrightText: 2021 Kai Uwe Broulik <[email protected]> + + SPDX-License-Identifier: LGPL-2.0-or-later +*/ + +#include <KPluginFactory> +#include <purpose/pluginbase.h> + +EXPORT_SHARE_VERSION + +class Q_DECL_EXPORT BarcodePlugin : public Purpose::PluginBase +{ + Q_OBJECT +public: + BarcodePlugin(QObject *p, const QVariantList &) + : Purpose::PluginBase(p) + { + } + + Purpose::Job *createJob() const override + { + // It's never supposed to go beyond the configuration page + Q_UNREACHABLE(); + return nullptr; + } +}; + +K_PLUGIN_CLASS_WITH_JSON(BarcodePlugin, "barcodeplugin.json") + +#include "barcodeplugin.moc" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/src/plugins/barcode/barcodeplugin.json new/purpose-5.87.0/src/plugins/barcode/barcodeplugin.json --- old/purpose-5.86.0/src/plugins/barcode/barcodeplugin.json 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/src/plugins/barcode/barcodeplugin.json 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,77 @@ +{ + "KPlugin": { + "Authors": [ + { + "Name": "Kai Uwe Broulik", + "Name[az]": "Kai Uwe Broulik", + "Name[ca]": "Kai Uwe Broulik", + "Name[cs]": "Kai Uwe Broulik", + "Name[el]": "Kai Uwe Broulik", + "Name[es]": "Kai Uwe Broulik", + "Name[fr]": "Kai Uwe Broulik", + "Name[hu]": "Kai Uwe Broulik", + "Name[ia]": "Kai Uwe Broulik", + "Name[nl]": "Kai Uwe Broulik", + "Name[pt_BR]": "Kai Uwe Broulik", + "Name[sl]": "Kai Uwe Broulik", + "Name[sv]": "Kai Uwe Broulik", + "Name[uk]": "Kai Uwe Broulik", + "Name[x-test]": "xxKai Uwe Broulikxx", + "Name[zh_CN]": "Kai Uwe Broulik" + } + ], + "Category": "Utilities", + "Description": "Generate a QR code for this link", + "Description[az]": "Bu ke??id ??????n QR kod yarad??n", + "Description[ca]": "Genera un codi QR d'aquest enlla??", + "Description[el]": "???????????????? ???????? ?????????????? QR ????' ?????????? ?????? ????????????????", + "Description[es]": "Generar un c??digo QR para este enlace", + "Description[fr]": "G??n??rer un QR-code pour ce lien", + "Description[hu]": "QR-k??d l??trehoz??sa ehhez a hivatkoz??shoz", + "Description[ia]": "Gener un codice QR per iste ligamine", + "Description[nl]": "Een QR-code voor deze koppeling genereren", + "Description[sl]": "Generiraj kodo QR za to povezavo", + "Description[sv]": "Skapa en QR-kod f??r l??nken", + "Description[uk]": "???????????????? QR-?????? ?????? ?????????? ??????????????????", + "Description[x-test]": "xxGenerate a QR code for this linkxx", + "Description[zh_CN]": "???????????????????????????", + "Icon": "view-barcode-qr", + "License": "LGPL", + "Name": "Generate QR code", + "Name[az]": "QR kod yarad??n", + "Name[ca]": "Genera un codi QR", + "Name[el]": "???????????????? QR ??????????????", + "Name[es]": "Generar c??digo QR", + "Name[fr]": "G??n??rer un QR-code", + "Name[hu]": "QR-k??d l??trehoz??sa", + "Name[ia]": "Genera codice QR", + "Name[nl]": "QR-code genereren", + "Name[sl]": "Generiraj kodo QR", + "Name[sv]": "Skapa QR-kod", + "Name[uk]": "???????????????? QR-??????", + "Name[x-test]": "xxGenerate QR codexx", + "Name[zh_CN]": "???????????????", + "X-Purpose-ActionDisplay": "Generate QR Code", + "X-Purpose-ActionDisplay[az]": "QR kod yarad??n", + "X-Purpose-ActionDisplay[ca]": "Genera un codi QR", + "X-Purpose-ActionDisplay[cs]": "Vygenerovat k??d QR", + "X-Purpose-ActionDisplay[el]": "???????????????? QR ??????????????", + "X-Purpose-ActionDisplay[es]": "Generar c??digo QR", + "X-Purpose-ActionDisplay[fr]": "G??n??rer un ????QR???? code", + "X-Purpose-ActionDisplay[hu]": "QR k??d l??trehoz??sa", + "X-Purpose-ActionDisplay[ia]": "Genera codice QR", + "X-Purpose-ActionDisplay[nl]": "QR-code genereren", + "X-Purpose-ActionDisplay[pt_BR]": "Gerar c??digo QR", + "X-Purpose-ActionDisplay[sl]": "Generiraj QR kodo", + "X-Purpose-ActionDisplay[sv]": "Skapa QR-kod", + "X-Purpose-ActionDisplay[uk]": "???????????????? QR-??????", + "X-Purpose-ActionDisplay[x-test]": "xxGenerate QR Codexx", + "X-Purpose-ActionDisplay[zh_CN]": "???????????????" + }, + "X-Purpose-Configuration": [ + "dummy" + ], + "X-Purpose-PluginTypes": [ + "ShareUrl" + ] +} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purpose-5.86.0/src/plugins/barcode/barcodeplugin_config.qml new/purpose-5.87.0/src/plugins/barcode/barcodeplugin_config.qml --- old/purpose-5.86.0/src/plugins/barcode/barcodeplugin_config.qml 1970-01-01 01:00:00.000000000 +0100 +++ new/purpose-5.87.0/src/plugins/barcode/barcodeplugin_config.qml 2021-10-02 16:35:29.000000000 +0200 @@ -0,0 +1,86 @@ +/* + SPDX-FileCopyrightText: 2021 Kai Uwe Broulik <[email protected]> + + SPDX-License-Identifier: LGPL-2.0-or-later +*/ + +import QtQuick 2.7 +import QtQuick.Window 2.12 +import QtQuick.Layouts 1.1 +import QtQuick.Controls 2.12 as QQC2 +import org.kde.kirigami 2.12 as Kirigami + +import org.kde.prison 1.0 as Prison + +ColumnLayout { + id: root + + property var urls: [] + property string mimeType + property var dummy + + Component.onCompleted: { + root.Window.window.minimumWidth = Qt.binding(function() { + return Math.min(Kirigami.Units.gridUnit * 30, + root.implicitWidth + Kirigami.Units.gridUnit * 2); + }); + root.Window.window.minimumHeight = Qt.binding(function() { + return Math.min(Kirigami.Units.gridUnit * 30, + root.implicitHeight + Kirigami.Units.gridUnit * 4); + }); + } + + Item { + Layout.fillWidth: true + Layout.fillHeight: true + Layout.preferredWidth: barcodeItem.implicitWidth + Layout.preferredHeight: barcodeItem.implicitHeight + + Prison.Barcode { + id: barcodeItem + readonly property bool valid: implicitWidth > 0 && implicitHeight > 0 && implicitWidth <= width && implicitHeight <= height + anchors.fill: parent + barcodeType: Prison.Barcode.QRCode + // Cannot set visible to false as we need it to re-render when changing its size + opacity: valid ? 1 : 0 + content: textField.text + } + + QQC2.Label { + anchors.fill: parent + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + text: i18nd("purpose_barcode", "Type a URL or some text to generate a QR code") + wrapMode: Text.WordWrap + visible: textField.length === 0 + } + + QQC2.Label { + anchors.fill: parent + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + text: i18nd("purpose_barcode", "Creating QR code failed") + wrapMode: Text.WordWrap + visible: textField.length > 0 && barcodeItem.implicitWidth === 0 && barcodeItem.implicitHeight === 0 + } + + QQC2.Label { + anchors.fill: parent + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + text: i18nd("purpose_barcode", "The QR code is too large to be displayed") + wrapMode: Text.WordWrap + visible: textField.length > 0 && (barcodeItem.implicitWidth > barcodeItem.width || barcodeItem.implicitHeight > barcodeItem.height) + } + } + + QQC2.TextField { + id: textField + Layout.fillWidth: true + text: root.urls[0] + // Random limit so it doesn't get too large + maximumLength: 250 + placeholderText: i18nd("purpose_barcode", "Type a URL or some text...") + Component.onCompleted: forceActiveFocus() + } +}
