Revize 998
Přidáno uživatelem Michal Kliment před více než 13 roky(ů)
freenetis/trunk/kohana/application/i18n/cs_CZ/texts.php | ||
---|---|---|
'bitrate is required' => 'Rychlost přenosu je povinná.',
|
||
'before getting started, we need some information on the database' => 'Předtím než začneme, potřebujeme několik informací o databázi.',
|
||
'both' => 'obojí',
|
||
'bug report from' => 'Chyba nahlášena z',
|
||
'but there are some problems' => 'Ale je zde několik problémů',
|
||
'buy date' => 'Datum koupě',
|
||
'cable' => 'kabel',
|
||
... | ... | |
'my works' => 'Moje práce',
|
||
'n' => 'U',
|
||
'name' => 'Jméno',
|
||
'name of error' => 'Název chyby',
|
||
'name of the association' => 'Název sdružení',
|
||
'name of organization' => 'Název organizace',
|
||
'native' => 'Nativní',
|
||
... | ... | |
'remove broadcast ip address' => 'Odebrat IP adresu broadcastu',
|
||
'remove network ip address' => 'Odebrat IP adresu sítě',
|
||
'reply' => 'Odpovědět',
|
||
'reported by' => 'Nahlásil',
|
||
'request' => 'Požadavek',
|
||
'request for membership' => 'Žádost o členství',
|
||
'reguest is invalid or expired' => 'Žádost je neplatná nebo expirovala',
|
||
... | ... | |
'reverse dns' => 'Zpětné DNS',
|
||
'reverse dns zone file was successfully generated' => 'Zpětný zónový soubor DNS byl úspěšně vygenerován',
|
||
'reverse records' => 'Zpětné záznamy',
|
||
'revision' => 'Revize',
|
||
'roaming sms messages' => 'Roamingové SMS zprávy',
|
||
'roaming zone' => 'Roamingová zóna',
|
||
'routerboard backups' => 'Zálohy routerboardů',
|
freenetis/trunk/kohana/application/controllers/settings.php | ||
---|---|---|
{
|
||
if (!$this->acl_check_edit('Settings_Controller','system'))
|
||
Controller::error(ACCESS);
|
||
$status = @shell_exec("svnversion ".dirname(__FILE__)."/../../");
|
||
$data=array(
|
||
"SVN revision"=>$status,
|
||
"SVN revision"=>$this->current_svn_revision,
|
||
"DB schema revision"=>$this->settings->get('db_schema_version')
|
||
);
|
||
ob_start();
|
freenetis/trunk/kohana/application/controllers/email.php | ||
---|---|---|
|
||
// From, subject and HTML message
|
||
$email = @$_POST['uemail'];
|
||
$name = @$_POST['uname'];
|
||
$uname = @$_POST['uname'];
|
||
$name = @$_POST['name'];
|
||
$message = @$_POST['message'];
|
||
$url = @$_POST['url'];
|
||
$error = @$_POST['error'];
|
||
... | ... | |
$line = @$_POST['line'];
|
||
$file = @$_POST['file'];
|
||
|
||
$subject = 'Freenetis error report';
|
||
$subject = url_lang::lang('texts.Freenetis bug report');
|
||
$message = '<html><body>' .
|
||
'<h1>Bug report from: ' . $url . '</h1>' .
|
||
'<p>Bug reported by: <b>' . $name . '</b>, description from user:</p>' .
|
||
'<p style="margin-left: 15px">' . nl2br($description) . '</p>' .
|
||
'<h1>'.url_lang::lang('texts.Bug report from').': ' . $url . '</h1>' .
|
||
'<p>'.url_lang::lang('texts.Reported by').': ' . $uname . '</p>'.
|
||
'<p>'.url_lang::lang('texts.Description').': ' . nl2br($description) . '</p>' .
|
||
'<p>'.url_lang::lang('texts.Revision').': '.$this->current_svn_revision.'</p>'.
|
||
'<h2>' . $error . '</h2>' .
|
||
'<p>' . htmlspecialchars_decode($edescription) . '</p>' .
|
||
'<p class="message">' . htmlspecialchars_decode($message) . '</p>' .
|
freenetis/trunk/kohana/application/libraries/MY_Controller.php | ||
---|---|---|
public $upgrade_sql = array();
|
||
/** @var integer */
|
||
public $current_svn_db_schema_version = 0;
|
||
public $current_svn_revision = 0;
|
||
/** @var integer */
|
||
public $popup = 0;
|
||
/** @var integer */
|
||
... | ... | |
/** @var boolean */
|
||
public $user_has_voip = 0;
|
||
|
||
public $ip_address_span = '';
|
||
|
||
/** @var integer */
|
||
private $ICON_ERROR = 1;
|
||
/** @var integer */
|
||
... | ... | |
// database upgrade goes here
|
||
$this->get_current_svn_db_schema_info();
|
||
|
||
$this->current_svn_revision = (int) @shell_exec("svnversion ".dirname(__FILE__)."/../../");
|
||
|
||
// config file doesn't exist, we must create it
|
||
if (!file_exists('config.php'))
|
||
{
|
freenetis/trunk/kohana/application/views/main.php | ||
---|---|---|
<div id="footer" class="noprint">
|
||
<div id="footer-padd">
|
||
<?php
|
||
$footer_links[] = html::anchor("http://freenetis.org/", url_lang::lang('texts.Project site'));
|
||
//$footer_links[] = html::anchor("http://sourceforge.net/projects/freenetis/", url_lang::lang('texts.Project site'));
|
||
$footer_links[] = html::anchor("http://www.freenetis.org/", url_lang::lang('texts.Project site'));
|
||
$links = implode(' | ', $footer_links);
|
||
$stats = Kohana::lang('core.stats_footer');
|
||
$stats = Kohana::lang('core.stats_footer').' '.url_lang::lang('texts.Revision').': '.$this->current_svn_revision;
|
||
?>
|
||
<p style="float:left; margin-left:10px;"><?php echo $links ?></p>
|
||
<p style="float:right; margin-right:10px;"><?php echo $stats ?></p>
|
Také k dispozici: Unified diff
Merge z testingu do trunku: Pri odesilani chyby vyvojarum se nove posila i cislo SVN revize.