Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kdialog for openSUSE:Factory checked in at 2021-12-13 20:39:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdialog (Old) and /work/SRC/openSUSE:Factory/.kdialog.new.2520 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdialog" Mon Dec 13 20:39:26 2021 rev:61 rq:937933 version:21.12.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kdialog/kdialog.changes 2021-11-06 18:15:18.736800073 +0100 +++ /work/SRC/openSUSE:Factory/.kdialog.new.2520/kdialog.changes 2021-12-13 20:40:18.960455088 +0100 @@ -1,0 +2,26 @@ +Fri Dec 3 19:21:56 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 21.12.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/gear/21.12.0/ +- No code change since 21.11.90 + +------------------------------------------------------------------- +Sat Nov 27 10:10:50 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 21.11.90 + * New feature release +- No code change since 21.11.80 + +------------------------------------------------------------------- +Sat Nov 13 17:55:05 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 21.11.80 + * New feature release +- Changes since 21.08.3: + * Add FreeBSD CI + * Add .kde-ci.yml + * Modernize code + +------------------------------------------------------------------- Old: ---- kdialog-21.08.3.tar.xz kdialog-21.08.3.tar.xz.sig New: ---- kdialog-21.12.0.tar.xz kdialog-21.12.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdialog.spec ++++++ --- /var/tmp/diff_new_pack.aRBwRa/_old 2021-12-13 20:40:19.632455170 +0100 +++ /var/tmp/diff_new_pack.aRBwRa/_new 2021-12-13 20:40:19.640455171 +0100 @@ -20,7 +20,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: kdialog -Version: 21.08.3 +Version: 21.12.0 Release: 0 Summary: KDE version of xdialog License: GPL-2.0-or-later ++++++ kdialog-21.08.3.tar.xz -> kdialog-21.12.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdialog-21.08.3/.gitlab-ci.yml new/kdialog-21.12.0/.gitlab-ci.yml --- old/kdialog-21.08.3/.gitlab-ci.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/kdialog-21.12.0/.gitlab-ci.yml 2021-12-02 22:03:27.000000000 +0100 @@ -0,0 +1,6 @@ +# SPDX-FileCopyrightText: None +# SPDX-License-Identifier: CC0-1.0 + +include: + - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/linux.yml + - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/freebsd.yml diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdialog-21.08.3/.kde-ci.yml new/kdialog-21.12.0/.kde-ci.yml --- old/kdialog-21.08.3/.kde-ci.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/kdialog-21.12.0/.kde-ci.yml 2021-12-02 22:03:27.000000000 +0100 @@ -0,0 +1,14 @@ +# SPDX-FileCopyrightText: None +# SPDX-License-Identifier: CC0-1.0 + +Dependencies: +- 'on': ['@all'] + 'require': + 'frameworks/extra-cmake-modules': '@stable' + 'frameworks/ktextwidgets': '@stable' + 'frameworks/knotifications': '@stable' + 'frameworks/kguiaddons': '@stable' + 'frameworks/kiconthemes': '@stable' + 'frameworks/kwindowsystem': '@stable' + 'frameworks/kio': '@stable' + 'frameworks/kdbusaddons': '@stable' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdialog-21.08.3/CMakeLists.txt new/kdialog-21.12.0/CMakeLists.txt --- old/kdialog-21.08.3/CMakeLists.txt 2021-10-31 11:12:30.000000000 +0100 +++ new/kdialog-21.12.0/CMakeLists.txt 2021-12-02 22:03:27.000000000 +0100 @@ -1,27 +1,30 @@ -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 3.16) # KDE Application Version, managed by release script set(RELEASE_SERVICE_VERSION_MAJOR "21") -set(RELEASE_SERVICE_VERSION_MINOR "08") -set(RELEASE_SERVICE_VERSION_MICRO "3") +set(RELEASE_SERVICE_VERSION_MINOR "12") +set(RELEASE_SERVICE_VERSION_MICRO "0") set(RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") project(KDialog VERSION ${RELEASE_SERVICE_VERSION}) -set(KF5_MIN_VERSION "5.62.0") + +set(QT_MIN_VERSION "5.15.0") +set(KF5_MIN_VERSION "5.85.0") # ECM setup find_package(ECM ${KF5_MIN_VERSION} CONFIG REQUIRED) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH}) -include(FeatureSummary) include(KDEInstallDirs) include(KDECMakeSettings) -include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE) +include(KDECompilerSettings NO_POLICY_SCOPE) + include(ECMSetupVersion) +include(FeatureSummary) # Build dependencies find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS TextWidgets Notifications GuiAddons IconThemes WindowSystem KIO DBusAddons) -find_package(Qt5DBus CONFIG) +find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS DBus) find_package(X11) @@ -29,6 +32,14 @@ set(HAVE_X11 1) endif() +add_definitions( + -DQT_DISABLE_DEPRECATED_BEFORE=0x050F00 + -DQT_DEPRECATED_WARNINGS_SINCE=0x060000 + -DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055500 + -DKNOTIFICATIONS_DISABLE_DEPRECATED_BEFORE_AND_AT=0x054E00 # KPassivePopup + -DKF_DEPRECATED_WARNINGS_SINCE=0x060000 +) + add_subdirectory(src) install(FILES org.kde.kdialog.metainfo.xml DESTINATION ${KDE_INSTALL_METAINFODIR}) ki18n_install(po) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdialog-21.08.3/CMakePresets.json new/kdialog-21.12.0/CMakePresets.json --- old/kdialog-21.08.3/CMakePresets.json 2021-10-31 11:12:30.000000000 +0100 +++ new/kdialog-21.12.0/CMakePresets.json 2021-12-02 22:03:27.000000000 +0100 @@ -12,6 +12,17 @@ } }, { + "name": "dev-disable-deprecated", + "displayName": "Build as without deprecated methods", + "generator": "Ninja", + "binaryDir": "${sourceDir}/build-disable-deprecated", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Debug", + "CMAKE_EXPORT_COMPILE_COMMANDS": "ON", + "CMAKE_CXX_FLAGS_INIT": "-DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x060000" + } + }, + { "name": "asan", "displayName": "Build with Asan support.", "generator": "Ninja", @@ -72,6 +83,18 @@ "configurePreset": "dev" }, { + "name": "asan", + "configurePreset": "asan" + }, + { + "name": "dev-disable-deprecated", + "configurePreset": "dev-disable-deprecated" + }, + { + "name": "unity", + "configurePreset": "unity" + }, + { "name": "clazy", "configurePreset": "clazy", "environment": { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdialog-21.08.3/org.kde.kdialog.metainfo.xml new/kdialog-21.12.0/org.kde.kdialog.metainfo.xml --- old/kdialog-21.08.3/org.kde.kdialog.metainfo.xml 2021-10-31 11:12:30.000000000 +0100 +++ new/kdialog-21.12.0/org.kde.kdialog.metainfo.xml 2021-12-02 22:03:27.000000000 +0100 @@ -18,6 +18,8 @@ <name xml:lang="fi">KDialog</name> <name xml:lang="fr">KDialog</name> <name xml:lang="gl">KDialog</name> + <name xml:lang="hi">??????-??????????????????</name> + <name xml:lang="hu">KDialog</name> <name xml:lang="ia">KDialog</name> <name xml:lang="id">KDialog</name> <name xml:lang="it">KDialog</name> @@ -50,6 +52,8 @@ <summary xml:lang="fi">N??yt?? komentotulkkiskriptist?? kyselyikkunoita</summary> <summary xml:lang="fr">Affiche des bo??tes de dialogue depuis un script shell</summary> <summary xml:lang="gl">Mostrar cadros de di??logo a partir de scripts de int??rprete de ordes</summary> + <summary xml:lang="hi">????????? ????????????????????????????????? ?????? ??????????????? ??????????????? ??????????????????????????? ????????????</summary> + <summary xml:lang="hu">P??rbesz??dablakok megjelen??t??se parancsf??jlokb??l</summary> <summary xml:lang="ia">Monstra quadratos de dialogo ex scripts de shell</summary> <summary xml:lang="id">Displai kotak dialog dari skrip shell</summary> <summary xml:lang="it">Visualizza finestre di dialogo da script di shell</summary> @@ -87,6 +91,8 @@ <p xml:lang="fi">KDialogilla voi n??ytt???? komentotulkkiskriptist?? kyselyikkunoita. Syntaksi on saanut vaikutteita dialog-komennosta (joka n??ytt???? tekstitilan kyselyikkunoita).</p> <p xml:lang="fr">kdialog vous permet d'afficher des bo??tes de dialogue depuis des scripts shell. Sa syntaxe s'inspire de celle de la commande ????dialog???? (qui affiche des bo??tes de dialogue en mode texte).</p> <p xml:lang="gl">kdialog perm??telle mostrar cadros de di??logo a partir de scripts de int??rprete de ordes. A sintaxe est?? inspirada en gran medida na orde ??dialog?? (que mostra di??logos en modo texto).</p> + <p xml:lang="hi">??????-?????????????????? ???????????? ????????? ????????????????????????????????? ?????? ??????????????? ??????????????? ??????????????????????????? ???????????? ????????? ????????? ???????????? ????????? ???????????? ???????????????????????? ???????????? ????????? "??????????????????" ??????????????? ?????? ????????????????????? ?????? (?????? ????????? ????????? ??????????????? ?????????????????? ??????)???</p> + <p xml:lang="hu">A kdialog lehet??v?? teszi p??rbesz??dablakok megjelen??t??s??t parancsf??jlokb??l. A szintaxis??ra nagy hat??ssal volt a ???dialog??? parancs (amely sz??veges p??rbesz??dablakokat jelen??t meg).</p> <p xml:lang="ia">kdialog te permitte monstrar quadros de dialogo ex scripts de shell. Le synthaxe es multe inspirate al commando "dialog" (que monstra dialogos de modo texto).</p> <p xml:lang="id">kdialog memungkinkan kamu untuk mendisplaikan kotak dialog dari skrip shell. Sintaksnya sangat terinspirasi dari perintah "dialog" (yang menampilkan dialog mode teks).</p> <p xml:lang="it">kdialog ti permette di visualizzare delle finestre di dialogo da script di shell. La sintassi prende decisamente ispirazione dal comando ??dialog?? (che mostra finestre in modalit?? testuale).</p> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdialog-21.08.3/po/ar/kdialog.po new/kdialog-21.12.0/po/ar/kdialog.po --- old/kdialog-21.08.3/po/ar/kdialog.po 2021-11-02 01:03:50.000000000 +0100 +++ new/kdialog-21.12.0/po/ar/kdialog.po 2021-12-03 01:05:51.000000000 +0100 @@ -13,9 +13,9 @@ "Project-Id-Version: kdialog\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-05-22 00:19+0000\n" -"PO-Revision-Date: 2021-06-19 21:26+0400\n" +"PO-Revision-Date: 2021-07-26 23:31+0400\n" "Last-Translator: Zayed Al-Saidi <zayed.alsa...@gmail.com>\n" -"Language-Team: Arabic <kde-i18n...@kde.org>\n" +"Language-Team: ar\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -120,10 +120,9 @@ msgstr "???????? ?????????? ???????????????? ??????/????/????????" #: kdialog.cpp:284 -#, fuzzy, kde-format -#| msgid "Use text as No button label" +#, kde-format msgid "Use text as OK button label" -msgstr "?????????????? ?????????? ???????????? ?????? ????" +msgstr "?????????????? ?????????? ???????????? ?????? ??????" #: kdialog.cpp:285 #, kde-format @@ -176,16 +175,14 @@ msgstr "?????????? ??????????" #: kdialog.cpp:295 -#, fuzzy, kde-format -#| msgid "Message Box dialog" +#, kde-format msgid "Image Box dialog" -msgstr "?????????? ??????????" +msgstr "?????????? ?????????? ????????????" #: kdialog.cpp:296 -#, fuzzy, kde-format -#| msgid "Message Box dialog" +#, kde-format msgid "Image Box Input dialog" -msgstr "?????????? ??????????" +msgstr "?????????? ?????????? ?????????? ????????????" #: kdialog.cpp:297 #, kde-format @@ -233,40 +230,34 @@ msgstr "???????????? ??????????" #: kdialog.cpp:306 -#, fuzzy, kde-format -#| msgid "Passive Popup" +#, kde-format msgid "Popup icon" -msgstr "???????????? ??????????" +msgstr "???????????? ????????????" #: kdialog.cpp:307 -#, fuzzy, kde-format -#| msgid "File dialog to open an existing file" +#, kde-format msgid "File dialog to open an existing file (arguments [startDir] [filter])" -msgstr "?????????? ?????????? ???????? ?????? ??????????" +msgstr "?????????? ?????????? ???????? ?????? ?????????? (?????????????????? [startDir] [filter])" #: kdialog.cpp:308 -#, fuzzy, kde-format -#| msgid "File dialog to save a file" +#, kde-format msgid "File dialog to save a file (arguments [startDir] [filter])" -msgstr "?????????? ?????????? ???????? ?????? ????" +msgstr "?????????? ?????????? ???????? ?????? ???? (?????????????????? [startDir] [filter])" #: kdialog.cpp:309 -#, fuzzy, kde-format -#| msgid "File dialog to select an existing directory" +#, kde-format msgid "File dialog to select an existing directory (arguments [startDir])" -msgstr "?????????? ?????????? ?????????????? ???????? ??????????" +msgstr "?????????? ?????????? ?????????????? ???????? ?????????? (?????????????????? [startDir] [filter])" #: kdialog.cpp:310 -#, fuzzy, kde-format -#| msgid "File dialog to open an existing file" +#, kde-format msgid "File dialog to open an existing URL (arguments [startDir] [filter])" -msgstr "?????????? ?????????? ???????? ?????? ??????????" +msgstr "?????????? ?????????? ???????? ?????? ?????????? (?????????????????? [startDir] [filter])" #: kdialog.cpp:311 -#, fuzzy, kde-format -#| msgid "File dialog to save a file" +#, kde-format msgid "File dialog to save a URL (arguments [startDir] [filter])" -msgstr "?????????? ?????????? ???????? ?????? ????" +msgstr "?????????? ?????????? ???????? ?????? ???? (?????????????????? [startDir] [filter])" #: kdialog.cpp:312 #, kde-format @@ -404,7 +395,7 @@ #, kde-format msgctxt "@title:window" msgid "Select Directory" -msgstr "" +msgstr "???????? ????????????" #: kdialog.cpp:1006 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdialog-21.08.3/po/ca@valencia/kdialog.po new/kdialog-21.12.0/po/ca@valencia/kdialog.po --- old/kdialog-21.08.3/po/ca@valencia/kdialog.po 2021-11-02 01:03:50.000000000 +0100 +++ new/kdialog-21.12.0/po/ca@valencia/kdialog.po 2021-12-03 01:05:51.000000000 +0100 @@ -436,3 +436,13 @@ #, kde-format msgid "kdialog: could not open file %1" msgstr "kdialog: no s'ha pogut obrir el fitxer %1" + +# skip-rule: t-sp_pu +#~ msgid "Syntax: --radiolist text [tag item on/off] ..." +#~ msgstr "Sintaxi: --radiolist text [etiqueta element on/off] ..." + +#~ msgid "File dialog to open an existing URL" +#~ msgstr "Di??leg de fitxer per a obrir un URL existent" + +#~ msgid "File dialog to save a URL" +#~ msgstr "Di??leg de fitxer per a desar un URL" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdialog-21.08.3/po/hi/kdialog.po new/kdialog-21.12.0/po/hi/kdialog.po --- old/kdialog-21.08.3/po/hi/kdialog.po 2021-11-02 01:03:50.000000000 +0100 +++ new/kdialog-21.12.0/po/hi/kdialog.po 2021-12-03 01:05:51.000000000 +0100 @@ -10,7 +10,7 @@ "Project-Id-Version: kdialog\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-05-22 00:19+0000\n" -"PO-Revision-Date: 2021-09-17 20:35+0530\n" +"PO-Revision-Date: 2021-09-17 20:07+0530\n" "Last-Translator: Raghavendra Kamath <ra...@raghukamath.com>\n" "Language-Team: kde-hindi\n" "Language: hi\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdialog-21.08.3/po/hu/kdialog.po new/kdialog-21.12.0/po/hu/kdialog.po --- old/kdialog-21.08.3/po/hu/kdialog.po 2021-11-02 01:03:50.000000000 +0100 +++ new/kdialog-21.12.0/po/hu/kdialog.po 2021-12-03 01:05:51.000000000 +0100 @@ -2,20 +2,21 @@ # Tamas Szanto <tsza...@interware.hu>, 2002. # Krist??f Kiszel <ulys...@kubuntu.org>, 2011. # Bal??zs ??r <urbal...@gmail.com>, 2013. +# Kristof Kiszel <kiszel.kris...@gmail.com>, 2021. msgid "" msgstr "" "Project-Id-Version: KDE 4.2\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-05-22 00:19+0000\n" -"PO-Revision-Date: 2013-10-23 10:31+0200\n" -"Last-Translator: Bal??zs ??r <urbal...@gmail.com>\n" +"PO-Revision-Date: 2021-11-02 08:52+0100\n" +"Last-Translator: Kristof Kiszel <kiszel.kris...@gmail.com>\n" "Language-Team: Hungarian <kde-l10n...@kde.org>\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 1.5\n" +"X-Generator: Lokalize 21.08.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -25,7 +26,7 @@ #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "ulys...@kubuntu.org,tsza...@interware.hu" +msgstr "kiszel.kris...@gmail.com,tsza...@interware.hu" #: kdialog.cpp:261 #, kde-format @@ -115,10 +116,9 @@ msgstr "Figyelmeztet?? ablak Igen/Nem/M??gsem gombokkal" #: kdialog.cpp:284 -#, fuzzy, kde-format -#| msgid "Use text as No button label" +#, kde-format msgid "Use text as OK button label" -msgstr "Sz??veg haszn??lata a Nem gomb c??mk??jek??nt" +msgstr "Sz??veg haszn??lata az OK gomb c??mk??jek??nt" #: kdialog.cpp:285 #, kde-format @@ -171,16 +171,14 @@ msgstr "Adatbeviteli ablak" #: kdialog.cpp:295 -#, fuzzy, kde-format -#| msgid "Message Box dialog" +#, kde-format msgid "Image Box dialog" -msgstr "??zenetablak-p??rbesz??dablak" +msgstr "K??pdoboz-p??rbesz??dablak" #: kdialog.cpp:296 -#, fuzzy, kde-format -#| msgid "Message Box dialog" +#, kde-format msgid "Image Box Input dialog" -msgstr "??zenetablak-p??rbesz??dablak" +msgstr "K??pdoboz beviteli p??rbesz??dablak" #: kdialog.cpp:297 #, kde-format @@ -188,10 +186,9 @@ msgstr "Jelsz??beviteli ablak" #: kdialog.cpp:298 -#, fuzzy, kde-format -#| msgid "Password dialog" +#, kde-format msgid "New Password dialog" -msgstr "Jelsz??beviteli ablak" +msgstr "??j jelsz?? p??rbesz??dablak" #: kdialog.cpp:299 #, kde-format @@ -229,45 +226,45 @@ msgstr "Passz??v felbukkan?? ablak" #: kdialog.cpp:306 -#, fuzzy, kde-format -#| msgid "Passive Popup" +#, kde-format msgid "Popup icon" -msgstr "Passz??v felbukkan?? ablak" +msgstr "Felugr?? ikon" #: kdialog.cpp:307 -#, fuzzy, kde-format -#| msgid "File dialog to open an existing file" +#, kde-format msgid "File dialog to open an existing file (arguments [startDir] [filter])" -msgstr "F??jlmegnyit??si p??rbesz??dablak" +msgstr "" +"F??jl p??rbesz??dablak l??tez?? f??jl megnyit??s??hoz (argumentumok [kezd??mappa] " +"[sz??r??])" #: kdialog.cpp:308 -#, fuzzy, kde-format -#| msgid "File dialog to save a file" +#, kde-format msgid "File dialog to save a file (arguments [startDir] [filter])" -msgstr "F??jlment??si p??rbesz??dablak" +msgstr "F??jlment??si p??rbesz??dablak (argumentumok [kezd??mappa] [sz??r??])" #: kdialog.cpp:309 -#, fuzzy, kde-format -#| msgid "File dialog to select an existing directory" +#, kde-format msgid "File dialog to select an existing directory (arguments [startDir])" -msgstr "P??rbesz??dablak egy m??r l??tez?? k??nyvt??r kiv??laszt??s??hoz" +msgstr "" +"P??rbesz??dablak egy m??r l??tez?? k??nyvt??r kiv??laszt??s??hoz (argumentumok " +"[kezd??mappa])" #: kdialog.cpp:310 -#, fuzzy, kde-format -#| msgid "File dialog to open an existing file" +#, kde-format msgid "File dialog to open an existing URL (arguments [startDir] [filter])" -msgstr "F??jlmegnyit??si p??rbesz??dablak" +msgstr "" +"F??jl p??rbesz??dablak l??tez?? URL megnyit??s??hoz (argumentumok [kezd??mappa] " +"[sz??r??])" #: kdialog.cpp:311 -#, fuzzy, kde-format -#| msgid "File dialog to save a file" +#, kde-format msgid "File dialog to save a URL (arguments [startDir] [filter])" -msgstr "F??jlment??si p??rbesz??dablak" +msgstr "F??jl p??rbesz??dablak URL ment??s??hez (argumentumok [kezd??mappa] [sz??r??])" #: kdialog.cpp:312 #, kde-format msgid "Icon chooser dialog (arguments [group] [context])" -msgstr "" +msgstr "Ikonv??laszt?? p??rbesz??dablak (argumentumok [csoport] [kontextus])" #: kdialog.cpp:313 kdialog_progress_helper.cpp:40 #, kde-format @@ -282,7 +279,7 @@ #: kdialog.cpp:315 #, kde-format msgid "Allow --getcolor to specify output format" -msgstr "" +msgstr "Lehet??v?? teszi a --getcolor opci??val a kimeneti form??tum megad??s??t" #: kdialog.cpp:317 kdialog_progress_helper.cpp:41 #, kde-format @@ -290,10 +287,11 @@ msgstr "Az ablak felirata" #: kdialog.cpp:318 -#, fuzzy, kde-format -#| msgid "Default entry to use for combobox, menu and color" +#, kde-format msgid "Default entry to use for combobox, menu, color, and calendar" -msgstr "Alap??rtelmezett bejegyz??s kombin??lt list??kn??l, men??kn??l ??s sz??nekn??l" +msgstr "" +"Alap??rtelmezett bejegyz??s kombin??lt list??kn??l, men??kn??l, sz??nekn??l ??s " +"napt??rakn??l" #: kdialog.cpp:319 #, kde-format @@ -337,6 +335,8 @@ "Date format for calendar result and/or default value (Qt-style); defaults to " "'ddd MMM d yyyy'" msgstr "" +"D??tumform??tum napt??r eredm??nyekhez ??s/vagy alap??rtelmezett ??rt??kekhez (Qt " +"st??lus); alap??rtelmezetten ???ddd MMM d yyyy???" #: kdialog.cpp:326 #, kde-format @@ -353,12 +353,14 @@ #: kdialog.cpp:330 #, kde-format msgid "A synonym for --attach" -msgstr "" +msgstr "Az --attach szinon??m??ja" #: kdialog.cpp:331 #, kde-format msgid "Dialog geometry: [=][<width>{xX}<height>][{+-}<xoffset>{+-}<yoffset>]" msgstr "" +"P??rbesz??dablak m??retei: [=][<sz??less??g>{xX}<magass??g>][{+-}<x-eltol??s>{+-}<y-" +"eltol??s>]" #: kdialog.cpp:333 kdialog_progress_helper.cpp:42 #, kde-format @@ -368,27 +370,27 @@ #: kdialog.cpp:517 #, kde-format msgid "Do not ask again" -msgstr "" +msgstr "Ne k??rdezzen r?? t??bbsz??r" #: kdialog.cpp:711 #, kde-format msgid "Syntax: --combobox <text> item [item] ..." -msgstr "" +msgstr "Szintaxis: --combobox <sz??veg> elem [elem] ???" #: kdialog.cpp:733 #, kde-format msgid "Syntax: --menu text tag item [tag item] ..." -msgstr "" +msgstr "Szintaxis: --menu sz??veg c??mkeelem [c??mkeelem] ???" #: kdialog.cpp:757 #, kde-format msgid "Syntax: --checklist text tag item on/off [tag item on/off] ..." -msgstr "" +msgstr "Szintaxis: --checklist sz??veg c??mkeelem be/ki [c??mkeelem be/ki] ???" #: kdialog.cpp:775 #, kde-format msgid "Syntax: --radiolist text tag item on/off [tag item on/off] ..." -msgstr "" +msgstr "Szintaxis: --radiolist sz??veg c??mkeelem be/ki [c??mkeelem be/ki] ???" #: kdialog.cpp:806 #, kde-format @@ -406,7 +408,7 @@ #, kde-format msgctxt "@title:window" msgid "Select Directory" -msgstr "" +msgstr "Mappa kiv??laszt??sa" #: kdialog.cpp:1006 #, kde-format @@ -417,7 +419,7 @@ #: progressdialog.cpp:23 #, kde-format msgid "Cancel" -msgstr "" +msgstr "M??gsem" #: widgets.cpp:108 widgets.cpp:142 widgets.cpp:155 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdialog-21.08.3/po/sk/kdialog.po new/kdialog-21.12.0/po/sk/kdialog.po --- old/kdialog-21.08.3/po/sk/kdialog.po 2021-11-02 01:03:50.000000000 +0100 +++ new/kdialog-21.12.0/po/sk/kdialog.po 2021-12-03 01:05:52.000000000 +0100 @@ -12,7 +12,7 @@ "Project-Id-Version: kdialog\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-05-22 00:19+0000\n" -"PO-Revision-Date: 2021-07-20 16:49+0200\n" +"PO-Revision-Date: 2021-07-20 17:50+0200\n" "Last-Translator: Matej Mrenica <matejm98m...@gmail.com>\n" "Language-Team: Slovak <kde-i18n-...@kde.org>\n" "Language: sk\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdialog-21.08.3/po/zh_CN/kdialog.po new/kdialog-21.12.0/po/zh_CN/kdialog.po --- old/kdialog-21.08.3/po/zh_CN/kdialog.po 2021-11-02 01:03:50.000000000 +0100 +++ new/kdialog-21.12.0/po/zh_CN/kdialog.po 2021-12-03 01:05:52.000000000 +0100 @@ -11,7 +11,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-05-22 00:19+0000\n" -"PO-Revision-Date: 2021-10-29 13:27\n" +"PO-Revision-Date: 2021-11-30 15:23\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdialog-21.08.3/src/kdialog.cpp new/kdialog-21.12.0/src/kdialog.cpp --- old/kdialog-21.08.3/src/kdialog.cpp 2021-10-31 11:12:30.000000000 +0100 +++ new/kdialog-21.12.0/src/kdialog.cpp 2021-12-02 22:03:27.000000000 +0100 @@ -87,7 +87,7 @@ { if (e->type() == QEvent::Show && o->isWidgetType() && o->inherits("QDialog")) { - QWidget *w = static_cast<QWidget *>(o); + auto *w = static_cast<QWidget *>(o); if (print) { cout << "winId: " << w->winId() << endl; } @@ -396,7 +396,7 @@ } // --yesno and other message boxes - KMessageBox::DialogType type = static_cast<KMessageBox::DialogType>(0); + auto type = static_cast<KMessageBox::DialogType>(0); QMessageBox::Icon icon = QMessageBox::Question; QByteArray option; if (parser.isSet(QStringLiteral("yesno"))) { @@ -479,7 +479,7 @@ QDialog dialog; dialog.setWindowTitle(title); - QDialogButtonBox *buttonBox = new QDialogButtonBox(&dialog); + auto *buttonBox = new QDialogButtonBox(&dialog); KMessageBox::Options options = KMessageBox::NoExec; switch (type) { @@ -523,7 +523,7 @@ if (!dontagain.isEmpty()) { // We use NoExec in order to call handleXGeometry before exec // But that means we need to query the state of the dontShowAgain checkbox ourselves too... - QCheckBox *cb = dialog.findChild<QCheckBox *>(); + auto *cb = dialog.findChild<QCheckBox *>(); Q_ASSERT(cb); if (cb && cb->isChecked()) { if (type == KMessageBox::WarningContinueCancel) { @@ -615,7 +615,7 @@ passiveicon, (QWidget *)nullptr, // parent timeout); - QTimer *timer = new QTimer(); + auto *timer = new QTimer(); QObject::connect(timer, SIGNAL(timeout()), qApp, SLOT(quit())); QObject::connect(popup, QOverload<>::of(&KPassivePopup::clicked), qApp, &QApplication::quit); timer->setSingleShot(true); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdialog-21.08.3/src/klistboxdialog.cpp new/kdialog-21.12.0/src/klistboxdialog.cpp --- old/kdialog-21.08.3/src/klistboxdialog.cpp 2021-10-31 11:12:30.000000000 +0100 +++ new/kdialog-21.12.0/src/klistboxdialog.cpp 2021-12-02 22:03:27.000000000 +0100 @@ -11,7 +11,7 @@ : QDialog(parent) { setModal(true); - QVBoxLayout *vLayout = new QVBoxLayout(this); + auto *vLayout = new QVBoxLayout(this); label = new QLabel(text, this); vLayout->addWidget(label); @@ -21,7 +21,7 @@ vLayout->addWidget(table); table->setFocus(); - QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); + auto *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); vLayout->addWidget(buttonBox); connect(buttonBox, &QDialogButtonBox::accepted, this, &QDialog::accept); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdialog-21.08.3/src/klistboxdialog.h new/kdialog-21.12.0/src/klistboxdialog.h --- old/kdialog-21.08.3/src/klistboxdialog.h 2021-10-31 11:12:30.000000000 +0100 +++ new/kdialog-21.12.0/src/klistboxdialog.h 2021-12-02 22:03:27.000000000 +0100 @@ -18,7 +18,7 @@ public: explicit KListBoxDialog(const QString &text, QWidget *parent = nullptr); - ~KListBoxDialog() + ~KListBoxDialog() override { } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdialog-21.08.3/src/widgets.cpp new/kdialog-21.12.0/src/widgets.cpp --- old/kdialog-21.08.3/src/widgets.cpp 2021-10-31 11:12:30.000000000 +0100 +++ new/kdialog-21.12.0/src/widgets.cpp 2021-12-02 22:03:27.000000000 +0100 @@ -31,7 +31,7 @@ static void addButtonBox(QDialog &dlg, QDialogButtonBox::StandardButtons buttons = QDialogButtonBox::Ok | QDialogButtonBox::Cancel) { - QDialogButtonBox *buttonBox = new QDialogButtonBox(buttons, &dlg); + auto *buttonBox = new QDialogButtonBox(buttons, &dlg); dlg.layout()->addWidget(buttonBox); QObject::connect(buttonBox, &QDialogButtonBox::accepted, &dlg, &QDialog::accept); QObject::connect(buttonBox, &QDialogButtonBox::rejected, &dlg, &QDialog::reject); @@ -88,9 +88,9 @@ QDialog dlg(parent); dlg.setWindowTitle(title); - QVBoxLayout *mainLayout = new QVBoxLayout(&dlg); + auto *mainLayout = new QVBoxLayout(&dlg); - KTextEdit *edit = new KTextEdit(&dlg); + auto *edit = new KTextEdit(&dlg); mainLayout->addWidget(edit); edit->setReadOnly(true); edit->setFocus(); @@ -130,9 +130,9 @@ QDialog dlg(parent); dlg.setWindowTitle(title); - QVBoxLayout *mainLayout = new QVBoxLayout(&dlg); + auto *mainLayout = new QVBoxLayout(&dlg); - QLabel *label = new QLabel(&dlg); + auto *label = new QLabel(&dlg); mainLayout->addWidget(label); addButtonBox(dlg, QDialogButtonBox::Ok); @@ -159,20 +159,20 @@ QDialog dlg(parent); dlg.setWindowTitle(title); - QVBoxLayout *mainLayout = new QVBoxLayout(&dlg); + auto *mainLayout = new QVBoxLayout(&dlg); if (!text.isEmpty()) { - QLabel *head = new QLabel(&dlg); + auto *head = new QLabel(&dlg); head->setText(text); mainLayout->addWidget(head); } - QLabel *label = new QLabel(&dlg); + auto *label = new QLabel(&dlg); mainLayout->addWidget(label); label->setPixmap(QPixmap(file)); - QLineEdit *edit = new QLineEdit(&dlg); + auto *edit = new QLineEdit(&dlg); mainLayout->addWidget(edit); edit->setReadOnly(false); edit->setFocus(); @@ -193,15 +193,15 @@ { QDialog dlg(parent); dlg.setWindowTitle(title); - QVBoxLayout *mainLayout = new QVBoxLayout(&dlg); + auto *mainLayout = new QVBoxLayout(&dlg); if (!text.isEmpty()) { - QLabel *label = new QLabel(&dlg); + auto *label = new QLabel(&dlg); mainLayout->addWidget(label); label->setText(text); } - KTextEdit *edit = new KTextEdit(&dlg); + auto *edit = new KTextEdit(&dlg); mainLayout->addWidget(edit); edit->setReadOnly(false); edit->setFocus(); @@ -225,12 +225,12 @@ QDialog dlg(parent); dlg.setWindowTitle(title); - QVBoxLayout *mainLayout = new QVBoxLayout(&dlg); + auto *mainLayout = new QVBoxLayout(&dlg); - QLabel *label = new QLabel(&dlg); + auto *label = new QLabel(&dlg); label->setText(text); mainLayout->addWidget(label); - QComboBox *combo = new QComboBox(&dlg); + auto *combo = new QComboBox(&dlg); combo->addItems(args); combo->setCurrentIndex(combo->findText(defaultEntry)); combo->setFocus(); @@ -353,12 +353,12 @@ QDialog dlg(parent); dlg.setWindowTitle(title); - QVBoxLayout *mainLayout = new QVBoxLayout(&dlg); + auto *mainLayout = new QVBoxLayout(&dlg); - QLabel *label = new QLabel(&dlg); + auto *label = new QLabel(&dlg); mainLayout->addWidget(label); label->setText(text); - QSlider *slider = new QSlider(&dlg); + auto *slider = new QSlider(&dlg); mainLayout->addWidget(slider); slider->setMinimum(minValue); slider->setMaximum(maxValue); @@ -385,12 +385,12 @@ QDialog dlg(parent); dlg.setWindowTitle(title); - QVBoxLayout *mainLayout = new QVBoxLayout(&dlg); + auto *mainLayout = new QVBoxLayout(&dlg); - QLabel *label = new QLabel(&dlg); + auto *label = new QLabel(&dlg); mainLayout->addWidget(label); label->setText(text); - KDatePicker *dateWidget = new KDatePicker(defaultEntry, &dlg); + auto *dateWidget = new KDatePicker(defaultEntry, &dlg); mainLayout->addWidget(dateWidget); dateWidget->setFocus(); addButtonBox(dlg);