ACX format

From Apertium
Revision as of 13:41, 18 April 2008 by Francis Tyers (talk | contribs) (New page: The '''ACX format''' is used for describing equivalent characters in monodices. If a language has multiple methods of writing a character, for example with Romanian ș and ş, ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The ACX format is used for describing equivalent characters in monodices. If a language has multiple methods of writing a character, for example with Romanian ș and ş, then you can use the file to define them as being equivalent. It can also be used in languages where the apostrophe is grammatically important (e.g. Catalan) to make sure that several different variants are accepted.

The format is defined in the file acx.rng which can be found in both the lttoolbox and apertium modules in SVN.

Example file

The file apertium-es-ro.ro.acx from apertium-es-ro.

<?xml version="1.0"?>
<analysis-chars>
  <!-- Make apostrophe variants equal ' -->
  <char value="'">
    <equiv-char value="’"/>
    <equiv-char value="ʼ"/>
  </char>

  <!-- Legacy values for characters with comma -->
  <char value="ț">
    <equiv-char value="ţ"/>
  </char>
  <char value="Ț">
    <equiv-char value="Ţ"/>
  </char>
  <char value="ș">
    <equiv-char value="ş"/>
  </char>
  <char value="Ș">
    <equiv-char value="Ş"/>
  </char>

  <!-- Orthographic variant -->
  <char value="â">
    <equiv-char value="î"/>
  </char>
</analysis-chars>