File: common_slv.xml

package info (click to toggle)
liblingua-translit-perl 0.29-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 824 kB
  • sloc: xml: 7,707; perl: 416; makefile: 37
file content (71 lines) | stat: -rw-r--r-- 1,523 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE translit SYSTEM "translit.dtd">


<!--

  Transliteration definitions for Slovenian diacritics

  Copyright (C) 2008 Rona Linke <rlinke@lingua-systems.com>
  Copyright (C) 2009 Lingua-Systems Software GmbH

-->


<translit>

    <name>Common SLV</name>
    <desc>Slovenian without diacritics</desc>
    <reverse>false</reverse>

    <!-- set of transliteration rules -->
    <!--
    This transliteration is a simple mapping of characters with
    diacritics to the same character without a diacritic in
    hex notation of Unicode codepoints. (Letter names according
    to Unicode Standard 5.0)
    Abbreviations:
    LCL = LATIN CAPITAL LETTER
    LSL = LATIN SMALL LETTER
 -->

    <rules>

        <rule>
            <from>&#x010C;</from>	    <!-- LCL C WITH CARON  -->
            <to>C</to>
        </rule>

        <rule>
            <from>&#x010D;</from>	    <!-- LSL C WITH CARON  -->
            <to>c</to>
        </rule>

        <rule>
            <from>&#x0160;</from>	    <!-- LCL S WITH CARON  -->
            <to>S</to>
        </rule>

        <rule>
            <from>&#x0161;</from>	    <!-- LSL S WITH CARON  -->
            <to>s</to>
        </rule>

        <rule>
            <from>&#x017D;</from>	    <!-- LCL Z WITH CARON -->
            <to>Z</to>
        </rule>

        <rule>
            <from>&#x017E;</from>	    <!-- LSL Z WITH CARON -->
            <to>z</to>
        </rule>

    </rules>

</translit>

<!--
  vim: sts=4 sw=4 ai et
-->