Hello community,

here is the log from the commit of package kjsembed for openSUSE:Factory 
checked in at 2014-06-10 14:36:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kjsembed (Old)
 and      /work/SRC/openSUSE:Factory/.kjsembed.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kjsembed"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kjsembed/kjsembed.changes        2014-05-14 
20:27:37.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kjsembed.new/kjsembed.changes   2014-06-10 
14:36:19.000000000 +0200
@@ -1,0 +2,10 @@
+Sun Jun  1 18:02:13 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:
----
  kjsembed-4.99.0.tar.xz

New:
----
  baselibs.conf
  kjsembed-4.100.0.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kjsembed.spec ++++++
--- /var/tmp/diff_new_pack.3eLxgu/_old  2014-06-10 14:36:21.000000000 +0200
+++ /var/tmp/diff_new_pack.3eLxgu/_new  2014-06-10 14:36:21.000000000 +0200
@@ -18,10 +18,10 @@
 
 %define lname   libKF5JsEmbed5
 Name:           kjsembed
-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:  kdoctools-devel >= %{_kf5_version}
 BuildRequires:  kf5-filesystem
@@ -36,7 +36,8 @@
 License:        LGPL-2.1+
 Group:          System/GUI/KDE
 Url:            http://www.kde.org
-Source0:        kjsembed-%{version}.tar.xz
+Source:         
http://download.kde.org/unstable/frameworks/%{version}/portingAids/%{name}-%{version}.tar.xz
+Source1:        baselibs.conf
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -46,6 +47,7 @@
 %package -n %lname
 Summary:        Binding Javascript object to QObjects
 Group:          System/GUI/KDE
+Recommends:     %lname-lang = %{version}
 
 %description -n %lname
 KSJEmbed provides a method of binding JavaScript objects to QObjects,
@@ -63,6 +65,7 @@
 KSJEmbed provides a method of binding JavaScript objects to QObjects,
 so you can script your applications. Development files.
 
+%lang_package -n %lname
 %prep
 %setup -q
 
@@ -74,10 +77,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* README*

++++++ baselibs.conf ++++++
libKF5JsEmbed5
kjsembed-devel
        requires "libKF5JsEmbed5-<targettype> = <version>"
++++++ kjsembed-4.99.0.tar.xz -> kjsembed-4.100.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjsembed-4.99.0/CMakeLists.txt 
new/kjsembed-4.100.0/CMakeLists.txt
--- old/kjsembed-4.99.0/CMakeLists.txt  2014-05-05 02:31:33.000000000 +0200
+++ new/kjsembed-4.100.0/CMakeLists.txt 2014-06-01 14:25:32.000000000 +0200
@@ -2,7 +2,7 @@
 
 project(KJsEmbed)
 
-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})
 
 set(REQUIRED_QT_VERSION "5.2")
@@ -17,8 +17,8 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-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 KJSEMBED
    #VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kjsembed_version.h"
                         PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5JsEmbedConfigVersion.cmake"
