📄 lang.es_ar.php
字号:
<?php/* vim: set expandtab tabstop=4 shiftwidth=4: *///// +----------------------------------------------------------------------+// | PHP version 4 |// +----------------------------------------------------------------------+// | Copyright (c) 1997-2003 The PHP Group |// +----------------------------------------------------------------------+// | This source file is subject to version 3.0 of the PHP license, |// | that is bundled with this package in the file LICENSE, and is |// | available at through the world-wide-web at |// | http://www.php.net/license/3_0.txt. |// | If you did not receive a copy of the PHP license and are unable to |// | obtain it through the world-wide-web, please send a note to |// | license@php.net so we can mail you a copy immediately. |// +----------------------------------------------------------------------+// | Authors: Martin Marrese <mmare@mecon.gov.ar> |// | Based On: lang_es.php - Xavier Noguer |// +----------------------------------------------------------------------+// $Id: lang.es_AR.php,v 1.1 2006/11/17 05:59:52 daintree Exp $//// Numbers_Words class extension to spell numbers in Argentinian Spanish // ///** * Class for translating numbers into Argentinian Spanish. * * @author Martin Marrese * @package Numbers_Words *//** * Include needed files */require_once("Numbers/Words.php");/** * Class for translating numbers into Argentinian Spanish. * It supports up to decallones (10^6). * It doesn't support spanish tonic accents (acentos). * * @author Martin Marrese * @package Numbers_Words */class Numbers_Words_es_AR extends Numbers_Words{ // {{{ properties /** * Locale name * @var string * @access public */ var $locale = 'es_AR'; /** * Language name in English * @var string * @access public */ var $lang = 'Spanish'; /** * Native language name * @var string * @access public */ var $lang_native = 'Espa駉l'; /** * The word for the minus sign * @var string * @access private */ var $_minus = 'menos'; /** * The sufixes for exponents (singular and plural) * @var array * @access private */ var $_exponent = array( 0 => array('',''), 3 => array('mil','mil'), 6 => array('mill髇','millones'), 12 => array('bill髇','billones'), 18 => array('tril髇','trillones'), 24 => array('cuatrill髇','cuatrillones'), 30 => array('quintill髇','quintillones'), 36 => array('sextill髇','sextillones'), 42 => array('septill髇','septillones'), 48 => array('octall髇','octallones'), 54 => array('nonall髇','nonallones'), 60 => array('decall髇','decallones'), ); /** * The array containing the digits (indexed by the digits themselves). * @var array * @access private */ var $_digits = array( 0 => 'cero', 'uno', 'dos', 'tres', 'cuatro', 'cinco', 'seis', 'siete', 'ocho', 'nueve' ); /** * The word separator * @var string * @access private */ var $_sep = ' '; /** * The currency names (based on the below links, * informations from central bank websites and on encyclopedias) * * @var array * @link http://30-03-67.dreamstation.com/currency_alfa.htm World Currency Information * @link http://www.jhall.demon.co.uk/currency/by_abbrev.html World currencies * @link http://www.shoestring.co.kr/world/p.visa/change.htm Currency names in English * @access private */ var $_currency_names = array( 'ALL' => array(array('lek'), array('qindarka')), 'AUD' => array(array('Australian dollar'), array('cent')), 'ARS' => array(array('Peso'), array ('centavo')), 'BAM' => array(array('convertible marka'), array('fenig')), 'BGN' => array(array('lev'), array('stotinka')), 'BRL' => array(array('real'), array('centavos')), 'BYR' => array(array('Belarussian rouble'), array('kopiejka')), 'CAD' => array(array('Canadian dollar'), array('cent')), 'CHF' => array(array('Swiss franc'), array('rapp')), 'CYP' => array(array('Cypriot pound'), array('cent')), 'CZK' => array(array('Czech koruna'), array('halerz')), 'DKK' => array(array('Danish krone'), array('ore')), 'EEK' => array(array('kroon'), array('senti')), 'EUR' => array(array('euro'), array('euro-cent')), 'GBP' => array(array('pound', 'pounds'), array('pence')), 'HKD' => array(array('Hong Kong dollar'), array('cent')), 'HRK' => array(array('Croatian kuna'), array('lipa')), 'HUF' => array(array('forint'), array('filler')), 'ILS' => array(array('new sheqel','new sheqels'), array('agora','agorot')), 'ISK' => array(array('Icelandic kr髇a'), array('aurar')), 'JPY' => array(array('yen'), array('sen')), 'LTL' => array(array('litas'), array('cent')), 'LVL' => array(array('lat'), array('sentim')), 'MKD' => array(array('Macedonian dinar'), array('deni')), 'MTL' => array(array('Maltese lira'), array('centym')), 'NOK' => array(array('Norwegian krone'), array('oere')), 'PLN' => array(array('zloty', 'zlotys'), array('grosz')), 'ROL' => array(array('Romanian leu'), array('bani')), 'RUB' => array(array('Russian Federation rouble'), array('kopiejka')), 'SEK' => array(array('Swedish krona'), array('oere')), 'SIT' => array(array('Tolar'), array('stotinia')), 'SKK' => array(array('Slovak koruna'), array()), 'TRL' => array(array('lira'), array('kuru
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -