Translated note label variables - where?
Post here questions and problems related to editing and publishing DITA content.
-
- Posts: 13
- Joined: Mon Aug 01, 2016 6:40 pm
Translated note label variables - where?
Hi,
I learned here in another topic, that variables to customize the note labels and images are defined in the 'DITA-OT2.x/plugins/org.dita.pdf2/cfg/common/vars/en.xml'.
I found that for translations of the note labels, DITA-OT uses the files like strings-fr-fr.xml under 'DITA-OT2.x/xsl/common'.
However, the same variables are defined in the language files of 'DITA-OT2.x/plugins/org.dita.pdf2/cfg/common/vars'.
Can you please explain which variable is used in which situations?
Thanks,
Kris
I learned here in another topic, that variables to customize the note labels and images are defined in the 'DITA-OT2.x/plugins/org.dita.pdf2/cfg/common/vars/en.xml'.
I found that for translations of the note labels, DITA-OT uses the files like strings-fr-fr.xml under 'DITA-OT2.x/xsl/common'.
However, the same variables are defined in the language files of 'DITA-OT2.x/plugins/org.dita.pdf2/cfg/common/vars'.
Can you please explain which variable is used in which situations?
Thanks,
Kris
-
- Posts: 9446
- Joined: Fri Jul 09, 2004 5:18 pm
Re: Translated note label variables - where?
Hi Kris,
With DITA OT 1.8 and older, the HTML-based outputs used default translations from the DITA-OT/xsl/common folder while the PDF output used translations from the DITA-OT/plugins/org.dita.pdf2/cfg/common/vars/ folder. So the translation mechanisms for HTML-based and PDF were fully separated.
For DITA OT 2.x somehow the PDF publishing also looks for translations in the common translations, although it still preserves some separate translations.
This recent DITA OT 2.x documentation topic explains how to build a plugin which adds new keys or modifies values for older keys, plugin which as far as I remember should work for both HTML-based and PDF:
http://www.dita-ot.org/dev/dev_ref/plug ... dtext.html
Regards,
Radu
With DITA OT 1.8 and older, the HTML-based outputs used default translations from the DITA-OT/xsl/common folder while the PDF output used translations from the DITA-OT/plugins/org.dita.pdf2/cfg/common/vars/ folder. So the translation mechanisms for HTML-based and PDF were fully separated.
For DITA OT 2.x somehow the PDF publishing also looks for translations in the common translations, although it still preserves some separate translations.
This recent DITA OT 2.x documentation topic explains how to build a plugin which adds new keys or modifies values for older keys, plugin which as far as I remember should work for both HTML-based and PDF:
http://www.dita-ot.org/dev/dev_ref/plug ... dtext.html
Regards,
Radu
Radu Coravu
<oXygen/> XML Editor
http://www.oxygenxml.com
<oXygen/> XML Editor
http://www.oxygenxml.com
-
- Posts: 13
- Joined: Mon Aug 01, 2016 6:40 pm
Re: Translated note label variables - where?
Hi Radu,
I followed the article but bumped into a doubt. At some point it says to use getString.
If I check the definition of getString in the dita-utilities.xsl file, it says:
<!-- Deprecated. Use getVariable template instead. -->
What is the best practice?
As much as I can see, the original code still uses getString for all common text resources, like note labels in the xsl\common\ folder...
Thanks,
Kris
I followed the article but bumped into a doubt. At some point it says to use getString.
If I check the definition of getString in the dita-utilities.xsl file, it says:
<!-- Deprecated. Use getVariable template instead. -->
What is the best practice?
As much as I can see, the original code still uses getString for all common text resources, like note labels in the xsl\common\ folder...
Thanks,
Kris
-
- Posts: 9446
- Joined: Fri Jul 09, 2004 5:18 pm
Re: Translated note label variables - where?
Hi Kris,
In DITA OT 2.x the "getString" was deprecated (but it still works) in favor of "getVariable".
All the XSLT code in the DITA OT 2.x common XSLT code or plugins should use "getVariable".
Do you know of any specific XSLT stylesheet which still uses "getString" and is bundled with DITA OT 2.x?
Regards,
Radu
In DITA OT 2.x the "getString" was deprecated (but it still works) in favor of "getVariable".
All the XSLT code in the DITA OT 2.x common XSLT code or plugins should use "getVariable".
Do you know of any specific XSLT stylesheet which still uses "getString" and is bundled with DITA OT 2.x?
Regards,
Radu
Radu Coravu
<oXygen/> XML Editor
http://www.oxygenxml.com
<oXygen/> XML Editor
http://www.oxygenxml.com
-
- Posts: 13
- Joined: Mon Aug 01, 2016 6:40 pm
Re: Translated note label variables - where?
Well, I was hoping you will tell me
I just noticed that in my environment, the note labels are strings in the string-[lang]-[loc].xml files under the DITA-OT2.0.1\xsl\common. I guess, DITA-OT fetches these strings with some getString, but that's just an assumption 
Please, let me know how DITA-OT grabs those.


