Andrey Andreev | e734b38 | 2012-03-26 13:42:36 +0300 | [diff] [blame] | 1 | <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Phil Sturgeon | 07c1ac8 | 2012-03-09 17:03:37 +0000 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.2.4 or newer |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 6 | * |
| 7 | * NOTICE OF LICENSE |
Andrey Andreev | e734b38 | 2012-03-26 13:42:36 +0300 | [diff] [blame] | 8 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 9 | * Licensed under the Academic Free License version 3.0 |
Andrey Andreev | e734b38 | 2012-03-26 13:42:36 +0300 | [diff] [blame] | 10 | * |
Derek Jones | 61df906 | 2011-10-21 09:55:40 -0500 | [diff] [blame] | 11 | * This source file is subject to the Academic Free License (AFL 3.0) that is |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 12 | * bundled with this package in the files license_afl.txt / license_afl.rst. |
| 13 | * It is also available through the world wide web at this URL: |
| 14 | * http://opensource.org/licenses/AFL-3.0 |
| 15 | * If you did not receive a copy of the license and are unable to obtain it |
| 16 | * through the world wide web, please send an email to |
| 17 | * licensing@ellislab.com so we can send you a copy immediately. |
| 18 | * |
| 19 | * @package CodeIgniter |
| 20 | * @author EllisLab Dev Team |
Greg Aker | 0defe5d | 2012-01-01 18:46:41 -0600 | [diff] [blame] | 21 | * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/) |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 22 | * @license http://opensource.org/licenses/AFL-3.0 Academic Free License (AFL 3.0) |
| 23 | * @link http://codeigniter.com |
| 24 | * @since Version 1.0 |
| 25 | * @filesource |
| 26 | */ |
| 27 | |
Derek Jones | daf9c01 | 2010-03-05 10:29:30 -0600 | [diff] [blame] | 28 | /* |
| 29 | | ------------------------------------------------------------------- |
| 30 | | Foreign Characters |
| 31 | | ------------------------------------------------------------------- |
| 32 | | This file contains an array of foreign characters for transliteration |
| 33 | | conversion used by the Text helper |
| 34 | | |
| 35 | */ |
Eric Barnes | 5e04480 | 2011-01-11 16:10:26 -0500 | [diff] [blame] | 36 | $foreign_characters = array( |
| 37 | '/ä|æ|ǽ/' => 'ae', |
| 38 | '/ö|œ/' => 'oe', |
| 39 | '/ü/' => 'ue', |
| 40 | '/Ä/' => 'Ae', |
| 41 | '/Ü/' => 'Ue', |
| 42 | '/Ö/' => 'Oe', |
George Petsagourakis | 25ead35 | 2012-04-24 20:07:58 +0300 | [diff] [blame] | 43 | '/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ|Α|Ά/' => 'A', |
| 44 | '/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª|α|ά/' => 'a', |
Eric Barnes | 5e04480 | 2011-01-11 16:10:26 -0500 | [diff] [blame] | 45 | '/Ç|Ć|Ĉ|Ċ|Č/' => 'C', |
| 46 | '/ç|ć|ĉ|ċ|č/' => 'c', |
George Petsagourakis | 25ead35 | 2012-04-24 20:07:58 +0300 | [diff] [blame] | 47 | '/Ð|Ď|Đ|Δ/' => 'Dj', |
| 48 | '/ð|ď|đ|δ/' => 'dj', |
| 49 | '/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě|Ε|Έ/' => 'E', |
| 50 | '/è|é|ê|ë|ē|ĕ|ė|ę|ě|έ|ε/' => 'e', |
| 51 | '/Ĝ|Ğ|Ġ|Ģ|Γ/' => 'G', |
| 52 | '/ĝ|ğ|ġ|ģ|γ/' => 'g', |
Eric Barnes | 5e04480 | 2011-01-11 16:10:26 -0500 | [diff] [blame] | 53 | '/Ĥ|Ħ/' => 'H', |
| 54 | '/ĥ|ħ/' => 'h', |
George Petsagourakis | 25ead35 | 2012-04-24 20:07:58 +0300 | [diff] [blame] | 55 | '/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ|Η|Ή|Ί|Ι|Ϊ/' => 'I', |
| 56 | '/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı|η|ή|ί|ι|ϊ/' => 'i', |
Eric Barnes | 5e04480 | 2011-01-11 16:10:26 -0500 | [diff] [blame] | 57 | '/Ĵ/' => 'J', |
| 58 | '/ĵ/' => 'j', |
George Petsagourakis | 25ead35 | 2012-04-24 20:07:58 +0300 | [diff] [blame] | 59 | '/Ķ|Κ/' => 'K', |
| 60 | '/ķ|κ/' => 'k', |
| 61 | '/Ĺ|Ļ|Ľ|Ŀ|Ł|Λ/' => 'L', |
| 62 | '/ĺ|ļ|ľ|ŀ|ł|λ/' => 'l', |
| 63 | '/Ñ|Ń|Ņ|Ň|Ν/' => 'N', |
| 64 | '/ñ|ń|ņ|ň|ʼn|ν/' => 'n', |
| 65 | '/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ|Ο|Ό|Ω|Ώ/' => 'O', |
| 66 | '/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º|ο|ό|ω|ώ/' => 'o', |
| 67 | '/Ŕ|Ŗ|Ř|Ρ/' => 'R', |
| 68 | '/ŕ|ŗ|ř|ρ/' => 'r', |
George Petsagourakis | 07f09ac | 2012-04-24 20:09:29 +0300 | [diff] [blame] | 69 | '/Ś|Ŝ|Ş|Ș|Š|Σ/' => 'S', |
| 70 | '/ś|ŝ|ş|ș|š|ſ|σ|ς/' => 's', |
| 71 | '/Ț|Ţ|Ť|Ŧ|τ/' => 'T', |
| 72 | '/ț|ţ|ť|ŧ/' => 't', |
Eric Barnes | 5e04480 | 2011-01-11 16:10:26 -0500 | [diff] [blame] | 73 | '/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ/' => 'U', |
George Petsagourakis | 25ead35 | 2012-04-24 20:07:58 +0300 | [diff] [blame] | 74 | '/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ|υ|ύ|ϋ/' => 'u', |
| 75 | '/Ý|Ÿ|Ŷ|Υ|Ύ|Ϋ/' => 'Y', |
Eric Barnes | 5e04480 | 2011-01-11 16:10:26 -0500 | [diff] [blame] | 76 | '/ý|ÿ|ŷ/' => 'y', |
| 77 | '/Ŵ/' => 'W', |
| 78 | '/ŵ/' => 'w', |
George Petsagourakis | 25ead35 | 2012-04-24 20:07:58 +0300 | [diff] [blame] | 79 | '/Ź|Ż|Ž|Ζ/' => 'Z', |
| 80 | '/ź|ż|ž|ζ/' => 'z', |
Eric Barnes | 5e04480 | 2011-01-11 16:10:26 -0500 | [diff] [blame] | 81 | '/Æ|Ǽ/' => 'AE', |
| 82 | '/ß/'=> 'ss', |
| 83 | '/IJ/' => 'IJ', |
| 84 | '/ij/' => 'ij', |
| 85 | '/Œ/' => 'OE', |
George Petsagourakis | 25ead35 | 2012-04-24 20:07:58 +0300 | [diff] [blame] | 86 | '/ƒ/' => 'f', |
| 87 | '/ξ/' => 'ks', |
| 88 | '/π/' => 'p', |
| 89 | '/β/' => 'v', |
| 90 | '/μ/' => 'm', |
| 91 | '/ψ/' => 'ps', |
Eric Barnes | 5e04480 | 2011-01-11 16:10:26 -0500 | [diff] [blame] | 92 | ); |
Derek Jones | daf9c01 | 2010-03-05 10:29:30 -0600 | [diff] [blame] | 93 | |
| 94 | /* End of file foreign_chars.php */ |
Derek Jones | f0b3994 | 2010-03-25 10:08:20 -0500 | [diff] [blame] | 95 | /* Location: ./application/config/foreign_chars.php */ |