Merge
This commit is contained in:
commit
da50e8f4ce
@ -84,6 +84,13 @@ class ComptageController extends Zend_Controller_Action
|
|||||||
$request = $this->getRequest();
|
$request = $this->getRequest();
|
||||||
$ref = $request->getParam('ref', '');
|
$ref = $request->getParam('ref', '');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Take care of "ref", remove all special char, accent and replace space by _
|
||||||
|
*/
|
||||||
|
require_once 'i18n/cleanchar.php';
|
||||||
|
$ref = str_replace(' ', '_', $ref);
|
||||||
|
$ref = cleanutf8($ref);
|
||||||
|
|
||||||
if (empty($ref)) {
|
if (empty($ref)) {
|
||||||
echo json_encode(array(
|
echo json_encode(array(
|
||||||
'error'=>1,
|
'error'=>1,
|
||||||
|
@ -225,8 +225,8 @@ class EnrichissementController extends Zend_Controller_Action
|
|||||||
$result = $table->fetchRow($sql);
|
$result = $table->fetchRow($sql);
|
||||||
if(!empty($result)) {
|
if(!empty($result)) {
|
||||||
$result = $result->toArray();
|
$result = $result->toArray();
|
||||||
$date = explode(' ', $result['dateAdded']);
|
$date = substr($result['dateAdded'],0,4).substr($result['dateAdded'],5,2);
|
||||||
$path = $config->path->data.'/'.substr($date[0], 0, 7).'/';
|
$path = $config->path->data.'/'.$date.'/';
|
||||||
$file = $result['fichier'];
|
$file = $result['fichier'];
|
||||||
}
|
}
|
||||||
$content_type = 'application/csv-tab-delimited-table';
|
$content_type = 'application/csv-tab-delimited-table';
|
||||||
|
@ -161,7 +161,8 @@ class GestionController extends Zend_Controller_Action
|
|||||||
'e.reference AS commandeReference',
|
'e.reference AS commandeReference',
|
||||||
'e.nbLigneTotales',
|
'e.nbLigneTotales',
|
||||||
'e.uniteInsee',
|
'e.uniteInsee',
|
||||||
"DATE_FORMAT(e.dateAdded, '%Y/%m/%d %H:%i:%s') AS dateAdded"
|
"DATE_FORMAT(e.dateAdded, '%Y/%m/%d %H:%i:%s') AS dateAdded",
|
||||||
|
'e.fichier'
|
||||||
))
|
))
|
||||||
->join('criteres', 'idCriteres = criteres.id', array(
|
->join('criteres', 'idCriteres = criteres.id', array(
|
||||||
'criteres.reference AS critereReference',
|
'criteres.reference AS critereReference',
|
||||||
|
@ -1,12 +1,23 @@
|
|||||||
<?php if ($this->noSelection) { ?>
|
<?php if ($this->noSelection) { ?>
|
||||||
Vous n'avez pas sélectionné de critères !
|
Vous n'avez pas sélectionné de critères !
|
||||||
<?php } else {?>
|
<?php } else {?>
|
||||||
|
<style>
|
||||||
|
span.message {
|
||||||
|
font-size:0.7em;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<div id="result">
|
<div id="result">
|
||||||
<form method="post" id="save" name="save" action="<?=$this->url(array('controller'=>'comptage', 'action'=>'save'))?>">
|
<form method="post" id="save" name="save" action="<?=$this->url(array('controller'=>'comptage', 'action'=>'save'))?>">
|
||||||
<label>Votre référence : </label><input type="text" name="ref" value="" />
|
<label>Votre référence : </label><input type="text" name="ref" value="" />
|
||||||
</form>
|
</form>
|
||||||
<span class="message" style="color:#ff0000;"></span>
|
<span class="message" style="color:#ff0000;"></span>
|
||||||
|
<span class="message">
|
||||||
|
La saisie d'une référence vous permettra de suivre vos ciblages et vos commandes.<br/>
|
||||||
|
Les accents et les carractères spéciaux, seront remplacés automatiquement.<br/>
|
||||||
|
Les espaces seront remplacés par "_"
|
||||||
|
</span>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript" src="/themes/default/scripts/jquery.form.js"></script>
|
<script type="text/javascript" src="/themes/default/scripts/jquery.form.js"></script>
|
||||||
<script>
|
<script>
|
||||||
|
@ -95,7 +95,7 @@ if ( count($identifiants)==0 || count($dataProfil)==0 ) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Let's go
|
//Let's go
|
||||||
$mois = date('Y-m');
|
$mois = date('Ym');
|
||||||
|
|
||||||
if(!file_exists($config->path->data.'/'.$mois))
|
if(!file_exists($config->path->data.'/'.$mois))
|
||||||
mkdir($config->path->data.'/'.$mois);
|
mkdir($config->path->data.'/'.$mois);
|
||||||
|
92
library/i18n/cleanchar.php
Normal file
92
library/i18n/cleanchar.php
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @file
|
||||||
|
* Miscellaneous functions to clean string.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clean up a string value.
|
||||||
|
*
|
||||||
|
* Resulting string contains only alphanumerics and separators.
|
||||||
|
*
|
||||||
|
* @param $string
|
||||||
|
* A string to clean.
|
||||||
|
* @param $clean_slash
|
||||||
|
* Whether to clean slashes from the given string.
|
||||||
|
* @return
|
||||||
|
* The cleaned string.
|
||||||
|
*/
|
||||||
|
function cleanstring($string) {
|
||||||
|
$transliterate = TRUE;
|
||||||
|
$reduce_ascii = FALSE;
|
||||||
|
$output = $string;
|
||||||
|
|
||||||
|
// Remove accents and transliterate
|
||||||
|
if ($transliterate) {
|
||||||
|
static $i18n_loaded = false;
|
||||||
|
static $translations = array();
|
||||||
|
if (!$i18n_loaded) {
|
||||||
|
$path = realpath(dirname(__FILE__));
|
||||||
|
if (is_file($path .'/i18n-ascii.txt')) {
|
||||||
|
$translations = parse_ini_file($path .'/i18n-ascii.txt');
|
||||||
|
}
|
||||||
|
$i18n_loaded = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
$output = strtr($output, $translations);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reduce to the subset of ASCII96 letters and numbers
|
||||||
|
if ($reduce_ascii) {
|
||||||
|
$pattern = '/[^a-zA-Z0-9\/]+/ ';
|
||||||
|
$output = preg_replace($pattern, $separator, $output);
|
||||||
|
}
|
||||||
|
return $output;
|
||||||
|
}
|
||||||
|
|
||||||
|
function cleanutf8($string) {
|
||||||
|
$transliterate = TRUE;
|
||||||
|
$output = $string;
|
||||||
|
|
||||||
|
// Remove accents and transliterate
|
||||||
|
if ($transliterate) {
|
||||||
|
static $i18n_loaded = false;
|
||||||
|
static $translations = array();
|
||||||
|
if (!$i18n_loaded) {
|
||||||
|
$path = realpath(dirname(__FILE__));
|
||||||
|
if (is_file($path .'/i18n-ascii.txt')) {
|
||||||
|
$translations = parse_ini_file($path .'/i18n-ascii.txt');
|
||||||
|
}
|
||||||
|
$i18n_loaded = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
$output = strtr($output, $translations);
|
||||||
|
}
|
||||||
|
return $output;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fixes the encoding to uf8
|
||||||
|
function fixEncoding($in_str)
|
||||||
|
{
|
||||||
|
$cur_encoding = mb_detect_encoding($in_str) ;
|
||||||
|
if($cur_encoding == "UTF-8" && mb_check_encoding($in_str,"UTF-8"))
|
||||||
|
return $in_str;
|
||||||
|
else
|
||||||
|
return utf8_encode($in_str);
|
||||||
|
} // fixEncoding
|
||||||
|
|
||||||
|
|
||||||
|
function cleanstring_deep($value)
|
||||||
|
{
|
||||||
|
$value = is_array($value) ?
|
||||||
|
array_map('cleanstring_deep', $value) :
|
||||||
|
cleanstring($value);
|
||||||
|
return $value;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
?>
|
564
library/i18n/i18n-ascii.txt
Normal file
564
library/i18n/i18n-ascii.txt
Normal file
@ -0,0 +1,564 @@
|
|||||||
|
; global transliteration
|
||||||
|
[default]
|
||||||
|
À = "A"
|
||||||
|
Á = "A"
|
||||||
|
 = "A"
|
||||||
|
à = "A"
|
||||||
|
Ä = "Ae"
|
||||||
|
Å = "A"
|
||||||
|
Æ = "A"
|
||||||
|
Ā = "A"
|
||||||
|
Ą = "A"
|
||||||
|
Ă = "A"
|
||||||
|
Ç = "C"
|
||||||
|
Ć = "C"
|
||||||
|
Č = "C"
|
||||||
|
Ĉ = "C"
|
||||||
|
Ċ = "C"
|
||||||
|
Ď = "D"
|
||||||
|
Đ = "D"
|
||||||
|
È = "E"
|
||||||
|
É = "E"
|
||||||
|
Ê = "E"
|
||||||
|
Ë = "E"
|
||||||
|
Ē = "E"
|
||||||
|
Ę = "E"
|
||||||
|
Ě = "E"
|
||||||
|
Ĕ = "E"
|
||||||
|
Ė = "E"
|
||||||
|
Ĝ = "G"
|
||||||
|
Ğ = "G"
|
||||||
|
Ġ = "G"
|
||||||
|
Ģ = "G"
|
||||||
|
Ĥ = "H"
|
||||||
|
Ħ = "H"
|
||||||
|
Ì = "I"
|
||||||
|
Í = "I"
|
||||||
|
Î = "I"
|
||||||
|
Ï = "I"
|
||||||
|
Ī = "I"
|
||||||
|
Ĩ = "I"
|
||||||
|
Ĭ = "I"
|
||||||
|
Į = "I"
|
||||||
|
İ = "I"
|
||||||
|
IJ = "IJ"
|
||||||
|
Ĵ = "J"
|
||||||
|
Ķ = "K"
|
||||||
|
Ľ = "K"
|
||||||
|
Ĺ = "K"
|
||||||
|
Ļ = "K"
|
||||||
|
Ŀ = "K"
|
||||||
|
Ł = "L"
|
||||||
|
Ñ = "N"
|
||||||
|
Ń = "N"
|
||||||
|
Ň = "N"
|
||||||
|
Ņ = "N"
|
||||||
|
Ŋ = "N"
|
||||||
|
Ò = "O"
|
||||||
|
Ó = "O"
|
||||||
|
Ô = "O"
|
||||||
|
Õ = "O"
|
||||||
|
Ö = "Oe"
|
||||||
|
Ø = "O"
|
||||||
|
Ō = "O"
|
||||||
|
Ő = "O"
|
||||||
|
Ŏ = "O"
|
||||||
|
Œ = "OE"
|
||||||
|
Ŕ = "R"
|
||||||
|
Ř = "R"
|
||||||
|
Ŗ = "R"
|
||||||
|
Ś = "S"
|
||||||
|
Ş = "S"
|
||||||
|
Ŝ = "S"
|
||||||
|
Ș = "S"
|
||||||
|
Š = "S"
|
||||||
|
Ť = "T"
|
||||||
|
Ţ = "T"
|
||||||
|
Ŧ = "T"
|
||||||
|
Ț = "T"
|
||||||
|
Ù = "U"
|
||||||
|
Ú = "U"
|
||||||
|
Û = "U"
|
||||||
|
Ü = "Ue"
|
||||||
|
Ū = "U"
|
||||||
|
Ů = "U"
|
||||||
|
Ű = "U"
|
||||||
|
Ŭ = "U"
|
||||||
|
Ũ = "U"
|
||||||
|
Ų = "U"
|
||||||
|
Ŵ = "W"
|
||||||
|
Ŷ = "Y"
|
||||||
|
Ÿ = "Y"
|
||||||
|
Ý = "Y"
|
||||||
|
Ź = "Z"
|
||||||
|
Ż = "Z"
|
||||||
|
Ž = "Z"
|
||||||
|
à = "a"
|
||||||
|
á = "a"
|
||||||
|
â = "a"
|
||||||
|
ã = "a"
|
||||||
|
ä = "ae"
|
||||||
|
ā = "a"
|
||||||
|
ą = "a"
|
||||||
|
ă = "a"
|
||||||
|
å = "a"
|
||||||
|
æ = "ae"
|
||||||
|
ç = "c"
|
||||||
|
ć = "c"
|
||||||
|
č = "c"
|
||||||
|
ĉ = "c"
|
||||||
|
ċ = "c"
|
||||||
|
ď = "d"
|
||||||
|
đ = "d"
|
||||||
|
è = "e"
|
||||||
|
é = "e"
|
||||||
|
ê = "e"
|
||||||
|
ë = "e"
|
||||||
|
ē = "e"
|
||||||
|
ę = "e"
|
||||||
|
ě = "e"
|
||||||
|
ĕ = "e"
|
||||||
|
ė = "e"
|
||||||
|
ƒ = "f"
|
||||||
|
ĝ = "g"
|
||||||
|
ğ = "g"
|
||||||
|
ġ = "g"
|
||||||
|
ģ = "g"
|
||||||
|
ĥ = "h"
|
||||||
|
ħ = "h"
|
||||||
|
ì = "i"
|
||||||
|
í = "i"
|
||||||
|
î = "i"
|
||||||
|
ï = "i"
|
||||||
|
ī = "i"
|
||||||
|
ĩ = "i"
|
||||||
|
ĭ = "i"
|
||||||
|
į = "i"
|
||||||
|
ı = "i"
|
||||||
|
ij = "ij"
|
||||||
|
ĵ = "j"
|
||||||
|
ķ = "k"
|
||||||
|
ĸ = "k"
|
||||||
|
ł = "l"
|
||||||
|
ľ = "l"
|
||||||
|
ĺ = "l"
|
||||||
|
ļ = "l"
|
||||||
|
ŀ = "l"
|
||||||
|
ñ = "n"
|
||||||
|
ń = "n"
|
||||||
|
ň = "n"
|
||||||
|
ņ = "n"
|
||||||
|
ʼn = "n"
|
||||||
|
ŋ = "n"
|
||||||
|
ò = "o"
|
||||||
|
ó = "o"
|
||||||
|
ô = "o"
|
||||||
|
õ = "o"
|
||||||
|
ö = "oe"
|
||||||
|
ø = "o"
|
||||||
|
ō = "o"
|
||||||
|
ő = "o"
|
||||||
|
ŏ = "o"
|
||||||
|
œ = "oe"
|
||||||
|
ŕ = "r"
|
||||||
|
ř = "r"
|
||||||
|
ŗ = "r"
|
||||||
|
ś = "s"
|
||||||
|
š = "s"
|
||||||
|
ş = "s"
|
||||||
|
ť = "t"
|
||||||
|
ţ = "t"
|
||||||
|
ù = "u"
|
||||||
|
ú = "u"
|
||||||
|
û = "u"
|
||||||
|
ü = "ue"
|
||||||
|
ū = "u"
|
||||||
|
ů = "u"
|
||||||
|
ű = "u"
|
||||||
|
ŭ = "u"
|
||||||
|
ũ = "u"
|
||||||
|
ų = "u"
|
||||||
|
ŵ = "w"
|
||||||
|
ÿ = "y"
|
||||||
|
ý = "y"
|
||||||
|
ŷ = "y"
|
||||||
|
ż = "z"
|
||||||
|
ź = "z"
|
||||||
|
ž = "z"
|
||||||
|
ß = "ss"
|
||||||
|
ſ = "ss"
|
||||||
|
Α = "A"
|
||||||
|
Ά = "A"
|
||||||
|
Ἀ = "A"
|
||||||
|
Ἁ = "A"
|
||||||
|
Ἂ = "A"
|
||||||
|
Ἃ = "A"
|
||||||
|
Ἄ = "A"
|
||||||
|
Ἅ = "A"
|
||||||
|
Ἆ = "A"
|
||||||
|
Ἇ = "A"
|
||||||
|
ᾈ = "A"
|
||||||
|
ᾉ = "A"
|
||||||
|
ᾊ = "A"
|
||||||
|
ᾋ = "A"
|
||||||
|
ᾌ = "A"
|
||||||
|
ᾍ = "A"
|
||||||
|
ᾎ = "A"
|
||||||
|
ᾏ = "A"
|
||||||
|
Ᾰ = "A"
|
||||||
|
Ᾱ = "A"
|
||||||
|
Ὰ = "A"
|
||||||
|
Ά = "A"
|
||||||
|
ᾼ = "A"
|
||||||
|
Β = "B"
|
||||||
|
Γ = "G"
|
||||||
|
Δ = "D"
|
||||||
|
Ε = "E"
|
||||||
|
Έ = "E"
|
||||||
|
Ἐ = "E"
|
||||||
|
Ἑ = "E"
|
||||||
|
Ἒ = "E"
|
||||||
|
Ἓ = "E"
|
||||||
|
Ἔ = "E"
|
||||||
|
Ἕ = "E"
|
||||||
|
Έ = "E"
|
||||||
|
Ὲ = "E"
|
||||||
|
Ζ = "Z"
|
||||||
|
Η = "I"
|
||||||
|
Ή = "I"
|
||||||
|
Ἠ = "I"
|
||||||
|
Ἡ = "I"
|
||||||
|
Ἢ = "I"
|
||||||
|
Ἣ = "I"
|
||||||
|
Ἤ = "I"
|
||||||
|
Ἥ = "I"
|
||||||
|
Ἦ = "I"
|
||||||
|
Ἧ = "I"
|
||||||
|
ᾘ = "I"
|
||||||
|
ᾙ = "I"
|
||||||
|
ᾚ = "I"
|
||||||
|
ᾛ = "I"
|
||||||
|
ᾜ = "I"
|
||||||
|
ᾝ = "I"
|
||||||
|
ᾞ = "I"
|
||||||
|
ᾟ = "I"
|
||||||
|
Ὴ = "I"
|
||||||
|
Ή = "I"
|
||||||
|
ῌ = "I"
|
||||||
|
Θ = "TH"
|
||||||
|
Ι = "I"
|
||||||
|
Ί = "I"
|
||||||
|
Ϊ = "I"
|
||||||
|
Ἰ = "I"
|
||||||
|
Ἱ = "I"
|
||||||
|
Ἲ = "I"
|
||||||
|
Ἳ = "I"
|
||||||
|
Ἴ = "I"
|
||||||
|
Ἵ = "I"
|
||||||
|
Ἶ = "I"
|
||||||
|
Ἷ = "I"
|
||||||
|
Ῐ = "I"
|
||||||
|
Ῑ = "I"
|
||||||
|
Ὶ = "I"
|
||||||
|
Ί = "I"
|
||||||
|
Κ = "K"
|
||||||
|
Λ = "L"
|
||||||
|
Μ = "M"
|
||||||
|
Ν = "N"
|
||||||
|
Ξ = "KS"
|
||||||
|
Ο = "O"
|
||||||
|
Ό = "O"
|
||||||
|
Ὀ = "O"
|
||||||
|
Ὁ = "O"
|
||||||
|
Ὂ = "O"
|
||||||
|
Ὃ = "O"
|
||||||
|
Ὄ = "O"
|
||||||
|
Ὅ = "O"
|
||||||
|
Ὸ = "O"
|
||||||
|
Ό = "O"
|
||||||
|
Π = "P"
|
||||||
|
Ρ = "R"
|
||||||
|
Ῥ = "R"
|
||||||
|
Σ = "S"
|
||||||
|
Τ = "T"
|
||||||
|
Υ = "Y"
|
||||||
|
Ύ = "Y"
|
||||||
|
Ϋ = "Y"
|
||||||
|
Ὑ = "Y"
|
||||||
|
Ὓ = "Y"
|
||||||
|
Ὕ = "Y"
|
||||||
|
Ὗ = "Y"
|
||||||
|
Ῠ = "Y"
|
||||||
|
Ῡ = "Y"
|
||||||
|
Ὺ = "Y"
|
||||||
|
Ύ = "Y"
|
||||||
|
Φ = "F"
|
||||||
|
Χ = "X"
|
||||||
|
Ψ = "PS"
|
||||||
|
Ω = "O"
|
||||||
|
Ώ = "O"
|
||||||
|
Ὠ = "O"
|
||||||
|
Ὡ = "O"
|
||||||
|
Ὢ = "O"
|
||||||
|
Ὣ = "O"
|
||||||
|
Ὤ = "O"
|
||||||
|
Ὥ = "O"
|
||||||
|
Ὦ = "O"
|
||||||
|
Ὧ = "O"
|
||||||
|
ᾨ = "O"
|
||||||
|
ᾩ = "O"
|
||||||
|
ᾪ = "O"
|
||||||
|
ᾫ = "O"
|
||||||
|
ᾬ = "O"
|
||||||
|
ᾭ = "O"
|
||||||
|
ᾮ = "O"
|
||||||
|
ᾯ = "O"
|
||||||
|
Ὼ = "O"
|
||||||
|
Ώ = "O"
|
||||||
|
ῼ = "O"
|
||||||
|
α = "a"
|
||||||
|
ά = "a"
|
||||||
|
ἀ = "a"
|
||||||
|
ἁ = "a"
|
||||||
|
ἂ = "a"
|
||||||
|
ἃ = "a"
|
||||||
|
ἄ = "a"
|
||||||
|
ἅ = "a"
|
||||||
|
ἆ = "a"
|
||||||
|
ἇ = "a"
|
||||||
|
ᾀ = "a"
|
||||||
|
ᾁ = "a"
|
||||||
|
ᾂ = "a"
|
||||||
|
ᾃ = "a"
|
||||||
|
ᾄ = "a"
|
||||||
|
ᾅ = "a"
|
||||||
|
ᾆ = "a"
|
||||||
|
ᾇ = "a"
|
||||||
|
ὰ = "a"
|
||||||
|
ά = "a"
|
||||||
|
ᾰ = "a"
|
||||||
|
ᾱ = "a"
|
||||||
|
ᾲ = "a"
|
||||||
|
ᾳ = "a"
|
||||||
|
ᾴ = "a"
|
||||||
|
ᾶ = "a"
|
||||||
|
ᾷ = "a"
|
||||||
|
β = "b"
|
||||||
|
γ = "g"
|
||||||
|
δ = "d"
|
||||||
|
ε = "e"
|
||||||
|
έ = "e"
|
||||||
|
ἐ = "e"
|
||||||
|
ἑ = "e"
|
||||||
|
ἒ = "e"
|
||||||
|
ἓ = "e"
|
||||||
|
ἔ = "e"
|
||||||
|
ἕ = "e"
|
||||||
|
ὲ = "e"
|
||||||
|
έ = "e"
|
||||||
|
ζ = "z"
|
||||||
|
η = "i"
|
||||||
|
ή = "i"
|
||||||
|
ἠ = "i"
|
||||||
|
ἡ = "i"
|
||||||
|
ἢ = "i"
|
||||||
|
ἣ = "i"
|
||||||
|
ἤ = "i"
|
||||||
|
ἥ = "i"
|
||||||
|
ἦ = "i"
|
||||||
|
ἧ = "i"
|
||||||
|
ᾐ = "i"
|
||||||
|
ᾑ = "i"
|
||||||
|
ᾒ = "i"
|
||||||
|
ᾓ = "i"
|
||||||
|
ᾔ = "i"
|
||||||
|
ᾕ = "i"
|
||||||
|
ᾖ = "i"
|
||||||
|
ᾗ = "i"
|
||||||
|
ὴ = "i"
|
||||||
|
ή = "i"
|
||||||
|
ῂ = "i"
|
||||||
|
ῃ = "i"
|
||||||
|
ῄ = "i"
|
||||||
|
ῆ = "i"
|
||||||
|
ῇ = "i"
|
||||||
|
θ = "th"
|
||||||
|
ι = "i"
|
||||||
|
ί = "i"
|
||||||
|
ϊ = "i"
|
||||||
|
ΐ = "i"
|
||||||
|
ἰ = "i"
|
||||||
|
ἱ = "i"
|
||||||
|
ἲ = "i"
|
||||||
|
ἳ = "i"
|
||||||
|
ἴ = "i"
|
||||||
|
ἵ = "i"
|
||||||
|
ἶ = "i"
|
||||||
|
ἷ = "i"
|
||||||
|
ὶ = "i"
|
||||||
|
ί = "i"
|
||||||
|
ῐ = "i"
|
||||||
|
ῑ = "i"
|
||||||
|
ῒ = "i"
|
||||||
|
ΐ = "i"
|
||||||
|
ῖ = "i"
|
||||||
|
ῗ = "i"
|
||||||
|
κ = "k"
|
||||||
|
λ = "l"
|
||||||
|
μ = "m"
|
||||||
|
ν = "n"
|
||||||
|
ξ = "ks"
|
||||||
|
ο = "o"
|
||||||
|
ό = "o"
|
||||||
|
ὀ = "o"
|
||||||
|
ὁ = "o"
|
||||||
|
ὂ = "o"
|
||||||
|
ὃ = "o"
|
||||||
|
ὄ = "o"
|
||||||
|
ὅ = "o"
|
||||||
|
ὸ = "o"
|
||||||
|
ό = "o"
|
||||||
|
π = "p"
|
||||||
|
ρ = "r"
|
||||||
|
ῤ = "r"
|
||||||
|
ῥ = "r"
|
||||||
|
σ = "s"
|
||||||
|
ς = "s"
|
||||||
|
τ = "t"
|
||||||
|
υ = "y"
|
||||||
|
ύ = "y"
|
||||||
|
ϋ = "y"
|
||||||
|
ΰ = "y"
|
||||||
|
ὐ = "y"
|
||||||
|
ὑ = "y"
|
||||||
|
ὒ = "y"
|
||||||
|
ὓ = "y"
|
||||||
|
ὔ = "y"
|
||||||
|
ὕ = "y"
|
||||||
|
ὖ = "y"
|
||||||
|
ὗ = "y"
|
||||||
|
ὺ = "y"
|
||||||
|
ύ = "y"
|
||||||
|
ῠ = "y"
|
||||||
|
ῡ = "y"
|
||||||
|
ῢ = "y"
|
||||||
|
ΰ = "y"
|
||||||
|
ῦ = "y"
|
||||||
|
ῧ = "y"
|
||||||
|
φ = "f"
|
||||||
|
χ = "x"
|
||||||
|
ψ = "ps"
|
||||||
|
ω = "o"
|
||||||
|
ώ = "o"
|
||||||
|
ὠ = "o"
|
||||||
|
ὡ = "o"
|
||||||
|
ὢ = "o"
|
||||||
|
ὣ = "o"
|
||||||
|
ὤ = "o"
|
||||||
|
ὥ = "o"
|
||||||
|
ὦ = "o"
|
||||||
|
ὧ = "o"
|
||||||
|
ᾠ = "o"
|
||||||
|
ᾡ = "o"
|
||||||
|
ᾢ = "o"
|
||||||
|
ᾣ = "o"
|
||||||
|
ᾤ = "o"
|
||||||
|
ᾥ = "o"
|
||||||
|
ᾦ = "o"
|
||||||
|
ᾧ = "o"
|
||||||
|
ὼ = "o"
|
||||||
|
ώ = "o"
|
||||||
|
ῲ = "o"
|
||||||
|
ῳ = "o"
|
||||||
|
ῴ = "o"
|
||||||
|
ῶ = "o"
|
||||||
|
ῷ = "o"
|
||||||
|
¨ = ""
|
||||||
|
΅ = ""
|
||||||
|
᾿ = ""
|
||||||
|
῾ = ""
|
||||||
|
῍ = ""
|
||||||
|
῝ = ""
|
||||||
|
῎ = ""
|
||||||
|
῞ = ""
|
||||||
|
῏ = ""
|
||||||
|
῟ = ""
|
||||||
|
῀ = ""
|
||||||
|
῁ = ""
|
||||||
|
΄ = ""
|
||||||
|
΅ = ""
|
||||||
|
` = ""
|
||||||
|
῭ = ""
|
||||||
|
ͺ = ""
|
||||||
|
᾽ = ""
|
||||||
|
А = "A"
|
||||||
|
Б = "B"
|
||||||
|
В = "V"
|
||||||
|
Г = "G"
|
||||||
|
Д = "D"
|
||||||
|
Е = "E"
|
||||||
|
Ё = "E"
|
||||||
|
Ж = "ZH"
|
||||||
|
З = "Z"
|
||||||
|
И = "I"
|
||||||
|
Й = "I"
|
||||||
|
К = "K"
|
||||||
|
Л = "L"
|
||||||
|
М = "M"
|
||||||
|
Н = "N"
|
||||||
|
О = "O"
|
||||||
|
П = "P"
|
||||||
|
Р = "R"
|
||||||
|
С = "S"
|
||||||
|
Т = "T"
|
||||||
|
У = "U"
|
||||||
|
Ф = "F"
|
||||||
|
Х = "KH"
|
||||||
|
Ц = "TS"
|
||||||
|
Ч = "CH"
|
||||||
|
Ш = "SH"
|
||||||
|
Щ = "SHCH"
|
||||||
|
Ы = "Y"
|
||||||
|
Э = "E"
|
||||||
|
Ю = "YU"
|
||||||
|
Я = "YA"
|
||||||
|
а = "A"
|
||||||
|
б = "B"
|
||||||
|
в = "V"
|
||||||
|
г = "G"
|
||||||
|
д = "D"
|
||||||
|
е = "E"
|
||||||
|
ё = "E"
|
||||||
|
ж = "ZH"
|
||||||
|
з = "Z"
|
||||||
|
и = "I"
|
||||||
|
й = "I"
|
||||||
|
к = "K"
|
||||||
|
л = "L"
|
||||||
|
м = "M"
|
||||||
|
н = "N"
|
||||||
|
о = "O"
|
||||||
|
п = "P"
|
||||||
|
р = "R"
|
||||||
|
с = "S"
|
||||||
|
т = "T"
|
||||||
|
у = "U"
|
||||||
|
ф = "F"
|
||||||
|
х = "KH"
|
||||||
|
ц = "TS"
|
||||||
|
ч = "CH"
|
||||||
|
ш = "SH"
|
||||||
|
щ = "SHCH"
|
||||||
|
ы = "Y"
|
||||||
|
э = "E"
|
||||||
|
ю = "YU"
|
||||||
|
я = "YA"
|
||||||
|
Ъ = ""
|
||||||
|
ъ = ""
|
||||||
|
Ь = ""
|
||||||
|
ь = ""
|
||||||
|
|
||||||
|
ð = "d"
|
||||||
|
Ð = "D"
|
||||||
|
þ = "th"
|
||||||
|
Þ = "TH"
|
2
library/i18n/special.txt
Normal file
2
library/i18n/special.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
[default]
|
||||||
|
№ = "N°"
|
Loading…
Reference in New Issue
Block a user