Please, let me know how DITA-OT grabs those.
-
- Posts: 9446
- Joined: Fri Jul 09, 2004 5:18 pm
Re: Translated note label variables - where?
Hi,
So if we are talking about DITA <note> processing for the XHTML-based outputs, the XSLT stylesheet:
OXYGEN_INSTALL_DIR/frameworks/dita/DITA-OT2.x/plugins/org.dita.xhtml/xsl/xslhtml/dita2htmlImpl.xsl
does something like this:
and indeed the Note key is translated for example in strings-en-us.xml
Regards,
Radu
So if we are talking about DITA <note> processing for the XHTML-based outputs, the XSLT stylesheet:
OXYGEN_INSTALL_DIR/frameworks/dita/DITA-OT2.x/plugins/org.dita.xhtml/xsl/xslhtml/dita2htmlImpl.xsl
does something like this:
Code: Select all
<xsl:template match="*" mode="process.note.common-processing">
<xsl:param name="type" select="@type"/>
<xsl:param name="title">
<xsl:call-template name="getVariable">
<!-- For the parameter, turn "note" into "Note", caution => Caution, etc -->
<xsl:with-param name="id"
select="concat(upper-case(substring($type, 1, 1)),
substring($type, 2))"/>
</xsl:call-template>
</xsl:param>
.........
and indeed the Note key is translated for example in strings-en-us.xml
Regards,
Radu
Radu Coravu
<oXygen/> XML Editor
http://www.oxygenxml.com
<oXygen/> XML Editor
http://www.oxygenxml.com
-
- Posts: 9446
- Joined: Fri Jul 09, 2004 5:18 pm
Re: Translated note label variables - where?
Hi,
So for the PDF based output this XSLT stylesheet:
OXYGEN_INSTALL_DIR\frameworks\dita\DITA ... ommons.xsl
has a template:
which calls getVariable with various params depending on the note @type attribute.
And the same translation files from OXYGEN_INSTALLATION_DIR/frameworks/dita/DITA-OT/xsl/common/ should be used.
Regards,
Radu
So for the PDF based output this XSLT stylesheet:
OXYGEN_INSTALL_DIR\frameworks\dita\DITA ... ommons.xsl
has a template:
Code: Select all
<xsl:template match="*" mode="placeNoteContent">
............
And the same translation files from OXYGEN_INSTALLATION_DIR/frameworks/dita/DITA-OT/xsl/common/ should be used.
Regards,
Radu
Radu Coravu
<oXygen/> XML Editor
http://www.oxygenxml.com
<oXygen/> XML Editor
http://www.oxygenxml.com
Return to “DITA (Editing and Publishing DITA Content)”
Jump to
- Oxygen XML Editor/Author/Developer
- ↳ Feature Request
- ↳ Common Problems
- ↳ DITA (Editing and Publishing DITA Content)
- ↳ Artificial Intelligence (AI Positron Assistant add-on)
- ↳ SDK-API, Frameworks - Document Types
- ↳ DocBook
- ↳ TEI
- ↳ XHTML
- ↳ Other Issues
- Oxygen XML Web Author
- ↳ Feature Request
- ↳ Common Problems
- Oxygen Content Fusion
- ↳ Feature Request
- ↳ Common Problems
- Oxygen JSON Editor
- ↳ Feature Request
- ↳ Common Problems
- Oxygen PDF Chemistry
- ↳ Feature Request
- ↳ Common Problems
- Oxygen Feedback
- ↳ Feature Request
- ↳ Common Problems
- Oxygen XML WebHelp
- ↳ Feature Request
- ↳ Common Problems
- XML
- ↳ General XML Questions
- ↳ XSLT and FOP
- ↳ XML Schemas
- ↳ XQuery
- NVDL
- ↳ General NVDL Issues
- ↳ oNVDL Related Issues
- XML Services Market
- ↳ Offer a Service