Projekt

Obecné

Profil

« Předchozí | Další » 

Revize 707

Přidáno uživatelem Michal Kliment před asi 14 roky(ů)

Opraveno razeni uctu u posileni kreditu na jine ucty.

Zobrazit rozdíly:

freenetis/trunk/kohana/application/i18n/cs_CZ/texts.php
$lang = array
(
'%s days ago' => 'před %s dny',
'%s hours ago' => 'před %s hodinama',
'%s minutes ago' => 'před %s minutama',
'0 means unlimited limit' => '0 znamená neomezený limit.',
'1 day ago' => 'před 1 dnem',
'1 hour ago' => 'před 1 hodinou',
'1 minute ago' => 'před 1 minutou',
'99% chance you won\'t need to change this value' => '99% šance, že nebudete chtít měnit tuto hodnotu.',
'absolute majority' => 'Absolutní většina',
'abstain' => 'Zdržet se',
......
'chairman and agent' => 'Předseda a jednatel',
'change' => 'Změnit',
'change application password' => 'Změnit aplikační heslo',
'change language' => 'Změnit jazyk',
'change member limit' => 'Změnit limit člena',
'change password' => 'Změnit heslo',
'change voicemail password' => 'Změnit heslo hlasové schránky',
......
'mac restriction' => 'MAC restrikce',
'mac restriction file was successfully generated' => 'Soubor s MAC restrikcemi byl úspěšně vygenerován',
'magic switch :-)' => 'Kůzelné tlačítko :-)',
'mail inbox' => 'Doručená pošta',
'mail sent' => 'Odeslaná pošta',
'main' => 'Hlavní',
'make backup' => 'Vytvořit zálohu',
'map' => 'Mapa',
......
'platform' => 'Platforma',
'please contact administrator' => 'Prosím kontaktujte administrátora.',
'please choose carefully your number' => 'Prosím vybírejte číslo opatrně!',
'please choose language' => 'Prosím vyberte jazyk',
'please fill in the form with information about your association' => 'Prosím, vyplňte formulář údaji o vašem sdružení.',
'polarization' => 'Polarizace',
'port' => 'Port',
......
'segments list' => 'Seznam segmentů',
'segments' => 'Segmenty',
'select' => 'Vyber',
'select account type' => 'Vyber typ účtu',
'select action' => 'Vyber činnost',
'select approval template' => 'Vyber hlasovací šablonu',
'select approval type' => 'Vyber hlasovací typ',
......
'show help' => 'Zobrazit nápovědu',
'show invoice' => 'Zobrazit fakturu',
'show invoice item' => 'Zobrazit položku faktury',
'show mail message' => 'Zobrazit poštovní zprávu',
'show parent for this message' => 'Zobrazit rodiče této zprávy',
'show redirection' => 'Zobrazit přesměrování',
'show smokeping record' => 'Zobrazit záznam smokepingu',
freenetis/trunk/kohana/application/controllers/transfers.php
//.url_lang::lang('texts.Member ID')." $dst_account->member_id - "
//.url_lang::lang('texts.Account type'). " $dst_account->account_attribute_id";
}
asort($arr_dst_accounts, SORT_LOCALE_STRING);
// default destination account
$operating = ORM::factory('account')->where('account_attribute_id', Account_attribute_Model::$operating)->find();
// array with only one origin account
......
{
$arr_attributes[$account_attribute->id] = $account_attribute->id.' '.$account_attribute->name;
}
$arr_attributes = arr::merge(array(NULL => '----- '.url_lang::lang('texts.select approval template').' -----'), $arr_attributes);
$arr_attributes = arr::merge(array(NULL => '----- '.url_lang::lang('texts.Select account type').' -----'), $arr_attributes);
// form
$form = new Forge(url_lang::base().'transfers/add_from_account/'.$origin_account_id, '', 'POST', array('id' => 'article_form'));
$form->set_attr('class', 'form_class')->set_attr('method', 'post');
freenetis/trunk/kohana/application/controllers/json.php
$account_model = new Account_Model();
$accounts = $account_model->get_some_doubleentry_account_names($origin_account_id, $id);
$arr_accounts = array();
foreach ($accounts as $account)
{ // convert the object into array (used for HTML select list)
$arr_accounts[$account->id] = $account->name.' '.$account->id.' ('.$account->addr.')';
}
asort($arr_accounts, SORT_LOCALE_STRING);
echo "[ ";
$lines = array();
foreach ($accounts as $account)
foreach ($arr_accounts as $id => $account)
{
$lines[] = "{optionValue:".$account->id.", optionDisplay: '".$account->name." ".$account->id." (".$account->addr.")'}";
$lines[] = "{optionValue:".$id.", optionDisplay: '$account'}";
}
echo implode(",\n", $lines);
echo " ]";

Také k dispozici: Unified diff