You are here

x00.php in Transliteration 7.3

File

data/x00.php
View source
<?php

$base = array(
  // Note: to save memory plain ASCII mappings have been left out.
  0x80 => '',
  '',
  '',
  '',
  '',
  '',
  '',
  '',
  '',
  '',
  '',
  '',
  '',
  '',
  '',
  '',
  0x90 => '',
  '',
  '',
  '',
  '',
  '',
  '',
  '',
  '',
  '',
  '',
  '',
  '',
  '',
  '',
  '',
  0xa0 => ' ',
  '!',
  'C/',
  'PS',
  '$?',
  'Y=',
  '|',
  'SS',
  '"',
  '(c)',
  'a',
  '<<',
  '!',
  '',
  '(r)',
  '-',
  0xb0 => 'deg',
  '+-',
  '2',
  '3',
  '\'',
  'u',
  'P',
  '*',
  ',',
  '1',
  'o',
  '>>',
  '1/4',
  '1/2',
  '3/4',
  '?',
  0xc0 => 'A',
  'A',
  'A',
  'A',
  'A',
  'A',
  'AE',
  'C',
  'E',
  'E',
  'E',
  'E',
  'I',
  'I',
  'I',
  'I',
  0xd0 => 'D',
  'N',
  'O',
  'O',
  'O',
  'O',
  'O',
  'x',
  'O',
  'U',
  'U',
  'U',
  'U',
  'Y',
  'Th',
  'ss',
  0xe0 => 'a',
  'a',
  'a',
  'a',
  'a',
  'a',
  'ae',
  'c',
  'e',
  'e',
  'e',
  'e',
  'i',
  'i',
  'i',
  'i',
  0xf0 => 'd',
  'n',
  'o',
  'o',
  'o',
  'o',
  'o',
  '/',
  'o',
  'u',
  'u',
  'u',
  'u',
  'y',
  'th',
  'y',
);

// Overrides for Danish input.
$variant['da'] = array(
  0xc5 => 'Aa',
  0xc6 => 'Ae',
  0xd8 => 'Oe',
  0xe5 => 'aa',
  0xe6 => 'ae',
  0xf8 => 'oe',
);

// Overrides for German input.
$variant['de'] = array(
  0xc4 => 'Ae',
  0xd6 => 'Oe',
  0xdc => 'Ue',
  0xe4 => 'ae',
  0xf6 => 'oe',
  0xfc => 'ue',
  0xdf => 'ss',
);

// Overrides for Spanish input.
$variant['es'] = array(
  0xe1 => 'a',
  0xe9 => 'e',
  0xed => 'i',
  0xf3 => 'o',
  0xfa => 'u',
  0xf1 => 'n',
);