Projekt

Obecné

Profil

« Předchozí | Další » 

Revize 1385

Přidáno uživatelem David Raška před asi 12 roky(ů)

Opravy:
- #161: pridano tlacitko pro zruseni filteru

Upravy:
- Pridana napoveda u castky, pri platbe clenskeho prispevku v hotovosti

Zobrazit rozdíly:

freenetis/branches/testing/media/css/style.css
width: 20px;
}
#add_button {
#add_button, #reset_button {
cursor: pointer;
}
freenetis/branches/testing/application/i18n/cs_CZ/texts.php
'reguest is invalid or expired' => 'Žádost je neplatná nebo expirovala',
'requests' => 'Požadavky',
'require mysql %s and higher' => 'potřebuje MySQL ve verzi %s nebo vyšší',
'reset_filters' => 'Vynulování filterů',
'resize' => 'Změnit velikost',
'restore membership' => 'Obnovit členství',
'reverse dns' => 'Zpětné DNS',
freenetis/branches/testing/application/i18n/cs_CZ/help.php
'allowed_subnets_disabled' => 'Červené tlačítko nalevo znamená to, že podsíť, ze které se přihlašujete, nepatří mezi vaše povolené podsítě a veškeré provoz je vám proto formou přesměrování omezen. Kliknutím na tlačítko ji povolíte. POZOR! Tímto úkonem zakážete některou z aktuálně povolených podsítí - internet vám pak na ní nebude fungovat.',
'allowed_subnets_enabled' => 'Zelené tlačítko nalevo znamená to, že podsíť, ze které se přihlašujete, patří mezi vaše povolené podsítě. POZOR! Kliknutím na tlačítko ji zakážete. Tímto úkonem povolíte některou z aktuálně zakázaných podsítí.',
'allowed_subnets_update_interval' => 'Interval aktualizace povolených podsítí v sekundách. Po uplynutí této doby se IP adresám z nepovolených podsítí nastaví přesměrování typu Přerušené členství. Výchozí hodnota je 60 sekund (1 minuta).',
'amount_including_transfer_fee' => 'Částka včetně transakčního poplatku',
'application_password' => 'Aplikační heslo slouží uživateli pro přihlášení ke službám, které jsou závislé na Radius serveru, jako například VPN, aktivní prvky sítě atd. Toto heslo je v databázi uloženo v otevřené podobě.',
'approval_priority' => 'Priorita umožňuje vícekolové hlasování o práci/pracovním výkazu. Pokud nechcete šablonu s vícekolovým hlasováním, nastavte u všech položek šablony prioritu na hodnotu \'0\'. Vícekolové hlasování začíná u prvku s nejvyšší prioritou a sestupuje k dalším kolům hlasováním, dokud není buďto schváleno ve všech kolech, nebo v jednom z kol zamítnuto. Pokud v některém z kol hlasování chcete schvalovat více prvků zadejte jim stejnou prioritu.',
'approval_state' => 'Stav je ve formátu Pro / Proti / Zdrželi se.',
freenetis/branches/testing/application/i18n/en_US/help.php
'allowed_subnets_disabled' => 'Red button on the left means that the subnet from which you login, is not allowed between your subnet and all traffic is because you divert limited. Click it to enable it. ATTENTION! This act will disable any of the currently permitted subnets - the Internet will not work on it.',
'allowed_subnets_enabled' => 'Green button on the left means that the subnet from which you access the board, is allowed between your subnet. ATTENTION! Click the button to disable it. This act enabled some of the currently banned subnets.',
'allowed_subnets_update_interval' => 'Update interval of allowed subnets in seconds. After this time, the IP addresses from unauthorized subnets set up redirects Broken type of membership. The default is 60 seconds (1 minute).',
'amount_including_transfer_fee' => 'Amount including transfer fee',
'application_password' => 'Application user password used to login to services that are dependent on the Radius server, such as VPN, active network elements, etc. This password is stored in the database in an open form.',
'approval_priority' => 'Priority allows multi-round voting for works / work reports. If you do not vote multi-round template, set the template for all items priority to \'0 \'. Multi-round voting begins at the element with the highest priority and descends to the next rounds of voting until it is either approved in all rounds, or in one of the rounds rejected. If any of the rounds of votes to approve more elements enter them the same priority.',
'approval_state' => 'State with the format in Agree / Disagree / Abstain.',
......
'redirection_preview' => 'Preview shows the page exactly as it appears that IP address. In the case of multiple simultaneously activated to redirect one IP address is displayed only thing that appears as a member first.',
'register_install' => 'Send data about installation (name of organization and your email address) to FreeNetIS developer for getting news and info about development',
'registration_logo' => 'It is an association logo that appears in the upper left corner of the Exported Application. Picture size is 274 x 101 px',
'reset_filters' => 'Reset filters',
'self_cancel' => 'If the message self cancelable, it means that when the display member in the bottom of the page will see a link that will redirect him off. Suitable for informative messages. A distinction is samozrušitelnost for one IP address or IP addresses for all members.',
'self_cancel_text' => 'The text for link is designed to cancel mamber redirection. This text is displayed in the bottom of the page redirected member.',
'self_cancel_url' => 'It addresses the central gate, which runs lighthttpd web server. Firewall rules on the central gate thus identify the user\'s intention to terminate redirection. Page therefore may contain brief information for the user to terminate any links and redirects.',
freenetis/branches/testing/application/controllers/transfers.php
->label(__('Amount') . ':')
->value($amount)
->rules('required|valid_numeric')
->help('amount_including_transfer_fee')
->callback(array($this, 'valid_amount'));
$form->input('text')
freenetis/branches/testing/application/views/filter_form_template.php
return false;
});
/**
* Resets filter
*/
$("#reset_button").live("click", function (){
var i = $(".filter_div").length;
for (x=i; x>1; x--) {
$(".filter_div:last").remove();
}
$(".filter_div:last .t").val(0);
if ($(".filter_div:last .v").is("input"))
$(".filter_div:last .v").val("");
else
$(".filter_div:last .v").val(0);
$(".filter_div:last .t").trigger("change");
$("#add_button").click();
$(".filter_div:first .n").removeAttr("checked");
return false;
});
$(".filter_div:last").hide();
// add button for adding new filter
$("<a id='add_button'><img src='<?php echo url::base() ?>media/images/icons/ico_add.gif'> <?php echo __('Add new filter') ?></a>").insertBefore("#filters");
// add button for reset filter
$("<a id='reset_button'><img src='<?php echo url::base() ?>media/images/icons/voip-terminating.png'> <?php echo __('reset_filters') ?></a>").insertBefore("#filters");
$(".t").trigger("change");
$("#add_button").trigger("click");

Také k dispozici: Unified diff