Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kamera for openSUSE:Factory checked in at 2021-12-13 20:39:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kamera (Old) and /work/SRC/openSUSE:Factory/.kamera.new.2520 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kamera" Mon Dec 13 20:39:20 2021 rev:135 rq:937897 version:21.12.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kamera/kamera.changes 2021-11-06 18:14:56.996788686 +0100 +++ /work/SRC/openSUSE:Factory/.kamera.new.2520/kamera.changes 2021-12-13 20:39:58.580452592 +0100 @@ -1,0 +2,27 @@ +Fri Dec 3 19:21:38 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- 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:32 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 21.11.90 + * New feature release +- No code change since 21.11.80 + +------------------------------------------------------------------- +Sat Nov 13 17:54:39 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 21.11.80 + * New feature release +- Changes since 21.08.3: + * Add .kde-ci.yml + * USe nullptr + QLatin1String + * Fix use ecm 5.85 + * Time to increase kf5. Now we depend against kf5.85 + +------------------------------------------------------------------- Old: ---- kamera-21.08.3.tar.xz kamera-21.08.3.tar.xz.sig New: ---- kamera-21.12.0.tar.xz kamera-21.12.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kamera.spec ++++++ --- /var/tmp/diff_new_pack.q0jmeO/_old 2021-12-13 20:39:59.220452670 +0100 +++ /var/tmp/diff_new_pack.q0jmeO/_new 2021-12-13 20:39:59.228452671 +0100 @@ -16,12 +16,11 @@ # -%define kf5_version 5.60.0 # Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA) %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: kamera -Version: 21.08.3 +Version: 21.12.0 Release: 0 Summary: Digital camera support for KDE applications License: LGPL-2.1-or-later ++++++ kamera-21.08.3.tar.xz -> kamera-21.12.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/.kde-ci.yml new/kamera-21.12.0/.kde-ci.yml --- old/kamera-21.08.3/.kde-ci.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/kamera-21.12.0/.kde-ci.yml 2021-12-02 22:09:44.000000000 +0100 @@ -0,0 +1,13 @@ +# SPDX-FileCopyrightText: None +# SPDX-License-Identifier: CC0-1.0 + +Dependencies: +- 'on': ['@all'] + 'require': + 'frameworks/extra-cmake-modules': '@stable' + 'frameworks/kconfigwidgets': '@stable' + 'frameworks/kxmlgui': '@stable' + 'frameworks/kio': '@stable' + 'frameworks/ki18n': '@stable' + 'frameworks/kconfig': '@stable' + 'frameworks/kdoctools': '@stable' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/CMakeLists.txt new/kamera-21.12.0/CMakeLists.txt --- old/kamera-21.08.3/CMakeLists.txt 2021-11-02 01:08:17.000000000 +0100 +++ new/kamera-21.12.0/CMakeLists.txt 2021-12-03 01:09:37.000000000 +0100 @@ -3,16 +3,13 @@ # 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}") set(PROJECT_VERSION ${RELEASE_SERVICE_VERSION}) -# At least C++14 is required -set(CMAKE_CXX_STANDARD 14) -set(CMAKE_CXX_STANDARD_REQUIRED ON) - -find_package(ECM REQUIRED NO_MODULE) +set(KF5_MIN_VERSION "5.85.0") +find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${CMAKE_SOURCE_DIR}) include(KDEInstallDirs) include(KDECMakeSettings) @@ -20,7 +17,6 @@ include(FindPkgConfig) include(FeatureSummary) -set(KF5_MIN_VERSION "5.83.0") find_package(Qt5 5.15 REQUIRED COMPONENTS Core) find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS @@ -54,7 +50,8 @@ configure_file(config-kamera.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-kamera.h) set(CMAKE_CXX_FLAGS_DEBUG, "${CMAKE_CXX_FLAGS_DEBUG} -Wall -Wunused -Wextra -DDEBUG_KAMERA_KIO -DDEBUG_KAMERA_KCONTROL") - +remove_definitions( -DQT_NO_CAST_FROM_ASCII ) +remove_definitions( -DQT_NO_CAST_FROM_BYTEARRAY) add_subdirectory( kcontrol ) add_subdirectory( kioslave ) add_subdirectory( doc ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/CMakePresets.json new/kamera-21.12.0/CMakePresets.json --- old/kamera-21.08.3/CMakePresets.json 2021-10-31 11:09:05.000000000 +0100 +++ new/kamera-21.12.0/CMakePresets.json 2021-12-02 22:09:44.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", @@ -29,7 +40,7 @@ "binaryDir": "${sourceDir}/build-unity", "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", - "USE_UNITY_CMAKE_SUPPORT": "ON", + "CMAKE_UNITY_BUILD": "ON", "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" } }, @@ -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/kamera-21.08.3/kcontrol/kamera.cpp new/kamera-21.12.0/kcontrol/kamera.cpp --- old/kamera-21.08.3/kcontrol/kamera.cpp 2021-10-31 11:09:05.000000000 +0100 +++ new/kamera-21.12.0/kcontrol/kamera.cpp 2021-12-02 22:09:44.000000000 +0100 @@ -219,11 +219,11 @@ qCDebug(KAMERA_KCONTROL) << "Loading configuration for serial port camera: " << *it; kcamera = new KCamera(*it, cg.readEntry("Path")); - connect(kcamera, qOverload<const QString&>(&KCamera::error), - this, qOverload<const QString&>(&KKameraConfig::slot_error)); + connect(kcamera, qOverload<const QString&>(&KCamera::error), + this, qOverload<const QString&>(&KKameraConfig::slot_error)); - connect(kcamera, qOverload<const QString&, const QString&>(&KCamera::error), - this, qOverload<const QString&, const QString&>(&KKameraConfig::slot_error)); + connect(kcamera, qOverload<const QString&, const QString&>(&KCamera::error), + this, qOverload<const QString&, const QString&>(&KKameraConfig::slot_error)); kcamera->load(m_config); m_devices[*it] = kcamera; @@ -266,11 +266,11 @@ kcamera = new KCamera(portit.value(), portit.key()); - connect(kcamera, qOverload<const QString&>(&KCamera::error), - this, qOverload<const QString&>(&KKameraConfig::slot_error)); + connect(kcamera, qOverload<const QString&>(&KCamera::error), + this, qOverload<const QString&>(&KKameraConfig::slot_error)); - connect(kcamera, qOverload<const QString&, const QString&>(&KCamera::error), - this, qOverload<const QString&, const QString&>(&KKameraConfig::slot_error)); + connect(kcamera, qOverload<const QString&, const QString&>(&KCamera::error), + this, qOverload<const QString&, const QString&>(&KKameraConfig::slot_error)); m_devices[portit.value()] = kcamera; } @@ -308,15 +308,15 @@ QString KKameraConfig::suggestName(const QString &name) { - QString new_name = name; - new_name.remove('/'); // we cannot have a slash in a URI's host + QString new_name = name; + new_name.remove(QLatin1Char('/')); // we cannot have a slash in a URI's host if (!m_devices.contains(new_name)) return new_name; // try new names with a number appended until we find a free one int i = 1; - while (i++ < 0xffff) { - new_name = name + " (" + QString::number(i) + ')'; + while (i++ < 0xffff) { + new_name = name + QStringLiteral(" (") + QString::number(i) + QLatin1Char(')'); if (!m_devices.contains(new_name)) return new_name; } @@ -326,7 +326,7 @@ void KKameraConfig::slot_addCamera() { KCamera *m_device = new KCamera(QString(), QString()); - connect(m_device, qOverload<const QString&>(&KCamera::error), + connect(m_device, qOverload<const QString&>(&KCamera::error), this, qOverload<const QString&>(&KKameraConfig::slot_error)); connect(m_device, qOverload<const QString&, const QString&>(&KCamera::error), @@ -338,7 +338,7 @@ m_device->setName(suggestName(m_device->model())); m_devices.insert(m_device->name(), m_device); populateDeviceListView(); - emit changed(true); + Q_EMIT changed(true); } else { delete m_device; } @@ -353,7 +353,7 @@ delete m_device; m_config->deleteGroup(name); populateDeviceListView(); - emit changed(true); + Q_EMIT changed(true); } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/kcontrol/kamera.desktop new/kamera-21.12.0/kcontrol/kamera.desktop --- old/kamera-21.08.3/kcontrol/kamera.desktop 2021-10-31 11:09:05.000000000 +0100 +++ new/kamera-21.12.0/kcontrol/kamera.desktop 2021-12-02 22:09:44.000000000 +0100 @@ -27,7 +27,7 @@ Comment[hi]=??????????????? ??????????????????????????? ???????????? Comment[hne]=??????????????? ???????????????????????? ????????? Comment[hr]=Pode??avanje kamere -Comment[hu]=A f??nyk??pez??g??pek be??ll??t??sai +Comment[hu]=A Kamera be??ll??t??sai Comment[ia]=Configura Kamera Comment[is]=Stilla samskiptaforrit stafr??nna myndav??la (Kamera) Comment[it]=Configura Kamera diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/kcontrol/kameraconfigdialog.cpp new/kamera-21.12.0/kcontrol/kameraconfigdialog.cpp --- old/kamera-21.08.3/kcontrol/kameraconfigdialog.cpp 2021-10-31 11:09:05.000000000 +0100 +++ new/kamera-21.12.0/kcontrol/kameraconfigdialog.cpp 2021-12-02 22:09:44.000000000 +0100 @@ -72,7 +72,7 @@ QVBoxLayout *topLayout = new QVBoxLayout(main); topLayout->setContentsMargins(0, 0, 0, 0); - m_tabWidget = 0; + m_tabWidget = nullptr; appendWidget(main, widget); @@ -150,7 +150,7 @@ { gp_widget_get_value(widget, &widget_value_string); - label = new QLabel(QString::fromLocal8Bit(widget_label)+':', grid); + label = new QLabel(QString::fromLocal8Bit(widget_label)+QLatin1Char(':'), grid); QLineEdit *lineEdit = new QLineEdit(widget_value_string, grid); gridLayout->addWidget(lineEdit, 0, 1, Qt::AlignRight); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/kcontrol/kameradevice.cpp new/kamera-21.12.0/kcontrol/kameradevice.cpp --- old/kamera-21.08.3/kcontrol/kameradevice.cpp 2021-10-31 11:09:05.000000000 +0100 +++ new/kamera-21.12.0/kcontrol/kameradevice.cpp 2021-12-02 22:09:44.000000000 +0100 @@ -54,7 +54,7 @@ static const int INDEX_NONE= 0; static const int INDEX_SERIAL = 1; static const int INDEX_USB= 2; -static GPContext *glob_context = 0; +static GPContext *glob_context = nullptr; #ifdef DEBUG static void gp_errordumper(GPLogLevel level, const char *domain, const char *str, void *data) { @@ -90,17 +90,17 @@ } if(gp_abilities_list_new(&m_abilitylist) != GP_OK) { - emit error(i18n("Could not allocate memory for the abilities list.")); + Q_EMIT error(i18n("Could not allocate memory for the abilities list.")); return false; } if(gp_abilities_list_load(m_abilitylist, glob_context) != GP_OK) { - emit error(i18n("Could not load ability list.")); + Q_EMIT error(i18n("Could not load ability list.")); return false; } int index = gp_abilities_list_lookup_model(m_abilitylist, m_model.toLocal8Bit().data()); if(index < 0) { - emit error(i18n("Description of abilities for camera %1 is not available." + Q_EMIT error(i18n("Description of abilities for camera %1 is not available." " Configuration options may be incorrect.", m_model)); return false; } @@ -124,7 +124,7 @@ result = gp_camera_new(&m_camera); if (result != GP_OK) { // m_camera is not initialized, so we cannot get result as string - emit error(i18n("Could not access driver. Check your gPhoto2 installation.")); + Q_EMIT error(i18n("Could not access driver. Check your gPhoto2 installation.")); return false; } @@ -143,7 +143,7 @@ if (result != GP_OK) { gp_camera_free(m_camera); m_camera = NULL; - emit error( + Q_EMIT error( i18n("Unable to initialize camera. Check your port settings and camera connectivity and try again."), QString::fromLocal8Bit(gp_result_as_string(result))); return false; @@ -182,7 +182,7 @@ result = gp_camera_get_config(m_camera, &window, glob_context); if (result != GP_OK) { - emit error(i18n("Camera configuration failed."), + Q_EMIT error(i18n("Camera configuration failed."), QString::fromLocal8Bit(gp_result_as_string(result))); return false; } @@ -193,7 +193,7 @@ if (result == GP_PROMPT_OK) { result = gp_camera_set_config(m_camera, window, glob_context); if (result != GP_OK) { - emit error(i18n("Camera configuration failed."), + Q_EMIT error(i18n("Camera configuration failed."), QString::fromLocal8Bit(gp_result_as_string(result))); return false; } @@ -301,10 +301,10 @@ setModal( true ); m_device = device; connect(m_device, qOverload<const QString&>(&KCamera::error), - this, qOverload<const QString&>(&KameraDeviceSelectDialog::slot_error)); + this, qOverload<const QString&>(&KameraDeviceSelectDialog::slot_error)); connect(m_device, qOverload<const QString&, const QString&>(&KCamera::error), - this, qOverload<const QString&, const QString&>(&KameraDeviceSelectDialog::slot_error)); + this, qOverload<const QString&, const QString&>(&KameraDeviceSelectDialog::slot_error)); QWidget *page = new QWidget( this ); @@ -499,8 +499,8 @@ setPortType(INDEX_USB); } - QList<QStandardItem *> items = m_model->findItems(m_device->model()); - foreach (QStandardItem *item, items) { + const QList<QStandardItem *> items = m_model->findItems(m_device->model()); + for (QStandardItem *item : items) { const QModelIndex index = m_model->indexFromItem(item); m_modelSel->selectionModel()->select(index, QItemSelectionModel::Select); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/kcontrol/kameradevice.h new/kamera-21.12.0/kcontrol/kameradevice.h --- old/kamera-21.08.3/kcontrol/kameradevice.h 2021-10-31 11:09:05.000000000 +0100 +++ new/kamera-21.12.0/kcontrol/kameradevice.h 2021-12-02 22:09:44.000000000 +0100 @@ -45,7 +45,7 @@ Q_OBJECT public: explicit KCamera(const QString &name, const QString &path); - ~KCamera(); + ~KCamera() override; void invalidateCamera(); bool configure(); void load(KConfig *m_config); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/kioslave/kamera.cpp new/kamera-21.12.0/kioslave/kamera.cpp --- old/kamera-21.08.3/kioslave/kamera.cpp 2021-10-31 11:09:05.000000000 +0100 +++ new/kamera-21.12.0/kioslave/kamera.cpp 2021-12-02 22:09:44.000000000 +0100 @@ -111,17 +111,17 @@ return 0; } -static QString path_quote(QString path) { return path.replace("/","%2F").replace(" ","%20"); } -static QString path_unquote(QString path) { return path.replace("%2F","/").replace("%20"," "); } +static QString path_quote(QString path) { return path.replace(QStringLiteral("/"),QStringLiteral("%2F")).replace(QStringLiteral(" "),QStringLiteral("%20")); } +static QString path_unquote(QString path) { return path.replace(QStringLiteral("%2F"),QStringLiteral("/")).replace(QStringLiteral("%20"),QStringLiteral(" ")); } KameraProtocol::KameraProtocol(const QByteArray &pool, const QByteArray &app) : SlaveBase("camera", pool, app), -m_camera(NULL) +m_camera(nullptr) { // attempt to initialize libgphoto2 and chosen camera (requires locking) // (will init m_camera, since the m_camera's configuration is empty) - m_camera = 0; - m_file = NULL; + m_camera = nullptr; + m_file = nullptr; m_config = new KConfig(KProtocolInfo::config(QStringLiteral("camera")), KConfig::SimpleConfig); m_context = gp_context_new(); actiondone = true; @@ -228,8 +228,8 @@ // is no camera_exit function. gp_port_close(m_camera->port); cameraopen = false; - current_camera = ""; - current_port = ""; + current_camera = QStringLiteral(""); + current_port = QStringLiteral(""); return; } @@ -262,7 +262,7 @@ #define GPHOTO_TEXT_FILE(xx) \ - if (!directory.compare("/") && !file.compare(#xx ".txt")) { \ + if (!directory.compare(QStringLiteral("/")) && !file.compare(#xx ".txt")) { \ CameraText xx; \ gpr = gp_camera_get_##xx(m_camera, &xx, m_context); \ if (gpr != GP_OK) { \ @@ -282,14 +282,14 @@ GPHOTO_TEXT_FILE(summary); #undef GPHOTO_TEXT_FILE - // emit info message + // Q_EMIT info message // WARNING Fix this //infoMessage( i18n("Retrieving data from camera <b>%1</b>", current_camera) ); // Note: There's no need to re-read directory for each get() anymore gp_file_new(&m_file); - // emit the total size (we must do it before sending data to allow preview) + // Q_EMIT the total size (we must do it before sending data to allow preview) CameraFileInfo info; gpr = gp_camera_file_get_info(m_camera, @@ -310,7 +310,7 @@ } // at last, a proper API to determine whether a thumbnail was requested. - if(cameraSupportsPreview() && metaData("thumbnail") == "1") { + if(cameraSupportsPreview() && metaData(QStringLiteral("thumbnail")) == QStringLiteral("1")) { qCDebug(KAMERA_KIOSLAVE) << "get() retrieving the thumbnail"; fileType = GP_FILE_TYPE_PREVIEW; if (info.preview.fields & GP_FILE_INFO_SIZE) { @@ -357,17 +357,17 @@ case GP_ERROR_FILE_NOT_FOUND: case GP_ERROR_DIRECTORY_NOT_FOUND: gp_file_unref(m_file); - m_file = NULL; + m_file = nullptr; error(KIO::ERR_DOES_NOT_EXIST, url.fileName()); return ; default: gp_file_unref(m_file); - m_file = NULL; + m_file = nullptr; error(KIO::ERR_UNKNOWN, QString::fromLocal8Bit(gp_result_as_string(gpr))); return; } - // emit the mimetype + // Q_EMIT the mimetype // NOTE: we must first get the file, so that CameraFile->name would be set const char *fileMimeType; gp_file_get_mime_type(m_file, &fileMimeType); @@ -465,11 +465,7 @@ QStringList components, camarr; QString cam, camera, port; -#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0) - components = url.split(QLatin1Char('/'), QString::SkipEmptyParts); -#else components = url.split(QLatin1Char('/'), Qt::SkipEmptyParts); -#endif if (components.size() == 0) { return; } @@ -481,11 +477,11 @@ setCamera (camera, port); } if (components.isEmpty()) { - directory = "/"; + directory = QStringLiteral("/"); return; } file = path_unquote(components.takeLast()); - directory = path_unquote("/"+components.join(QLatin1Char('/'))); + directory = path_unquote(QStringLiteral("/")+components.join(QLatin1Char('/'))); } // Implements a regular stat() of a file / directory, returning all we know about it @@ -504,7 +500,7 @@ return; } - if (directory == "/") { + if (directory == QLatin1String("/")) { KIO::UDSEntry entry; #define GPHOTO_TEXT_FILE(xx) \ @@ -705,8 +701,8 @@ /* Avoid duplicated entry, that is a camera with both * port usb: and usb:001,042 entries. */ - if (ports.contains("usb:") && - names.contains(ports["usb:"]) && + if (ports.contains(QStringLiteral("usb:")) && + names.contains(ports[QStringLiteral("usb:")]) && names[ports[QStringLiteral("usb:")]] != QStringLiteral("usb:")) { ports.remove(QStringLiteral("usb:")); } @@ -877,7 +873,7 @@ qCDebug(KAMERA_KIOSLAVE) << "Configuration change detected"; closeCamera(); gp_camera_unref(m_camera); - m_camera = NULL; + m_camera = nullptr; // WARNING Fix this //infoMessage( i18n("Reinitializing camera") ); } else { @@ -938,7 +934,7 @@ gp_context_set_progress_funcs(m_context, frontendProgressStart, frontendProgressUpdate, - NULL, + nullptr, this ); // gp_camera_set_message_func(m_camera, ..., this) @@ -957,7 +953,7 @@ if (m_camera) { gp_camera_unref(m_camera); } - m_camera = NULL; + m_camera = nullptr; qCDebug(KAMERA_KIOSLAVE) << "Unable to init camera: " << errstr; error(KIO::ERR_SERVICE_NOT_AVAILABLE, errstr); return; @@ -1004,7 +1000,7 @@ if (info.file.fields & GP_FILE_INFO_MTIME) { udsEntry.fastInsert(KIO::UDSEntry::UDS_MODIFICATION_TIME,info.file.mtime); } else { - udsEntry.fastInsert(KIO::UDSEntry::UDS_MODIFICATION_TIME,time(NULL)); + udsEntry.fastInsert(KIO::UDSEntry::UDS_MODIFICATION_TIME,time(nullptr)); } if (info.file.fields & GP_FILE_INFO_TYPE) { @@ -1082,7 +1078,7 @@ // camera and pass it to KIO, to allow progressive display // of the downloaded photo. - const char *fileData = NULL; + const char *fileData = nullptr; long unsigned int fileSize = 0; // This merely returns us a pointer to gphoto's internal data diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/org.kde.kamera.metainfo.xml new/kamera-21.12.0/org.kde.kamera.metainfo.xml --- old/kamera-21.08.3/org.kde.kamera.metainfo.xml 2021-10-31 11:09:05.000000000 +0100 +++ new/kamera-21.12.0/org.kde.kamera.metainfo.xml 2021-12-02 22:09:44.000000000 +0100 @@ -22,6 +22,7 @@ <name xml:lang="fi">Kamera</name> <name xml:lang="fr">Kamera</name> <name xml:lang="gl">Kamera</name> + <name xml:lang="hu">Kamera</name> <name xml:lang="ia">Kamera</name> <name xml:lang="it">Kamera</name> <name xml:lang="ko">Kamera</name> @@ -54,6 +55,7 @@ <summary xml:lang="fi">PTP-yhteysk??yt??nt???? (Picture Transfer Protocol) tukeva liit??nn??inen KDE-sovelluksiin</summary> <summary xml:lang="fr">Un module externe de prise en charge du protocole de transfert d'images (PTP) au sein des applications KDE</summary> <summary xml:lang="gl">Un complemento para permitir o protocolo de transferencia de imaxes (PTP) nas aplicaci??ns de KDE</summary> + <summary xml:lang="hu">B??v??tm??ny a k??p??tviteli protokoll (PTP) t??mogat??s??hoz KDE alkalmaz??sokban</summary> <summary xml:lang="ia">Un plugin pro supportar Picture Transfer Protocol (PTP) in applicationes de KDE</summary> <summary xml:lang="it">Un'estensione per supportare la modalit?? Picture Transfer Protocol (PTP) nelle applicazioni di KDE</summary> <summary xml:lang="ko">KDE ?????????????????? ?????? ?????? ????????????(PTP)??? ???????????? ????????????</summary> @@ -87,6 +89,7 @@ <p xml:lang="fi">PTP (Picture Transfer Protocol) on vanhempi yhteysk??yt??nt?? kameralaitteiden k??ytt??miseksi. Kamera tarjoaa t??lle yhteysk??yt??nn??lle asetusty??kalun ja kio-asiakkaan.</p> <p xml:lang="fr">Le protocole de transfert d'images (PTP) est une ancienne m??thode de communication avec les appareils photo. Kamera fournit un outil de configuration et un esclave kio permettant de lire et d'??crire vers les appareils photo utilisant ce protocole.</p> <p xml:lang="gl">O protocolo de transferencia de imaxes (PTP) ?? un m??todo antigo de comunicaci??n con dispositivos de c??mara. Kamera fornece unha ferramenta de configuraci??n e un escravo de KIO para ler e escribir datos de dispositivos de c??mara con este protocolo.</p> + <p xml:lang="hu">A k??p??tviteli protokoll (PTP) egy r??gebbi m??dszer f??nyk??pez??g??pek kezel??s??hez. A Kamera ehhez biztos??t egy be??ll??t??eszk??zt ??s egy KIO-szolg??ltat??st olvas??shoz ??s ??r??shoz.</p> <p xml:lang="ia">Picture Transfer Protocol (PTP) es un vetere methodo de parlar a dispositivos de camera. Kamera forni un instrumento de configuration e kio slave per scriber a iste dispositivos con iste protocollo.</p> <p xml:lang="it">Il Picture Transfer Protocol (PTP) ?? un vecchio metodo usato per dialogare con le fotocamere. Kamera fornisce uno strumento di configurazione e uno slave KIO per eseguire con questo protocollo le operazioni di lettura e di scrittura sulle fotocamere.</p> <p xml:lang="ko">?????? ?????? ????????????(PTP)??? ?????? ?????? ????????? ????????? ???????????? ???????????????. Kamera??? PTP ?????? ?????? ??? ??? ??????????????? ???????????? ????????? ???????????? ?????? ??? ????????? ??? ??? ?????? KIO ??????????????? ???????????????.</p> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/ar/kcmkamera.po new/kamera-21.12.0/po/ar/kcmkamera.po --- old/kamera-21.08.3/po/ar/kcmkamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/ar/kcmkamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -5,22 +5,22 @@ # Munzir Taha <[email protected]>, 2004. # Youssef Chahibi <[email protected]>, 2007. # Mohammed Berdai <[email protected]>, 2008. -# zayed <[email protected]>, 2008, 2012. +# zayed <[email protected]>, 2008, 2012, 2021. msgid "" msgstr "" "Project-Id-Version: kcmkamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2020-10-24 02:16+0200\n" -"PO-Revision-Date: 2012-01-22 22:26+0400\n" +"PO-Revision-Date: 2021-07-26 23:18+0400\n" "Last-Translator: Zayed Al-Saidi <[email protected]>\n" -"Language-Team: Arabic <[email protected]>\n" +"Language-Team: ar\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -"X-Generator: Lokalize 1.2\n" +"X-Generator: Lokalize 21.07.70\n" #: kamera.cpp:87 #, kde-format @@ -209,10 +209,7 @@ msgstr "????????????" #: kameradevice.cpp:343 -#, fuzzy, kde-format -#| msgid "" -#| "If this option is checked, the camera has to be connected to one of the " -#| "computer's serial ports (known as COM ports in Microsoft Windows.)" +#, kde-format msgid "" "If this option is checked, the camera has to be connected to one of the " "computer's serial ports (known as COM ports in Microsoft Windows.)" @@ -221,10 +218,7 @@ "?????????????????? ?????????????? (???????????? ???? COM ???? ???????????????????? ????????????) ." #: kameradevice.cpp:348 -#, fuzzy, kde-format -#| msgid "" -#| "If this option is checked, the camera has to be connected to one of the " -#| "computer's USB ports, or to a USB hub." +#, kde-format msgid "" "If this option is checked, the camera has to be connected to one of the " "computer's USB ports, or to a USB hub." @@ -248,8 +242,7 @@ msgstr "????????????:" #: kameradevice.cpp:381 -#, fuzzy, kde-format -#| msgid "Specify here the serial port to which you connect the camera." +#, kde-format msgid "Specify here the serial port to which you connect the camera." msgstr "?????? ?????? ???????????? ???????????????? ???????? ?????? ???????? ???????????????? ????????." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/ast/kio5_kamera.po new/kamera-21.12.0/po/ast/kio5_kamera.po --- old/kamera-21.08.3/po/ast/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/ast/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2020-11-13 23:05+0100\n" "Last-Translator: enolp <[email protected]>\n" "Language-Team: Asturian <[email protected]>\n" @@ -17,7 +17,7 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 20.08.3\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Nun pudo lleese. Raz??n: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/az/kio5_kamera.po new/kamera-21.12.0/po/az/kio5_kamera.po --- old/kamera-21.08.3/po/az/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/az/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2021-03-05 10:49+0400\n" "Last-Translator: Kheyyam Gojayev <[email protected]>\n" "Language-Team: Azerbaijani <[email protected]>\n" @@ -17,7 +17,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 20.12.2\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Oxuna bilm??di. S??b??bi: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/ca/kio5_kamera.po new/kamera-21.12.0/po/ca/kio5_kamera.po --- old/kamera-21.08.3/po/ca/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/ca/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2018-10-13 20:17+0100\n" "Last-Translator: Josep M. Ferrer <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" @@ -19,7 +19,7 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 2.0\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "No s'ha pogut llegir. Motiu: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/ca@valencia/kio5_kamera.po new/kamera-21.12.0/po/ca@valencia/kio5_kamera.po --- old/kamera-21.08.3/po/ca@valencia/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/ca@valencia/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2018-10-13 20:17+0100\n" "Last-Translator: Josep M. Ferrer <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" @@ -19,7 +19,7 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 2.0\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "No s'ha pogut llegir. Motiu: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/cs/kio5_kamera.po new/kamera-21.12.0/po/cs/kio5_kamera.po --- old/kamera-21.08.3/po/cs/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/cs/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2018-10-15 08:18+0100\n" "Last-Translator: Vit Pelcak <[email protected]>\n" "Language-Team: Czech <[email protected]>\n" @@ -17,7 +17,7 @@ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Lokalize 2.0\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Nelze p??e????st. D??vod: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/da/kio5_kamera.po new/kamera-21.12.0/po/da/kio5_kamera.po --- old/kamera-21.08.3/po/da/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/da/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2020-07-22 12:06+0200\n" "Last-Translator: Martin Schlander <[email protected]>\n" "Language-Team: Danish <[email protected]>\n" @@ -17,7 +17,7 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 20.04.2\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Kunne ikke l??se. ??rsag: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/de/kio5_kamera.po new/kamera-21.12.0/po/de/kio5_kamera.po --- old/kamera-21.08.3/po/de/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/de/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2018-10-16 06:11+0100\n" "Last-Translator: Burkhard L??ck <[email protected]>\n" "Language-Team: German <[email protected]>\n" @@ -16,7 +16,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Lesen nicht m??glich. Grund : %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/el/kio5_kamera.po new/kamera-21.12.0/po/el/kio5_kamera.po --- old/kamera-21.08.3/po/el/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/el/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2019-08-06 11:00+0300\n" "Last-Translator: Stelios <[email protected]>\n" "Language-Team: Greek <[email protected]>\n" @@ -17,7 +17,7 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 18.12.3\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "???????????????? ??????????????????. ??????????: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/en_GB/kio5_kamera.po new/kamera-21.12.0/po/en_GB/kio5_kamera.po --- old/kamera-21.08.3/po/en_GB/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/en_GB/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2018-10-27 20:05+0100\n" "Last-Translator: Steve Allewell <[email protected]>\n" "Language-Team: British English <[email protected]>\n" @@ -17,7 +17,7 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 2.0\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Could not read. Reason: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/es/kio5_kamera.po new/kamera-21.12.0/po/es/kio5_kamera.po --- old/kamera-21.08.3/po/es/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/es/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kio5_kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2018-10-15 20:17+0100\n" "Last-Translator: Eloy Cuadra <[email protected]>\n" "Language-Team: Spanish <[email protected]>\n" @@ -19,7 +19,7 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 2.0\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "No se puede leer. Motivo: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/et/kio5_kamera.po new/kamera-21.12.0/po/et/kio5_kamera.po --- old/kamera-21.08.3/po/et/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/et/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2019-11-09 16:54+0200\n" "Last-Translator: Marek Laane <[email protected]>\n" "Language-Team: Estonian <[email protected]>\n" @@ -17,7 +17,7 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 19.08.1\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Lugemine nurjus. P??hjus: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/eu/kio5_kamera.po new/kamera-21.12.0/po/eu/kio5_kamera.po --- old/kamera-21.08.3/po/eu/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/eu/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2019-06-24 11:03+0200\n" "Last-Translator: I??igo Salvador Azurmendi <[email protected]>\n" "Language-Team: Basque <[email protected]>\n" @@ -20,7 +20,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 19.04.2\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Ezin izan da irakurri. Arrazoia: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/fi/kio5_kamera.po new/kamera-21.12.0/po/fi/kio5_kamera.po --- old/kamera-21.08.3/po/fi/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/fi/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2019-05-10 17:29+0200\n" "Last-Translator: Tommi Nieminen <[email protected]>\n" "Language-Team: Finnish <[email protected]>\n" @@ -17,7 +17,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 2.0\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Ei voi lukea. Syy: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/fr/kio5_kamera.po new/kamera-21.12.0/po/fr/kio5_kamera.po --- old/kamera-21.08.3/po/fr/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/fr/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2018-12-05 15:06+0800\n" "Last-Translator: Simon Depiets <[email protected]>\n" "Language-Team: French <[email protected]>\n" @@ -17,7 +17,7 @@ "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Impossible de lire. Raison??: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/gl/kio5_kamera.po new/kamera-21.12.0/po/gl/kio5_kamera.po --- old/kamera-21.08.3/po/gl/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/gl/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2018-10-20 09:45+0100\n" "Last-Translator: Adri??n Chaves (Gallaecio) <[email protected]>\n" "Language-Team: Galician <[email protected]>\n" @@ -16,7 +16,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Non se puido ler. Motivo: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/hu/kcmkamera.po new/kamera-21.12.0/po/hu/kcmkamera.po --- old/kamera-21.08.3/po/hu/kcmkamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/hu/kcmkamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -1,19 +1,20 @@ # # Tamas Szanto <[email protected]>, 2001. -# Krist??f Kiszel <[email protected]>, 2011. +# Krist??f Kiszel <[email protected]>, 2011, 2021. msgid "" msgstr "" "Project-Id-Version: KDE 4.3\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2020-10-24 02:16+0200\n" -"PO-Revision-Date: 2011-01-15 11:16+0100\n" -"Last-Translator: Krist??f Kiszel <[email protected]>\n" -"Language-Team: Hungarian <[email protected]>\n" +"PO-Revision-Date: 2021-09-03 14:05+0200\n" +"Last-Translator: Krist??f 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.07.70\n" #: kamera.cpp:87 #, kde-format @@ -212,10 +213,7 @@ msgstr "Csatlakoz??" #: kameradevice.cpp:343 -#, fuzzy, kde-format -#| msgid "" -#| "If this option is checked, the camera has to be connected to one of the " -#| "computer's serial ports (known as COM ports in Microsoft Windows.)" +#, kde-format msgid "" "If this option is checked, the camera has to be connected to one of the " "computer's serial ports (known as COM ports in Microsoft Windows.)" @@ -224,10 +222,7 @@ "Microsoft Windows alatt) van csatlakoztatva." #: kameradevice.cpp:348 -#, fuzzy, kde-format -#| msgid "" -#| "If this option is checked, the camera has to be connected to one of the " -#| "computer's USB ports, or to a USB hub." +#, kde-format msgid "" "If this option is checked, the camera has to be connected to one of the " "computer's USB ports, or to a USB hub." @@ -251,8 +246,7 @@ msgstr "Csatlakoz??:" #: kameradevice.cpp:381 -#, fuzzy, kde-format -#| msgid "Specify here the serial port to which you connect the camera." +#, kde-format msgid "Specify here the serial port to which you connect the camera." msgstr "" "Itt lehet megadni, hogy a f??nyk??pez??g??p melyik soros csatlakoz??hoz van k??tve." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/hu/kio5_kamera.po new/kamera-21.12.0/po/hu/kio5_kamera.po --- old/kamera-21.08.3/po/hu/kio5_kamera.po 1970-01-01 01:00:00.000000000 +0100 +++ new/kamera-21.12.0/po/hu/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -0,0 +1,23 @@ +# Copyright (C) YEAR This file is copyright: +# This file is distributed under the same license as the kamera package. +# +# Kristof Kiszel <[email protected]>, 2021. +msgid "" +msgstr "" +"Project-Id-Version: kamera\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" +"PO-Revision-Date: 2021-11-22 13:38+0100\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.08.3\n" + +#: kamera.cpp:803 +#, kde-format +msgid "Could not read. Reason: %1" +msgstr "Nem siker??lt olvasni. Ok: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/ia/kio5_kamera.po new/kamera-21.12.0/po/ia/kio5_kamera.po --- old/kamera-21.08.3/po/ia/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/ia/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2020-05-10 19:23+0100\n" "Last-Translator: Giovanni Sora <[email protected]>\n" "Language-Team: Interlingua <[email protected]>\n" @@ -17,7 +17,7 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 2.0\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Non pote leger : Motivo: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/it/kio5_kamera.po new/kamera-21.12.0/po/it/kio5_kamera.po --- old/kamera-21.08.3/po/it/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/it/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2018-12-09 16:51+0100\n" "Last-Translator: Paolo Zamponi <[email protected]>\n" "Language-Team: Italian <[email protected]>\n" @@ -17,7 +17,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 2.0\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Impossibile leggere. Motivo: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/ja/kio5_kamera.po new/kamera-21.12.0/po/ja/kio5_kamera.po --- old/kamera-21.08.3/po/ja/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/ja/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2018-10-20 16:34-0700\n" "Last-Translator: Japanese KDE translation team <[email protected]>\n" "Language-Team: Japanese <[email protected]>\n" @@ -14,7 +14,7 @@ "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/ko/kio5_kamera.po new/kamera-21.12.0/po/ko/kio5_kamera.po --- old/kamera-21.08.3/po/ko/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/ko/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2019-04-12 00:46+0100\n" "Last-Translator: Shinjo Park <[email protected]>\n" "Language-Team: Korean <[email protected]>\n" @@ -17,7 +17,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Lokalize 2.0\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "?????? ??? ????????????. ??????: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/lt/kio5_kamera.po new/kamera-21.12.0/po/lt/kio5_kamera.po --- old/kamera-21.08.3/po/lt/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/lt/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2019-07-09 22:35+0300\n" "Last-Translator: Moo\n" "Language-Team: lt\n" @@ -19,7 +19,7 @@ "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" "X-Generator: Poedit 2.2.1\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Nepavyko perskaityti. Prie??astis: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/ml/kio5_kamera.po new/kamera-21.12.0/po/ml/kio5_kamera.po --- old/kamera-21.08.3/po/ml/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/ml/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2019-05-22 01:57+0530\n" "Last-Translator: Subin Siby <[email protected]>\n" "Language-Team: Swathanthra|??????????????????????????? Malayalam|?????????????????? Computing|????????????????????????????????????????????? <smc." @@ -18,7 +18,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "??????????????????????????? ????????????????????????????????????. ???????????????: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/nl/kio5_kamera.po new/kamera-21.12.0/po/nl/kio5_kamera.po --- old/kamera-21.08.3/po/nl/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/nl/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2018-10-13 11:39+0100\n" "Last-Translator: Freek de Kruijf <[email protected]>\n" "Language-Team: Dutch <[email protected]>\n" @@ -17,7 +17,7 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 2.0\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Kon niet lezen. Reden: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/nn/kio5_kamera.po new/kamera-21.12.0/po/nn/kio5_kamera.po --- old/kamera-21.08.3/po/nn/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/nn/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2019-01-05 14:17+0100\n" "Last-Translator: Karl Ove Hufthammer <[email protected]>\n" "Language-Team: Norwegian Nynorsk <[email protected]>\n" @@ -19,7 +19,7 @@ "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Klarte ikkje lesa. Grunn: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/pl/kio5_kamera.po new/kamera-21.12.0/po/pl/kio5_kamera.po --- old/kamera-21.08.3/po/pl/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/pl/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2019-01-27 10:15+0100\n" "Last-Translator: ??ukasz Wojni??owicz <[email protected]>\n" "Language-Team: Polish <[email protected]>\n" @@ -18,7 +18,7 @@ "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Lokalize 19.03.70\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Nie mo??na odczyta??. Pow??d: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/pt/kio5_kamera.po new/kamera-21.12.0/po/pt/kio5_kamera.po --- old/kamera-21.08.3/po/pt/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/pt/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2018-10-13 11:21+0100\n" "Last-Translator: Jos?? Nuno Coelho Pires <[email protected]>\n" "Language-Team: Portuguese <[email protected]>\n" @@ -12,7 +12,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "N??o foi poss??vel ler. Raz??o: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/pt_BR/kio5_kamera.po new/kamera-21.12.0/po/pt_BR/kio5_kamera.po --- old/kamera-21.08.3/po/pt_BR/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/pt_BR/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2018-10-21 16:39-0300\n" "Last-Translator: Luiz Fernando Ranghetti <[email protected]>\n" "Language-Team: Portuguese <[email protected]>\n" @@ -17,7 +17,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Lokalize 2.0\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "N??o foi poss??vel ler. Motivo: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/ro/kio5_kamera.po new/kamera-21.12.0/po/ro/kio5_kamera.po --- old/kamera-21.08.3/po/ro/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/ro/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2020-09-27 22:06+0100\n" "Last-Translator: Sergiu Bivol <[email protected]>\n" "Language-Team: Romanian\n" @@ -18,7 +18,7 @@ "20)) ? 1 : 2;\n" "X-Generator: Lokalize 19.12.3\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Nu s-a putut citi. Motiv: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/ru/kio5_kamera.po new/kamera-21.12.0/po/ru/kio5_kamera.po --- old/kamera-21.08.3/po/ru/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/ru/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2018-10-20 20:48+0300\n" "Last-Translator: Alexander Yavorsky <[email protected]>\n" "Language-Team: Russian <[email protected]>\n" @@ -18,7 +18,7 @@ "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Lokalize 2.0\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "???????????????????? ?????????????????? ????????????. ??????????????: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/sk/kio5_kamera.po new/kamera-21.12.0/po/sk/kio5_kamera.po --- old/kamera-21.08.3/po/sk/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/sk/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: kio5_kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2018-10-20 14:23+0100\n" "Last-Translator: Roman Paholik <[email protected]>\n" "Language-Team: Slovak <[email protected]>\n" @@ -15,7 +15,7 @@ "X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Nem????em ????ta??. D??vod: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/sl/kio5_kamera.po new/kamera-21.12.0/po/sl/kio5_kamera.po --- old/kamera-21.08.3/po/sl/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/sl/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2020-01-23 16:20+0100\n" "Last-Translator: Matja?? Jeran <[email protected]>\n" "Language-Team: Slovenian <[email protected]>\n" @@ -19,7 +19,7 @@ "%100==4 ? 3 : 0);\n" "X-Generator: Poedit 2.2.4\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Ni bilo mogo??e brati. Razlog: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/sv/kio5_kamera.po new/kamera-21.12.0/po/sv/kio5_kamera.po --- old/kamera-21.08.3/po/sv/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/sv/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2018-10-13 15:08+0100\n" "Last-Translator: Stefan Asserh??ll <[email protected]>\n" "Language-Team: Swedish <[email protected]>\n" @@ -17,7 +17,7 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 2.0\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "Kunde inte l??sa. Orsak: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/uk/kio5_kamera.po new/kamera-21.12.0/po/uk/kio5_kamera.po --- old/kamera-21.08.3/po/uk/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/uk/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kio5_kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2018-10-13 08:31+0300\n" "Last-Translator: Yuri Chornoivan <[email protected]>\n" "Language-Team: Ukrainian <[email protected]>\n" @@ -20,7 +20,7 @@ "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Lokalize 2.0\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "???? ?????????????? ??????????????????. ??????????????: %1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/zh_CN/kcmkamera.po new/kamera-21.12.0/po/zh_CN/kcmkamera.po --- old/kamera-21.08.3/po/zh_CN/kcmkamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/zh_CN/kcmkamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -12,7 +12,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2020-10-24 02:16+0200\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/kamera-21.08.3/po/zh_CN/kio5_kamera.po new/kamera-21.12.0/po/zh_CN/kio5_kamera.po --- old/kamera-21.08.3/po/zh_CN/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/zh_CN/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" -"PO-Revision-Date: 2021-10-29 13:27\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" +"PO-Revision-Date: 2021-11-30 15:23\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -22,7 +22,7 @@ "X-Crowdin-File: /kf5-stable/messages/kamera/kio5_kamera.pot\n" "X-Crowdin-File-ID: 8038\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "????????????????????????%1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/po/zh_TW/kio5_kamera.po new/kamera-21.12.0/po/zh_TW/kio5_kamera.po --- old/kamera-21.08.3/po/zh_TW/kio5_kamera.po 2021-11-02 01:08:16.000000000 +0100 +++ new/kamera-21.12.0/po/zh_TW/kio5_kamera.po 2021-12-03 01:09:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kamera\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-06-05 00:14+0000\n" +"POT-Creation-Date: 2021-09-14 00:16+0000\n" "PO-Revision-Date: 2019-01-04 01:33+0800\n" "Last-Translator: pan93412 <[email protected]>\n" "Language-Team: Chinese <[email protected]>\n" @@ -17,7 +17,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Lokalize 18.12.0\n" -#: kamera.cpp:807 +#: kamera.cpp:803 #, kde-format msgid "Could not read. Reason: %1" msgstr "????????????????????????%1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kamera-21.08.3/solid_camera.desktop new/kamera-21.12.0/solid_camera.desktop --- old/kamera-21.08.3/solid_camera.desktop 2021-10-31 11:09:05.000000000 +0100 +++ new/kamera-21.12.0/solid_camera.desktop 2021-12-02 22:09:44.000000000 +0100 @@ -7,6 +7,7 @@ Exec=kioclient5 exec camera:/ Icon=system-file-manager Name=View Photos with File Manager +Name[ar]=???????? ?????????? ?????????? ?????????????? Name[az]=????kill??r?? fayl menecerind?? baxmaq Name[ca]=Visualitza fotos amb el gestor de fitxers Name[ca@valencia]=Visualitza fotos amb el gestor de fitxers @@ -21,6 +22,7 @@ Name[fi]=Katsele kuvia tiedostonhallinnassa Name[fr]=Afficher les photos dans le gestionnaire de fichiers Name[gl]=Ver as fotos co xestor de ficheiros +Name[hu]=F??nyk??pek megtekint??se f??jlkezel??vel Name[ia]=Aperi file con le gerente de file Name[is]=Sko??a myndir me?? skr??astj??ra Name[it]=Visualizza le foto con il gestore dei file
