diff options
Diffstat (limited to 'languages/messages/MessagesNah.php')
-rw-r--r-- | languages/messages/MessagesNah.php | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/languages/messages/MessagesNah.php b/languages/messages/MessagesNah.php new file mode 100644 index 00000000..b3f4b31f --- /dev/null +++ b/languages/messages/MessagesNah.php @@ -0,0 +1,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' + +); + + +?> |