あなたの意見では、Schematronエラーメッセージを国際化するための最良の方法は何ですか?スキマトロンファイルを複製したくはありません。アサートメッセージとレポートメッセージだけを複製します。
質問する
363 次
2 に答える
2
私はschematronISO標準ドキュメントでこれに出くわしました:
Diagnostics in multiple languages may be supported
by using a different diagnostic element for each language,
with the appropriate xml:lang language attribute,
and referencing all the unique identifiers of the diagnostic elements
in the diagnostics attribute of the assertion.
Annex G gives a simple example of a multi-lingual schema.
付録G:
<sch:schema xmlns:sch="http://purl.oclc.org/dsdl/schematron"
xml:lang="en" >
<sch:title>Example of Multi-Lingual Schema</sch:title>
<sch:pattern>
<sch:rule context="dog">
<sch:assert test="bone" diagnostics="d1 d2">
A dog should have a bone.
</sch:assert>
</sch:rule>
</sch:pattern>
<sch:diagnostics>
<sch:diagnostic id="d1" xml:lang="en">
A dog should have a bone.
</sch:diagnostic>
<sch:diagnostic id="d2" xml:lang="de">
Ein Hund sollte ein Bein haben.
</sch:diagnostic>
</sch:diagnostics>
</sch:schema>
于 2012-04-18T08:58:16.537 に答える
1
詳細については、XML国際化のベストプラクティスを参照してください。つまり、xml:lang属性を使用して、任意のXMLドキュメントのメッセージを国際化できます。
例:
<messages xmlns:xml="http://www.w3.org/XML/1998/namespace">
<message Id="cannot-find-file-msg">
<message-text xml:lang="en">Cannot find file.</message-text>
<message-text xml:lang="fr">Fichier non trouvé.</message-text>
</message>
</messages>
上記の例では、ローカル言語、メッセージID、およびXPATH式を指定して、必要なメッセージテキストにアクセスできます。
于 2012-04-18T05:57:09.787 に答える