extras/CustomTarget_templates.mk                                    |    2 
 extras/Package_templates.mk                                         |    1 
 extras/source/templates/l10n/ja_ott_normal/META-INF/manifest.xml    |   11 
 extras/source/templates/l10n/ja_ott_normal/Thumbnails/thumbnail.png |binary
 extras/source/templates/l10n/ja_ott_normal/content.xml              |   58 ++
 extras/source/templates/l10n/ja_ott_normal/manifest.rdf             |   18 
 extras/source/templates/l10n/ja_ott_normal/meta.xml                 |   13 
 extras/source/templates/l10n/ja_ott_normal/mimetype                 |    1 
 extras/source/templates/l10n/ja_ott_normal/settings.xml             |   12 
 extras/source/templates/l10n/ja_ott_normal/styles.xml               |  284 
++++++++++
 include/sfx2/strings.hrc                                            |    1 
 sfx2/inc/strings.hxx                                                |    1 
 sfx2/source/doc/doctempl.cxx                                        |    6 
 13 files changed, 406 insertions(+), 2 deletions(-)

New commits:
commit feeb3a4604daa113894bdaa8c8698e0ded97050c
Author:     Jun Nogata <noga...@gmail.com>
AuthorDate: Thu Aug 17 21:04:47 2023 +0900
Commit:     Thorsten Behrens <thorsten.behr...@allotropia.de>
CommitDate: Thu Aug 24 17:00:40 2023 +0200

    Template: tdf#86483: Add Japanese template to the Localization category
    
    As Kevin Suo noted in tdf#86483, CJK and CTL use different formatting than
    the US and Europe. Japanese is no exception, and must be formatted according
    to Japanese typesetting rules[1][2] before the document is created. However,
    many Japanese language users use LibreOffice without knowing this, resulting
    in strange Japanese documents. This template sets up the necessary Japanese
    formatting to reduce this.
    
    Originally, the template was supposed to be provided by the language pack.
    However, since a localization category was created, we thought it would be
    a good idea to provide the template first, as we did with Chinese, so we
    added it.
    
    This template has the following settings And the template is inspired by
    the OpenOffice.org Japanese Environment Improvement Extension Template[3]
    and Kevin Suo's Chinese template, which we have previously attempted to do
    the same.
    
    * Western and Asian languages are in the same font.
    * Paragraphs have been set to be justified.
    * Japanese paragraphs are originally indented by one character. However,
      since some documents do not use it, it is not set. Instead, the original
      Japanese paragraphs are set to First line indent style.
    * Italics has been removed from the style. Japanese does not use italics.
    
    [1] Requirements for Japanese Text Layout:
        <https://www.w3.org/TR/jlreq/>
    [2] Japanese Industrial Standards - JIS X 4051:2004(Japanese):
        <https://kikakurui.com/x4/X4051-2004-02.html>
    [3] OpenOffice.org Japanese Environment Improvement Extension:
        <https://ja.osdn.net/projects/openoffice-docj/releases/40804#note>
    
    Change-Id: Ieaf57c8e018d479e7922fbd9d616b9a6c271b1ba
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155764
    Tested-by: Jenkins
    Reviewed-by: Thorsten Behrens <thorsten.behr...@allotropia.de>

diff --git a/extras/CustomTarget_templates.mk b/extras/CustomTarget_templates.mk
index c6bea14a27df..f64faeb7e359 100644
--- a/extras/CustomTarget_templates.mk
+++ b/extras/CustomTarget_templates.mk
@@ -38,6 +38,8 @@ extras_TEMPLATES_XMLFILES := \
        draw/bpmn/meta.xml \
        l10n/zh_CN_ott_normal/meta.xml \
        l10n/zh_CN_ott_normal/content.xml \
