Hello community, here is the log from the commit of package kparts for openSUSE:Factory checked in at 2014-06-10 14:36:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kparts (Old) and /work/SRC/openSUSE:Factory/.kparts.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kparts" Changes: -------- --- /work/SRC/openSUSE:Factory/kparts/kparts.changes 2014-05-14 20:27:49.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.kparts.new/kparts.changes 2014-06-10 14:37:10.000000000 +0200 @@ -1,0 +2,10 @@ +Sun Jun 1 18:02:35 UTC 2014 - [email protected] + +- Update to 4.100.0 + * API improvements and cleanups + * Buildsystem fixes + * For more details please see: + http://www.kde.org/announcements/announce-frameworks5-beta3.php +- Add baselibs.conf + +------------------------------------------------------------------- Old: ---- kparts-4.99.0.tar.xz New: ---- baselibs.conf kparts-4.100.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kparts.spec ++++++ --- /var/tmp/diff_new_pack.j2n7ur/_old 2014-06-10 14:37:11.000000000 +0200 +++ /var/tmp/diff_new_pack.j2n7ur/_new 2014-06-10 14:37:11.000000000 +0200 @@ -18,10 +18,10 @@ %define lname libKF5Parts5 Name: kparts -Version: 4.99.0 +Version: 4.100.0 Release: 0 BuildRequires: cmake >= 2.8.12 -BuildRequires: extra-cmake-modules >= 0.0.13 +BuildRequires: extra-cmake-modules >= 0.0.14 BuildRequires: fdupes BuildRequires: kbookmarks-devel >= %{_kf5_version} BuildRequires: kcompletion-devel >= %{_kf5_version} @@ -49,7 +49,8 @@ License: LGPL-2.1+ Group: System/GUI/KDE Url: http://www.kde.org -Source0: kparts-%{version}.tar.xz +Source: http://download.kde.org/unstable/frameworks/%{version}/%{name}-%{version}.tar.xz +Source1: baselibs.conf BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -61,6 +62,7 @@ Summary: Plugin framework for user interface components Group: System/GUI/KDE Obsoletes: libKF5Parts4 +Recommends: %lname-lang = %{version} %description -n %lname This library implements the framework for KDE parts, which are @@ -82,6 +84,7 @@ elaborate widgets with a user-interface defined in terms of actions (menu items, toolbar icons). Development files. +%lang_package -n %lname %prep %setup -q @@ -93,10 +96,14 @@ %kf5_makeinstall -C build %fdupes -s %{buildroot} + %find_lang %{name}5 + %post -n %lname -p /sbin/ldconfig %postun -n %lname -p /sbin/ldconfig +%files -n %lname-lang -f %{name}5.lang + %files -n %lname %defattr(-,root,root) %doc COPYING* ++++++ baselibs.conf ++++++ libKF5Parts5 kparts-devel requires "libKF5Parts5-<targettype> = <version>" ++++++ kparts-4.99.0.tar.xz -> kparts-4.100.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-4.99.0/CMakeLists.txt new/kparts-4.100.0/CMakeLists.txt --- old/kparts-4.99.0/CMakeLists.txt 2014-05-05 02:36:24.000000000 +0200 +++ new/kparts-4.100.0/CMakeLists.txt 2014-06-01 14:31:13.000000000 +0200 @@ -2,7 +2,7 @@ project(KParts) -find_package(ECM 0.0.13 REQUIRED NO_MODULE) +find_package(ECM 0.0.14 REQUIRED NO_MODULE) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) @@ -17,8 +17,8 @@ include(ECMSetupVersion) -set(KF5_VERSION "4.99.0") # handled by release scripts -set(KF5_DEP_VERSION "4.99.0") # handled by release scripts +set(KF5_VERSION "4.100.0") # handled by release scripts +set(KF5_DEP_VERSION "4.100.0") # handled by release scripts ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KPARTS VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kparts_version.h" PACKAGE_VERSION_FILE "${CMAKE_CURRENT_BINARY_DIR}/KF5PartsConfigVersion.cmake" @@ -45,6 +45,9 @@ add_subdirectory( autotests ) endif() add_definitions(-DTRANSLATION_DOMAIN=\"kparts5\") +if (IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/po") + ki18n_install(po) +endif() add_subdirectory( src ) # create a Config.cmake and a ConfigVersion.cmake file and install them diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-4.99.0/autotests/CMakeLists.txt new/kparts-4.100.0/autotests/CMakeLists.txt --- old/kparts-4.99.0/autotests/CMakeLists.txt 2014-05-05 02:36:24.000000000 +0200 +++ new/kparts-4.100.0/autotests/CMakeLists.txt 2014-06-01 14:31:13.000000000 +0200 @@ -1,20 +1,11 @@ find_package(Qt5Test ${REQUIRED_QT_VERSION} REQUIRED) set_package_properties(Qt5Test PROPERTIES PURPOSE "Required for tests") -set(PARTS_TEST_LIBRARY_DEPENDENCIES KF5::Parts Qt5::Test KF5::XmlGui) +include(ECMAddTests) -include(ECMMarkAsTest) - -MACRO(KPARTS_UNIT_TESTS) - FOREACH(_testname ${ARGN}) - add_executable(${_testname} ${_testname}.cpp) - add_test(kparts-${_testname} ${_testname}) - ecm_mark_as_test(${_testname}) - target_link_libraries(${_testname} ${PARTS_TEST_LIBRARY_DEPENDENCIES}) - ENDFOREACH(_testname) -ENDMACRO(KPARTS_UNIT_TESTS) - -KPARTS_UNIT_TESTS( - parttest - openorsavequestion_unittest +ecm_add_tests( + parttest.cpp + openorsavequestion_unittest.cpp + NAME_PREFIX "kparts-" + LINK_LIBRARIES KF5::Parts Qt5::Test KF5::XmlGui ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-4.99.0/po/nds/kparts5.po new/kparts-4.100.0/po/nds/kparts5.po --- old/kparts-4.99.0/po/nds/kparts5.po 2014-05-05 02:36:24.000000000 +0200 +++ new/kparts-4.100.0/po/nds/kparts5.po 2014-06-01 14:31:13.000000000 +0200 @@ -9,7 +9,7 @@ "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2014-04-27 20:57+0000\n" -"PO-Revision-Date: 2014-03-11 23:48+0100\n" +"PO-Revision-Date: 2014-05-11 00:55+0200\n" "Last-Translator: Sönke Dibbern <[email protected]>\n" "Language-Team: Low Saxon <[email protected]>\n" "Language: nds\n" @@ -55,19 +55,19 @@ #, kde-format msgctxt "@label:button" msgid "&Open with %1" -msgstr "Mit \"%1\" &opmaken" +msgstr "Mit „%1“ &opmaken" #: browseropenorsavequestion.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Open &with %1" -msgstr "&Mit \"%1\" opmaken" +msgstr "&Mit „%1“ opmaken" #: browseropenorsavequestion.cpp:250 browseropenorsavequestion.cpp:345 #, kde-format msgctxt "@info" msgid "Open '%1'?" -msgstr "\"%1\" opmaken?" +msgstr "„%1“ opmaken?" #: browseropenorsavequestion.cpp:254 msgctxt "@label:button" @@ -98,7 +98,7 @@ #: browserrun.cpp:344 #, kde-format msgid "Do you really want to execute '%1'?" -msgstr "Wullt Du \"%1\" redig opropen?" +msgstr "Wullt Du „%1“ redig opropen?" #: browserrun.cpp:345 msgid "Execute File?" @@ -145,7 +145,7 @@ "The document \"%1\" has been modified.\n" "Do you want to save your changes or discard them?" msgstr "" -"Dat Dokment \"%1\" wöör ännert.\n" +"Dat Dokment „%1“ wöör ännert.\n" "Wullt Du de Ännern sekern oder wegsmieten?" #: readwritepart.cpp:104 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-4.99.0/po/sr/kparts5.po new/kparts-4.100.0/po/sr/kparts5.po --- old/kparts-4.99.0/po/sr/kparts5.po 2014-05-05 02:36:24.000000000 +0200 +++ new/kparts-4.100.0/po/sr/kparts5.po 2014-06-01 14:31:13.000000000 +0200 @@ -59,16 +59,18 @@ msgctxt "@label:button" msgid "&Open with %1" msgstr "" -"&Отвори помоћу <application>%1</application>|/|&Отвори <application>$[инс-п " -"%1]</application>" +"&Отвори помоћу <application>%1</application>" +"|/|" +"&Отвори <application>$[инс-п %1]</application>" #: browseropenorsavequestion.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Open &with %1" msgstr "" -"&Отвори помоћу <application>%1</application>|/|&Отвори <application>$[инс-п " -"%1]</application>" +"&Отвори помоћу <application>%1</application>" +"|/|" +"&Отвори <application>$[инс-п %1]</application>" #: browseropenorsavequestion.cpp:250 browseropenorsavequestion.cpp:345 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-4.99.0/po/sr@ijekavian/kparts5.po new/kparts-4.100.0/po/sr@ijekavian/kparts5.po --- old/kparts-4.99.0/po/sr@ijekavian/kparts5.po 2014-05-05 02:36:24.000000000 +0200 +++ new/kparts-4.100.0/po/sr@ijekavian/kparts5.po 2014-06-01 14:31:13.000000000 +0200 @@ -58,16 +58,18 @@ msgctxt "@label:button" msgid "&Open with %1" msgstr "" -"&Отвори помоћу <application>%1</application>|/|&Отвори <application>$[инс-п " -"%1]</application>" +"&Отвори помоћу <application>%1</application>" +"|/|" +"&Отвори <application>$[инс-п %1]</application>" #: browseropenorsavequestion.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Open &with %1" msgstr "" -"&Отвори помоћу <application>%1</application>|/|&Отвори <application>$[инс-п " -"%1]</application>" +"&Отвори помоћу <application>%1</application>" +"|/|" +"&Отвори <application>$[инс-п %1]</application>" #: browseropenorsavequestion.cpp:250 browseropenorsavequestion.cpp:345 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-4.99.0/po/sr@ijekavianlatin/kparts5.po new/kparts-4.100.0/po/sr@ijekavianlatin/kparts5.po --- old/kparts-4.99.0/po/sr@ijekavianlatin/kparts5.po 2014-05-05 02:36:24.000000000 +0200 +++ new/kparts-4.100.0/po/sr@ijekavianlatin/kparts5.po 2014-06-01 14:31:13.000000000 +0200 @@ -58,16 +58,18 @@ msgctxt "@label:button" msgid "&Open with %1" msgstr "" -"&Otvori pomoću <application>%1</application>|/|&Otvori <application>$[ins-p " -"%1]</application>" +"&Otvori pomoću <application>%1</application>" +"|/|" +"&Otvori <application>$[ins-p %1]</application>" #: browseropenorsavequestion.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Open &with %1" msgstr "" -"&Otvori pomoću <application>%1</application>|/|&Otvori <application>$[ins-p " -"%1]</application>" +"&Otvori pomoću <application>%1</application>" +"|/|" +"&Otvori <application>$[ins-p %1]</application>" #: browseropenorsavequestion.cpp:250 browseropenorsavequestion.cpp:345 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-4.99.0/po/sr@latin/kparts5.po new/kparts-4.100.0/po/sr@latin/kparts5.po --- old/kparts-4.99.0/po/sr@latin/kparts5.po 2014-05-05 02:36:24.000000000 +0200 +++ new/kparts-4.100.0/po/sr@latin/kparts5.po 2014-06-01 14:31:13.000000000 +0200 @@ -58,16 +58,18 @@ msgctxt "@label:button" msgid "&Open with %1" msgstr "" -"&Otvori pomoću <application>%1</application>|/|&Otvori <application>$[ins-p " -"%1]</application>" +"&Otvori pomoću <application>%1</application>" +"|/|" +"&Otvori <application>$[ins-p %1]</application>" #: browseropenorsavequestion.cpp:239 #, kde-format msgctxt "@action:inmenu" msgid "Open &with %1" msgstr "" -"&Otvori pomoću <application>%1</application>|/|&Otvori <application>$[ins-p " -"%1]</application>" +"&Otvori pomoću <application>%1</application>" +"|/|" +"&Otvori <application>$[ins-p %1]</application>" #: browseropenorsavequestion.cpp:250 browseropenorsavequestion.cpp:345 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-4.99.0/po/uk/kparts5.po new/kparts-4.100.0/po/uk/kparts5.po --- old/kparts-4.99.0/po/uk/kparts5.po 2014-05-05 02:36:24.000000000 +0200 +++ new/kparts-4.100.0/po/uk/kparts5.po 2014-06-01 14:31:13.000000000 +0200 @@ -414,7 +414,7 @@ #~ msgid "Password must be at least 1 character long" #~ msgid_plural "Password must be at least %1 characters long" -#~ msgstr[0] "Довжина пароля повинна бути щонайменше %1 символ" +#~ msgstr[0] "Довжина пароля повинна бути щонайменше один символ" #~ msgstr[1] "Довжина пароля повинна бути щонайменше %1 символи" #~ msgstr[2] "Довжина пароля повинна бути щонайменше %1 символів" #~ msgstr[3] "Довжина пароля повинна бути щонайменше один символ" @@ -4143,7 +4143,7 @@ #~ msgid "1 match found." #~ msgid_plural "%1 matches found." -#~ msgstr[0] "Знайдено %1 відповідний варіант." +#~ msgstr[0] "Знайдено 1 відповідний варіант." #~ msgstr[1] "Знайдено %1 відповідних варіанта." #~ msgstr[2] "Знайдено %1 відповідних варіантів." #~ msgstr[3] "Знайдено 1 відповідний варіант." @@ -4391,7 +4391,7 @@ #~ msgid "but your pattern only defines 1 capture." #~ msgid_plural "but your pattern only defines %1 captures." -#~ msgstr[0] "в той час, як взірець визначає тільки %1 захоплення." +#~ msgstr[0] "в той час, як взірець визначає тільки одне захоплення." #~ msgstr[1] "в той час, як взірець визначає тільки %1 захоплення." #~ msgstr[2] "в той час, як взірець визначає тільки %1 захоплень." #~ msgstr[3] "в той час, як взірець визначає тільки одне захоплення." @@ -6394,7 +6394,7 @@ #~ msgid_plural "" #~ "The shortcut '%2' conflicts with the following key combinations:\n" #~ msgstr[0] "" -#~ "Клавіатурне скорочення «%2» суперечить наступним комбінаціям клавіш:\n" +#~ "Клавіатурне скорочення «%2» суперечить наступній комбінації клавіш:\n" #~ msgstr[1] "" #~ "Клавіатурне скорочення «%2» суперечить наступним комбінаціям клавіш:\n" #~ msgstr[2] "" @@ -6405,7 +6405,7 @@ #~ msgctxt "%1 is the number of shortcuts with which there is a conflict" #~ msgid "Conflict with Registered Global Shortcut" #~ msgid_plural "Conflict with Registered Global Shortcuts" -#~ msgstr[0] "Конфлікт з зареєстрованими загальними скороченнями" +#~ msgstr[0] "Конфлікт з зареєстрованим загальним скороченням" #~ msgstr[1] "Конфлікт з зареєстрованими загальними скороченнями" #~ msgstr[2] "Конфлікт з зареєстрованими загальними скороченнями" #~ msgstr[3] "Конфлікт з зареєстрованим загальним скороченням" @@ -6413,7 +6413,7 @@ #~ msgctxt "%1 is the number of conflicts" #~ msgid "Shortcut Conflict" #~ msgid_plural "Shortcut Conflicts" -#~ msgstr[0] "Конфлікти скорочень" +#~ msgstr[0] "Конфлікт скорочень" #~ msgstr[1] "Конфлікти скорочень" #~ msgstr[2] "Конфлікти скорочень" #~ msgstr[3] "Конфлікт скорочень" @@ -7113,7 +7113,7 @@ #~ msgid "&Send File" #~ msgid_plural "&Send Files" -#~ msgstr[0] "&Надіслати файли" +#~ msgstr[0] "&Надіслати файл" #~ msgstr[1] "&Надіслати файли" #~ msgstr[2] "&Надіслати файли" #~ msgstr[3] "&Надіслати файл" @@ -7707,7 +7707,7 @@ #~ msgid "&Show Blocked Popup Window" #~ msgid_plural "&Show %1 Blocked Popup Windows" -#~ msgstr[0] "&Показати %1 заблокований вигульк" +#~ msgstr[0] "&Показати заблокований вигульк" #~ msgstr[1] "&Показати %1 заблоковані вигульки" #~ msgstr[2] "&Показати %1 заблокованих вигульків" #~ msgstr[3] "&Показати заблокований вигульк" @@ -8772,7 +8772,7 @@ #~ msgid "Loading one preview" #~ msgid_plural "Loading %1 previews" -#~ msgstr[0] "Завантаження %1 ескізу" +#~ msgstr[0] "Завантаження ескізу" #~ msgstr[1] "Завантаження %1 ескізів" #~ msgstr[2] "Завантаження %1 ескізів" #~ msgstr[3] "Завантаження ескізу" @@ -8895,14 +8895,14 @@ #~ msgctxt "fan as in supporter" #~ msgid "1 fan" #~ msgid_plural "%1 fans" -#~ msgstr[0] "%1 прихильник" +#~ msgstr[0] "1 прихильник" #~ msgstr[1] "%1 прихильники" #~ msgstr[2] "%1 прихильників" #~ msgstr[3] "1 прихильник" #~ msgid "1 download" #~ msgid_plural "%1 downloads" -#~ msgstr[0] "%1 звантаження" +#~ msgstr[0] "1 звантаження" #~ msgstr[1] "%1 звантаження" #~ msgstr[2] "%1 звантажень" #~ msgstr[3] "1 звантаження" @@ -8954,7 +8954,7 @@ #~ msgid_plural "" #~ "The server does not recognize any of the categories to which you are " #~ "trying to upload: %2" -#~ msgstr[0] "Серверу невідомі категорії вашого вивантаження: %2" +#~ msgstr[0] "Серверу невідома категорія вашого вивантаження: %2" #~ msgstr[1] "Серверу невідома категорія ваших вивантажень: %2" #~ msgstr[2] "Серверу невідома категорія ваших вивантажень: %2" #~ msgstr[3] "Серверу невідома категорія вашого вивантаження: %2" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-4.99.0/po/x-test/kparts5.po new/kparts-4.100.0/po/x-test/kparts5.po --- old/kparts-4.99.0/po/x-test/kparts5.po 2014-05-05 02:36:24.000000000 +0200 +++ new/kparts-4.100.0/po/x-test/kparts5.po 1970-01-01 01:00:00.000000000 +0100 @@ -1,152 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR This_file_is_part_of_KDE -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -# -msgid "" -msgstr "" -"Project-Id-Version: kparts5\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2014-04-27 20:57+0000\n" -"PO-Revision-Date: 2014-04-27 21:05+0000\n" -"Last-Translator: transxx.py program <[email protected]>\n" -"Language-Team: KDE Test Language <[email protected]>\n" -"Language: x-test\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "xxYour namesxx" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "xxYour emailsxx" - -#: browserextension.cpp:241 -#, kde-format -msgid "<qt>Do you want to search the Internet for <b>%1</b>?</qt>" -msgstr "xx<qt>Do you want to search the Internet for <b>%1</b>?</qt>xx" - -#: browserextension.cpp:242 -msgid "Internet Search" -msgstr "xxInternet Searchxx" - -#: browserextension.cpp:242 -msgid "&Search" -msgstr "xx&Searchxx" - -#: browseropenorsavequestion.cpp:108 -#, kde-format -msgctxt "@label Type of file" -msgid "Type: %1" -msgstr "xxType: %1xx" - -#: browseropenorsavequestion.cpp:116 -msgctxt "@label:checkbox" -msgid "Remember action for files of this type" -msgstr "xxRemember action for files of this typexx" - -#: browseropenorsavequestion.cpp:172 browseropenorsavequestion.cpp:265 -#, kde-format -msgctxt "@label:button" -msgid "&Open with %1" -msgstr "xx&Open with %1xx" - -#: browseropenorsavequestion.cpp:239 -#, kde-format -msgctxt "@action:inmenu" -msgid "Open &with %1" -msgstr "xxOpen &with %1xx" - -#: browseropenorsavequestion.cpp:250 browseropenorsavequestion.cpp:345 -#, kde-format -msgctxt "@info" -msgid "Open '%1'?" -msgstr "xxOpen '%1'?xx" - -#: browseropenorsavequestion.cpp:254 -msgctxt "@label:button" -msgid "&Open with..." -msgstr "xx&Open with...xx" - -#: browseropenorsavequestion.cpp:274 -msgctxt "@label:button" -msgid "&Open with" -msgstr "xx&Open withxx" - -#: browseropenorsavequestion.cpp:342 -msgctxt "@label:button" -msgid "&Open" -msgstr "xx&Openxx" - -#: browseropenorsavequestion.cpp:367 -#, kde-format -msgctxt "@label File name" -msgid "Name: %1" -msgstr "xxName: %1xx" - -#: browseropenorsavequestion.cpp:369 -msgctxt "@info:whatsthis" -msgid "This is the file name suggested by the server" -msgstr "xxThis is the file name suggested by the serverxx" - -#: browserrun.cpp:344 -#, kde-format -msgid "Do you really want to execute '%1'?" -msgstr "xxDo you really want to execute '%1'?xx" - -#: browserrun.cpp:345 -msgid "Execute File?" -msgstr "xxExecute File?xx" - -#: browserrun.cpp:345 -msgid "Execute" -msgstr "xxExecutexx" - -#: browserrun.cpp:403 -#, kde-format -msgid "The Download Manager (%1) could not be found in your $PATH " -msgstr "xxThe Download Manager (%1) could not be found in your $PATH xx" - -#: browserrun.cpp:404 -msgid "" -"Try to reinstall it \n" -"\n" -"The integration with Konqueror will be disabled." -msgstr "" -"xxTry to reinstall it \n" -"\n" -"The integration with Konqueror will be disabled.xx" - -#: browserrun.cpp:430 -msgid "Save As" -msgstr "xxSave Asxx" - -#: htmlsettingsinterface.cpp:34 -msgid "Accept" -msgstr "xxAcceptxx" - -#: htmlsettingsinterface.cpp:36 -msgid "Reject" -msgstr "xxRejectxx" - -#: readwritepart.cpp:93 -msgid "Untitled" -msgstr "xxUntitledxx" - -#: readwritepart.cpp:102 -#, kde-format -msgid "" -"The document \"%1\" has been modified.\n" -"Do you want to save your changes or discard them?" -msgstr "" -"xxThe document \"%1\" has been modified.\n" -"Do you want to save your changes or discard them?xx" - -#: readwritepart.cpp:104 -msgid "Close Document" -msgstr "xxClose Documentxx" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-4.99.0/tests/notepad.cpp new/kparts-4.100.0/tests/notepad.cpp --- old/kparts-4.99.0/tests/notepad.cpp 2014-05-05 02:36:24.000000000 +0200 +++ new/kparts-4.100.0/tests/notepad.cpp 2014-06-01 14:31:13.000000000 +0200 @@ -44,7 +44,7 @@ const QVariantList &) : KParts::ReadWritePart(parent) { - KAboutData aboutData(QStringLiteral("notepadpart"), QString(), QStringLiteral("Notepad Part"), QStringLiteral("0.1")); + KAboutData aboutData(QStringLiteral("notepadpart"), QStringLiteral("Notepad Part"), QStringLiteral("0.1")); setComponentData(aboutData, false); m_edit = new QTextEdit(parentWidget); @@ -81,7 +81,7 @@ KAboutData *NotepadPart::createAboutData() { - return new KAboutData(QStringLiteral("notepadpart"), QString(), i18n("Notepad"), QStringLiteral("2.0")); + return new KAboutData(QStringLiteral("notepadpart"), i18n("Notepad"), QStringLiteral("2.0")); } bool NotepadPart::openFile() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-4.99.0/tests/parts.cpp new/kparts-4.100.0/tests/parts.cpp --- old/kparts-4.99.0/tests/parts.cpp 2014-05-05 02:36:24.000000000 +0200 +++ new/kparts-4.100.0/tests/parts.cpp 2014-06-01 14:31:13.000000000 +0200 @@ -41,7 +41,7 @@ Part1::Part1(QObject *parent, QWidget *parentWidget) : KParts::ReadOnlyPart(parent), - m_componentData(QStringLiteral("kpartstestpart"), QString(), i18n("KParts test part"), QStringLiteral("0.1")) + m_componentData(QStringLiteral("kpartstestpart"), i18n("KParts test part"), QStringLiteral("0.1")) { setComponentData(m_componentData, false); m_edit = new QTextEdit(parentWidget); @@ -106,7 +106,7 @@ Part2::Part2(QObject *parent, QWidget *parentWidget) : KParts::Part(parent), - m_componentData(QStringLiteral("part2"), QString(), QStringLiteral("Part 2"), QStringLiteral("0.2")) + m_componentData(QStringLiteral("part2"), QStringLiteral("Part 2"), QStringLiteral("0.2")) { setComponentData(m_componentData, false); QWidget *w = new QWidget(parentWidget); -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
