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
|
<?php
/** Nahuatl
*
* @package MediaWiki
* @subpackage Language
*
* @author Rob Church <robchur@gmail.com>
*
* @copyright Copyright © 2006, Rob Church
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
*/
# Per conversation with a user in IRC, we inherit from Spanish and work from there
# Nahuatl was the language of the Aztecs, and a modern speaker is most likely to
# understand Spanish if a Nah translation is not available
$fallback = 'es';
$messages = array(
# Month names
'january' => 'Tlacenti',
'february' => 'Tlaonti',
'march' => 'Tlayeti',
'april' => 'Tlanauhtl',
'may' => 'Tlamacuilti',
'june' => 'Tlachicuazti',
'august' => 'Tlachiconti',
'september' => 'Tlachicnauhti',
'october' => 'Tlamatlacti',
'november' => 'Tlamactlihuanceti',
'december' => 'Tlamactlihuanonti',
# Days of the week
'monday' => 'Metztlitonal',
'tuesday' => 'Huitzilopochtonal',
'wednesday' => 'Yacatlipotonal',
'thursday' => 'Tezcatlipotonal',
'friday' => 'Quetzalcoatonal',
'saturday' => 'Tlaloctitonal',
'sunday' => 'Tonatiutonal',
# Preferences etc.
'userlogin' => 'Calaqui / Registrarse',
'yourlanguage' => 'Tlahtolli:',
'yourpassword' => 'Tlahtolichtacayo',
'yourpasswordagain' => 'Tlahtolichtacayo zapa'
);
?>
|