+       l10n/ja_ott_normal/meta.xml \
+       l10n/ja_ott_normal/content.xml \
 
 # param: style-base (e.g. Modern)
 extras_TEMPLATES_XMLFILES_RELATIVE = $(subst $(1)/,,$(filter 
$(1)/%,$(extras_TEMPLATES_XMLFILES)))
diff --git a/extras/Package_templates.mk b/extras/Package_templates.mk
index af119188339a..4ffdaa950d6a 100644
--- a/extras/Package_templates.mk
+++ b/extras/Package_templates.mk
@@ -20,6 +20,7 @@ $(eval $(call 
gb_Package_add_files_with_dir,extras_templates,$(LIBO_SHARE_FOLDER
        styles/Simple.ott \
        draw/bpmn.otg \
        l10n/zh_CN_ott_normal.ott \
+       l10n/ja_ott_normal.ott \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/extras/source/templates/l10n/ja_ott_normal/META-INF/manifest.xml 
b/extras/source/templates/l10n/ja_ott_normal/META-INF/manifest.xml
new file mode 100644
index 000000000000..9f3cd2c637d7
--- /dev/null
+++ b/extras/source/templates/l10n/ja_ott_normal/META-INF/manifest.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<manifest:manifest 
xmlns:manifest="urn:oasis:names:tc:opendocument:xmlns:manifest:1.0" 
manifest:version="1.3"
+  
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0">
+  <manifest:file-entry manifest:full-path="/" manifest:version="1.3" 
manifest:media-type="application/vnd.oasis.opendocument.text-template"/>
+  <manifest:file-entry manifest:full-path="manifest.rdf" 
manifest:media-type="application/rdf+xml"/>
+  <manifest:file-entry manifest:full-path="meta.xml" 
manifest:media-type="text/xml"/>
+  <manifest:file-entry manifest:full-path="content.xml" 
manifest:media-type="text/xml"/>
+  <manifest:file-entry manifest:full-path="settings.xml" 
manifest:media-type="text/xml"/>
+  <manifest:file-entry manifest:full-path="styles.xml" 
manifest:media-type="text/xml"/>
+  <manifest:file-entry manifest:full-path="Thumbnails/thumbnail.png" 
manifest:media-type="image/png"/>
+</manifest:manifest>
diff --git 
a/extras/source/templates/l10n/ja_ott_normal/Thumbnails/thumbnail.png 
b/extras/source/templates/l10n/ja_ott_normal/Thumbnails/thumbnail.png
new file mode 100644
index 000000000000..9dfda9ab1bbf
Binary files /dev/null and 
b/extras/source/templates/l10n/ja_ott_normal/Thumbnails/thumbnail.png differ
diff --git a/extras/source/templates/l10n/ja_ott_normal/content.xml 
b/extras/source/templates/l10n/ja_ott_normal/content.xml
new file mode 100644
index 000000000000..200fca2e9906
--- /dev/null
+++ b/extras/source/templates/l10n/ja_ott_normal/content.xml
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<office:document-content xmlns:css3t="http://www.w3.org/TR/css3-text/";
+  xmlns:grddl="http://www.w3.org/2003/g/data-view#";
+  xmlns:xhtml="http://www.w3.org/1999/xhtml";
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+  xmlns:xsd="http://www.w3.org/2001/XMLSchema";
+  xmlns:xforms="http://www.w3.org/2002/xforms";
+  xmlns:dom="http://www.w3.org/2001/xml-events";
+  xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0"
+  xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0"
+  xmlns:math="http://www.w3.org/1998/Math/MathML";
+  xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0"
+  xmlns:ooo="http://openoffice.org/2004/office";
+  xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0"
+  xmlns:ooow="http://openoffice.org/2004/writer";
+  xmlns:xlink="http://www.w3.org/1999/xlink";
+  xmlns:drawooo="http://openoffice.org/2010/draw";
+  xmlns:oooc="http://openoffice.org/2004/calc";
+  xmlns:dc="http://purl.org/dc/elements/1.1/";
+  
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
+  xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0"
+  xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0"
+  xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2"
+  xmlns:tableooo="http://openoffice.org/2009/table";
+  xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0"
+  xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0"
+  xmlns:rpt="http://openoffice.org/2005/report";
+  
xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0"
+  xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0"
+  xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0"
+  xmlns:officeooo="http://openoffice.org/2009/office";
+  xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0"
+  xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0"
+  
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
+  xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0"
+  
xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
office:version="1.3">
+  <office:scripts />
+  <office:font-face-decls>
+    <style:font-face style:name="Noto Serif CJK JP" 
svg:font-family="&apos;Noto Serif CJK JP&apos;, &apos;Noto Serif JP&apos;, 游明朝, 
游明朝体" style:font-family-generic="system" />
+    <style:font-face style:name="Noto Sans CJK JP" svg:font-family="&apos;Noto 
Sans CJK JP&apos;, &apos;Noto Sans JP&apos;, 游ゴシック, 游ゴシック体" 
style:font-family-generic="system" />
+    <style:font-face style:name="Noto Sans Mono CJK JP" 
svg:font-family="&apos;Noto Sans Mono CJK JP&apos;, 游ゴシック, 游ゴシック体" 
style:font-family-generic="modern" style:font-pitch="fixed" />
+    <style:font-face style:name="Noto Serif CJK JP:ruby" 
svg:font-family="&apos;Noto Serif CJK JP:ruby&apos;, &apos;Noto Serif 
JP:ruby&apos;, 游明朝:ruby, 游明朝体:ruby" style:font-family-generic="roman" 
style:font-pitch="variable" />
+    <style:font-face style:name="OpenSymbol" svg:font-family="OpenSymbol" 
style:font-charset="x-symbol" />
+  </office:font-face-decls>
+  <office:automatic-styles />
+  <office:body>
+    <office:text>
+      <text:sequence-decls>
+        <text:sequence-decl text:display-outline-level="0" 
text:name="Illustration" />
+        <text:sequence-decl text:display-outline-level="0" text:name="Table" />
+        <text:sequence-decl text:display-outline-level="0" text:name="Text" />
+        <text:sequence-decl text:display-outline-level="0" text:name="Drawing" 
/>
+        <text:sequence-decl text:display-outline-level="0" text:name="Figure" 
/>
+      </text:sequence-decls>
+      <text:p text:style-name="Text_20_body" />
+    </office:text>
+  </office:body>
+</office:document-content>
diff --git a/extras/source/templates/l10n/ja_ott_normal/manifest.rdf 
b/extras/source/templates/l10n/ja_ott_normal/manifest.rdf
new file mode 100644
index 000000000000..927e206bb226
--- /dev/null
+++ b/extras/source/templates/l10n/ja_ott_normal/manifest.rdf
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="utf-8"?>
+<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";>
+  <rdf:Description rdf:about="styles.xml">
+    <rdf:type 
rdf:resource="http://docs.oasis-open.org/ns/office/1.2/meta/odf#StylesFile"/>
+  </rdf:Description>
+  <rdf:Description rdf:about="">
+    <ns0:hasPart 
xmlns:ns0="http://docs.oasis-open.org/ns/office/1.2/meta/pkg#"; 
rdf:resource="styles.xml"/>
+  </rdf:Description>
+  <rdf:Description rdf:about="content.xml">
+    <rdf:type 
rdf:resource="http://docs.oasis-open.org/ns/office/1.2/meta/odf#ContentFile"/>
+  </rdf:Description>
+  <rdf:Description rdf:about="">
+    <ns0:hasPart 
xmlns:ns0="http://docs.oasis-open.org/ns/office/1.2/meta/pkg#"; 
rdf:resource="content.xml"/>
+  </rdf:Description>
+  <rdf:Description rdf:about="">
+    <rdf:type 
rdf:resource="http://docs.oasis-open.org/ns/office/1.2/meta/pkg#Document"/>
+  </rdf:Description>
+</rdf:RDF>
diff --git a/extras/source/templates/l10n/ja_ott_normal/meta.xml 
b/extras/source/templates/l10n/ja_ott_normal/meta.xml
new file mode 100644
index 000000000000..23d86cc16906
--- /dev/null
+++ b/extras/source/templates/l10n/ja_ott_normal/meta.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<office:document-meta xmlns:grddl="http://www.w3.org/2003/g/data-view#";
+  xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0"
+  xmlns:dc="http://purl.org/dc/elements/1.1/";
+  xmlns:xlink="http://www.w3.org/1999/xlink";
+  xmlns:ooo="http://openoffice.org/2004/office";
+  xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" 
office:version="1.3">
+  <office:meta>
+    <dc:language>ja-JP</dc:language>
+    <dc:title></dc:title>
+    <dc:description></dc:description>
+  </office:meta>
+</office:document-meta>
diff --git a/extras/source/templates/l10n/ja_ott_normal/mimetype 
b/extras/source/templates/l10n/ja_ott_normal/mimetype
new file mode 100644
index 000000000000..6a297d887997
--- /dev/null
+++ b/extras/source/templates/l10n/ja_ott_normal/mimetype
@@ -0,0 +1 @@
+application/vnd.oasis.opendocument.text-template
\ No newline at end of file
diff --git a/extras/source/templates/l10n/ja_ott_normal/settings.xml 
b/extras/source/templates/l10n/ja_ott_normal/settings.xml
new file mode 100644
index 000000000000..adfcea835d13
--- /dev/null
+++ b/extras/source/templates/l10n/ja_ott_normal/settings.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<office:document-settings 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0"
+  xmlns:xlink="http://www.w3.org/1999/xlink";
+  xmlns:ooo="http://openoffice.org/2004/office";
+  xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" 
office:version="1.3">
+  <office:settings>
+    <config:config-item-set config:name="ooo:configuration-settings">
+      <config:config-item config:name="CharacterCompressionType" 
config:type="short">1</config:config-item>
+      <config:config-item config:name="IsKernAsianPunctuation" 
config:type="boolean">true</config:config-item>
+    </config:config-item-set>
+  </office:settings>
+</office:document-settings>
diff --git a/extras/source/templates/l10n/ja_ott_normal/styles.xml 
b/extras/source/templates/l10n/ja_ott_normal/styles.xml
new file mode 100644
index 000000000000..41dea6d550d5
--- /dev/null
+++ b/extras/source/templates/l10n/ja_ott_normal/styles.xml
@@ -0,0 +1,284 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<office:document-styles xmlns:css3t="http://www.w3.org/TR/css3-text/"; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#"; 
xmlns:xhtml="http://www.w3.org/1999/xhtml"; 
xmlns:dom="http://www.w3.org/2001/xml-events"; 
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML"; 
xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" 
xmlns:ooo="http://openoffice.org/2004/office"; 
xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" 
xmlns:ooow="http://openoffice.org/2004/writer"; 
xmlns:xlink="http://www.w3.org/1999/xlink"; 
xmlns:drawooo="http://openoffice.org/2010/draw"; 
xmlns:oooc="http://openoffice.org/2004/calc"; 
xmlns:dc="http://purl.org/dc/elements/1.1/"; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" 
xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" x
 mlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:tableooo="http://openoffice.org/2009/table"; 
xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:rpt="http://openoffice.org/2005/report"; 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:officeooo="http://openoffice.org/2009/office"; 
xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
office:version="1.3">
+  <office:font-face-decls>
+    <style:font-face style:name="Noto Serif CJK JP" svg:font-family="'Noto 
Serif CJK JP', 'Noto Serif JP', 游明朝, 游明朝体" style:font-family-generic="system"/>
+    <style:font-face style:name="Noto Sans CJK JP" svg:font-family="'Noto Sans 
CJK JP', 'Noto Sans JP', 游ゴシック, 游ゴシック体" style:font-family-generic="system"/>
+    <style:font-face style:name="Noto Sans Mono CJK JP" svg:font-family="'Noto 
Sans Mono CJK JP', 游ゴシック, 游ゴシック体" style:font-family-generic="modern" 
style:font-pitch="fixed"/>
+    <style:font-face style:name="Noto Serif CJK JP:ruby" 
svg:font-family="'Noto Serif CJK JP:ruby', 'Noto Serif JP:ruby', 游明朝:ruby, 
游明朝体:ruby" style:font-family-generic="roman" style:font-pitch="variable"/>
+    <style:font-face style:name="OpenSymbol" svg:font-family="OpenSymbol" 
style:font-charset="x-symbol"/>
+  </office:font-face-decls>
+  <office:styles>
+    <style:default-style style:family="graphic">
+      <style:graphic-properties svg:stroke-color="#3465a4" 
draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.3cm" 
draw:shadow-offset-y="0.3cm" draw:start-line-spacing-horizontal="0.283cm" 
draw:start-line-spacing-vertical="0.283cm" 
draw:end-line-spacing-horizontal="0.283cm" 
draw:end-line-spacing-vertical="0.283cm" style:writing-mode="lr-tb" 
style:flow-with-text="false"/>
+      <style:paragraph-properties style:text-autospace="ideograph-alpha" 
style:line-break="strict" style:writing-mode="lr-tb" 
style:font-independent-line-spacing="false">
+        <style:tab-stops/>
+      </style:paragraph-properties>
+      <style:text-properties style:use-window-font-color="true" 
loext:opacity="0%" loext:color-lum-mod="100%" loext:color-lum-off="0%" 
style:font-name="Noto Serif CJK JP" fo:font-size="10.5pt" fo:language="en" 
fo:country="US" style:letter-kerning="true" style:font-name-asian="Noto Serif 
CJK JP" style:font-size-asian="10.5pt" style:language-asian="ja" 
style:country-asian="JP"/>
+    </style:default-style>
+    <style:default-style style:family="paragraph">
+      <style:paragraph-properties fo:orphans="2" fo:widows="2" 
fo:hyphenation-ladder-count="no-limit" style:text-autospace="ideograph-alpha" 
style:punctuation-wrap="hanging" style:line-break="strict" 
style:tab-stop-distance="1.251cm" style:writing-mode="lr-tb"/>
+      <style:text-properties style:use-window-font-color="true" 
loext:opacity="0%" style:font-name="Noto Serif CJK JP" fo:font-size="10.5pt" 
fo:language="en" fo:country="US" style:letter-kerning="true" 
style:font-name-asian="Noto Serif CJK JP" style:font-size-asian="10.5pt" 
style:language-asian="ja" style:country-asian="JP" fo:hyphenate="false" 
fo:hyphenation-remain-char-count="2" fo:hyphenation-push-char-count="2" 
loext:hyphenation-no-caps="false" loext:hyphenation-no-last-word="false" 
loext:hyphenation-word-char-count="5" loext:hyphenation-zone="no-limit"/>
+    </style:default-style>
+    <style:style style:name="Standard" style:family="paragraph" 
style:class="text" style:master-page-name="">
+      <style:paragraph-properties fo:text-align="justify" 
style:justify-single-word="false" fo:orphans="0" fo:widows="0" 
style:page-number="auto">
+        <style:tab-stops/>
+      </style:paragraph-properties>
+    </style:style>
+    <style:style style:name="Heading" style:family="paragraph" 
style:parent-style-name="Standard" style:next-style-name="Text_20_body" 
style:class="text" style:master-page-name="">
+      <style:paragraph-properties fo:margin-top="0.423cm" 
fo:margin-bottom="0.212cm" style:contextual-spacing="false" 
fo:text-align="start" style:justify-single-word="false" 
style:page-number="auto" fo:keep-with-next="always"/>
+      <style:text-properties style:font-name="Noto Sans CJK JP" 
fo:font-family="'Noto Sans CJK JP', 'Noto Sans JP', 游ゴシック, 游ゴシック体" 
style:font-family-generic="swiss" style:font-name-asian="Noto Sans CJK JP" 
style:font-family-asian="'Noto Sans CJK JP', 'Noto Sans JP', 游ゴシック, 游ゴシック体" 
style:font-family-generic-asian="swiss"/>
+    </style:style>
+    <style:style style:name="Text_20_body" style:display-name="Text body" 
style:family="paragraph" style:parent-style-name="Standard" style:class="text" 
style:master-page-name="">
+      <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" 
style:contextual-spacing="false" fo:line-height="100%" fo:text-align="justify" 
style:justify-single-word="false" style:page-number="auto" 
style:vertical-align="baseline"/>
+    </style:style>
+    <style:style style:name="List" style:family="paragraph" 
style:parent-style-name="Text_20_body" style:class="list">
+      <style:paragraph-properties fo:text-align="start" 
style:justify-single-word="false"/>
+      <style:text-properties fo:font-size="10.5pt" 
style:font-size-asian="10.5pt"/>
+    </style:style>
+    <style:style style:name="Caption" style:family="paragraph" 
style:parent-style-name="Standard" style:class="extra">
+      <style:paragraph-properties fo:margin-top="0.212cm" 
fo:margin-bottom="0.212cm" style:contextual-spacing="false" 
fo:text-align="start" style:justify-single-word="false" 
text:number-lines="false" text:line-number="0"/>
+    </style:style>
+    <style:style style:name="Index" style:family="paragraph" 
style:parent-style-name="Standard" style:class="index">
+      <style:paragraph-properties fo:text-align="start" 
style:justify-single-word="false" text:number-lines="false" 
text:line-number="0"/>
+      <style:text-properties fo:font-size="10.5pt" 
style:font-size-asian="10.5pt"/>
+    </style:style>
+    <style:style style:name="Signature" style:family="paragraph" 
style:parent-style-name="Standard" style:class="text">
+      <style:paragraph-properties fo:text-align="end" 
style:justify-single-word="false" text:number-lines="false" 
text:line-number="0"/>
+    </style:style>
+    <style:style style:name="List_20_Contents" style:display-name="List 
Contents" style:family="paragraph" style:parent-style-name="Standard" 
style:class="html">
+      <style:paragraph-properties fo:margin-left="1cm" fo:margin-right="0cm" 
fo:text-align="start" style:justify-single-word="false" fo:text-indent="0cm" 
style:auto-text-indent="false"/>
+    </style:style>
+    <style:style style:name="Salutation" style:family="paragraph" 
style:parent-style-name="Standard" style:class="text">
+      <style:paragraph-properties fo:text-align="end" 
style:justify-single-word="false" text:number-lines="false" 
text:line-number="0"/>
+    </style:style>
+    <style:style style:name="Title" style:family="paragraph" 
style:parent-style-name="Heading" style:next-style-name="Text_20_body" 
style:class="chapter">
+      <style:paragraph-properties fo:text-align="center" 
style:justify-single-word="false"/>
+      <style:text-properties fo:font-size="16pt" style:font-size-asian="16pt"/>
+    </style:style>
+    <style:style style:name="Appendix" style:family="paragraph" 
style:parent-style-name="Heading" style:next-style-name="Text_20_body" 
style:class="chapter" style:master-page-name="">
+      <style:paragraph-properties fo:text-align="center" 
style:justify-single-word="false" style:page-number="auto">
+        <style:tab-stops/>
+      </style:paragraph-properties>
+    </style:style>
+    <style:style style:name="Index_20_Heading" style:display-name="Index 
Heading" style:family="paragraph" style:parent-style-name="Heading" 
style:class="index">
+      <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" 
fo:text-indent="0cm" style:auto-text-indent="false" text:number-lines="false" 
text:line-number="0"/>
+      <style:text-properties fo:font-size="16pt" style:font-size-asian="16pt"/>
+    </style:style>
+    <style:style style:name="Subtitle" style:family="paragraph" 
style:parent-style-name="Heading" style:next-style-name="Text_20_body" 
style:class="chapter">
+      <style:paragraph-properties fo:margin-top="0.49cm" 
fo:margin-bottom="0.24cm" style:contextual-spacing="false" 
fo:text-align="center" style:justify-single-word="false"/>
+      <style:text-properties fo:font-size="12pt" style:font-size-asian="12pt"/>
+    </style:style>
+    <style:style style:name="Heading_20_1" style:display-name="Heading 1" 
style:family="paragraph" style:parent-style-name="Heading" 
style:next-style-name="Text_20_body" style:default-outline-level="1" 
style:class="text">
+      <style:paragraph-properties fo:margin-top="0.31cm" 
fo:margin-bottom="0.31cm" style:contextual-spacing="false"/>
+      <style:text-properties fo:font-size="12pt" style:font-size-asian="12pt"/>
+    </style:style>
+    <style:style style:name="Heading_20_10" style:display-name="Heading 10" 
style:family="paragraph" style:parent-style-name="Heading" 
style:next-style-name="Text_20_body" style:default-outline-level="10" 
style:class="text"/>
+    <style:style style:name="Heading_20_9" style:display-name="Heading 9" 
style:family="paragraph" style:parent-style-name="Heading" 
style:next-style-name="Text_20_body" style:default-outline-level="9" 
style:class="text"/>
+    <style:style style:name="Heading_20_8" style:display-name="Heading 8" 
style:family="paragraph" style:parent-style-name="Heading" 
style:next-style-name="Text_20_body" style:default-outline-level="8" 
style:class="text"/>
+    <style:style style:name="Heading_20_7" style:display-name="Heading 7" 
style:family="paragraph" style:parent-style-name="Heading" 
style:next-style-name="Text_20_body" style:default-outline-level="7" 
style:class="text"/>
+    <style:style style:name="Heading_20_6" style:display-name="Heading 6" 
style:family="paragraph" style:parent-style-name="Heading" 
style:next-style-name="Text_20_body" style:default-outline-level="6" 
style:class="text"/>
+    <style:style style:name="Heading_20_5" style:display-name="Heading 5" 
style:family="paragraph" style:parent-style-name="Heading" 
style:next-style-name="Text_20_body" style:default-outline-level="5" 
style:class="text"/>
+    <style:style style:name="Heading_20_4" style:display-name="Heading 4" 
style:family="paragraph" style:parent-style-name="Heading" 
style:next-style-name="Text_20_body" style:default-outline-level="4" 
style:class="text"/>
+    <style:style style:name="Heading_20_3" style:display-name="Heading 3" 
style:family="paragraph" style:parent-style-name="Heading" 
style:next-style-name="Text_20_body" style:default-outline-level="3" 
style:class="text" style:master-page-name="">
+      <style:paragraph-properties fo:margin-left="1.48cm" 
fo:margin-right="0cm" fo:margin-top="0cm" fo:margin-bottom="0cm" 
style:contextual-spacing="false" fo:text-indent="0cm" 
style:auto-text-indent="false" style:page-number="auto"/>
+    </style:style>
+    <style:style style:name="Heading_20_2" style:display-name="Heading 2" 
style:family="paragraph" style:parent-style-name="Heading" 
style:next-style-name="Text_20_body" style:default-outline-level="2" 
style:class="text">
+      <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" 
style:contextual-spacing="false"/>
+    </style:style>
+    <style:style style:name="Header_20_and_20_Footer" 
style:display-name="Header and Footer" style:family="paragraph" 
style:parent-style-name="Standard" style:class="extra">
+      <style:paragraph-properties text:number-lines="false" 
text:line-number="0">
+        <style:tab-stops>
+          <style:tab-stop style:position="8.5cm" style:type="center"/>
+          <style:tab-stop style:position="17cm" style:type="right"/>
+        </style:tab-stops>
+      </style:paragraph-properties>
+    </style:style>
+    <style:style style:name="Header" style:family="paragraph" 
style:parent-style-name="Header_20_and_20_Footer" style:class="extra">
+      <style:paragraph-properties text:number-lines="false" 
text:line-number="0">
+        <style:tab-stops>
+          <style:tab-stop style:position="8.5cm" style:type="center"/>
+          <style:tab-stop style:position="17cm" style:type="right"/>
+        </style:tab-stops>
+      </style:paragraph-properties>
+    </style:style>
+    <style:style style:name="Footer" style:family="paragraph" 
style:parent-style-name="Header_20_and_20_Footer" style:class="extra">
+      <style:paragraph-properties text:number-lines="false" 
text:line-number="0">
+        <style:tab-stops>
+          <style:tab-stop style:position="8.5cm" style:type="center"/>
+          <style:tab-stop style:position="17cm" style:type="right"/>
+        </style:tab-stops>
+      </style:paragraph-properties>
+    </style:style>
+    <style:style style:name="Quotations" style:family="paragraph" 
style:parent-style-name="Standard" style:class="html">
+      <style:paragraph-properties fo:margin-left="1.48cm" 
fo:margin-right="1.48cm" fo:margin-top="0.55cm" fo:margin-bottom="0.55cm" 
style:contextual-spacing="true" fo:text-indent="0cm" 
style:auto-text-indent="false"/>
+      <style:text-properties style:font-name="Noto Serif CJK JP" 
fo:font-family="'Noto Serif CJK JP', 'Noto Serif JP', 游明朝, 游明朝体" 
style:font-style-name="Regular" style:font-family-generic="roman" 
style:font-pitch="variable"/>
+    </style:style>
+    <style:style style:name="Preformatted_20_Text" 
style:display-name="Preformatted Text" style:family="paragraph" 
style:parent-style-name="Standard" style:class="html">
+      <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" 
style:contextual-spacing="false" fo:text-align="start" 
style:justify-single-word="false"/>
+      <style:text-properties style:font-name="Noto Sans Mono CJK JP" 
fo:font-family="'Noto Sans Mono CJK JP', 游ゴシック, 游ゴシック体" 
style:font-family-generic="swiss" style:font-pitch="fixed" 
fo:font-size="10.5pt" style:font-name-asian="Noto Sans Mono CJK JP" 
style:font-family-asian="'Noto Sans Mono CJK JP', 游ゴシック, 游ゴシック体" 
style:font-style-name-asian="Regular" style:font-family-generic-asian="swiss" 
style:font-pitch-asian="fixed" style:font-size-asian="10.5pt"/>
+    </style:style>
+    <style:style style:name="Bibliography_20_Heading" 
style:display-name="Bibliography Heading" style:family="paragraph" 
style:parent-style-name="Index_20_Heading" style:class="index"/>
+    <style:style style:name="Contents_20_Heading" style:display-name="Contents 
Heading" style:family="paragraph" style:parent-style-name="Index_20_Heading" 
style:class="index"/>
+    <style:style style:name="Figure_20_Index_20_Heading" 
style:display-name="Figure Index Heading" style:family="paragraph" 
style:parent-style-name="Index_20_Heading" style:class="index"/>
+    <style:style style:name="Object_20_index_20_heading" 
style:display-name="Object index heading" style:family="paragraph" 
style:parent-style-name="Index_20_Heading" style:class="index"/>
+    <style:style style:name="Table_20_index_20_heading" 
style:display-name="Table index heading" style:family="paragraph" 
style:parent-style-name="Index_20_Heading" style:class="index"/>
+    <style:style style:name="User_20_Index_20_Heading" 
style:display-name="User Index Heading" style:family="paragraph" 
style:parent-style-name="Index_20_Heading" style:class="index" 
style:master-page-name=""/>
+    <style:style style:name="Addressee" style:family="paragraph" 
style:parent-style-name="Standard" style:class="extra" 
style:master-page-name="">
+      <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" 
style:contextual-spacing="false" fo:text-align="end" 
style:justify-single-word="false" style:page-number="auto" 
text:number-lines="false" text:line-number="0"/>
+    </style:style>
+    <style:style style:name="Drawing" style:family="paragraph" 
style:parent-style-name="Caption" style:class="extra"/>
+    <style:style style:name="List_20_Heading" style:display-name="List 
Heading" style:family="paragraph" style:parent-style-name="Standard" 
style:next-style-name="List_20_Contents" style:class="html">
+      <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" 
fo:text-align="start" style:justify-single-word="false" fo:text-indent="0cm" 
style:auto-text-indent="false"/>
+    </style:style>
+    <style:style style:name="Text_20_body_20_indent" style:display-name="Text 
body indent" style:family="paragraph" style:parent-style-name="Text_20_body" 
style:class="text">
+      <style:paragraph-properties fo:margin-left="0.499cm" 
fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false"/>
+    </style:style>
+    <style:style style:name="First_20_line_20_indent" 
style:display-name="First line indent" style:family="paragraph" 
style:parent-style-name="Text_20_body" style:class="text" 
style:master-page-name="">
+      <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" 
fo:text-indent="0.37cm" style:auto-text-indent="false" 
style:page-number="auto"/>
+    </style:style>
+    <style:style style:name="Hanging_20_indent" style:display-name="Hanging 
indent" style:family="paragraph" style:parent-style-name="Text_20_body" 
style:class="text">
+      <style:paragraph-properties fo:margin-left="1cm" fo:margin-right="0cm" 
fo:text-indent="-0.499cm" style:auto-text-indent="false">
+        <style:tab-stops>
+          <style:tab-stop style:position="0cm"/>
+        </style:tab-stops>
+      </style:paragraph-properties>
+    </style:style>
+    <style:style style:name="Source_20_Text" style:display-name="Source Text" 
style:family="text">
+      <style:text-properties style:font-name="Noto Sans Mono CJK JP" 
fo:font-family="'Noto Sans Mono CJK JP', 游ゴシック, 游ゴシック体" 
style:font-style-name="Regular" style:font-family-generic="swiss" 
style:font-pitch="fixed" style:font-name-asian="Noto Sans Mono CJK JP" 
style:font-family-asian="'Noto Sans Mono CJK JP', 游ゴシック, 游ゴシック体" 
style:font-style-name-asian="Regular" style:font-family-generic-asian="swiss" 
style:font-pitch-asian="fixed"/>
+    </style:style>
+    <style:style style:name="Citation" style:family="text"/>
+    <style:style style:name="Teletype" style:family="text">
+      <style:text-properties style:font-name="Noto Sans Mono CJK JP" 
fo:font-family="'Noto Sans Mono CJK JP', 游ゴシック, 游ゴシック体" 
style:font-style-name="Regular" style:font-family-generic="swiss" 
style:font-pitch="fixed" style:font-name-asian="Noto Sans Mono CJK JP" 
style:font-family-asian="'Noto Sans Mono CJK JP', 游ゴシック, 游ゴシック体" 
style:font-style-name-asian="Regular" style:font-family-generic-asian="swiss" 
style:font-pitch-asian="fixed"/>
+    </style:style>
+    <style:style style:name="Rubies" style:family="text">
+      <style:text-properties style:font-name="Noto Serif CJK JP:ruby" 
fo:font-family="'Noto Serif CJK JP:ruby', 'Noto Serif JP:ruby', 游明朝:ruby, 
游明朝体:ruby" style:font-style-name="Regular" style:font-family-generic="roman" 
style:font-pitch="variable" fo:font-size="5pt" 
style:text-underline-style="none" style:font-name-asian="Noto Serif CJK 
JP:ruby" style:font-family-asian="'Noto Serif CJK JP:ruby', 'Noto Serif 
JP:ruby', 游明朝:ruby, 游明朝体:ruby" style:font-style-name-asian="Regular" 
style:font-family-generic-asian="roman" style:font-pitch-asian="variable" 
style:font-size-asian="5pt" style:text-emphasize="none"/>
+    </style:style>
+    <style:style style:name="Emphasis" style:family="text">
+      <style:text-properties style:text-emphasize="dot above"/>
+    </style:style>
+    <style:style style:name="Example" style:family="text">
+      <style:text-properties style:font-name="Noto Sans Mono CJK JP" 
fo:font-family="'Noto Sans Mono CJK JP', 游ゴシック, 游ゴシック体" 
style:font-style-name="Regular" style:font-family-generic="swiss" 
style:font-pitch="fixed" style:font-name-asian="Noto Sans Mono CJK JP" 
style:font-family-asian="'Noto Sans Mono CJK JP', 游ゴシック, 游ゴシック体" 
style:font-style-name-asian="Regular" style:font-family-generic-asian="swiss" 
style:font-pitch-asian="fixed"/>
+    </style:style>
+    <style:style style:name="User_20_Entry" style:display-name="User Entry" 
style:family="text">
+      <style:text-properties style:font-name="Noto Sans Mono CJK JP" 
fo:font-family="'Noto Sans Mono CJK JP', 游ゴシック, 游ゴシック体" 
style:font-style-name="Regular" style:font-family-generic="swiss" 
style:font-pitch="fixed" style:font-name-asian="Noto Sans Mono CJK JP" 
style:font-family-asian="'Noto Sans Mono CJK JP', 游ゴシック, 游ゴシック体" 
style:font-family-generic-asian="modern" style:font-pitch-asian="fixed"/>
+    </style:style>
+    <style:style style:name="Variable" style:family="text"/>
+    <style:style style:name="Numbering_20_Symbols" 
style:display-name="Numbering Symbols" style:family="text"/>
+    <style:style style:name="Bullet_20_Symbols" style:display-name="Bullet 
Symbols" style:family="text">
+      <style:text-properties style:font-name="OpenSymbol" 
fo:font-family="OpenSymbol" style:font-charset="x-symbol" 
style:font-name-asian="OpenSymbol" style:font-family-asian="OpenSymbol" 
style:font-charset-asian="x-symbol"/>
+    </style:style>
+    <style:style style:name="Watermark" style:family="graphic">
+      <style:graphic-properties text:anchor-type="page" svg:x="0cm" 
svg:y="0cm" style:run-through="background" style:wrap="run-through" 
style:number-wrapped-paragraphs="no-limit" style:vertical-pos="middle" 
style:vertical-rel="page" style:horizontal-pos="center" 
style:horizontal-rel="paragraph"/>
+    </style:style>
+    <text:notes-configuration text:note-class="footnote" style:num-format="1" 
text:start-value="0" text:footnotes-position="page" 
text:start-numbering-at="document"/>
+    <text:notes-configuration text:note-class="endnote" style:num-format="i" 
text:start-value="0"/>
+    <text:linenumbering-configuration text:number-lines="false" 
text:offset="0.499cm" style:num-format="1" text:number-position="left" 
text:increment="5"/>
+    <style:default-page-layout>
+      <style:page-layout-properties style:writing-mode="lr-tb" 
style:layout-grid-standard-mode="true"/>
+    </style:default-page-layout>
+  </office:styles>
+  <office:automatic-styles>
+    <style:page-layout style:name="Mpm1">
+      <style:page-layout-properties fo:page-width="21.0cm" 
fo:page-height="29.7cm" style:num-format="1" style:print-orientation="portrait" 
fo:margin-top="1.5cm" fo:margin-bottom="1.75cm" fo:margin-left="3cm" 
fo:margin-right="3cm" style:writing-mode="lr-tb" style:layout-grid-lines="36" 
style:layout-grid-base-height="0.644cm" style:layout-grid-ruby-height="0cm" 
style:layout-grid-mode="line" style:layout-grid-ruby-below="false" 
style:layout-grid-print="false" style:layout-grid-display="false" 
style:layout-grid-base-width="0.19cm" style:layout-grid-snap-to="true" 
style:footnote-max-height="0cm" loext:margin-gutter="0cm">
+        <style:columns fo:column-count="1" fo:column-gap="0cm"/>
+        <style:footnote-sep style:width="0.018cm" 
style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" 
style:line-style="solid" style:adjustment="left" style:rel-width="25%" 
style:color="#000000"/>
+      </style:page-layout-properties>
+      <style:header-style>
+        <style:header-footer-properties fo:min-height="2cm" 
fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-bottom="1.9cm" 
fo:background-color="transparent" style:dynamic-spacing="true" />
+      </style:header-style>
+      <style:footer-style>
+        <style:header-footer-properties fo:min-height="1.251cm" 
fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="1.15cm" 
fo:background-color="transparent" style:dynamic-spacing="true" />
+      </style:footer-style>
+    </style:page-layout>
+    <style:page-layout style:name="Mpm2">
+      <style:page-layout-properties fo:page-width="21.0cm" 
fo:page-height="29.7cm" style:num-format="1" style:print-orientation="portrait" 
fo:margin-top="1.5cm" fo:margin-bottom="1.75cm" fo:margin-left="3cm" 
fo:margin-right="3cm" style:writing-mode="lr-tb" style:layout-grid-lines="36" 
style:layout-grid-base-height="0.644cm" style:layout-grid-ruby-height="0cm" 
style:layout-grid-mode="line" style:layout-grid-ruby-below="false" 
style:layout-grid-print="false" style:layout-grid-display="false" 
style:layout-grid-base-width="0.706cm" style:layout-grid-snap-to="true" 
style:footnote-max-height="0cm" loext:margin-gutter="0cm">
+        <style:footnote-sep style:width="0.018cm" 
style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" 
style:line-style="solid" style:adjustment="left" style:rel-width="25%" 
style:color="#000000"/>
+      </style:page-layout-properties>
+      <style:header-style>
+        <style:header-footer-properties fo:min-height="2cm" 
fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-bottom="1.9cm" 
fo:background-color="transparent" style:dynamic-spacing="true" />
+      </style:header-style>
+      <style:footer-style>
+        <style:header-footer-properties fo:min-height="1.251cm" 
fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="1.15cm" 
fo:background-color="transparent" style:dynamic-spacing="true" />
+      </style:footer-style>
+    </style:page-layout>
+    <style:page-layout style:name="Mpm3" style:page-usage="left">
+      <style:page-layout-properties fo:page-width="21.0cm" 
fo:page-height="29.7cm" style:num-format="1" style:print-orientation="portrait" 
fo:margin-top="1.5cm" fo:margin-bottom="1.75cm" fo:margin-left="3cm" 
fo:margin-right="3cm" style:writing-mode="lr-tb" style:layout-grid-lines="36" 
style:layout-grid-base-height="0.644cm" style:layout-grid-ruby-height="0cm" 
style:layout-grid-mode="line" style:layout-grid-ruby-below="false" 
style:layout-grid-print="false" style:layout-grid-display="false" 
style:layout-grid-base-width="0.706cm" style:layout-grid-snap-to="true" 
style:footnote-max-height="0cm" loext:margin-gutter="0cm">
+        <style:footnote-sep style:width="0.018cm" 
style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" 
style:line-style="solid" style:adjustment="left" style:rel-width="25%" 
style:color="#000000"/>
+      </style:page-layout-properties>
+      <style:header-style>
+        <style:header-footer-properties fo:min-height="2cm" 
fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-bottom="1.9cm" 
fo:background-color="transparent" style:dynamic-spacing="true" />
+      </style:header-style>
+      <style:footer-style>
+        <style:header-footer-properties fo:min-height="1.251cm" 
fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="1.15cm" 
fo:background-color="transparent" style:dynamic-spacing="true" />
+      </style:footer-style>
+    </style:page-layout>
+    <style:page-layout style:name="Mpm4" style:page-usage="right">
+      <style:page-layout-properties fo:page-width="21.0cm" 
fo:page-height="29.7cm" style:num-format="1" style:print-orientation="portrait" 
fo:margin-top="1.5cm" fo:margin-bottom="1.75cm" fo:margin-left="3cm" 
fo:margin-right="3cm" style:writing-mode="lr-tb" style:layout-grid-lines="36" 
style:layout-grid-base-height="0.644cm" style:layout-grid-ruby-height="0cm" 
style:layout-grid-mode="line" style:layout-grid-ruby-below="false" 
style:layout-grid-print="false" style:layout-grid-display="false" 
style:layout-grid-base-width="0.706cm" style:layout-grid-snap-to="true" 
style:footnote-max-height="0cm" loext:margin-gutter="0cm">
+        <style:footnote-sep style:width="0.018cm" 
style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" 
style:line-style="solid" style:adjustment="left" style:rel-width="25%" 
style:color="#000000"/>
+      </style:page-layout-properties>
+      <style:header-style>
+        <style:header-footer-properties fo:min-height="2cm" 
fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-bottom="1.9cm" 
fo:background-color="transparent" style:dynamic-spacing="true" />
+      </style:header-style>
+      <style:footer-style>
+        <style:header-footer-properties fo:min-height="1.251cm" 
fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="1.15cm" 
fo:background-color="transparent" style:dynamic-spacing="true" />
+      </style:footer-style>
+    </style:page-layout>
+    <style:page-layout style:name="Mpm5">
+      <style:page-layout-properties fo:page-width="29.7cm" 
fo:page-height="21.0cm" style:num-format="1" 
style:print-orientation="landscape" fo:margin-top="1.5cm" 
fo:margin-bottom="1.75cm" fo:margin-left="3cm" fo:margin-right="3.5cm" 
style:writing-mode="tb-rl" style:layout-grid-lines="36" 
style:layout-grid-base-height="0.644cm" style:layout-grid-ruby-height="0cm" 
style:layout-grid-mode="line" style:layout-grid-ruby-below="false" 
style:layout-grid-print="false" style:layout-grid-display="false" 
style:layout-grid-base-width="0.706cm" style:layout-grid-snap-to="true" 
style:footnote-max-height="0cm" loext:margin-gutter="0cm">
+        <style:columns fo:column-count="1" fo:column-gap="0cm"/>
+        <style:footnote-sep style:width="0.018cm" 
style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" 
style:line-style="solid" style:adjustment="left" style:rel-width="25%" 
style:color="#000000"/>
+      </style:page-layout-properties>
+      <style:header-style>
+        <style:header-footer-properties fo:min-height="1.5cm" 
fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-bottom="1.4cm" 
fo:background-color="transparent" style:dynamic-spacing="true" />
+      </style:header-style>
+      <style:footer-style>
+        <style:header-footer-properties fo:min-height="1.251cm" 
fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="1.15cm" 
fo:background-color="transparent" style:dynamic-spacing="true" />
+      </style:footer-style>
+    </style:page-layout>
+    <style:style style:name="Mdp1" style:family="drawing-page">
+      <style:drawing-page-properties draw:background-size="full"/>
+    </style:style>
+  </office:automatic-styles>
+  <office:master-styles>
+    <style:master-page style:name="Standard" style:page-layout-name="Mpm1" 
draw:style-name="Mdp1">
+      <style:header>
+        <text:p text:style-name="Header"/>
+      </style:header>
+      <style:footer>
+        <text:p text:style-name="Footer"/>
+      </style:footer>
+    </style:master-page>
+    <style:master-page style:name="First_20_Page" style:display-name="First 
Page" style:page-layout-name="Mpm2" draw:style-name="Mdp1" 
style:next-style-name="Standard">
+      <style:header>
+        <text:p text:style-name="Header"/>
+      </style:header>
+      <style:footer>
+        <text:p text:style-name="Footer"/>
+      </style:footer>
+    </style:master-page>
+    <style:master-page style:name="Left_20_Page" style:display-name="Left 
Page" style:page-layout-name="Mpm3" draw:style-name="Mdp1" 
style:next-style-name="Right_20_Page">
+      <style:header>
+        <text:p text:style-name="Header"/>
+      </style:header>
+      <style:footer>
+        <text:p text:style-name="Footer"/>
+      </style:footer>
+    </style:master-page>
+    <style:master-page style:name="Right_20_Page" style:display-name="Right 
Page" style:page-layout-name="Mpm4" draw:style-name="Mdp1" 
style:next-style-name="Left_20_Page">
+      <style:header>
+        <text:p text:style-name="Header"/>
+      </style:header>
+      <style:footer>
+        <text:p text:style-name="Footer"/>
+      </style:footer>
+    </style:master-page>
+    <style:master-page style:name="Landscape" style:page-layout-name="Mpm5" 
draw:style-name="Mdp1">
+      <style:header>
+        <text:p text:style-name="Header"/>
+      </style:header>
+      <style:footer>
+        <text:p text:style-name="Footer"/>
+      </style:footer>
+    </style:master-page>
+  </office:master-styles>
+</office:document-styles>
diff --git a/include/sfx2/strings.hrc b/include/sfx2/strings.hrc
index 3ccc50cb0947..82257b7efc03 100644
--- a/include/sfx2/strings.hrc
+++ b/include/sfx2/strings.hrc
@@ -335,6 +335,7 @@
 #define STR_TEMPLATE_NAME31                     NC_("STR_TEMPLATE_NAME31", 
"Simple")
 #define STR_TEMPLATE_NAME32                     NC_("STR_TEMPLATE_NAME32", 
"BPMN")
 #define STR_TEMPLATE_NAME33                     NC_("STR_TEMPLATE_NAME33", 
"Simplified Chinese Normal")
+#define STR_TEMPLATE_NAME34                     NC_("STR_TEMPLATE_NAME34", 
"Japanese Normal")
 
 #define STR_CLEAR_CHAR                          NC_("STR_CLEAR_CHAR", "Remove")
 #define STR_CLEAR_ALL_CHAR                      NC_("STR_CLEAR_ALL_CHAR", 