@@ -39,6 +39,10 @@
 remove_definitions(-DQT_NO_CAST_FROM_BYTEARRAY)
 
 add_definitions(-DTRANSLATION_DOMAIN=\"kjsembed5\")
+if (IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/po")
+    ki18n_install(po)
+    kdoctools_install(po)
+endif()
 add_subdirectory(docs)
 add_subdirectory(src)
 add_subdirectory(examples/kjsconsole)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjsembed-4.99.0/metainfo.yaml 
new/kjsembed-4.100.0/metainfo.yaml
--- old/kjsembed-4.99.0/metainfo.yaml   2014-05-05 02:31:33.000000000 +0200
+++ new/kjsembed-4.100.0/metainfo.yaml  2014-06-01 14:25:32.000000000 +0200
@@ -8,4 +8,4 @@
 deprecated: true
 release: true
 framework-dependencies:
-  - kdoctools
+  - KDocTools
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjsembed-4.99.0/po/nds/kjsembed5.po 
new/kjsembed-4.100.0/po/nds/kjsembed5.po
--- old/kjsembed-4.99.0/po/nds/kjsembed5.po     2014-05-05 02:31:33.000000000 
+0200
+++ new/kjsembed-4.100.0/po/nds/kjsembed5.po    2014-06-01 14:25:32.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:58+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"
@@ -23,22 +23,22 @@
 #, kde-format
 msgid "Error encountered while processing include '%1' line %2: %3"
 msgstr ""
-"Bi't Verarbeiden vun de Insluten \"%1\" geev dat bi Reeg %2 en Fehler: %3"
+"Bi't Verarbeiden vun de Insluten „%1“ geev dat bi Reeg %2 en Fehler: %3"
 
 #: kjsembed/builtins.cpp:87
 #, kde-format
 msgid "include only takes 1 argument, not %1."
-msgstr "\"include\" bruukt bloots 1 Argument, nich %1."
+msgstr "„include“ bruukt bloots 1 Argument, nich %1."
 
 #: kjsembed/builtins.cpp:120
 #, kde-format
 msgid "File %1 not found."
-msgstr "De Datei \"%1\" lett sik nich finnen."
+msgstr "De Datei „%1“ lett sik nich finnen."
 
 #: kjsembed/builtins.cpp:125
 #, kde-format
 msgid "library only takes 1 argument, not %1."
-msgstr "\"library\" bruukt bloots 1 Argument, nich %1."
+msgstr "„library“ bruukt bloots 1 Argument, nich %1."
 
 #: kjsembed/builtins.cpp:137
 msgid "Alert"
@@ -56,12 +56,12 @@
 #: kjsembed/eventproxy.cpp:133
 #, kde-format
 msgid "Exception calling '%1' function from %2:%3:%4"
-msgstr "Utnahm bi Oproop vun Funkschoon \"%1\" vun %2:%3:%4"
+msgstr "Utnahm bi Oproop vun Funkschoon „%1“ vun %2:%3:%4"
 
 #: kjsembed/fileio.cpp:69
 #, kde-format
 msgid "Could not open file '%1'"
-msgstr "De Datei \"%1\" lett sik nich opmaken"
+msgstr "De Datei „%1“ lett sik nich opmaken"
 
 #: kjsembed/fileio.cpp:106
 msgid "Could not create temporary file."
@@ -70,7 +70,7 @@
 #: kjsembed/kjsembed.cpp:275 kjsembed/kjsembed.cpp:298
 #, kde-format
 msgid "%1 is not a function and cannot be called."
-msgstr "\"%1\" is keen Funkschoon un lett sik nich opropen."
+msgstr "„%1“ is keen Funkschoon un lett sik nich opropen."
 
 #: kjsembed/object_binding.h:214 kjsembed/qobject_binding.cpp:789
 #, kde-format
@@ -79,11 +79,11 @@
 
 #: kjsembed/qaction_binding.cpp:57
 msgid "Action takes 2 args."
-msgstr "\"Action\" bruukt 2 Argumenten."
+msgstr "„Action“ bruukt 2 Argumenten."
 
 #: kjsembed/qaction_binding.cpp:79
 msgid "ActionGroup takes 2 args."
-msgstr "\"ActionGroup\" bruukt 2 Argumenten."
+msgstr "„ActionGroup“ bruukt 2 Argumenten."
 
 #: kjsembed/qaction_binding.cpp:84
 msgid "Must supply a valid parent."
@@ -92,12 +92,12 @@
 #: kjsembed/qformbuilder_binding.cpp:56
 #, kde-format
 msgid "There was an error reading the file '%1'"
-msgstr "Bi't Lesen vun de Datei \"%1\" geev dat en Fehler."
+msgstr "Bi't Lesen vun de Datei „%1“ geev dat en Fehler."
 
 #: kjsembed/qformbuilder_binding.cpp:64
 #, kde-format
 msgid "Could not read file '%1'"
-msgstr "De Datei \"%1\" lett sik nich lesen."
+msgstr "De Datei „%1“ lett sik nich lesen."
 
 #: kjsembed/qformbuilder_binding.cpp:67 kjsembed/quiloader_binding.cpp:124
 msgid "Must supply a filename."
@@ -106,7 +106,7 @@
 #: kjsembed/qlayout_binding.cpp:87
 #, kde-format
 msgid "'%1' is not a valid QLayout."
-msgstr "\"%1\" is as QLayout leeg."
+msgstr "„%1“ is as QLayout leeg."
 
 #: kjsembed/qlayout_binding.cpp:93
 msgid "Must supply a layout name."
@@ -154,18 +154,17 @@
 #: kjsembed/qobject_binding.cpp:661
 #, kde-format
 msgid "No such method '%1'."
-msgstr "Dat gifft keen Metood \"%1\"."
+msgstr "Dat gifft keen Metood „%1“."
 
 #: kjsembed/qobject_binding.cpp:690
 #, kde-format
 msgid "Call to method '%1' failed, unable to get argument %2: %3"
-msgstr ""
-"Oproop vun Metood \"%1\" fehlslaan, Argument %2 lett sik nich finnen: %3"
+msgstr "Oproop vun Metood „%1“ fehlslaan, Argument %2 lett sik nich finnen: %3"
 
 #: kjsembed/qobject_binding.cpp:727
 #, kde-format
 msgid "Call to '%1' failed."
-msgstr "Oproop vun \"%1\" fehlslaan."
+msgstr "Oproop vun „%1“ fehlslaan."
 
 #: kjsembed/qobject_binding.cpp:793
 msgid "Could not construct value"
@@ -202,17 +201,17 @@
 #: kjsembed/quiloader_binding.cpp:129
 #, kde-format
 msgid "Could not open file '%1': %2"
-msgstr "De Datei \"%1\" lett sik nich opmaken: %2"
+msgstr "De Datei „%1“ lett sik nich opmaken: %2"
 
 #: kjsembed/quiloader_binding.cpp:137
 #, kde-format
 msgid "Failed to load file '%1'"
-msgstr "De Datei \"%1\" lett sik nich laden"
+msgstr "De Datei „%1“ lett sik nich laden"
 
 #: kjsembed/qwidget_binding.cpp:161
 #, kde-format
 msgid "'%1' is not a valid QWidget."
-msgstr "\"%1\" is as QWidget leeg."
+msgstr "„%1“ is as QWidget leeg."
 
 #: kjsembed/qwidget_binding.cpp:170
 msgid "Must supply a widget name."
@@ -226,7 +225,7 @@
 #: kjsembed/slotproxy.cpp:140
 #, kde-format
 msgid "Exception calling '%1' slot from %2:%3:%4"
-msgstr "Utnahm bi Oproop vun Slot \"%1\" vun %2:%3:%4"
+msgstr "Utnahm bi Oproop vun Slot „%1“ vun %2:%3:%4"
 
 #~ msgctxt "NAME OF TRANSLATORS"
 #~ msgid "Your names"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjsembed-4.99.0/po/uk/kjsembed5.po 
new/kjsembed-4.100.0/po/uk/kjsembed5.po
--- old/kjsembed-4.99.0/po/uk/kjsembed5.po      2014-05-05 02:31:33.000000000 
+0200
+++ new/kjsembed-4.100.0/po/uk/kjsembed5.po     2014-06-01 14:25:32.000000000 
+0200
@@ -503,7 +503,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] "Довжина пароля повинна бути щонайменше один символ"
@@ -4232,7 +4232,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 відповідний варіант."
@@ -4480,7 +4480,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] "в той час, як взірець визначає тільки одне захоплення."
@@ -6483,7 +6483,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] ""
@@ -6494,7 +6494,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] "Конфлікт з зареєстрованим загальним скороченням"
@@ -6502,7 +6502,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] "Конфлікт скорочень"
@@ -7202,7 +7202,7 @@
 
 #~ msgid "&Send File"
 #~ msgid_plural "&Send Files"
