diff options
author | albert-github <albert.tests@gmail.com> | 2020-06-03 12:55:52 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2020-06-03 12:55:52 (GMT) |
commit | 88e70b5242b2446f33ab700e6d10e7f25ae2c349 (patch) | |
tree | e4c1bc4d115db7e8fd8404c77e83a595fe9c19e2 /testing/027 | |
parent | fd1111503cd3e403db3784d03530e6ec3ac37032 (diff) | |
download | Doxygen-88e70b5242b2446f33ab700e6d10e7f25ae2c349.zip Doxygen-88e70b5242b2446f33ab700e6d10e7f25ae2c349.tar.gz Doxygen-88e70b5242b2446f33ab700e6d10e7f25ae2c349.tar.bz2 |
Adding the xml:lang tag to XML and Docbook output
Adding the xml:lang attribute for XNL and Docbook output
Interesting links:
- language codes (different from country codes!): https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry
- example for xml.xsd: http://www.java2s.com/Code/XML/XML-Schema/importanotherXMLschema.htm
Diffstat (limited to 'testing/027')
-rw-r--r-- | testing/027/struct_car.xml | 2 | ||||
-rw-r--r-- | testing/027/struct_object.xml | 2 | ||||
-rw-r--r-- | testing/027/struct_truck.xml | 2 | ||||
-rw-r--r-- | testing/027/struct_vehicle.xml | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/testing/027/struct_car.xml b/testing/027/struct_car.xml index c90017a..8b203e5 100644 --- a/testing/027/struct_car.xml +++ b/testing/027/struct_car.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> -<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version=""> +<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="" xml:lang="en-US"> <compounddef id="struct_car" kind="struct" language="C++" prot="public"> <compoundname>Car</compoundname> <basecompoundref refid="struct_vehicle" prot="public" virt="non-virtual">Vehicle</basecompoundref> diff --git a/testing/027/struct_object.xml b/testing/027/struct_object.xml index 807b0c1..7ab7e7a 100644 --- a/testing/027/struct_object.xml +++ b/testing/027/struct_object.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> -<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version=""> +<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="" xml:lang="en-US"> <compounddef id="struct_object" kind="struct" language="C++" prot="public"> <compoundname>Object</compoundname> <derivedcompoundref refid="struct_vehicle" prot="public" virt="non-virtual">Vehicle</derivedcompoundref> diff --git a/testing/027/struct_truck.xml b/testing/027/struct_truck.xml index b25c20b..588f425 100644 --- a/testing/027/struct_truck.xml +++ b/testing/027/struct_truck.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> -<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version=""> +<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="" xml:lang="en-US"> <compounddef id="struct_truck" kind="struct" language="C++" prot="public"> <compoundname>Truck</compoundname> <basecompoundref refid="struct_vehicle" prot="public" virt="non-virtual">Vehicle</basecompoundref> diff --git a/testing/027/struct_vehicle.xml b/testing/027/struct_vehicle.xml index bab901d..380f3e7 100644 --- a/testing/027/struct_vehicle.xml +++ b/testing/027/struct_vehicle.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> -<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version=""> +<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="" xml:lang="en-US"> <compounddef id="struct_vehicle" kind="struct" language="C++" prot="public"> <compoundname>Vehicle</compoundname> <basecompoundref refid="struct_object" prot="public" virt="non-virtual">Object</basecompoundref> |