"Clear All")
diff --git a/sfx2/inc/strings.hxx b/sfx2/inc/strings.hxx
index 8d347934c519..630940e00491 100644
--- a/sfx2/inc/strings.hxx
+++ b/sfx2/inc/strings.hxx
@@ -48,6 +48,7 @@ inline constexpr OUStringLiteral STR_TEMPLATE_NAME30_DEF = 
u"Businesscard with l
 inline constexpr OUStringLiteral STR_TEMPLATE_NAME31_DEF = u"Simple";
 inline constexpr OUStringLiteral STR_TEMPLATE_NAME32_DEF = u"BPMN";
 inline constexpr OUStringLiteral STR_TEMPLATE_NAME33_DEF = u"Simplified 
Chinese Normal";
+inline constexpr OUStringLiteral STR_TEMPLATE_NAME34_DEF = u"Japanese Normal";
 
 inline constexpr OUStringLiteral CMIS_TYPE_STRING = u"String";
 #define CMIS_TYPE_INTEGER "Integer"
diff --git a/sfx2/source/doc/doctempl.cxx b/sfx2/source/doc/doctempl.cxx
index d1aa03259983..feaa91567f43 100644
--- a/sfx2/source/doc/doctempl.cxx
+++ b/sfx2/source/doc/doctempl.cxx
@@ -497,7 +497,8 @@ OUString SfxDocumentTemplates::ConvertResourceString(const 
OUString& rString)
         STR_TEMPLATE_NAME30_DEF,
         STR_TEMPLATE_NAME31_DEF,
         STR_TEMPLATE_NAME32_DEF,
-        STR_TEMPLATE_NAME33_DEF
+        STR_TEMPLATE_NAME33_DEF,
+        STR_TEMPLATE_NAME34_DEF
     };
 
     TranslateId STR_TEMPLATE_NAME[] =
@@ -534,7 +535,8 @@ OUString SfxDocumentTemplates::ConvertResourceString(const 
OUString& rString)
         STR_TEMPLATE_NAME30,
         STR_TEMPLATE_NAME31,
         STR_TEMPLATE_NAME32,
-        STR_TEMPLATE_NAME33
+        STR_TEMPLATE_NAME33,
+        STR_TEMPLATE_NAME34
     };
 
     static_assert(SAL_N_ELEMENTS(aTemplateNames) == 
SAL_N_ELEMENTS(STR_TEMPLATE_NAME));

Reply via email to