Hello community,

here is the log from the commit of package kdoctools for openSUSE:Factory 
checked in at 2017-09-19 16:23:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kdoctools (Old)
 and      /work/SRC/openSUSE:Factory/.kdoctools.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kdoctools"

Tue Sep 19 16:23:27 2017 rev:47 rq:526643 version:5.38.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kdoctools/kdoctools.changes      2017-08-24 
18:02:34.674405682 +0200
+++ /work/SRC/openSUSE:Factory/.kdoctools.new/kdoctools.changes 2017-09-19 
16:23:29.902449527 +0200
@@ -1,0 +2,11 @@
+Tue Sep 12 07:11:17 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * CMake: Fix target name shortening when build dir has special characters 
(kde#377573)
+  * Add CC BY-SA 4.0 International and set it as default
+
+-------------------------------------------------------------------

Old:
----
  kdoctools-5.37.0.tar.xz

New:
----
  kdoctools-5.38.0.tar.xz

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

Other differences:
------------------
++++++ kdoctools.spec ++++++
--- /var/tmp/diff_new_pack.m1ftkw/_old  2017-09-19 16:23:30.622347490 +0200
+++ /var/tmp/diff_new_pack.m1ftkw/_new  2017-09-19 16:23:30.626346923 +0200
@@ -18,9 +18,13 @@
 
 %bcond_without lang
 %define lname   libKF5DocTools5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:           kdoctools
-Version:        5.37.0
+Version:        5.38.0
 Release:        0
 %define kf5_version %{version}
 Summary:        Create documentation from DocBook
@@ -34,11 +38,11 @@
 BuildRequires:  cmake >= 3.0
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  docbook_4
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
-BuildRequires:  karchive-devel >= %{_tar_path}
+BuildRequires:  karchive-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel >= %{_tar_path}
+BuildRequires:  ki18n-devel >= %{_kf5_bugfix_version}
 BuildRequires:  libxml2-devel
 BuildRequires:  libxslt-devel
 BuildRequires:  perl-URI

++++++ kdoctools-5.37.0.tar.xz -> kdoctools-5.38.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/CMakeLists.txt 
new/kdoctools-5.38.0/CMakeLists.txt
--- old/kdoctools-5.37.0/CMakeLists.txt 2017-08-06 22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/CMakeLists.txt 2017-09-03 10:05:32.000000000 +0200
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.38.0") # handled by release scripts
 project(KDocTools VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/KF5DocToolsMacros.cmake 
new/kdoctools-5.38.0/KF5DocToolsMacros.cmake
--- old/kdoctools-5.37.0/KF5DocToolsMacros.cmake        2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/KF5DocToolsMacros.cmake        2017-09-03 
10:05:32.000000000 +0200
@@ -91,7 +91,7 @@
 endif(KDOCTOOLS_SERIALIZE_TOOL)
 
 function(_kdoctools_create_target_name out in)
-    string(REGEX REPLACE "^${CMAKE_BINARY_DIR}/?" "" in "${in}")
+    file(RELATIVE_PATH in "${CMAKE_BINARY_DIR}" "${in}")
     string(REGEX REPLACE "[^0-9a-zA-Z]+" "-" tmp "${in}")
     set(${out} ${tmp} PARENT_SCOPE)
 endfunction()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/common/en/ccbysa4-license.html 
new/kdoctools-5.38.0/common/en/ccbysa4-license.html
--- old/kdoctools-5.37.0/common/en/ccbysa4-license.html 1970-01-01 
01:00:00.000000000 +0100
+++ new/kdoctools-5.38.0/common/en/ccbysa4-license.html 2017-09-03 
10:05:32.000000000 +0200
@@ -0,0 +1,141 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+                   "http://www.w3.org/TR/html40/strict.dtd";>
+<HTML LANG="en-US">
+  <HEAD>
+    <TITLE>CC BY-SA 4.0 International</TITLE>
+    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
+    <META HTTP-EQUIV="Content-Language" CONTENT="en-US">
+    <META NAME="description" CONTENT="CC BY-SA 4.0 free documentation license 
(for inclusion in documentation files)">
+    <META NAME="keywords" CONTENT="creative, commons, CC, license, licence, 
software, free software, software license, software licence, CC BY-SA, GNU 
General Public License, documentation licence, documentation license, 
documentation, Attribution-ShareAlike 4.0 International">
+    <META NAME="robots" CONTENT="none">
+    <META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
+    <LINK REL="stylesheet" HREF="kde-default.css" TYPE="text/css">
+  </HEAD>
+  <BODY CLASS="license">
+<h3>Creative Commons Attribution-ShareAlike 4.0 International Public 
License</h3>
+<p>By exercising the Licensed Rights (defined below), You accept and agree to 
be bound by the terms and conditions of this Creative Commons 
Attribution-ShareAlike 4.0 International Public License ("Public License"). To 
the extent this Public License may be interpreted as a contract, You are 
granted the Licensed Rights in consideration of Your acceptance of these terms 
and conditions, and the Licensor grants You such rights in consideration of 
benefits the Licensor receives from making the Licensed Material available 
under these terms and conditions.</p>
+<p id="s1"><strong>Section 1 – Definitions.</strong></p>
+<ol type="a">
+<li id="s1a"><strong>Adapted Material</strong> means material subject to 
Copyright and Similar Rights that is derived from or based upon the Licensed 
Material and in which the Licensed Material is translated, altered, arranged, 
transformed, or otherwise modified in a manner requiring permission under the 
Copyright and Similar Rights held by the Licensor. For purposes of this Public 
License, where the Licensed Material is a musical work, performance, or sound 
recording, Adapted Material is always produced where the Licensed Material is 
synched in timed relation with a moving image.</li>
+<li id="s1b"><strong>Adapter's License</strong> means the license You apply to 
Your Copyright and Similar Rights in Your contributions to Adapted Material in 
accordance with the terms and conditions of this Public License.</li>
+<li id="s1c"><strong>BY-SA Compatible License</strong> means a license listed 
at <a href="//creativecommons.org/compatiblelicenses"> 
creativecommons.org/compatiblelicenses</a>, approved by Creative Commons as 
essentially the equivalent of this Public License.</li>
+<li id="s1d"><strong>Copyright and Similar Rights</strong> means copyright 
and/or similar rights closely related to copyright including, without 
limitation, performance, broadcast, sound recording, and Sui Generis Database 
Rights, without regard to how the rights are labeled or categorized. For 
purposes of this Public License, the rights specified in Section <a 
href="#s2b">2(b)(1)-(2)</a> are not Copyright and Similar Rights.</li>
+<li id="s1e"><strong>Effective Technological Measures</strong> means those 
measures that, in the absence of proper authority, may not
+be circumvented under laws fulfilling obligations under Article 11 of the WIPO 
Copyright Treaty adopted on December 20, 1996, and/or similar
+international agreements.</li>
+<li id="s1f"><strong>Exceptions and Limitations</strong> means fair use, fair 
dealing, and/or any other exception or limitation to Copyright and Similar 
Rights that applies to Your use of the Licensed Material.</li>
+<li id="s1g"><strong>License Elements</strong> means the license attributes 
listed in the name of a Creative Commons Public License. The License Elements 
of this Public License are Attribution and ShareAlike.</li>
+<li id="s1h"><strong>Licensed Material</strong> means the artistic or literary 
work, database, or other material to which the Licensor applied this Public 
License.</li>
+<li id="s1i"><strong>Licensed Rights</strong> means the rights granted to You 
subject to the terms and conditions of this Public License, which are limited 
to all Copyright and Similar Rights that apply to Your use of the Licensed 
Material and that the Licensor has authority to license.</li>
+<li id="s1j"><strong>Licensor</strong> means the individual(s) or entity(ies) 
granting rights under this Public License.</li>
+<li id="s1k"><strong>Share</strong> means to provide material to the public by 
any means or process that requires permission under the Licensed Rights, such 
as reproduction, public display, public performance, distribution, 
dissemination, communication, or importation, and to make material available to 
the public including in ways that members of the public may access the material 
from a place and at a time individually chosen by them.</li>
+<li id="s1l"><strong>Sui Generis Database Rights</strong> means rights other 
than copyright resulting from Directive 96/9/EC of the European Parliament and 
of the Council of 11 March 1996 on the legal protection of databases, as 
amended and/or succeeded, as well as other essentially equivalent rights 
anywhere in the world.</li>
+<li id="s1m"><strong>You</strong> means the individual or entity exercising 
the Licensed Rights under this Public License. <strong>Your</strong> has a 
corresponding meaning.</li>
+</ol>
+<p id="s2"><strong>Section 2 – Scope.</strong></p>
+<ol type="a">
+<li id="s2a"><strong>License grant</strong>.
+<ol>
+<li id="s2a1">Subject to the terms and conditions of this Public License, the 
Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, 
non-exclusive, irrevocable license to exercise the Licensed Rights in the 
Licensed Material to:
+<ol type="A">
+<li id="s2a1A">reproduce and Share the Licensed Material, in whole or in part; 
and</li>
+<li id="s2a1B">produce, reproduce, and Share Adapted Material.</li>
+</ol>
+<li id="s2a2"><span style="text-decoration: underline;">Exceptions and 
Limitations</span>. For the avoidance of doubt, where Exceptions and 
Limitations apply to Your use, this Public License does not apply, and You do 
not need to comply with its terms and conditions.</li>
+<li id="s2a3"><span style="text-decoration: underline;">Term</span>. The term 
of this Public License is specified in Section <a href="#s6a">6(a)</a>.</li>
+<li id="s2a4"><span style="text-decoration: underline;">Media and formats; 
technical modifications allowed</span>. The Licensor authorizes You to exercise 
the Licensed Rights in all media and formats whether now known or hereafter 
created, and to make technical modifications necessary to do so. The Licensor 
waives and/or agrees not to assert any right or authority to forbid You from 
making technical modifications necessary to exercise the Licensed Rights, 
including technical modifications necessary to circumvent Effective 
Technological Measures. For purposes of this Public License, simply making 
modifications authorized by this Section <a href="#s2a4">2(a)(4)</a> never 
produces Adapted Material.</li>
+<li id="s2a5"><span style="text-decoration: underline;">Downstream 
recipients</span>.
+<div class="para">
+<ol type="A">
+<li id="s2a5A"><span style="text-decoration: underline;">Offer from the 
Licensor – Licensed Material</span>. Every recipient of the Licensed Material 
automatically receives an offer from the Licensor to exercise the Licensed 
Rights under the terms and conditions of this Public License.</li>
+<li id="s2a5B"><span style="text-decoration: underline;">Additional offer from 
the Licensor – Adapted Material</span>. Every recipient of Adapted Material 
from You automatically receives an offer from the Licensor to exercise the 
Licensed Rights in the Adapted Material under the conditions of the Adapter’s 
License You apply.</li>
+<li id="s2a5C"><span style="text-decoration: underline;">No downstream 
restrictions</span>. You may not offer or impose any additional or different 
terms or conditions on, or apply any Effective Technological Measures to, the 
Licensed Material if doing so restricts exercise of the Licensed Rights by any 
recipient of the Licensed Material.</li>
+</ol>
+</div>
+<li id="s2a6"><span style="text-decoration: underline;">No endorsement</span>. 
Nothing in this Public License constitutes or may be construed as permission to 
assert or imply that You are, or that Your use of the Licensed Material is, 
connected with, or sponsored, endorsed, or granted official status by, the 
Licensor or others designated to receive attribution as provided in Section <a 
href="#s3a1Ai">3(a)(1)(A)(i)</a>.</li>
+</ol>
+<li id="s2b"><p><strong>Other rights</strong>.</p>
+<ol>
+<li id="s2b1">Moral rights, such as the right of integrity, are not licensed 
under this Public License, nor are publicity, privacy, and/or other similar 
personality rights; however, to the extent possible, the Licensor waives and/or 
agrees not to assert any such rights held by the Licensor to the limited extent 
necessary to allow You to exercise the Licensed Rights, but not otherwise.</li>
+<li id="s2b2">Patent and trademark rights are not licensed under this Public 
License.</li>
+<li id="s2b3">To the extent possible, the Licensor waives any right to collect 
royalties from You for the exercise of the Licensed Rights, whether directly or 
through a collecting society under any voluntary or waivable statutory or 
compulsory licensing scheme. In all other cases the Licensor expressly reserves 
any right to collect such royalties.</li>
+</ol>
+</li>
+</ol>
+<p id="s3"><strong>Section 3 – License Conditions.</strong></p>
+<p>Your exercise of the Licensed Rights is expressly made subject to the 
following conditions.</p>
+<ol type="a">
+<li id="s3a"><p><strong>Attribution</strong>.</p>
+<ol>
+<li id="s3a1"><p>If You Share the Licensed Material (including in modified 
form), You must:</p>
+<ol type="A">
+<li id="s3a1A">retain the following if it is supplied by the Licensor with the 
Licensed Material:
+<ol type="i">
+<li id="s3a1Ai">identification of the creator(s) of the Licensed Material and 
any others designated to receive attribution, in any reasonable manner 
requested by the Licensor (including by pseudonym if designated);</li>
+<li id="s3a1Aii">a copyright notice;</li>
+<li id="s3a1Aiii">a notice that refers to this Public License; </li>
+<li id="s3a1Aiv">a notice that refers to the disclaimer of warranties;</li>
+<li id="s3a1Av">a URI or hyperlink to the Licensed Material to the extent 
reasonably practicable;</li>
+</ol>
+<li id="s3a1B">indicate if You modified the Licensed Material and retain an 
indication of any previous modifications; and</li>
+<li id="s3a1C">indicate the Licensed Material is licensed under this Public 
License,
+and include the text of, or the URI or hyperlink to, this Public
+License.</li>
+</ol>
+</li>
+<li id="s3a2">You may satisfy the conditions in Section <a 
href="#s3a1">3(a)(1)</a> in any reasonable manner based on the medium, means, 
and context in which You Share the Licensed Material. For example, it may be 
reasonable to satisfy the conditions by providing a URI or hyperlink to a 
resource that includes the required information.</li>
+<li id="s3a3">If requested by the Licensor, You must remove any of the 
information required by Section <a href="#s3a1A">3(a)(1)(A)</a> to the extent 
reasonably practicable.</li>
+</ol>
+</li>
+<li id="s3b"><strong>ShareAlike</strong>.
+<p>In addition to the conditions in Section <a href="#s3a">3(a)</a>, if You 
Share Adapted Material You produce, the following conditions also apply.</p>
+<ol>
+<li id="s3b1">The Adapter’s License You apply must be a Creative Commons 
license with the same License Elements, this version or later, or a BY-SA 
Compatible License.</li>
+<li id="s3b2">You must include the text of, or the URI or hyperlink to, the 
Adapter's License You apply. You may satisfy this condition in any reasonable 
manner based on the medium, means, and context in which You Share Adapted 
Material.</li>
+<li id="s3b3">You may not offer or impose any additional or different terms or 
conditions on, or apply any Effective Technological Measures to, Adapted 
Material that restrict exercise of the rights granted under the Adapter's 
License You apply.</li>
+</ol>
+</li>
+</ol>
+<p id="s4"><strong>Section 4 – Sui Generis Database Rights.</strong></p>
+<p>Where the Licensed Rights include Sui Generis Database Rights that apply to 
Your use of the Licensed Material:</p>
+<ol type="a">
+<li id="s4a">for the avoidance of doubt, Section <a href="#s2a1">2(a)(1)</a> 
grants You the right to extract, reuse, reproduce, and Share all or a 
substantial portion of the contents of the database;</li>
+<li id="s4b">if You include all or a substantial portion of the database 
contents in a database in which You have Sui Generis Database Rights, then the 
database in which You have Sui Generis Database Rights (but not its individual 
contents) is Adapted Material, including for purposes of Section <a 
href="#s3b">3(b)</a>; and</li>
+<li id="s4c">You must comply with the conditions in Section <a 
href="#s3a">3(a)</a> if You Share all or a substantial portion of the contents 
of the database.</li>
+</ol>
+For the avoidance of doubt, this Section <a href="#s4">4</a> supplements and 
does not replace Your obligations under this Public License where the Licensed 
Rights include other Copyright and Similar Rights.
+<p id="s5"><strong>Section 5 – Disclaimer of Warranties and Limitation of 
Liability.</strong></p>
+<ol style="font-weight: bold;" type="a">
+<li id="s5a"><strong>Unless otherwise separately undertaken by the Licensor, 
to the extent possible, the Licensor offers the Licensed Material as-is and 
as-available, and makes no representations or warranties of any kind concerning 
the Licensed Material, whether express, implied, statutory, or other. This 
includes, without limitation, warranties of title, merchantability, fitness for 
a particular purpose, non-infringement, absence of latent or other defects, 
accuracy, or the presence or absence of errors, whether or not known or 
discoverable. Where disclaimers of warranties are not allowed in full or in 
part, this disclaimer may not apply to You.</strong></li>
+<li id="s5b"><strong>To the extent possible, in no event will the Licensor be 
liable to You on any legal theory (including, without limitation, negligence) 
or otherwise for any direct, special, indirect, incidental, consequential, 
punitive, exemplary, or other losses, costs, expenses, or damages arising out 
of this Public License or use of the Licensed Material, even if the Licensor 
has been advised of the possibility of such losses, costs, expenses, or 
damages. Where a limitation of liability is not allowed in full or in part, 
this limitation may not apply to You.</strong></li>
+</ol>
+<ol start="3" type="a">
+<li id="s5c">The disclaimer of warranties and limitation of liability provided 
above shall be interpreted in a manner that, to the extent possible, most 
closely approximates an absolute disclaimer and waiver of all liability.</li>
+</ol>
+<p id="s6"><strong>Section 6 – Term and Termination.</strong></p>
+<ol type="a">
+<li id="s6a">This Public License applies for the term of the Copyright and 
Similar Rights licensed here. However, if You fail to comply with this Public 
License, then Your rights under this Public License terminate 
automatically.</li>
+<li id="s6b">
+<p>Where Your right to use the Licensed Material has terminated under Section 
<a href="#s6a">6(a)</a>, it reinstates:</p>
+<ol>
+<li id="s6b1">automatically as of the date the violation is cured, provided it 
is cured within 30 days of Your discovery of the violation; or</li>
+<li id="s6b2">upon express reinstatement by the Licensor.</li>
+</ol>
+For the avoidance of doubt, this Section <a href="#s6b">6(b)</a> does not 
affect any right the Licensor may have to seek remedies for Your violations of 
this Public License.</li>
+<li id="s6c">For the avoidance of doubt, the Licensor may also offer the 
Licensed Material under separate terms or conditions or stop distributing the 
Licensed Material at any time; however, doing so will not terminate this Public 
License.</li>
+<li id="s6d">Sections <a href="#s1">1</a>, <a href="#s5">5</a>, <a 
href="#s6">6</a>, <a href="#s7">7</a>, and <a href="#s8">8</a> survive 
termination of this Public License.</li>
+</ol>
+<p id="s7"><strong>Section 7 – Other Terms and Conditions.</strong></p>
+<ol type="a">
+<li id="s7a">The Licensor shall not be bound by any additional or different 
terms or conditions communicated by You unless expressly agreed.</li>
+<li id="s7b">Any arrangements, understandings, or agreements regarding the 
Licensed Material not stated herein are separate from and independent of the 
terms and conditions of this Public License.</li>
+</ol>
+<p id="s8"><strong>Section 8 – Interpretation.</strong></p>
+<ol type="a">
+<li id="s8a">For the avoidance of doubt, this Public License does not, and 
shall not be interpreted to, reduce, limit, restrict, or impose conditions on 
any use of the Licensed Material that could lawfully be made without permission 
under this Public License.</li>
+<li id="s8b">To the extent possible, if any provision of this Public License 
is deemed unenforceable, it shall be automatically reformed to the minimum 
extent necessary to make it enforceable. If the provision cannot be reformed, 
it shall be severed from this Public License without affecting the 
enforceability of the remaining terms and conditions.</li>
+<li id="s8c">No term or condition of this Public License will be waived and no 
failure to comply consented to unless expressly agreed to by the Licensor.</li>
+<li id="s8d">Nothing in this Public License constitutes or may be interpreted 
as a limitation upon, or waiver of, any privileges and immunities that apply to 
the Licensor or You, including from the legal processes of any jurisdiction or 
authority.</li>
+</ol>
+  </BODY>
+</HTML>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/po/zh_CN/kdoctools5.po 
new/kdoctools-5.38.0/po/zh_CN/kdoctools5.po
--- old/kdoctools-5.37.0/po/zh_CN/kdoctools5.po 2017-08-06 22:32:16.000000000 
+0200
+++ new/kdoctools-5.38.0/po/zh_CN/kdoctools5.po 2017-09-03 10:05:32.000000000 
+0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-03-04 03:56+0100\n"
-"PO-Revision-Date: 2017-08-05 09:29-0400\n"
+"PO-Revision-Date: 2017-08-31 05:10-0400\n"
 "Last-Translator: guoyunhebrave <guoyunhebr...@gmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/af/lang.entities 
new/kdoctools-5.38.0/src/customization/af/lang.entities
--- old/kdoctools-5.37.0/src/customization/af/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/af/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//AF"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//AF"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//AF"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//AF"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//AF"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//AF"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/bg/lang.entities 
new/kdoctools-5.38.0/src/customization/bg/lang.entities
--- old/kdoctools-5.37.0/src/customization/bg/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/bg/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//BG"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//BG"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//BG"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//BG"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//BG"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//BG"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/ca/lang.entities 
new/kdoctools-5.38.0/src/customization/ca/lang.entities
--- old/kdoctools-5.37.0/src/customization/ca/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/ca/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -14,6 +14,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//CA"
   "entities/underLGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//CA"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//CA"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//CA"
@@ -35,6 +37,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//CA"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//CA"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/cs/lang.entities 
new/kdoctools-5.38.0/src/customization/cs/lang.entities
--- old/kdoctools-5.37.0/src/customization/cs/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/cs/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -22,6 +22,8 @@
   "entities/underX11License.docbook"                ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//UK"
  "entities/underLGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//CS"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 
 <!ENTITY reporting.bugs     PUBLIC "-//KDE//DOCUMENT Report Bugs//CS"
   "entities/report-bugs.docbook"                       ><!-- level: ? -->
@@ -35,6 +37,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//CS"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//CS"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/da/lang.entities 
new/kdoctools-5.38.0/src/customization/da/lang.entities
--- old/kdoctools-5.37.0/src/customization/da/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/da/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -14,6 +14,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//DA"
   "entities/underLGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//DA"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//DA"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//DA"
@@ -35,6 +37,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//DA"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//DA"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/de/lang.entities 
new/kdoctools-5.38.0/src/customization/de/lang.entities
--- old/kdoctools-5.37.0/src/customization/de/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/de/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -14,6 +14,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//DE"
   "entities/underLGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//DE"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//DE"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//DE"
@@ -37,6 +39,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//DE"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//DE"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/el/lang.entities 
new/kdoctools-5.38.0/src/customization/el/lang.entities
--- old/kdoctools-5.37.0/src/customization/el/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/el/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//EL"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//EL"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//EL"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//EL"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//EL"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//EL"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/en/catalog.xml 
new/kdoctools-5.38.0/src/customization/en/catalog.xml
--- old/kdoctools-5.37.0/src/customization/en/catalog.xml       2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/en/catalog.xml       2017-09-03 
10:05:32.000000000 +0200
@@ -15,6 +15,8 @@
           uri="entities/underGPL.docbook"/> 
   <public publicId="-//KDE//DOCUMENT LGPL Licence Declaration//EN"
           uri="entities/underLGPL.docbook"/> 
+  <public publicId="-//KDE//DOCUMENT CC BY-SA 4.0 Licence Declaration//EN"
+          uri="entities/underCCBYSA4.docbook"/>
   <public publicId="-//KDE//DOCUMENT FDL Licence Declaration//EN"
           uri="entities/underFDL.docbook"/>
   <public publicId="-//KDE//DOCUMENT BSD Licence Declaration//EN"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.37.0/src/customization/en/entities/ccbysa4-notice.docbook 
new/kdoctools-5.38.0/src/customization/en/entities/ccbysa4-notice.docbook
--- old/kdoctools-5.37.0/src/customization/en/entities/ccbysa4-notice.docbook   
1970-01-01 01:00:00.000000000 +0100
+++ new/kdoctools-5.38.0/src/customization/en/entities/ccbysa4-notice.docbook   
2017-09-03 10:05:32.000000000 +0200
@@ -0,0 +1,4 @@
+<para>Permission is granted to copy, distribute and/or modify this
+document under the terms of the Creative Commons
+Attribution-ShareAlike 4.0 International or any later.
+A copy of the license is included in <xref linkend="cc-by-sa-4"/>.</para>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.37.0/src/customization/en/entities/underCCBYSA4.docbook 
new/kdoctools-5.38.0/src/customization/en/entities/underCCBYSA4.docbook
--- old/kdoctools-5.37.0/src/customization/en/entities/underCCBYSA4.docbook     
1970-01-01 01:00:00.000000000 +0100
+++ new/kdoctools-5.38.0/src/customization/en/entities/underCCBYSA4.docbook     
2017-09-03 10:05:32.000000000 +0200
@@ -0,0 +1,3 @@
+<para id="cc-by-sa-4" xreflabel="the credits and license section">This 
documentation is licensed
+under the terms of the <ulink type="commondoc" 
url="ccbysa4-license.html">Creative
+Commons Attribution-ShareAlike 4.0 International</ulink>.</para>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/en/lang.entities 
new/kdoctools-5.38.0/src/customization/en/lang.entities
--- old/kdoctools-5.37.0/src/customization/en/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/en/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -16,6 +16,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//EN"
   "entities/underLGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//EN"
+  "entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//EN"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//EN"
@@ -41,6 +43,9 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//EN"
+         "entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//EN"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.37.0/src/customization/en-GB/lang.entities 
new/kdoctools-5.38.0/src/customization/en-GB/lang.entities
--- old/kdoctools-5.37.0/src/customization/en-GB/lang.entities  2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/en-GB/lang.entities  2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//ENGB"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//ENGB"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//ENGB"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//ENGB"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//ENGB"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation 
Notice//ENGB"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.37.0/src/customization/entities/general.entities 
new/kdoctools-5.38.0/src/customization/entities/general.entities
--- old/kdoctools-5.37.0/src/customization/entities/general.entities    
2017-08-06 22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/entities/general.entities    
2017-09-03 10:05:32.000000000 +0200
@@ -59,6 +59,7 @@
   "http://www.gnu.org/copyleft/fdl.html";
   NDATA linespecific                                                 >
 <!-- FDLNotice is defined in lang.entities (why?) -->
+<!-- CCBYSA4Notice is defined in lang.entities (translatable) -->
 
 <!-- add docbook versions of licenses -->
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/eo/lang.entities 
new/kdoctools-5.38.0/src/customization/eo/lang.entities
--- old/kdoctools-5.37.0/src/customization/eo/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/eo/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//EO"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//EO"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//EO"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//EO"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//EO"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//EO"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/es/lang.entities 
new/kdoctools-5.38.0/src/customization/es/lang.entities
--- old/kdoctools-5.37.0/src/customization/es/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/es/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -14,6 +14,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//ES"
   "entities/underLGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//ES"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//ES"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//ES"
@@ -35,6 +37,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//ES"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//ES"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/et/lang.entities 
new/kdoctools-5.38.0/src/customization/et/lang.entities
--- old/kdoctools-5.37.0/src/customization/et/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/et/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -14,6 +14,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//ET"
   "entities/underLGPL.docbook"                      ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//ET"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//ET"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//ET"
@@ -35,6 +37,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//ET"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//ET"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/fi/lang.entities 
new/kdoctools-5.38.0/src/customization/fi/lang.entities
--- old/kdoctools-5.37.0/src/customization/fi/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/fi/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//FI"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//FI"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//FI"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//FI"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//FI"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//FI"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/fo/lang.entities 
new/kdoctools-5.38.0/src/customization/fo/lang.entities
--- old/kdoctools-5.37.0/src/customization/fo/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/fo/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//FO"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//FO"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//FO"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//FO"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//FO"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//FO"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/fr/lang.entities 
new/kdoctools-5.38.0/src/customization/fr/lang.entities
--- old/kdoctools-5.37.0/src/customization/fr/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/fr/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -14,6 +14,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//EN"
   "entities/underLGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//FR"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//FR"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//FR"
@@ -35,6 +37,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//FR"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//FR"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/gl/lang.entities 
new/kdoctools-5.38.0/src/customization/gl/lang.entities
--- old/kdoctools-5.37.0/src/customization/gl/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/gl/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -14,6 +14,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//GL"
   "entities/underLGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//GL"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//GL"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//GL"
@@ -35,6 +37,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//GL"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//GL"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/he/lang.entities 
new/kdoctools-5.38.0/src/customization/he/lang.entities
--- old/kdoctools-5.37.0/src/customization/he/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/he/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//HE"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//HE"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//HE"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//HE"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//HE"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//HE"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/hu/lang.entities 
new/kdoctools-5.38.0/src/customization/hu/lang.entities
--- old/kdoctools-5.37.0/src/customization/hu/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/hu/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//HU"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//HU"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//HU"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//HU"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//HU"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//HU"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/id/lang.entities 
new/kdoctools-5.38.0/src/customization/id/lang.entities
--- old/kdoctools-5.37.0/src/customization/id/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/id/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//ID"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//ID"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//ID"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//ID"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//ID"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//ID"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/it/lang.entities 
new/kdoctools-5.38.0/src/customization/it/lang.entities
--- old/kdoctools-5.37.0/src/customization/it/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/it/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -14,6 +14,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//IT"
   "entities/underLGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//IT"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//IT"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//IT"
@@ -35,6 +37,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//IT"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//IT"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/ja/lang.entities 
new/kdoctools-5.38.0/src/customization/ja/lang.entities
--- old/kdoctools-5.37.0/src/customization/ja/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/ja/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//JA"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//JA"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//JA"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//JA"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//JA"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//JA"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/ko/lang.entities 
new/kdoctools-5.38.0/src/customization/ko/lang.entities
--- old/kdoctools-5.37.0/src/customization/ko/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/ko/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//KO"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//KO"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//KO"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//KO"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//KO"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//KO"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/lt/lang.entities 
new/kdoctools-5.38.0/src/customization/lt/lang.entities
--- old/kdoctools-5.37.0/src/customization/lt/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/lt/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -14,6 +14,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//EN"
   "entities/underLGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//LT"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//LT"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//LT"
@@ -35,6 +37,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//LT"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//LT"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/nds/lang.entities 
new/kdoctools-5.38.0/src/customization/nds/lang.entities
--- old/kdoctools-5.37.0/src/customization/nds/lang.entities    2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/nds/lang.entities    2017-09-03 
10:05:32.000000000 +0200
@@ -14,6 +14,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//NDS"
   "entities/underLGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//NDS"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//NDS"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//NDS"
@@ -37,6 +39,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//NDS"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//NDS"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/nl/lang.entities 
new/kdoctools-5.38.0/src/customization/nl/lang.entities
--- old/kdoctools-5.37.0/src/customization/nl/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/nl/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -14,6 +14,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL           PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//NL"
   "entities/underLGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//NL"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//NL"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//NL"
@@ -35,6 +37,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//NL"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//NL"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/nn/lang.entities 
new/kdoctools-5.38.0/src/customization/nn/lang.entities
--- old/kdoctools-5.37.0/src/customization/nn/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/nn/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//NN"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//NN"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//NN"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//NN"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//NN"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//NN"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/no/lang.entities 
new/kdoctools-5.38.0/src/customization/no/lang.entities
--- old/kdoctools-5.37.0/src/customization/no/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/no/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//NO"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//NO"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//NO"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//NO"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//NO"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//NO"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/pl/lang.entities 
new/kdoctools-5.38.0/src/customization/pl/lang.entities
--- old/kdoctools-5.37.0/src/customization/pl/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/pl/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -14,6 +14,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL           PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//PL"
   "entities/underLGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//PL"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//PL"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//PL"
@@ -35,6 +37,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//PL"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//PL"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/pt/lang.entities 
new/kdoctools-5.38.0/src/customization/pt/lang.entities
--- old/kdoctools-5.37.0/src/customization/pt/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/pt/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -14,6 +14,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL           PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//PT"
   "entities/underLGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//PT"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//PT"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//PT"
@@ -35,6 +37,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//PT"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//PT"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.37.0/src/customization/pt-BR/lang.entities 
new/kdoctools-5.38.0/src/customization/pt-BR/lang.entities
--- old/kdoctools-5.37.0/src/customization/pt-BR/lang.entities  2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/pt-BR/lang.entities  2017-09-03 
10:05:32.000000000 +0200
@@ -14,6 +14,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//PTBR"
   "entities/underLGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//PTBR"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//PTBR"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//PTBR"
@@ -39,6 +41,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//PTBR"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation 
Notice//PTBR"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/ro/lang.entities 
new/kdoctools-5.38.0/src/customization/ro/lang.entities
--- old/kdoctools-5.37.0/src/customization/ro/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/ro/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//RO"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//RO"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//RO"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//RO"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//RO"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//RO"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/ru/lang.entities 
new/kdoctools-5.38.0/src/customization/ru/lang.entities
--- old/kdoctools-5.37.0/src/customization/ru/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/ru/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -14,6 +14,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//RU"
   "entities/underLGPL.docbook"                     ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//RU"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//RU"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//RU"
@@ -39,6 +41,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//RU"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//RU"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/sk/lang.entities 
new/kdoctools-5.38.0/src/customization/sk/lang.entities
--- old/kdoctools-5.37.0/src/customization/sk/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/sk/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//SK"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//SK"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//SK"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//SK"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//SK"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//SK"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/sl/lang.entities 
new/kdoctools-5.38.0/src/customization/sl/lang.entities
--- old/kdoctools-5.37.0/src/customization/sl/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/sl/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//SL"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//SL"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//SL"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//SL"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//SL"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//SL"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/sq/lang.entities 
new/kdoctools-5.38.0/src/customization/sq/lang.entities
--- old/kdoctools-5.37.0/src/customization/sq/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/sq/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -16,6 +16,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//SQ"
   "entities/underLGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//SQ"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//SQ"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//SQ"
@@ -37,6 +39,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//SQ"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//SQ"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/sr/lang.entities 
new/kdoctools-5.38.0/src/customization/sr/lang.entities
--- old/kdoctools-5.37.0/src/customization/sr/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/sr/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -16,6 +16,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//SR"
   "entities/underLGPL.docbook"                      ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//SR"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//SR"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//SR"
@@ -37,6 +39,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//SR"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//SR"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.37.0/src/customization/sr@ijekavian/lang.entities 
new/kdoctools-5.38.0/src/customization/sr@ijekavian/lang.entities
--- old/kdoctools-5.37.0/src/customization/sr@ijekavian/lang.entities   
2017-08-06 22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/sr@ijekavian/lang.entities   
2017-09-03 10:05:32.000000000 +0200
@@ -16,6 +16,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//SRIJEKAVIAN"
   "entities/underLGPL.docbook"                      ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//SRIJEKAVIAN"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//SRIJEKAVIAN"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//SRIJEKAVIAN"
@@ -37,6 +39,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//SRIJEKAVIAN"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation 
Notice//SRIJEKAVIAN"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.37.0/src/customization/sr@ijekavianlatin/lang.entities 
new/kdoctools-5.38.0/src/customization/sr@ijekavianlatin/lang.entities
--- old/kdoctools-5.37.0/src/customization/sr@ijekavianlatin/lang.entities      
2017-08-06 22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/sr@ijekavianlatin/lang.entities      
2017-09-03 10:05:32.000000000 +0200
@@ -16,6 +16,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//SRIJEKAVIANLATIN"
   "entities/underLGPL.docbook"                      ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//SRIJEKAVIANLATIN"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//SRIJEKAVIANLATIN"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//SRIJEKAVIANLATIN"
@@ -37,6 +39,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//SRIJEKAVIANLATIN"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation 
Notice//SRIJEKAVIANLATIN"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.37.0/src/customization/sr@latin/lang.entities 
new/kdoctools-5.38.0/src/customization/sr@latin/lang.entities
--- old/kdoctools-5.37.0/src/customization/sr@latin/lang.entities       
2017-08-06 22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/sr@latin/lang.entities       
2017-09-03 10:05:32.000000000 +0200
@@ -16,6 +16,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//SRLATIN"
   "entities/underLGPL.docbook"                      ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//SRLATIN"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//SRLATIN"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//SRLATIN"
@@ -37,6 +39,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//SRLATIN"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation 
Notice//SRLATIN"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/sv/lang.entities 
new/kdoctools-5.38.0/src/customization/sv/lang.entities
--- old/kdoctools-5.37.0/src/customization/sv/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/sv/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//SV"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//SV"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//SV"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//SV"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//SV"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//SV"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/th/lang.entities 
new/kdoctools-5.38.0/src/customization/th/lang.entities
--- old/kdoctools-5.37.0/src/customization/th/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/th/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -14,6 +14,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//TH"
   "entities/underLGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//TH"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//TH"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//TH"
@@ -35,6 +37,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//TH"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//TH"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/tr/lang.entities 
new/kdoctools-5.38.0/src/customization/tr/lang.entities
--- old/kdoctools-5.37.0/src/customization/tr/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/tr/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//TR"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//TR"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//TR"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//TR"
@@ -34,6 +36,12 @@
 
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//TR"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//TR"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/uk/lang.entities 
new/kdoctools-5.38.0/src/customization/uk/lang.entities
--- old/kdoctools-5.37.0/src/customization/uk/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/uk/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -14,6 +14,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//UK"
   "entities/underLGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//UK"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//UK"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//UK"
@@ -35,6 +37,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//UK"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//UK"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/wa/lang.entities 
new/kdoctools-5.38.0/src/customization/wa/lang.entities
--- old/kdoctools-5.37.0/src/customization/wa/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/wa/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//WA"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//WA"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//WA"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//WA"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//WA"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//WA"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/xh/lang.entities 
new/kdoctools-5.38.0/src/customization/xh/lang.entities
--- old/kdoctools-5.37.0/src/customization/xh/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/xh/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//XH"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//XH"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//XH"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//XH"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//XH"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//XH"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/customization/xx/lang.entities 
new/kdoctools-5.38.0/src/customization/xx/lang.entities
--- old/kdoctools-5.37.0/src/customization/xx/lang.entities     2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/xx/lang.entities     2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//XX"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//XX"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//XX"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//XX"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//XX"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//XX"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.37.0/src/customization/zh-CN/lang.entities 
new/kdoctools-5.38.0/src/customization/zh-CN/lang.entities
--- old/kdoctools-5.37.0/src/customization/zh-CN/lang.entities  2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/zh-CN/lang.entities  2017-09-03 
10:05:32.000000000 +0200
@@ -16,6 +16,8 @@
   "entities/underGPL.docbook"                       ><!-- level: para -->
 <!ENTITY underLGPL          PUBLIC "-//KDE//DOCUMENT LGPL Licence 
Declaration//ZHCN"
   "entities/underLGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//ZHCN"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//ZHCN"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//ZHCN"
@@ -37,6 +39,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//ZHCN"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation 
Notice//ZHCN"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.37.0/src/customization/zh-TW/lang.entities 
new/kdoctools-5.38.0/src/customization/zh-TW/lang.entities
--- old/kdoctools-5.37.0/src/customization/zh-TW/lang.entities  2017-08-06 
22:32:16.000000000 +0200
+++ new/kdoctools-5.38.0/src/customization/zh-TW/lang.entities  2017-09-03 
10:05:32.000000000 +0200
@@ -12,6 +12,8 @@
 <!-- Licence links -->
 <!ENTITY underGPL           PUBLIC "-//KDE//DOCUMENT GPL Licence 
Declaration//ZHTW"
   "entities/underGPL.docbook"                       ><!-- level: para -->
+<!ENTITY underCCBYSA4       PUBLIC "-//KDE//DOCUMENT CC BY-SA 4.0 Licence 
Declaration//ZHTW"
+  "../en/entities/underCCBYSA4.docbook"                   ><!-- level: para -->
 <!ENTITY underFDL           PUBLIC "-//KDE//DOCUMENT FDL Licence 
Declaration//ZHTW"
   "entities/underFDL.docbook"                       ><!-- level: para -->
 <!ENTITY underBSDLicense    PUBLIC "-//KDE//DOCUMENT BSD Licence 
Declaration//ZHTW"
@@ -33,6 +35,12 @@
   "entities/install-compile.docbook"                     ><!-- level: para -->
 
 
+<!-- CC BY-SA 4 notice -->
+<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
+and change the reference from English version to the translated document
+and remove this comment. -->
+<!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//ZHTW"
+         "../en/entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation 
Notice//ZHTW"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.37.0/src/template.docbook 
new/kdoctools-5.38.0/src/template.docbook
--- old/kdoctools-5.37.0/src/template.docbook   2017-08-06 22:32:16.000000000 
+0200
+++ new/kdoctools-5.38.0/src/template.docbook   2017-09-03 10:05:32.000000000 
+0200
@@ -17,7 +17,10 @@
 Rename this template to index.docbook and place into the directory doc/ or 
doc/appname if you have several applications in one doc directory
 -->
 
-<!-- kdoctemplate v0.12.0 2016-04-23 lueck
+<!-- kdoctemplate v0.13.0 2017-07-31 ltoscano
+     add CC BY-SA 4.0 International and set as default
+
+     kdoctemplate v0.12.0 2016-04-23 lueck
      add translatable entities
      remove help.menu.documentation entity
      and add some examples how to use the common menus Settings and Help
@@ -106,7 +109,7 @@
 <year>2015</year>
 <holder>George N. Ugnacious</holder>
 </copyright>
-<legalnotice>&FDLNotice;</legalnotice>
+<legalnotice>&CCBYSA4Notice;</legalnotice>
 
 <!-- Date of the documentation
 Change date/releaseinfo only if
@@ -433,12 +436,19 @@
 
 <!-- TRANS:CREDIT_FOR_TRANSLATORS -->
 
-&underFDL;               <!-- FDL: do not remove -->
+<!-- License for new documents after 2017-07-27 (or relicensed) -->
+
+&underCCBYSA4;           <!-- CC BY-SA 4.0: do not remove -->
+
+<!-- FDL: old license; only for reference (and old documents) -->
+<!--
+&underFDL;
+-->
 
 <!-- Determine which license your application is licensed under,
      and delete all the remaining licenses below:
 
-     (NOTE:  All documentation are licensed under the FDL,
+     (NOTE:  All documentation are licensed under the CC BY-SA 4.0,
      regardless of what license the application uses) -->
 
 &underGPL;              <!-- GPL License -->


Reply via email to