README
changeset 38 5f63725f1397
parent 37 e287a9f2ecf4
child 39 3fba348da719
equal deleted inserted replaced
37:e287a9f2ecf4 38:5f63725f1397
     1 -*- outline -*-
       
     2 
       
     3 * How install/uninstall?
       
     4 
       
     5 To install in /usr/local/ run:
       
     6 
       
     7   $ make install
       
     8 
       
     9 If you want install in different place run:
       
    10 
       
    11   $ make install prefix=PREFIX
       
    12 
       
    13 If you install in nonstandard place and wont use dictionary for current user
       
    14 run:
       
    15 
       
    16   $ make prefix=PREFIX install install-local-symlink
       
    17 
       
    18 To uninstall run one command from list accordingly to installation procedure:
       
    19 
       
    20   $ make uninstall
       
    21   $ make uninstall prefix=PREFIX
       
    22   $ make prefix=PREFIX uninstall uninstall-local-symlink
       
    23 
       
    24 * What file needed to create dictionary?
       
    25 
       
    26 .tab_ and .descr, which contain text data in UTF-8 encoding.
       
    27 install
       
    28 
       
    29 In .tab_ file lines which begin with '#' used as comment; space after '\n'
       
    30 (two chars) removed.
       
    31 
       
    32 Words before first TAB character in .tab_ file supposed as translated word,
       
    33 rest text after TAB is word article.
       
    34 
       
    35 ** .tab_ file format.
       
    36 
       
    37 Used such format:
       
    38 
       
    39   WORD [TAB] TRANSLATION [LF]
       
    40 
       
    41 When processing TRANSLATION string in all occurrence of "\n " (literary
       
    42 back-slash small-letter-n and space) removed space.
       
    43 
       
    44 ** .descr file format.
       
    45 
       
    46 First line added to .ifo file as value of description.
       
    47 
       
    48 Next lines ignored and used for miscellaneous notes.
       
    49 
       
    50 * IPA chars.
       
    51 
       
    52 Hare list of spetial IPA chars (code present in UTF-8 encoding):
       
    53 
       
    54   θʃŋʧðʒæıʌʊɒɛəɑɜɔˌˈːˑṃṇḷ
       
    55   æɑɒʌәєŋvθðʃʒɚːɡˏˊˋ
       
    56 
       
    57 You can copy/paste they in phonetic string.
       
    58 
       
    59 ** TODO
       
    60 
       
    61             Front       Central     Back
       
    62          long  short long  short long  short
       
    63   Close   iː    ɪ                 uː    ʊ
       
    64   Mid           e     ɜː    ə     ɔː
       
    65   Open          æ           ʌ     ɑː    ɒ
       
    66 
       
    67       Diphthong          Triphthong
       
    68   Closing    Centring
       
    69    /eɪ/       /ɪə/        /aɪə/
       
    70    /aɪ/       /eə/        /ɑʊə/
       
    71    /ɔɪ/       /ʊə/
       
    72    /əʊ/
       
    73    /aʊ/
       
    74 
       
    75 ** Old vs. new transcription.
       
    76 
       
    77 From "Better English pronunciation.":
       
    78 
       
    79   Old  iː i e ɔː u uː ei ou ai au ɔi æ ɔ ʌ əː ɑː iə ɛə uə ə
       
    80   New  iː ɪ e ɔː ʊ uː eɪ əʊ aɪ aʊ ɔɪ æ ɒ ʌ ɜː ɑː ɪə eə ʊə ə
       
    81 
       
    82 Also from wikipedia:
       
    83 
       
    84   Old  æ e əː ʌɪ ɑʊ ɛə
       
    85   New  a ɛ ɜː aɪ aʊ eə
       
    86 
       
    87 ** Emacs.
       
    88 
       
    89 For entering IPA chars use IPA input method. To enable it type
       
    90 
       
    91   C-u C-\ ipa <enter>
       
    92 
       
    93 All chars from alphabet typed as usual. How type special chars see below:
       
    94 
       
    95 For vowel:
       
    96 
       
    97   æ ae
       
    98   ɑ o| (small letter o and ) or A (upper letter A)
       
    99   ɒ |o () or /A
       
   100   ʊ U (upper-letter-u)
       
   101   ɛ /3 (slash three)
       
   102   ɔ /c
       
   103   ə /e
       
   104   ʌ /v
       
   105   ɪ I
       
   106 
       
   107 For consonant:
       
   108 
       
   109   θ th
       
   110   ð dh
       
   111   ʃ sh
       
   112   ʒ zh or 3
       
   113   ŋ ng
       
   114 
       
   115 Special chars:
       
   116 
       
   117   ː : (semicolon)
       
   118   ˈ ' (quote)
       
   119   ˌ ` (back quote)
       
   120