-#~ msgstr[0] "&Надіслати файли"
+#~ msgstr[0] "&Надіслати файл"
 #~ msgstr[1] "&Надіслати файли"
 #~ msgstr[2] "&Надіслати файли"
 #~ msgstr[3] "&Надіслати файл"
@@ -7812,7 +7812,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] "&Показати заблокований вигульк"
@@ -8734,7 +8734,7 @@
 
 #~ msgid "Loading one preview"
 #~ msgid_plural "Loading %1 previews"
-#~ msgstr[0] "Завантаження %1 ескізу"
+#~ msgstr[0] "Завантаження ескізу"
 #~ msgstr[1] "Завантаження %1 ескізів"
 #~ msgstr[2] "Завантаження %1 ескізів"
 #~ msgstr[3] "Завантаження ескізу"
@@ -8857,14 +8857,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 звантаження"
@@ -8916,7 +8916,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/kjsembed-4.99.0/po/x-test/kjsembed5.po 
new/kjsembed-4.100.0/po/x-test/kjsembed5.po
--- old/kjsembed-4.99.0/po/x-test/kjsembed5.po  2014-05-05 02:31:33.000000000 
+0200
+++ new/kjsembed-4.100.0/po/x-test/kjsembed5.po 1970-01-01 01:00:00.000000000 
+0100
@@ -1,224 +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: kjsembed5\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2014-04-27 20:58+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"
-
-#: kjsembed/builtins.cpp:83 kjsembed/builtins.cpp:117
-#, kde-format
-msgid "Error encountered while processing include '%1' line %2: %3"
-msgstr "xxError encountered while processing include '%1' line %2: %3xx"
-
-#: kjsembed/builtins.cpp:87
-#, kde-format
-msgid "include only takes 1 argument, not %1."
-msgstr "xxinclude only takes 1 argument, not %1.xx"
-
-#: kjsembed/builtins.cpp:120
-#, kde-format
-msgid "File %1 not found."
-msgstr "xxFile %1 not found.xx"
-
-#: kjsembed/builtins.cpp:125
-#, kde-format
-msgid "library only takes 1 argument, not %1."
-msgstr "xxlibrary only takes 1 argument, not %1.xx"
-
-#: kjsembed/builtins.cpp:137
-msgid "Alert"
-msgstr "xxAlertxx"
-
-#: kjsembed/builtins.cpp:147
-msgid "Confirm"
-msgstr "xxConfirmxx"
-
-#: kjsembed/eventproxy.cpp:110
-#, kde-format
-msgid "Bad event handler: Object %1 Identifier %2 Method %3 Type: %4."
-msgstr "xxBad event handler: Object %1 Identifier %2 Method %3 Type: %4.xx"
-
-#: kjsembed/eventproxy.cpp:133
-#, kde-format
-msgid "Exception calling '%1' function from %2:%3:%4"
-msgstr "xxException calling '%1' function from %2:%3:%4xx"
-
-#: kjsembed/fileio.cpp:69
-#, kde-format
-msgid "Could not open file '%1'"
-msgstr "xxCould not open file '%1'xx"
-
-#: kjsembed/fileio.cpp:106
-msgid "Could not create temporary file."
-msgstr "xxCould not create temporary file.xx"
-
-#: kjsembed/kjsembed.cpp:275 kjsembed/kjsembed.cpp:298
-#, kde-format
-msgid "%1 is not a function and cannot be called."
-msgstr "xx%1 is not a function and cannot be called.xx"
-
-#: kjsembed/object_binding.h:214 kjsembed/qobject_binding.cpp:789
-#, kde-format
-msgid "%1 is not an Object type"
-msgstr "xx%1 is not an Object typexx"
-
-#: kjsembed/qaction_binding.cpp:57
-msgid "Action takes 2 args."
-msgstr "xxAction takes 2 args.xx"
-
-#: kjsembed/qaction_binding.cpp:79
-msgid "ActionGroup takes 2 args."
-msgstr "xxActionGroup takes 2 args.xx"
-
-#: kjsembed/qaction_binding.cpp:84
-msgid "Must supply a valid parent."
-msgstr "xxMust supply a valid parent.xx"
-
-#: kjsembed/qformbuilder_binding.cpp:56
-#, kde-format
-msgid "There was an error reading the file '%1'"
-msgstr "xxThere was an error reading the file '%1'xx"
-
-#: kjsembed/qformbuilder_binding.cpp:64
-#, kde-format
-msgid "Could not read file '%1'"
-msgstr "xxCould not read file '%1'xx"
-
-#: kjsembed/qformbuilder_binding.cpp:67 kjsembed/quiloader_binding.cpp:124
-msgid "Must supply a filename."
-msgstr "xxMust supply a filename.xx"
-
-#: kjsembed/qlayout_binding.cpp:87
-#, kde-format
-msgid "'%1' is not a valid QLayout."
-msgstr "xx'%1' is not a valid QLayout.xx"
-
-#: kjsembed/qlayout_binding.cpp:93
-msgid "Must supply a layout name."
-msgstr "xxMust supply a layout name.xx"
-
-#: kjsembed/qobject_binding.cpp:141
-msgid "Wrong object type."
-msgstr "xxWrong object type.xx"
-
-#: kjsembed/qobject_binding.cpp:148
-msgid "First argument must be a QObject."
-msgstr "xxFirst argument must be a QObject.xx"
-
-#: kjsembed/qobject_binding.cpp:182
-msgid "Incorrect number of arguments."
-msgstr "xxIncorrect number of arguments.xx"
-
-#: kjsembed/qobject_binding.cpp:410
-#, kde-format
-msgid "The slot asked for %1 argument"
-msgid_plural "The slot asked for %1 arguments"
-msgstr[0] "xxThe slot asked for %1 argumentsxx"
-
-#: kjsembed/qobject_binding.cpp:411
-#, kde-format
-msgid "but there is only %1 available"
-msgid_plural "but there are only %1 available"
-msgstr[0] "xxbut there are only %1 availablexx"
-
-#: kjsembed/qobject_binding.cpp:412
-#, kde-format
-msgctxt ""
-"%1 is 'the slot asked for foo arguments', %2 is 'but there are only bar "
-"available'"
-msgid "%1, %2."
-msgstr "xx%1, %2.xx"
-
-#: kjsembed/qobject_binding.cpp:629
-#, kde-format
-msgid "Failure to cast to %1 value from Type %2 (%3)"
-msgstr "xxFailure to cast to %1 value from Type %2 (%3)xx"
-
-#: kjsembed/qobject_binding.cpp:661
-#, kde-format
-msgid "No such method '%1'."
-msgstr "xxNo such method '%1'.xx"
-
-#: kjsembed/qobject_binding.cpp:690
-#, kde-format
-msgid "Call to method '%1' failed, unable to get argument %2: %3"
-msgstr "xxCall to method '%1' failed, unable to get argument %2: %3xx"
-
-#: kjsembed/qobject_binding.cpp:727
-#, kde-format
-msgid "Call to '%1' failed."
-msgstr "xxCall to '%1' failed.xx"
-
-#: kjsembed/qobject_binding.cpp:793
-msgid "Could not construct value"
-msgstr "xxCould not construct valuexx"
-
-#: kjsembed/quiloader_binding.cpp:49
-msgid "Not enough arguments."
-msgstr "xxNot enough arguments.xx"
-
-#: kjsembed/quiloader_binding.cpp:68
-msgid "Failed to create Action."
-msgstr "xxFailed to create Action.xx"
-
-#: kjsembed/quiloader_binding.cpp:82
-msgid "Failed to create ActionGroup."
-msgstr "xxFailed to create ActionGroup.xx"
-
-#: kjsembed/quiloader_binding.cpp:90
-msgid "No classname specified"
-msgstr "xxNo classname specifiedxx"
-
-#: kjsembed/quiloader_binding.cpp:98
-msgid "Failed to create Layout."
-msgstr "xxFailed to create Layout.xx"
-
-#: kjsembed/quiloader_binding.cpp:107
-msgid "No classname specified."
-msgstr "xxNo classname specified.xx"
-
-#: kjsembed/quiloader_binding.cpp:115
-msgid "Failed to create Widget."
-msgstr "xxFailed to create Widget.xx"
-
-#: kjsembed/quiloader_binding.cpp:129
-#, kde-format
-msgid "Could not open file '%1': %2"
-msgstr "xxCould not open file '%1': %2xx"
-
-#: kjsembed/quiloader_binding.cpp:137
-#, kde-format
-msgid "Failed to load file '%1'"
-msgstr "xxFailed to load file '%1'xx"
-
-#: kjsembed/qwidget_binding.cpp:161
-#, kde-format
-msgid "'%1' is not a valid QWidget."
-msgstr "xx'%1' is not a valid QWidget.xx"
-
-#: kjsembed/qwidget_binding.cpp:170
-msgid "Must supply a widget name."
-msgstr "xxMust supply a widget name.xx"
-
-#: kjsembed/slotproxy.cpp:117
-#, kde-format
-msgid "Bad slot handler: Object %1 Identifier %2 Method %3 Signature: %4."
-msgstr "xxBad slot handler: Object %1 Identifier %2 Method %3 Signature: %4.xx"
-
-#: kjsembed/slotproxy.cpp:140
-#, kde-format
-msgid "Exception calling '%1' slot from %2:%3:%4"
-msgstr "xxException calling '%1' slot from %2:%3:%4xx"

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to