diff --git a/index.php b/index.php index 13216408..0a1c4c36 100644 --- a/index.php +++ b/index.php @@ -3,7 +3,7 @@ setlocale(LC_TIME, array("ru_RU","rus_RUS")); // change the following paths if necessary -$yii=dirname(__FILE__).'/../yii-last/framework/yii.php'; +$yii=dirname(__FILE__).'/../yii-last/framework/yiilite.php'; if($_SERVER['HTTP_HOST']!='xml.rosyama.ru') $config=dirname(__FILE__).'/protected/config/main.php'; else diff --git a/protected/views/layouts/main.php b/protected/views/layouts/main.php index eeedd861..caee0ea8 100644 --- a/protected/views/layouts/main.php +++ b/protected/views/layouts/main.php @@ -114,8 +114,10 @@

åutochmo
Доска позора водителей

© Алексей Навальный, 2011
rossyama@gmail.com
-
+
+ beginCache('countHoles', array('duration'=>3600))) { ?> widget('application.widgets.collection.collectionWidget'); ?> + endCache(); } ?>

Чиним ямы в Украине, Беларуси и Казахстане

diff --git a/requirements/css/main.css b/requirements/css/main.css new file mode 100644 index 00000000..7966881f --- /dev/null +++ b/requirements/css/main.css @@ -0,0 +1,93 @@ +body +{ + background: white; + font-family:'Lucida Grande',Verdana,Geneva,Lucida,Helvetica,Arial,sans-serif; + font-size:10pt; + font-weight:normal; +} + +#page +{ + width: 800px; + margin: 0 auto; +} + +#header +{ +} + +#content +{ +} + +#footer +{ + color: gray; + font-size:8pt; + border-top:1px solid #aaa; + margin-top:10px; +} + +h1 +{ + color:black; + font-size:1.6em; + font-weight:bold; + margin:0.5em 0pt; +} + +h2 +{ + color:black; + font-size:1.25em; + font-weight:bold; + margin:0.3em 0pt; +} + +h3 +{ + color:black; + font-size:1.1em; + font-weight:bold; + margin:0.2em 0pt; +} + +table.result +{ + background:#E6ECFF none repeat scroll 0% 0%; + border-collapse:collapse; + width:100%; +} + +table.result th +{ + background:#CCD9FF none repeat scroll 0% 0%; + text-align:left; +} + +table.result th, table.result td +{ + border:1px solid #BFCFFF; + padding:0.2em; +} + +td.passed +{ + background-color: #60BF60; + border: 1px solid silver; + padding: 2px; +} + +td.warning +{ + background-color: #FFFFBF; + border: 1px solid silver; + padding: 2px; +} + +td.failed +{ + background-color: #FF8080; + border: 1px solid silver; + padding: 2px; +} diff --git a/requirements/index.php b/requirements/index.php new file mode 100644 index 00000000..f023ddb2 --- /dev/null +++ b/requirements/index.php @@ -0,0 +1,251 @@ + + * @link http://www.yiiframework.com/ + * @copyright Copyright © 2008-2011 Yii Software LLC + * @license http://www.yiiframework.com/license/ + * @version $Id: index.php 3243 2011-05-28 22:32:30Z alexander.makarow $ + * @package system + * @since 1.0 + */ +/** + * @var array List of requirements (name, required or not, result, used by, memo) + */ +$requirements=array( + array( + t('yii','PHP version'), + true, + version_compare(PHP_VERSION,"5.1.0",">="), + 'Yii Framework', + t('yii','PHP 5.1.0 or higher is required.')), + array( + t('yii','$_SERVER variable'), + true, + ($message=checkServerVar()) === '', + 'Yii Framework', + $message), + array( + t('yii','Reflection extension'), + true, + class_exists('Reflection',false), + 'Yii Framework', + ''), + array( + t('yii','PCRE extension'), + true, + extension_loaded("pcre"), + 'Yii Framework', + ''), + array( + t('yii','SPL extension'), + true, + extension_loaded("SPL"), + 'Yii Framework', + ''), + array( + t('yii','DOM extension'), + false, + class_exists("DOMDocument",false), + 'CHtmlPurifier, CWsdlGenerator', + ''), + array( + t('yii','PDO extension'), + false, + extension_loaded('pdo'), + t('yii','All DB-related classes'), + ''), + array( + t('yii','PDO SQLite extension'), + false, + extension_loaded('pdo_sqlite'), + t('yii','All DB-related classes'), + t('yii','This is required if you are using SQLite database.')), + array( + t('yii','PDO MySQL extension'), + false, + extension_loaded('pdo_mysql'), + t('yii','All DB-related classes'), + t('yii','This is required if you are using MySQL database.')), + array( + t('yii','PDO PostgreSQL extension'), + false, + extension_loaded('pdo_pgsql'), + t('yii','All DB-related classes'), + t('yii','This is required if you are using PostgreSQL database.')), + array( + t('yii','Memcache extension'), + false, + extension_loaded("memcache") || extension_loaded("memcached"), + 'CMemCache', + extension_loaded("memcached") ? t('yii', 'To use memcached set CMemCache::useMemcached to true.') : ''), + array( + t('yii','APC extension'), + false, + extension_loaded("apc"), + 'CApcCache', + ''), + array( + t('yii','Mcrypt extension'), + false, + extension_loaded("mcrypt"), + 'CSecurityManager', + t('yii','This is required by encrypt and decrypt methods.')), + array( + t('yii','SOAP extension'), + false, + extension_loaded("soap"), + 'CWebService, CWebServiceAction', + ''), + array( + t('yii','GD extension with
FreeType support'), + false, + ($message=checkGD()) === '', + //extension_loaded('gd'), + 'CCaptchaAction', + $message), + array( + t('yii','Ctype extension'), + false, + extension_loaded("ctype"), + 'CDateFormatter, CDateTimeParser, CTextHighlighter, CHtmlPurifier', + '' + ) +); + +function checkServerVar() +{ + $vars=array('HTTP_HOST','SERVER_NAME','SERVER_PORT','SCRIPT_NAME','SCRIPT_FILENAME','PHP_SELF','HTTP_ACCEPT','HTTP_USER_AGENT'); + $missing=array(); + foreach($vars as $var) + { + if(!isset($_SERVER[$var])) + $missing[]=$var; + } + if(!empty($missing)) + return t('yii','$_SERVER does not have {vars}.',array('{vars}'=>implode(', ',$missing))); + + if(realpath($_SERVER["SCRIPT_FILENAME"]) !== realpath(__FILE__)) + return t('yii','$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.'); + + if(!isset($_SERVER["REQUEST_URI"]) && isset($_SERVER["QUERY_STRING"])) + return t('yii','Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.'); + + if(!isset($_SERVER["PATH_INFO"]) && strpos($_SERVER["PHP_SELF"],$_SERVER["SCRIPT_NAME"]) !== 0) + return t('yii','Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.'); + + return ''; +} + +function checkGD() +{ + if(extension_loaded('gd')) + { + $gdinfo=gd_info(); + if($gdinfo['FreeType Support']) + return ''; + return t('yii','GD installed
FreeType support not installed'); + } + return t('yii','GD not installed'); +} + +function getYiiVersion() +{ + $coreFile=dirname(__FILE__).'/../framework/YiiBase.php'; + if(is_file($coreFile)) + { + $contents=file_get_contents($coreFile); + $matches=array(); + if(preg_match('/public static function getVersion.*?return \'(.*?)\'/ms',$contents,$matches) > 0) + return $matches[1]; + } + return ''; +} + +/** + * Returns a localized message according to user preferred language. + * @param string message category + * @param string message to be translated + * @param array parameters to be applied to the translated message + * @return string translated message + */ +function t($category,$message,$params=array()) +{ + static $messages; + + if($messages === null) + { + $messages=array(); + if(($lang=getPreferredLanguage()) !== false) + { + $file=dirname(__FILE__)."/messages/$lang/yii.php"; + if(is_file($file)) + $messages=include($file); + } + } + + if(empty($message)) + return $message; + + if(isset($messages[$message]) && $messages[$message] !== '') + $message=$messages[$message]; + + return $params !== array() ? strtr($message,$params) : $message; +} + +function getPreferredLanguage() +{ + if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) && ($n=preg_match_all('/([\w\-]+)\s*(;\s*q\s*=\s*(\d*\.\d*))?/',$_SERVER['HTTP_ACCEPT_LANGUAGE'],$matches)) > 0) + { + $languages=array(); + for($i=0; $i < $n; ++$i) + $languages[$matches[1][$i]]=empty($matches[3][$i]) ? 1.0 : floatval($matches[3][$i]); + arsort($languages); + foreach($languages as $language=>$pref) + return strtolower(str_replace('-','_',$language)); + } + return false; +} + +function getServerInfo() +{ + $info[]=isset($_SERVER['SERVER_SOFTWARE']) ? $_SERVER['SERVER_SOFTWARE'] : ''; + $info[]='Yii Framework/'.getYiiVersion(); + $info[]=@strftime('%Y-%m-%d %H:%M',time()); + + return implode(' ',$info); +} + +function renderFile($_file_,$_params_=array()) +{ + extract($_params_); + require($_file_); +} + +$result=1; // 1: all pass, 0: fail, -1: pass with warnings + +foreach($requirements as $i=>$requirement) +{ + if($requirement[1] && !$requirement[2]) + $result=0; + else if($result > 0 && !$requirement[1] && !$requirement[2]) + $result=-1; + if($requirement[4] === '') + $requirements[$i][4]=' '; +} + +$lang=getPreferredLanguage(); +$viewFile=dirname(__FILE__)."/views/$lang/index.php"; +if(!is_file($viewFile)) + $viewFile=dirname(__FILE__).'/views/index.php'; + +renderFile($viewFile,array( + 'requirements'=>$requirements, + 'result'=>$result, + 'serverInfo'=>getServerInfo())); + diff --git a/requirements/messages/.htaccess b/requirements/messages/.htaccess new file mode 100644 index 00000000..e0198322 --- /dev/null +++ b/requirements/messages/.htaccess @@ -0,0 +1 @@ +deny from all diff --git a/requirements/messages/ar/yii.php b/requirements/messages/ar/yii.php new file mode 100644 index 00000000..13c733ac --- /dev/null +++ b/requirements/messages/ar/yii.php @@ -0,0 +1,44 @@ + '$_SERVER لايحتوي {vars}.', + '$_SERVER variable' => '$_SERVER متغير', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"] يجب ان يكون مساوي لمسار الملف الافتتاحي للسكربت (entry script file).', + 'APC extension' => 'لاحقة APC', + 'All DB-related classes' => 'جميع الفئات ذات العلاقة', + 'DOM extension' => 'DOM لاحقة', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => 'يجب أن يتوفر إما $_SERVER["REQUEST_URI"] أو $_SERVER["QUERY_STRING"].', + 'GD extension' => 'GD لاحقة', + 'Mcrypt extension' => 'Mcrypt لاحقة', + 'Memcache extension' => 'Memcache لاحقة', + 'PCRE extension' => 'PCRE لاحقة', + 'PDO MySQL extension' => 'PDO MySQL لاحقة', + 'PDO PostgreSQL extension' => 'PDO PostgreSQL لاحقة', + 'PDO SQLite extension' => 'PDO SQLite لاحقة', + 'PDO extension' => 'PDO لاحقة', + 'PHP 5.1.0 or higher is required.' => 'يجب وجود إصدارة PHP 5.1.0 أو أعلى.', + 'PHP version' => 'إصدارة PHP', + 'Reflection extension' => 'Reflection لاحقة', + 'SOAP extension' => 'SOAP لاحقة', + 'SPL extension' => 'SPL لاحقة', + 'This is required by encrypt and decrypt methods.' => 'مطلوب من أجل وظائف التشفير وفك التشفير.', + 'This is required if you are using MySQL database.' => 'مطلوب اذا كنت تستخدم قواعد البيانات MySQL.', + 'This is required if you are using PostgreSQL database.' => 'مطلوب اذا كنت تستخدم قواعد البيانات PostgreSQL.', + 'This is required if you are using SQLite database.' => 'مطلوب اذا كنت تستخدم قواعد البيانات SQLite.', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => 'غير قادر على تحديد معلومات مسار العنوان. الرجاء التحقق من أن $_SERVER["PATH_INFO"] (أو $_SERVER["PHP_SELF"] و $_SERVER["SCRIPT_NAME"]) تحتوي على القيم الصحيحة.', +); diff --git a/requirements/messages/bg/yii.php b/requirements/messages/bg/yii.php new file mode 100644 index 00000000..68961562 --- /dev/null +++ b/requirements/messages/bg/yii.php @@ -0,0 +1,34 @@ + '$_SERVER няма {vars}.', + '$_SERVER variable' => '$_SERVER променлива', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"] трябва да бъде същия като пътя до началния скрипт', + 'APC extension' => 'APC добавка', + 'All DB-related classes' => 'Всички класове за работа с базата от данни.', + 'DOM extension' => 'DOM разширение', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => 'Или $_SERVER["REQUEST_URI"] или $_SERVER["QUERY_STRING"] трябва да съществуват', + 'GD extension' => 'GD разширение', + 'Mcrypt extension' => 'Mcrypt разширение', + 'Memcache extension' => 'Memcache разширение', + 'PCRE extension' => 'PCRE разширение', + 'PDO MySQL extension' => 'PDO MySQL разширение', + 'PDO PostgreSQL extension' => 'PDO PostgreSQL разширение', + 'PDO SQLite extension' => 'PDO SQLite разширение', + 'PDO extension' => 'PDO разширение', + 'PHP 5.1.0 or higher is required.' => 'Изисква се минимум PHP 5.1.0.', + 'PHP version' => 'PHP версия', + 'Reflection extension' => 'Reflection разширение', + 'SOAP extension' => 'SOAP разширение', + 'SPL extension' => 'SPL разширение', + 'This is required by encrypt and decrypt methods.' => 'Тове се изисква от методите за криптиране/декриптиране.', + 'This is required if you are using MySQL database.' => 'Това се изисква ако използвате MySQL база от данни.', + 'This is required if you are using PostgreSQL database.' => 'Това се изисква ако използвате PostgreSQL база от данни.', + 'This is required if you are using SQLite database.' => 'Това се изисква ако използвате SQLite база от данни.', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => 'Невъзможно е да се определи URL адреса. Моля, проверете дали $_SERVER["PATH_INFO"] (или $_SERVER["PHP_SELF"] и $_SERVER["SCRIPT_NAME"]) съдържат коректни стойности.', +); diff --git a/requirements/messages/config.php b/requirements/messages/config.php new file mode 100644 index 00000000..13a23c16 --- /dev/null +++ b/requirements/messages/config.php @@ -0,0 +1,17 @@ +dirname(__FILE__).DIRECTORY_SEPARATOR.'..', + 'messagePath'=>dirname(__FILE__), + 'languages'=>array('zh_cn','zh_tw','de','es','el','sv','he','nl','pt','ru','it','fr','ja','pl','hu','ro','id','vi','bg'), + 'fileTypes'=>array('php'), + 'translator'=>'t', + 'exclude'=>array( + '.svn', + '/messages', + '/views', + ), +); \ No newline at end of file diff --git a/requirements/messages/de/yii.php b/requirements/messages/de/yii.php new file mode 100644 index 00000000..8ee3698a --- /dev/null +++ b/requirements/messages/de/yii.php @@ -0,0 +1,51 @@ + 'Ctype Erweiterung', + 'To use memcached set CMemCache::useMemcached to true.' => 'Um memcached verwenden zu können, muss CMemCache::useMemcached auf true gesetzt werden.', + '$_SERVER does not have {vars}.' => '$_SERVER verfügt nicht über {vars}.', + '$_SERVER variable' => '$_SERVER Variable', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"] muss auf das Startscript verweisen.', + 'APC extension' => 'APC Erweiterung', + 'All DB-related classes' => 'Alle DB-bezogenen Klassen', + 'DOM extension' => 'DOM Erweiterung', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => 'Entweder $_SERVER["REQUEST_URI"] oder $_SERVER["QUERY_STRING"] müssen exisitieren.', + 'GD extension with
FreeType support' => 'GD Erweiterung mit
FreeType-Unterstützung', + 'GD installed
FreeType support not installed' => 'GD installiert
FreeType-Unterstützung nicht installiert', + 'GD not installed' => 'GD nicht installiert', + 'Mcrypt extension' => 'Mcyrpt Erweiterung', + 'Memcache extension' => 'Memcache Erweiterung', + 'PCRE extension' => 'PCRE Erweiterung', + 'PDO MySQL extension' => 'PDO MySQL Erweiterung', + 'PDO PostgreSQL extension' => 'PDO PostgreSQL Erweiterung', + 'PDO SQLite extension' => 'PDO SQLite Erweiterung', + 'PDO extension' => 'PDO Erweiterung', + 'PHP 5.1.0 or higher is required.' => 'PHP 5.1.0 oder neuer wird benötigt.', + 'PHP version' => 'PHP Version', + 'Reflection extension' => 'Reflection Erweiterung', + 'SOAP extension' => 'SOAP Erweiterung', + 'SPL extension' => 'SPL Erweiterung', + 'This is required by encrypt and decrypt methods.' => 'Wird für Ver- und Entschlüsselungsmethoden benötigt.', + 'This is required if you are using MySQL database.' => 'Wird für die Verwendung einer MySQL Datenbank benötigt.', + 'This is required if you are using PostgreSQL database.' => 'Wird für die Verwendung einer PostgreSQL Datenbank benötigt.', + 'This is required if you are using SQLite database.' => 'Wird für die Verwendung einer SQLite Datenbank benötigt.', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => 'Die URL-Pfadinformation kann nicht ermittelt werden. Stellen Sie bitte sicher, dass $_SERVER["PATH_INFO"] (oder $_SERVER["PHP_SELF"] und $_SERVER["SCRIPT_NAME"]) den entsprechenden Wert enthält.', +); diff --git a/requirements/messages/de_de/yii.php b/requirements/messages/de_de/yii.php new file mode 100644 index 00000000..f02de5bd --- /dev/null +++ b/requirements/messages/de_de/yii.php @@ -0,0 +1,43 @@ + '$_SERVER verfügt nicht über {vars}.', + '$_SERVER variable' => '$_SERVER Variable', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"] muss der selbe Eingangsscriptpfad sein.', + 'APC extension' => 'APC Erweiterung', + 'All DB-related classes' => 'Alle DB-bezüglichen Klassen', + 'DOM extension' => 'DOM Erweiterung', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => 'Entweder $_SERVER["REQUEST_URI"] oder $_SERVER["QUERY_STRING"] müssen exisitieren.', + 'GD extension' => 'GD Erweiterung', + 'Mcrypt extension' => 'Mcyrpt Erweiterung', + 'Memcache extension' => 'Memcache Erweiterung', + 'PCRE extension' => 'PCRE Erweiterung', + 'PDO MySQL extension' => 'PDO MySQL Erweiterung', + 'PDO PostgreSQL extension' => 'PDO PostgreSQL Erweiterung', + 'PDO SQLite extension' => 'PDO SQLite Erweiterung', + 'PDO extension' => 'PDO Erweiterung', + 'PHP 5.1.0 or higher is required.' => 'PHP 5.1.0 oder Neuer wird benötigt.', + 'PHP version' => 'PHP Version', + 'Reflection extension' => 'Reflection Erweiterung', + 'SOAP extension' => 'SOAP Erweiterung', + 'SPL extension' => 'SPL Erweiterung', + 'This is required if you are using MySQL database.' => 'Dies wird bei Verwendung einer MySQL Datenbank benötigt.', + 'This is required if you are using PostgreSQL database.' => 'Dies wird bei Verwendung einer PostgreSQL Datenbank benötigt.', + 'This is required if you are using SQLite database.' => 'Dies wird bei Verwendung einer SQLite Datenbank benötigt.', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => 'Die URL Pfadinformation kann nicht ermittelt werden. Stellen Sie bitte sicher, dass entweder $_SERVER["PATH_INFO"] (oder $_SERVER["PHP_SELF"] und $_SERVER["SCRIPT_NAME"]) mit korrekten Werten gefüllt sind.', +); diff --git a/requirements/messages/el/yii.php b/requirements/messages/el/yii.php new file mode 100644 index 00000000..91bc5941 --- /dev/null +++ b/requirements/messages/el/yii.php @@ -0,0 +1,51 @@ + 'Επέκταση Ctype', + '$_SERVER does not have {vars}.' => 'Ο πίνακας $_SERVER δεν περιέχει τη(τις) μεταβλητή(-ές) {vars}.', + '$_SERVER variable' => 'Μεταβλητή $_SERVER', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => 'Το $_SERVER["SCRIPT_FILENAME"] πρέπει να είναι το ίδιο με το αρχικό αρχείο σεναρίου.', + 'APC extension' => 'Επέκταση APC', + 'All DB-related classes' => 'Όλες οι σχετικές με βάση κλάσεις', + 'DOM extension' => 'Επέκταση DOM', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => 'Πρέπει να υπάρχει είτε το $_SERVER["REQUEST_URI"] είτε το $_SERVER["QUERY_STRING"].', + 'GD extension with
FreeType support' => 'Επέκταση GD με
υποστήριξη για FreeType', + 'GD installed
FreeType support not installed' => 'Επέκταση GD εγκατεστημένη
υποστήριξη FreeType δεν υπάρχει.', + 'GD not installed' => 'Δεν είναι εγκατεστημένη η επέκταση GD', + 'Mcrypt extension' => 'Επέκταση Mcrypt', + 'Memcache extension' => 'Επέκταση Memcache', + 'PCRE extension' => 'Επέκταση PCRE', + 'PDO MySQL extension' => 'Επέκταση PDO MySQL', + 'PDO PostgreSQL extension' => 'Επέκταση PDO PostgreSQL', + 'PDO SQLite extension' => 'Επέκταση PDO SQLite', + 'PDO extension' => 'Επέκταση PDO', + 'PHP 5.1.0 or higher is required.' => 'Απαιτείται PHP 5.1.0 ή μεγαλύτερης έκδοσης.', + 'PHP version' => 'Έκδοση PHP', + 'Reflection extension' => 'Επέκταση Reflection', + 'SOAP extension' => 'Επέκταση SOAP', + 'SPL extension' => 'Επέκταση SPL', + 'This is required by encrypt and decrypt methods.' => 'Απαιτείται από τις μεθόδους κρυπτογράφησης και αποκρυπτογράφησης.', + 'This is required if you are using MySQL database.' => 'Απαιτείται αν χρησιμοποιείτε βάση MySQL.', + 'This is required if you are using PostgreSQL database.' => 'Απαιτείται αν χρησιμοποιείτε βάση PostgreSQL.', + 'This is required if you are using SQLite database.' => 'Απαιτείται αν χρησιμοποιείτε βάση SQLite.', + 'To use memcached set CMemCache::useMemcached to true.' => 'Για να χρησιμοποιήσετε memcached, ορίστε το CMemCache::useMemcached να είναι true.', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => 'Δεν ήταν δυνατός ο καθορισμός της διαδρομής URL. Σιγουρευτείτε ότι το $_SERVER["PATH_INFO"] (ή $_SERVER["PHP_SELF"] και $_SERVER["SCRIPT_NAME"]) περιέχει τη σωστή τιμή.', +); diff --git a/requirements/messages/es/yii.php b/requirements/messages/es/yii.php new file mode 100644 index 00000000..1f4e042e --- /dev/null +++ b/requirements/messages/es/yii.php @@ -0,0 +1,44 @@ + '$_SERVER no contiene {vars}', + '$_SERVER variable' => 'variable de $_SERVER', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"] debe ser igual a la ruta de entrada del script', + 'APC extension' => 'Extensión APC', + 'All DB-related classes' => 'Todas las clases relacionadas con DB', + 'DOM extension' => 'Extensión DOM', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => '$_SERVER["REQUEST_URI"] o $_SERVER["QUERY_STRING"] deben existir.', + 'GD extension' => 'Extensión GD', + 'Mcrypt extension' => 'Extensión Mcrypt', + 'Memcache extension' => 'Extensión Memcache', + 'PCRE extension' => 'Extensión PCRE', + 'PDO MySQL extension' => 'Extensión PDO MySQL', + 'PDO PostgreSQL extension' => 'Extension PDO PostgreSQL', + 'PDO SQLite extension' => 'Extensión PDO SQLite', + 'PDO extension' => 'Extensión PDO', + 'PHP 5.1.0 or higher is required.' => 'Requiere PHP 5.1.0 o superior', + 'PHP version' => 'Versión PHP', + 'Reflection extension' => 'Extensión Reflection', + 'SOAP extension' => 'Extensión SOAP', + 'SPL extension' => 'Extensión SPL', + 'This is required if you are using MySQL database.' => 'Esto es requerido si se utiliza una base de datos MySQL.', + 'This is required if you are using PostgreSQL database.' => 'Esto es requerido si se utiliza una base de datos PostgreSQL.', + 'This is required if you are using SQLite database.' => 'Esto es requerido si se utiliza una base de datos SQLite.', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' + => 'No es posible determinar la ruta de información. Por favor asegúrese que $_SERVER["PATH_INFO"] o ($_SERVER["PHP_SELF"] y $_SERVER["SCRIPT_NAME"]) contenga/n un valor correcto.', +); diff --git a/requirements/messages/fr/yii.php b/requirements/messages/fr/yii.php new file mode 100644 index 00000000..4cf06756 --- /dev/null +++ b/requirements/messages/fr/yii.php @@ -0,0 +1,44 @@ + '$_SERVER ne contient pas {vars}.', + '$_SERVER variable' => 'variable $_SERVER', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"] doit être égal au chemin du script d\'entrée.', + 'APC extension' => 'extension APC', + 'All DB-related classes' => 'Toutes les classes relatives aux BD.', + 'DOM extension' => 'extension DOM', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => 'Soit $_SERVER["REQUEST_URI"] soit $_SERVER["QUERY_STRING"] doit être défini.', + 'GD extension' => 'extension GD', + 'Mcrypt extension' => 'extension Mcrypt', + 'Memcache extension' => 'extension Memcache', + 'PCRE extension' => 'extension PCRE', + 'PDO MySQL extension' => 'extension PDO MySQL', + 'PDO PostgreSQL extension' => 'extension PDO PostgreSQL', + 'PDO SQLite extension' => 'extension PDO SQLite', + 'PDO extension' => 'extension PDO', + 'PHP 5.1.0 or higher is required.' => 'PHP 5.1.0 ou supérieur est requis.', + 'PHP version' => 'Version de PHP', + 'Reflection extension' => 'extension Reflection', + 'SOAP extension' => 'extension SOAP', + 'SPL extension' => 'extension SPL', + 'This is required by encrypt and decrypt methods.' => 'Nécessaire pour les méthodes encrypt et decrypt.', + 'This is required if you are using MySQL database.' => 'Cette extension est requise si vous utilisez une base de donnée MySQL.', + 'This is required if you are using PostgreSQL database.' => 'Cette extension est requise si vous utilisez une base de donnée PostgreSQL.', + 'This is required if you are using SQLite database.' => 'Cette extension est requise si vous utilisez une base de donnée SQLite.', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => 'Impossible de déterminer les informations sur le chemin dans l\'URL. Vérifier que $_SERVER["PATH_INFO"] (ou $_SERVER["PHP_SELF"] et $_SERVER["SCRIPT_NAME"]) ont la bonne valeur', +); diff --git a/requirements/messages/he/yii.php b/requirements/messages/he/yii.php new file mode 100644 index 00000000..6a5e8889 --- /dev/null +++ b/requirements/messages/he/yii.php @@ -0,0 +1,43 @@ + '$_SERVER לא מכיל {vars}.', + '$_SERVER variable' => '$_SERVER משתנה', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"] חייב להיות זהה לנתיב המלא לקובץ הראשי.', + 'APC extension' => 'תוסף APC', + 'All DB-related classes' => 'כל מחלקות מסדי הנתונים', + 'DOM extension' => 'תוסף DOM', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => '$_SERVER["REQUEST_URI"] או $_SERVER["QUERY_STRING"] חייב להיות קיים.', + 'GD extension' => 'תוסף GD', + 'Mcrypt extension' => 'תוסף Mcrypt', + 'Memcache extension' => 'תוסף Memcache', + 'PCRE extension' => 'תוסף PCRE', + 'PDO MySQL extension' => 'תוסף PDO MySQL', + 'PDO PostgreSQL extension' => 'תוסף PDO PostgreSQL', + 'PDO SQLite extension' => 'תוסף PDO SQLite', + 'PDO extension' => 'תוסף PDO', + 'PHP 5.1.0 or higher is required.' => 'PHP בגרסא 5.1.0 או יותר דרוש.', + 'PHP version' => 'גרסאת PHP', + 'Reflection extension' => 'תוסף Reflection', + 'SOAP extension' => 'תוסף SOAP', + 'SPL extension' => 'תוסף SPL', + 'This is required if you are using MySQL database.' => 'תוסף זה נחוץ אם הינך מתכוון להשתמש במסד נתונים מסוג MYSQL.', + 'This is required if you are using PostgreSQL database.' => 'תוסף זה נחוץ אם הינך מתכוון להשתמש במסד נתונים מסוג PostgreSQL.', + 'This is required if you are using SQLite database.' => 'תוסף זה נחוץ אם הינך מתכוון להשתמש במסד נתונים מסוג SQLite.', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => 'לא ניתן לזהות את נתיבי הקישור. אנא וודא שהערך $_SERVER["PATH_INFO"] (או $_SERVER["PHP_SELF"] ו $_SERVER["SCRIPT_NAME"]) מכילים ערכים מתאימים.', +); diff --git a/requirements/messages/hu/yii.php b/requirements/messages/hu/yii.php new file mode 100644 index 00000000..1f60573d --- /dev/null +++ b/requirements/messages/hu/yii.php @@ -0,0 +1,44 @@ + '', + '$_SERVER variable' => '', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '', + 'APC extension' => '', + 'All DB-related classes' => '', + 'DOM extension' => '', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => '', + 'GD extension' => '', + 'Mcrypt extension' => '', + 'Memcache extension' => '', + 'PCRE extension' => '', + 'PDO MySQL extension' => '', + 'PDO PostgreSQL extension' => '', + 'PDO SQLite extension' => '', + 'PDO extension' => '', + 'PHP 5.1.0 or higher is required.' => '', + 'PHP version' => '', + 'Reflection extension' => '', + 'SOAP extension' => '', + 'SPL extension' => '', + 'This is required by encrypt and decrypt methods.' => '', + 'This is required if you are using MySQL database.' => '', + 'This is required if you are using PostgreSQL database.' => '', + 'This is required if you are using SQLite database.' => '', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => '', +); diff --git a/requirements/messages/id/yii.php b/requirements/messages/id/yii.php new file mode 100644 index 00000000..5c603464 --- /dev/null +++ b/requirements/messages/id/yii.php @@ -0,0 +1,51 @@ + 'Extension Ctype', + '$_SERVER does not have {vars}.' => '$_SERVER tidak memiliki {vars}.', + '$_SERVER variable' => 'Variabel $_SERVER', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"] harus sama dengan alur file skrip entri', + 'APC extension' => 'Extension APC', + 'All DB-related classes' => 'Semua kelas berhubungan DB ', + 'DOM extension' => 'Extension DOM', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => 'Salah satu dari $_SERVER["REQUEST_URI"] atau $_SERVER["QUERY_STRING"] harus ada.', + 'GD extension with
FreeType support' => 'Dukungan Extension GD dengan
FreeType', + 'GD installed
FreeType support not installed' => 'GD terinstalasi
Dukungan FreeType tidak terinstalasi', + 'GD not installed' => 'GD tidak terinstalasi', + 'Mcrypt extension' => 'Extension Mcrypt', + 'Memcache extension' => 'Extension Memcache', + 'PCRE extension' => 'Extension PCRE', + 'PDO MySQL extension' => 'Extension PDO MySQL', + 'PDO PostgreSQL extension' => 'Extension PDO PostgreSQL', + 'PDO SQLite extension' => 'Extension PDO SQLite', + 'PDO extension' => 'Extension PDO', + 'PHP 5.1.0 or higher is required.' => 'Diperlukan PHP 5.1.0 atau lebih tinggi.', + 'PHP version' => 'Versi PHP', + 'Reflection extension' => 'Extension Reflection', + 'SOAP extension' => 'Extension SOAP', + 'SPL extension' => 'Extension SPL', + 'This is required by encrypt and decrypt methods.' => 'Ini diperlukan oleh method enkripsi dan dekripsi', + 'This is required if you are using MySQL database.' => 'Ini diperlukan apabila anda menggunakan database MySQL', + 'This is required if you are using PostgreSQL database.' => 'Ini diperlukan apabila anda menggunakan database PostgreSQL', + 'This is required if you are using SQLite database.' => 'Ini diperlukan apabila anda menggunakan database SQLite', + 'To use memcached set CMemCache::useMemcached to true.' => 'Untuk menggunakan memcached set CMemCache::useMemcached menjadi true.', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => 'Tidak dapat menentukan info alur URL. Harap memastikan $_SERVER["PATH_INFO"] (atau $_SERVER["PHP_SELF"] dan $_SERVER"SCRIPT_NAME"]) berisi nilai yang benar.', +); \ No newline at end of file diff --git a/requirements/messages/it/yii.php b/requirements/messages/it/yii.php new file mode 100644 index 00000000..9629af84 --- /dev/null +++ b/requirements/messages/it/yii.php @@ -0,0 +1,43 @@ + '', + '$_SERVER variable' => '', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '', + 'APC extension' => '', + 'All DB-related classes' => '', + 'DOM extension' => '', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => '', + 'GD extension' => '', + 'Mcrypt extension' => '', + 'Memcache extension' => '', + 'PCRE extension' => '', + 'PDO MySQL extension' => '', + 'PDO PostgreSQL extension' => '', + 'PDO SQLite extension' => '', + 'PDO extension' => '', + 'PHP 5.1.0 or higher is required.' => '', + 'PHP version' => '', + 'Reflection extension' => '', + 'SOAP extension' => '', + 'SPL extension' => '', + 'This is required if you are using MySQL database.' => '', + 'This is required if you are using PostgreSQL database.' => '', + 'This is required if you are using SQLite database.' => '', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => '', +); diff --git a/requirements/messages/ja/yii.php b/requirements/messages/ja/yii.php new file mode 100644 index 00000000..5f1f77a3 --- /dev/null +++ b/requirements/messages/ja/yii.php @@ -0,0 +1,46 @@ +FreeType support'=>'GD拡張 (FreeTypeサポート)', + 'GD installed
FreeType support not installed' => 'GDはインストールされています。
FreeTypeサポートはインストールされていません。', + 'GD not installed' => 'GDがインストールされていません。', + '$_SERVER does not have {vars}.' => '$_SERVERは{vars}を持ちません。', + '$_SERVER variable' => '$_SERVER変数', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"]はエントリスクリプトのパスと同じであるべきです。', + 'APC extension' => 'APC拡張', + 'All DB-related classes' => '全てのデータベース関連クラス', + 'DOM extension' => 'DOM拡張', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => '$_SERVER["REQUEST_URI"]か$_SERVER["QUERY_STRING"]が存在するべきです。', + 'Mcrypt extension' => 'Mcrypt拡張', + 'Memcache extension' => 'Memcache拡張', + 'PCRE extension' => 'PCRE拡張', + 'PDO MySQL extension' => 'PDO MySQL拡張', + 'PDO PostgreSQL extension' => 'PDO PostgreSQL拡張', + 'PDO SQLite extension' => 'PDO SQLite拡張', + 'PDO extension' => 'PDO拡張', + 'PHP 5.1.0 or higher is required.' => 'PHP 5.1.0かそれ以上が必要です。', + 'PHP version' => 'PHP版数', + 'Reflection extension' => 'Reflection拡張', + 'SOAP extension' => 'SOAP拡張', + 'SPL extension' => 'SPL拡張', + 'This is required by encrypt and decrypt methods.' => 'これは暗号化と複号に必要です。', + 'This is required if you are using MySQL database.' => 'これはMySQLデータベースをお使いなら必要です。', + 'This is required if you are using PostgreSQL database.' => 'これはPostgreSQLデータベースをお使いなら必要です。', + 'This is required if you are using SQLite database.' => 'これはSQLiteデータベースをお使いなら必要です。', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => 'URLパス情報を決定できません。$_SERVER["PATH_INFO"](もしくは$_SERVER["PHP_SELF"]と$_SERVER["SCRIPT_NAME"])が正しい値かどうか確認してください。', +); diff --git a/requirements/messages/nl/yii.php b/requirements/messages/nl/yii.php new file mode 100644 index 00000000..902bbf42 --- /dev/null +++ b/requirements/messages/nl/yii.php @@ -0,0 +1,43 @@ + '$_SERVER heeft geen {vars}.', + '$_SERVER variable' => '$_SERVER variabele', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"] moet hetzelfde zijn als het bestandspad van het startscript.', + 'APC extension' => 'APC extensie', + 'All DB-related classes' => 'Alle DB-gerelateerde classes', + 'DOM extension' => 'DOM extensie', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => 'Of $_SERVER["REQUEST_URI"] of $_SERVER["QUERY_STRING"] moet gedefinieerd zijn.', + 'GD extension' => 'GD extensie', + 'Mcrypt extension' => 'Mcrypt extensie', + 'Memcache extension' => 'Memcache extensie', + 'PCRE extension' => 'PCRE extensie', + 'PDO MySQL extension' => 'PDO MySQL extensie', + 'PDO PostgreSQL extension' => 'PDO PostgreSQL extensie', + 'PDO SQLite extension' => 'PDO SQLite extensie', + 'PDO extension' => 'PDO extensie', + 'PHP 5.1.0 or higher is required.' => 'PHP 5.1.0 of hoger is vereist.', + 'PHP version' => 'PHP versie', + 'Reflection extension' => 'Reflection extensie', + 'SOAP extension' => 'SOAP extensie', + 'SPL extension' => 'SPL extensie', + 'This is required if you are using MySQL database.' => 'Dit is vereist als een MySQL database wordt gebruikt.', + 'This is required if you are using PostgreSQL database.' => 'Dit is vereist als een PostgreSQL database wordt gebruikt.', + 'This is required if you are using SQLite database.' => 'Dit is vereist als een SQLite database wordt gebruikt.', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => 'Niet in staat om informatie over het URL pad te verkrijgen. Zorg er a.u.b. voor dat $_SERVER["PATH_INFO"] (of $_SERVER["PHP_SELF"] en $_SERVER["SCRIPT_NAME"]) een juiste waarde bevatten.', +); diff --git a/requirements/messages/no/yii.php b/requirements/messages/no/yii.php new file mode 100644 index 00000000..53c34604 --- /dev/null +++ b/requirements/messages/no/yii.php @@ -0,0 +1,44 @@ + '$_SERVER inneholder ikke {vars}', + '$_SERVER variable' => '$_SERVER variabel', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"] må være lik filbanen til startscriptet', + 'APC extension' => 'APC-tillegg', + 'All DB-related classes' => 'Alle DB-relaterte klasser', + 'DOM extension' => 'DOM-extension', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => '', + 'GD extension' => 'GD-extension', + 'Mcrypt extension' => 'Mcrypt-extension', + 'Memcache extension' => 'Memcache-extension', + 'PCRE extension' => 'PCRE-extension', + 'PDO MySQL extension' => 'PDO MYSQL-extension', + 'PDO PostgreSQL extension' => 'PDO PostgreSQL-extension', + 'PDO SQLite extension' => 'PDO SQLite-extension', + 'PDO extension' => 'PDO-extension', + 'PHP 5.1.0 or higher is required.' => 'PHP 5.1.0 eller nyere er påkrevet', + 'PHP version' => 'PHP-versjon', + 'Reflection extension' => 'Reflection-extension', + 'SOAP extension' => 'SOAP-extension', + 'SPL extension' => 'SPL-extension', + 'This is required by encrypt and decrypt methods.' => 'Dette kreves av kryptering- og dekrypteringsmetodene.', + 'This is required if you are using MySQL database.' => 'Dette kreves hvis du bruker en MySQL database.', + 'This is required if you are using PostgreSQL database.' => 'Dette kreves hvis du bruker en PostgreSQL database.', + 'This is required if you are using SQLite database.' => 'Dette kreves hvis du bruker en SQLite database.', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => 'Kunne ikke finne path info. Vennligst sjekk at $_SERVER["PATH_INFO"] (eller $_SERVER["PHP_SELF"] og $_SERVER["SCRIPT_NAME"]) inneholder riktige verdier.', +); diff --git a/requirements/messages/pl/yii.php b/requirements/messages/pl/yii.php new file mode 100644 index 00000000..3207a4dd --- /dev/null +++ b/requirements/messages/pl/yii.php @@ -0,0 +1,46 @@ +FreeType support' => 'Rozszerzenie GD
ze wsparciem dla FreeType', + 'GD installed
FreeType support not installed' => 'Rozszerzenie GD jest zainstalowane
ale bez wsparcia FreeType', + 'GD not installed' => 'Nie zainstalowano GD', + '$_SERVER does not have {vars}.' => '$_SERVER nie posiada zmiennej(nych) {vars}', + '$_SERVER variable' => 'zmienna $_SERVER', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"] musi być taki sam jak ścieżka pliku skryptu wejściowego.', + 'APC extension' => 'rozszerzenie APC', + 'All DB-related classes' => 'Wszystkie klasy bazodanowe', + 'DOM extension' => 'rozszerzenie DOM', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => 'Zarówno $_SERVER["REQUEST_URI"] jak i $_SERVER["QUERY_STRING"] muszą istnieć.', + 'Mcrypt extension' => 'rozszerzenie Mcrypt', + 'Memcache extension' => 'rozszerzenie Memcache', + 'PCRE extension' => 'rozszerzenie PCRE', + 'PDO MySQL extension' => 'rozszerzenie PDO MySQL', + 'PDO PostgreSQL extension' => 'rozszerzenie PDO PostgreSQL ', + 'PDO SQLite extension' => 'rozszerzenie PDO SQLite ', + 'PDO extension' => 'rozszerzenie PDO', + 'PHP 5.1.0 or higher is required.' => 'Wymagane jest PHP w wersji 5.1.0 lub wyższej', + 'PHP version' => 'wersja PHP', + 'Reflection extension' => 'rozszerzenie Reflection', + 'SOAP extension' => 'rozszerzenie SOAP', + 'SPL extension' => 'rozszerzenie SPL', + 'This is required by encrypt and decrypt methods.' => 'Wymagane przez metody szyfrujące i deszyfrujące.', + 'This is required if you are using MySQL database.' => 'Wymagane jeśli używasz bazy danych MySQL.', + 'This is required if you are using PostgreSQL database.' => 'Wymagane jeśli używasz bazy danych PostgreSQL.', + 'This is required if you are using SQLite database.' => 'Wymagane jeśli używasz bazy danych SQLite', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => 'Nie można określić ścieżki URL. Upewnij się, że $_SERVER["PATH_INFO"] (lub $_SERVER["PHP_SELF"] oraz $_SERVER["SCRIPT_NAME"]) zawierają odpowiednie wartości.', +); diff --git a/requirements/messages/pt/yii.php b/requirements/messages/pt/yii.php new file mode 100644 index 00000000..7a3c891e --- /dev/null +++ b/requirements/messages/pt/yii.php @@ -0,0 +1,44 @@ + 'É necessário aos métodos encrypt e decrypt.', + '$_SERVER does not have {vars}.' => '$_SERVER não possui {vars}.', + '$_SERVER variable' => 'variável $_SERVER', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"] precisa ser o mesmo que o arquivo de script de entrada.', + 'APC extension' => 'extensão APC', + 'All DB-related classes' => 'Todas as classes relacionadas ao banco de dados', + 'DOM extension' => 'extensão DOM', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => '$_SERVER["REQUEST_URI"] ou $_SERVER["QUERY_STRING"] é obrigatório.', + 'GD extension' => 'extensão GD', + 'Mcrypt extension' => 'extensão Mcrypt', + 'Memcache extension' => 'extensão Memcache', + 'PCRE extension' => 'extensão PCRE', + 'PDO MySQL extension' => 'extensão PDO_MySQL', + 'PDO PostgreSQL extension' => 'extensão PDO_PostgreSQL', + 'PDO SQLite extension' => 'extensão PDO_SQLite', + 'PDO extension' => 'extensão PDO', + 'PHP 5.1.0 or higher is required.' => 'PHP 5.1.0 ou mais recente é necessário.', + 'PHP version' => 'versão PHP', + 'Reflection extension' => 'extensão Reflection', + 'SOAP extension' => 'extensão SOAP', + 'SPL extension' => 'extensão SPL', + 'This is required if you are using MySQL database.' => 'Este item é obrigatório se você estiver utilizando MySQL.', + 'This is required if you are using PostgreSQL database.' => 'Este item é obrigatório se você estiver utilizando PostgreSQL.', + 'This is required if you are using SQLite database.' => 'Este item é obrigatório se você estiver utilizando SQLite.', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => 'Não foi possível determinar o caminho da URL. Verifique se $_SERVER["PATH_INFO"] (ou $_SERVER["PHP_SELF"] e $_SERVER["SCRIPT_NAME"]) contem os valores corretos.', +); diff --git a/requirements/messages/pt_br/yii.php b/requirements/messages/pt_br/yii.php new file mode 100644 index 00000000..6271809d --- /dev/null +++ b/requirements/messages/pt_br/yii.php @@ -0,0 +1,52 @@ + 'extensão Ctype', + 'GD extension with
FreeType support' => 'extensão GD com
suporte a FreeType', + 'GD installed
FreeType support not installed' => 'GD instalada
suporte a FreeType não instalado', + 'GD not installed' => 'GD não instalada', + 'To use memcached set CMemCache::useMemcached to true.' => 'Para usar memcached configure CMemCache::useMemcached como true.', + 'GD extension' => '@@extensão GD@@', + '$_SERVER does not have {vars}.' => '$_SERVER não possui {vars}.', + '$_SERVER variable' => 'variável $_SERVER', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"] precisa ser o mesmo que o arquivo de script de entrada.', + 'APC extension' => 'extensão APC', + 'All DB-related classes' => 'Todas as classes relacionadas ao banco de dados', + 'DOM extension' => 'extensão DOM', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => '$_SERVER["REQUEST_URI"] ou $_SERVER["QUERY_STRING"] é obrigatório.', + 'Mcrypt extension' => 'extensão Mcrypt', + 'Memcache extension' => 'extensão Memcache', + 'PCRE extension' => 'extensão PCRE', + 'PDO MySQL extension' => 'extensão PDO_MySQL', + 'PDO PostgreSQL extension' => 'extensão PDO_PostgreSQL', + 'PDO SQLite extension' => 'extensão PDO_SQLite', + 'PDO extension' => 'extensão PDO', + 'PHP 5.1.0 or higher is required.' => 'PHP 5.1.0 ou mais recente é necessário.', + 'PHP version' => 'versão PHP', + 'Reflection extension' => 'extensão Reflection', + 'SOAP extension' => 'extensão SOAP', + 'SPL extension' => 'extensão SPL', + 'This is required by encrypt and decrypt methods.' => 'Este item é necessário aos métodos encrypt e decrypt.', + 'This is required if you are using MySQL database.' => 'Este item é obrigatório se você estiver utilizando MySQL.', + 'This is required if you are using PostgreSQL database.' => 'Este item é obrigatório se você estiver utilizando PostgreSQL.', + 'This is required if you are using SQLite database.' => 'Este item é obrigatório se você estiver utilizando SQLite.', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => 'Não foi possível determinar o caminho da URL. Verifique se $_SERVER["PATH_INFO"] (ou $_SERVER["PHP_SELF"] e $_SERVER["SCRIPT_NAME"]) contem os valores corretos.', +); diff --git a/requirements/messages/ro/yii.php b/requirements/messages/ro/yii.php new file mode 100644 index 00000000..193feaef --- /dev/null +++ b/requirements/messages/ro/yii.php @@ -0,0 +1,44 @@ + '$_SERVER nu are {vars}.', + '$_SERVER variable' => 'Variabila $_SERVER', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"] trebuie sa fie aceeasi cu calea fisierului scriptului de intrare.', + 'APC extension' => 'Extensia APC', + 'All DB-related classes' => 'Toate clasele de legatura cu bazele de date', + 'DOM extension' => 'Extensia DOM', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => 'Trebuie sa existe fie $_SERVER["REQUEST_URI"] fie $_SERVER["QUERY_STRING"].', + 'GD extension' => 'Extensia GD', + 'Mcrypt extension' => 'Extensia Mcrypt', + 'Memcache extension' => 'Extensia Memcache', + 'PCRE extension' => 'Extensia PCRE', + 'PDO MySQL extension' => 'Extensia PDO MySQL', + 'PDO PostgreSQL extension' => 'Extensia PDO PostgreSQL', + 'PDO SQLite extension' => 'Extensia PDO SQLite', + 'PDO extension' => 'Extensia PDO', + 'PHP 5.1.0 or higher is required.' => 'Este obligatoriu PHP 5.1.0 sau mai nou.', + 'PHP version' => 'Versiunea PHP', + 'Reflection extension' => 'Extensia Reflection', + 'SOAP extension' => 'Extensia SOAP', + 'SPL extension' => 'Extensia SPL', + 'This is required by encrypt and decrypt methods.' => 'Obligatoriu pentru metodele encrypt si decrypt.', + 'This is required if you are using MySQL database.' => 'Obligatoriu daca folositi baza de date MySQL.', + 'This is required if you are using PostgreSQL database.' => 'Obligatoriu daca folositi baza de date PostgreSQL.', + 'This is required if you are using SQLite database.' => 'Obligatoriu daca folositi baza de date SQLite.', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => 'Nu se pot determina informatiile despre calea URL. Asigurati-va ca $_SERVER["PATH_INFO"] (sau $_SERVER["PHP_SELF"] si $_SERVER["SCRIPT_NAME"]) contine valoarea potrivita.', +); diff --git a/requirements/messages/ru/yii.php b/requirements/messages/ru/yii.php new file mode 100644 index 00000000..3d25614d --- /dev/null +++ b/requirements/messages/ru/yii.php @@ -0,0 +1,44 @@ + 'Переменная $_SERVER не содержит {vars}.', + '$_SERVER variable' => 'Переменная $_SERVER.', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => 'Переменная $_SERVER["SCRIPT_FILENAME"] должна соответствовать пути к файлу входного скрипта.', + 'APC extension' => 'Расширение APC', + 'All DB-related classes' => 'Все DB-классы', + 'DOM extension' => 'Расширение DOM', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => 'Должна существовать хотя бы одна из серверных переменных: $_SERVER["REQUEST_URI"] или $_SERVER["QUERY_STRING"].', + 'GD extension' => 'Расширение GD', + 'Mcrypt extension' => 'Расширение Mcrypt', + 'Memcache extension' => 'Расширение Memcache', + 'PCRE extension' => 'Расширение PCRE', + 'PDO MySQL extension' => 'Расширение PDO MySQL', + 'PDO PostgreSQL extension' => 'Расширение PDO PostgreSQL', + 'PDO SQLite extension' => 'Расширение PDO SQLite', + 'PDO extension' => 'Расширение PDO', + 'PHP 5.1.0 or higher is required.' => 'Необходима версия РНР 5.1.0 и выше.', + 'PHP version' => 'Версия РНР', + 'Reflection extension' => 'Расширение', + 'SOAP extension' => 'Расширение SOAP', + 'SPL extension' => 'Расширение SPL', + 'This is required by encrypt and decrypt methods.' => 'Требуется для работы методов шифрования и дешифрации.', + 'This is required if you are using MySQL database.' => 'Требуется для работы с БД MySQL.', + 'This is required if you are using PostgreSQL database.' => 'Требуется для работы с БД PostgreSQL.', + 'This is required if you are using SQLite database.' => 'Требуется для работы с БД SQLite.', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => 'Не удалось получить информацию о пути. Пожалуйста, проверьте, содержится ли корректное значение в переменной $_SERVER["PATH_INFO"] (или $_SERVER["PHP_SELF"] и $_SERVER["SCRIPT_NAME"]).', +); diff --git a/requirements/messages/sk/yii.php b/requirements/messages/sk/yii.php new file mode 100644 index 00000000..435a6e07 --- /dev/null +++ b/requirements/messages/sk/yii.php @@ -0,0 +1,44 @@ + 'Nevyhnutné pre kryptovacie a dekryptovacie metódy.', + '$_SERVER does not have {vars}.' => '$_SERVER nenašiel {vars}.', + '$_SERVER variable' => '$_SERVER premenná', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"] musí ukazovať na štartovací skript.', + 'APC extension' => 'APC rozšírenie', + 'All DB-related classes' => 'Všetky objekty vzťahujúce sa k databáze', + 'DOM extension' => 'DOM rozšírenie', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => '$_SERVER["REQUEST_URI"] alebo $_SERVER["QUERY_STRING"] musia existovať.', + 'GD extension' => 'GD rozšírenie', + 'Mcrypt extension' => 'Mcrypt rozšírenie', + 'Memcache extension' => 'Memcache rozšírenie', + 'PCRE extension' => 'PCRE rozšírenie', + 'PDO MySQL extension' => 'PDO MySQL rozšírenie', + 'PDO PostgreSQL extension' => 'PDO PostgreSQL rozšírenie', + 'PDO SQLite extension' => 'PDO SQLite rozšírenie', + 'PDO extension' => 'PDO rozšírenie', + 'PHP 5.1.0 or higher is required.' => 'Je potrebná verzia PHP 5.1.0 alebo vyššia.', + 'PHP version' => 'PHP verzia', + 'Reflection extension' => 'Reflection rozšírenie', + 'SOAP extension' => 'SOAP rozšírenie', + 'SPL extension' => 'SPL rozšírenie', + 'This is required if you are using MySQL database.' => 'Potrebné v prípade využitia databázy mySQL.', + 'This is required if you are using PostgreSQL database.' => 'Potrebné v prípade využitia databázy PostgreSQL.', + 'This is required if you are using SQLite database.' => 'Potrebné v prípade využitia databázy SQLite.', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => 'Nepodarilo sa zistiť informácie o URL linke. Ubezúpečte sa, že $_SERVER["PATH_INFO"] (alebo $_SERVER["PHP_SELF"] a $_SERVER["SCRIPT_NAME"]) obsahuje správne hodnoty.', +); diff --git a/requirements/messages/sv/yii.php b/requirements/messages/sv/yii.php new file mode 100644 index 00000000..a5b407db --- /dev/null +++ b/requirements/messages/sv/yii.php @@ -0,0 +1,51 @@ + 'Ctype-tillägg', + '$_SERVER does not have {vars}.' => '$_SERVER innehåller inte {vars}.', + '$_SERVER variable' => '$_SERVER-variabel', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"] måste vara samma som startskriptets namn och sökväg.', + 'APC extension' => 'APC-tillägg', + 'All DB-related classes' => 'Alla DB-relaterade klasser', + 'DOM extension' => 'DOM-tillägg', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => 'Antingen $_SERVER["REQUEST_URI"] eller $_SERVER["QUERY_STRING"] måste finnas.', + 'GD extension with
FreeType support' => 'GD-tillägg med
FreeType-stöd', + 'GD installed
FreeType support not installed' => 'GD installerad
FreeType-stöd ej installerat', + 'GD not installed' => 'GD ej installerat', + 'Mcrypt extension' => 'Mcrypt-tillägg', + 'Memcache extension' => 'Memcache-tillägg', + 'PCRE extension' => 'PCRE-tillägg', + 'PDO MySQL extension' => 'PDO MySQL-tillägg', + 'PDO PostgreSQL extension' => 'PDO PostgreSQL-tillägg', + 'PDO SQLite extension' => 'PDO SQLite-tillägg', + 'PDO extension' => 'PDO-tillägg', + 'PHP 5.1.0 or higher is required.' => 'PHP 5.1.0 eller senare krävs', + 'PHP version' => 'PHP-version', + 'Reflection extension' => 'Reflection-tillägg', + 'SOAP extension' => 'SOAP-tillägg', + 'SPL extension' => 'SPL-tillägg', + 'This is required by encrypt and decrypt methods.' => 'Detta krävs av krypterings- och dekrypteringsmetoderna', + 'This is required if you are using MySQL database.' => 'Detta krävs om MySQL-databas används.', + 'This is required if you are using PostgreSQL database.' => 'Detta krävs om PostgresSQL-databas används.', + 'This is required if you are using SQLite database.' => 'Detta krävs om SQLite-databas används.', + 'To use memcached set CMemCache::useMemcached to true.' => 'För att använda memcached, sätt CMemCache::useMemcached till true.', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => 'Kan inte avgöra URL:ens sökvägsinfo. Kontrollera att $_SERVER["PATH_INFO"] (eller $_SERVER["PHP_SELF"] och $_SERVER["SCRIPT_NAME"]) innehåller korrekta värden.', +); diff --git a/requirements/messages/ta_in/yii.php b/requirements/messages/ta_in/yii.php new file mode 100644 index 00000000..8d8e4330 --- /dev/null +++ b/requirements/messages/ta_in/yii.php @@ -0,0 +1,47 @@ + + * @version $Id: $ + */ +return array ( + '$_SERVER does not have {vars}.' => '$_SERVER {vars} ஐக் கொண்டிருக்கவில்லை.', + '$_SERVER variable' => '$_SERVER மாறிலி', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"] வழித்தடம் முதன்மை வழித்தடத்திலிருக்க வேண்டும்.', + 'APC extension' => 'APC நீட்சி', + 'All DB-related classes' => 'தகவல்தளம் சம்பந்தப்பட்ட உருக்கள் அனைத்தும்', + 'DOM extension' => 'DOM நீட்சி', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => '$_SERVER["REQUEST_URI"] அல்லது $_SERVER["QUERY_STRING"] கண்டிப்பாக இருக்க வேண்டும்.', + 'GD extension with
FreeType support' => 'GD நீட்சி
FreeType பயன்பாட்டுடன்', + 'GD installed
FreeType support not installed' => 'GD நிறுவப்பட்டுள்ளது
FreeType பயன்பாடு நிறுவப்பட்டிருக்கவில்லை', + 'GD not installed' => 'GD நிறுவப்பட்டிருக்கவில்லை', + 'Mcrypt extension' => 'Mcrypt நீட்சி', + 'Memcache extension' => 'Memcache நீட்சி', + 'PCRE extension' => 'PCRE நீட்சி', + 'PDO MySQL extension' => 'PDO MySQL நீட்சி', + 'PDO PostgreSQL extension' => 'PDO PostgreSQL நீட்சி', + 'PDO SQLite extension' => 'PDO SQLite நீட்சி', + 'PDO extension' => 'PDO நீட்சி', + 'PHP 5.1.0 or higher is required.' => 'PHP 5.1.0 அல்லது மேன்மையானது இருத்தல் வேண்டும்.', + 'PHP version' => 'PHP பதிப்பு', + 'Reflection extension' => 'Reflection நீட்சி', + 'SOAP extension' => 'SOAP நீட்சி', + 'SPL extension' => 'SPL நீட்சி', + 'This is required by encrypt and decrypt methods.' => 'இது encrypt மற்றும் decrypt பயன்பாடுகளுக்குத் தேவையானது.', + 'This is required if you are using MySQL database.' => 'நீங்கள் MySQL தகவல்தளத்தை உபயோகப்படுத்தினால் இது தேவையானது.', + 'This is required if you are using PostgreSQL database.' => 'நீங்கள் PostgreSQL தகவல்தளத்தை உபயோகப்படுத்தினால் இது தேவையானது.', + 'This is required if you are using SQLite database.' => 'நீங்கள் SQLite தகவல்தளத்தை உபயோகப்படுத்தினால் இது தேவையானது.', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => 'முகவரியின் தகவல்களைப் பெற இயலவில்லை. தயவுசெய்து $_SERVER["PATH_INFO"] (அல்லது $_SERVER["PHP_SELF"] மற்றும் $_SERVER["SCRIPT_NAME"]) தகவல்களை சரிபார்க்கவும்.', +); diff --git a/requirements/messages/vi/yii.php b/requirements/messages/vi/yii.php new file mode 100644 index 00000000..be38f7d1 --- /dev/null +++ b/requirements/messages/vi/yii.php @@ -0,0 +1,43 @@ + '$_SERVER không chứa {vars}', + '$_SERVER variable' => 'Biến $_SERVER', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"] phải giống đường dẫn của file khởi động', + 'APC extension' => 'APC extension', + 'All DB-related classes' => 'Tất cả các lớp liên quan đến CSDL', + 'DOM extension' => 'DOM extension', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => 'Biến $_SERVER["REQUEST_URI"] hoặc $_SERVER["QUERY_STRING"] phải tồn tại.', + 'GD extension' => 'GD extension', + 'Mcrypt extension' => 'Mcrypt extension', + 'Memcache extension' => 'Memcache extension', + 'PCRE extension' => 'PCRE extension', + 'PDO MySQL extension' => 'PDO MySQl extension', + 'PDO PostgreSQL extension' => 'PDO PostgreSQL extension', + 'PDO SQLite extension' => 'PDO SQLite extension', + 'PDO extension' => 'PDO extension', + 'PHP 5.1.0 or higher is required.' => 'Phải có PHP 5.1.0 hoặc mới hơn', + 'PHP version' => 'Phiên bản PHP', + 'Reflection extension' => 'Reflection extension', + 'SOAP extension' => 'SOAP extension', + 'SPL extension' => 'SPL extension', + 'This is required if you are using MySQL database.' => 'Cần phải có nếu bạn dùng MySQL', + 'This is required if you are using PostgreSQL database.' => 'Cần phải có nếu bạn dùng PostgreSQL', + 'This is required if you are using SQLite database.' => 'Cần phải có nếu bạn dùng SQLite', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => 'Không xác định được thông tin đường dẫn URL. Hãy kiểm tra đảm bảo $_SERVER["PATH_INFO"] (hoặc $_SERVER["PHP_SELF"] và $_SERVER["SCRIPT_NAME"]) có giá trị đúng.', +); diff --git a/requirements/messages/zh_cn/yii.php b/requirements/messages/zh_cn/yii.php new file mode 100644 index 00000000..b760aac5 --- /dev/null +++ b/requirements/messages/zh_cn/yii.php @@ -0,0 +1,43 @@ + 'PHP版本', + 'PHP 5.1.0 or higher is required.' => 'PHP 5.1.0或更高版本是必须的。', + '$_SERVER variable' => '$_SERVER变量', + 'Reflection extension' => 'Reflection扩展模块', + 'PCRE extension' => 'PCRE扩展模块', + 'SPL extension' => 'SPL扩展模块', + 'DOM extension' => 'DOM扩展模块', + 'PDO extension' => 'PDO扩展模块', + 'All DB-related classes' => '所有和数据库相关的类', + 'Memcache extension' => 'Memcache扩展模块', + 'APC extension' => 'APC扩展模块', + 'Mcrypt extension' => 'Mcrypt扩展模块', + 'SOAP extension' => 'SOAP扩展模块', + 'GD extension' => 'GD扩展模块', + '$_SERVER does not have {vars}.' => '$_SERVER缺少{vars}。', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"]必须与入口文件路径一致。', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => '$_SERVER["REQUEST_URI"]或$_SERVER["QUERY_STRING"]必须存在。', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => '无法确定URL path info。请检查$_SERVER["PATH_INFO"](或$_SERVER["PHP_SELF"]和$_SERVER["SCRIPT_NAME"])的值是否正确。', + 'PDO SQLite extension' => 'PDO SQLite扩展模块', + 'This is required if you are using SQLite database.' => '如果使用SQLite数据库,这是必须的。', + 'PDO MySQL extension' => 'PDO MySQL扩展模块', + 'This is required if you are using MySQL database.' => '如果使用MySQL数据库,这是必须的。', + 'PDO PostgreSQL extension' => 'PDO PostgreSQL扩展模块', + 'This is required if you are using PostgreSQL database.' => '如果使用PostgreSQL数据库,这是必须的。', +); diff --git a/requirements/messages/zh_tw/yii.php b/requirements/messages/zh_tw/yii.php new file mode 100644 index 00000000..244aaf68 --- /dev/null +++ b/requirements/messages/zh_tw/yii.php @@ -0,0 +1,43 @@ + '$_SERVER 中沒有 {vars}.', + '$_SERVER variable' => '$_SERVER 變數', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"] 必須與入口腳本檔案路徑一致.', + 'APC extension' => '', + 'All DB-related classes' => '所有 資料庫相關的類別', + 'DOM extension' => '', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => '$_SERVER["REQUEST_URI"] 或 $_SERVER["QUERY_STRING"] 必須存在.', + 'GD extension' => '', + 'Mcrypt extension' => '', + 'Memcache extension' => '', + 'PCRE extension' => '', + 'PDO MySQL extension' => '', + 'PDO PostgreSQL extension' => '', + 'PDO SQLite extension' => '', + 'PDO extension' => '', + 'PHP 5.1.0 or higher is required.' => '需要 PHP 5.1.0 或之後的版本.', + 'PHP version' => 'PHP 版本', + 'Reflection extension' => '', + 'SOAP extension' => '', + 'SPL extension' => '', + 'This is required if you are using MySQL database.' => '當使用 MySQL 資料庫時, 此項為必要.', + 'This is required if you are using PostgreSQL database.' => '當使用 PostgreSQL 資料庫時, 此項為必要.', + 'This is required if you are using SQLite database.' => '當使用 SQLite 資料庫時, 此項為必要.', + 'Unable to determine URL path info. Please make sure $_SERVER["PATH_INFO"] (or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"]) contains proper value.' => '無法確認 URL 路徑資訊. 請確定 $_SERVER["PATH_INFO"] (或 $_SERVER["PHP_SELF"] 與 $_SERVER["SCRIPT_NAME"]) 包含適當的值.', +); diff --git a/requirements/views/.htaccess b/requirements/views/.htaccess new file mode 100644 index 00000000..e0198322 --- /dev/null +++ b/requirements/views/.htaccess @@ -0,0 +1 @@ +deny from all diff --git a/requirements/views/ar/index.php b/requirements/views/ar/index.php new file mode 100644 index 00000000..4daeba72 --- /dev/null +++ b/requirements/views/ar/index.php @@ -0,0 +1,74 @@ + + + + + + +مدقق متطلبات Yii + + + +
+ + + +
+

الوصف

+

+يتحقق هذا السكربت ماإذا كانت إعدادات الخادم لديك تفي بمتطلبات تشغيل تطبيقات الويب لاطار العمل Yii. +يتحقق ايضا ما إذا كان الخادم يعمل على الإصدارة الصحيحة من PHP، +تحميل اللاحقات المناسبة، وأيضا ما إذا كانت إعدادات ملف php.ini صحيحة. +

+ +

النتيجة

+

+0): ?> +تهانينا! إعدادات الخادم لديك مستوفية جميع متطلبات تشغيل Yii. + +إعدادات الخادم الخاص بك مستوفية للحد الادنى لمتطلبات تشغيل Yii. الرجاء ملاحظة قائمة التنبيهات أدناه وما إذا كان التطبيق الخاص بك يستخدم أحد هذه المزايا. + +لسوء الحظ إعدادات الخادم الخاص بك لا تلبي متطلبات تشغيل Yii. + +

+ +

التفاصيل

+ + + + + + + + + + + +
الاسمالنتيجةمطلوب من قبلملاحظات
+ + + + + + + +
+ + + + + + + +
 نجح فشل تنبيه
+ +
+ + + +
+ + \ No newline at end of file diff --git a/requirements/views/bg/index.php b/requirements/views/bg/index.php new file mode 100644 index 00000000..703b2bee --- /dev/null +++ b/requirements/views/bg/index.php @@ -0,0 +1,81 @@ + + + + + + +Yii Requirement Checker + + + +
+ + + +
+

Описание

+

+This script checks if your server configuration meets the requirements +for running Yii Web applications. +It checks if the server is running the right version of PHP, +if appropriate PHP extensions have been loaded, and if php.ini file settings are correct. + +Този скрипт проверява дали конфигурацията на вавият сървър, отговаря на изискванията за +работа на Yii уеб приложенията. +Проверява дали на сървъра работи подходящата версия на PHP, +дали подходящите PHP добавки са заредени и дали настройките в php.ini са вярни +

+ +

Заключение

+

+0): ?> +Congratulations! Your server configuration satisfies all requirements by Yii. +Поздравление! Вашият сървър отговаря на всики изисквания за работа на Yii. + +Вашият сървър удоблетворява минималните изисквания на Yii. Моля, обърнете внимание на списъка с грешки отдоло, ако вашето приложение ще използва тези функции. + +За жалост, вашият сървър, не отговаря на изискванията за работа на Yii. + +

+ +

Детайли

+ + + + + + + + + + + +
ИмеРезултатПоискано отБележка
+ + + + + + + +
+ + + + + + + +
 преминат провален предупреждение
+ +
+ + + +
+ + diff --git a/requirements/views/de/index.php b/requirements/views/de/index.php new file mode 100644 index 00000000..9d55aba5 --- /dev/null +++ b/requirements/views/de/index.php @@ -0,0 +1,76 @@ + + + + + + +Yii Anforderungs-Tester + + + +
+ + + +
+

Beschreibung

+

+Dieses Script ermittelt, ob Ihre Serverkonfiguration die Anforderungen zum +Ausführen von Yii Webanwendungen +erfüllt. +Es prüft auf die korrekte PHP Version, ob die benötigten Erweiterungen +geladen wurden und ob die Einstellungen in der php.ini korrekt sind +

+ +

Zusammenfassung

+

+0): ?> +Gratulation! Ihr Server erfüllt alle Anforderungen von Yii. + +Ihr Server erfüllt die minimalen Anforderungen von Yii. Bitte beachten Sie die untenstehenden Warnungen, wenn Ihre Anwendungen einige dieser Features verwenden sollen. + +Unglücklicherweise erfüllt Ihr Server die Anforderungen von Yii nicht. + +

+ +

Details

+ + + + + + + + + + + +
NameResultatBenötigt vonMemo
+ + + + + + + +
+ + + + + + + +
 Bestanden Verfehlt Warnung
+ +
+ + + +
+ + \ No newline at end of file diff --git a/requirements/views/de_de/index.php b/requirements/views/de_de/index.php new file mode 100644 index 00000000..9d55aba5 --- /dev/null +++ b/requirements/views/de_de/index.php @@ -0,0 +1,76 @@ + + + + + + +Yii Anforderungs-Tester + + + +
+ + + +
+

Beschreibung

+

+Dieses Script ermittelt, ob Ihre Serverkonfiguration die Anforderungen zum +Ausführen von Yii Webanwendungen +erfüllt. +Es prüft auf die korrekte PHP Version, ob die benötigten Erweiterungen +geladen wurden und ob die Einstellungen in der php.ini korrekt sind +

+ +

Zusammenfassung

+

+0): ?> +Gratulation! Ihr Server erfüllt alle Anforderungen von Yii. + +Ihr Server erfüllt die minimalen Anforderungen von Yii. Bitte beachten Sie die untenstehenden Warnungen, wenn Ihre Anwendungen einige dieser Features verwenden sollen. + +Unglücklicherweise erfüllt Ihr Server die Anforderungen von Yii nicht. + +

+ +

Details

+ + + + + + + + + + + +
NameResultatBenötigt vonMemo
+ + + + + + + +
+ + + + + + + +
 Bestanden Verfehlt Warnung
+ +
+ + + +
+ + \ No newline at end of file diff --git a/requirements/views/el/index.php b/requirements/views/el/index.php new file mode 100644 index 00000000..60d58cbb --- /dev/null +++ b/requirements/views/el/index.php @@ -0,0 +1,75 @@ + + + + + + +Ελεγκτής Απαιτήσεων Yii + + + +
+ + + +
+

Περιγραφή

+

+Αυτή η σελίδα ελέγχει αν η παραμετροποίηση του διακομιστή σας είναι σωστή +για την εκτέλεση των εφαρμογών ιστού του Yii. +Ελέγχει αν ο διακομιστής εκτελεί τη σωστή έκδοση PHP, αν έχουν φορτωθεί +οι κατάλληλες επεκτάσεις PHP και αν οι ρυθμίσεις του αρχείου php.ini είναι σωστές. +

+ +

Συμπέρασμα

+

+0): ?> +Συγχαρητήρια! Η παραμετροποίηση του διακομιστή σας ικανοποιεί όλες τις απαιτήσεις του Yii. + +Η παραμετροποίηση του διακομιστή σας ικανοποιεί τις ελάχιστες απαιτήσεις του Yii. Παρακαλούμε δείτε με προσοχή τις παρακάτω προειδοποιήσεις εφόσον η εφαρμογή σας θα χρησιμοποιεί τα αντίστοιχα χαρακτηριστικά. + +Δυστυχώς, η παραμετροποίηση του διακομιστή σας δεν ικανοποιεί τις απαιτήσεις του Yii. + +

+ +

Λεπτομέρειες

+ + + + + + + + + + + +
ΌνομαΑποτέλεσμαΑπαιτούμενο απόΣημειώσεις
+ + + + + + + +
+ + + + + + + +
 πέρασε απέτυχε προειδοποίηση
+ +
+ + + +
+ + \ No newline at end of file diff --git a/requirements/views/es/index.php b/requirements/views/es/index.php new file mode 100644 index 00000000..faff0ba1 --- /dev/null +++ b/requirements/views/es/index.php @@ -0,0 +1,75 @@ + + + + + + +Verificación de requerimientos de Yii + + + +
+ + + +
+

Descripción

+

+Este script verifica que la configuración de su servidor cumpla con los requerimientos +para poder ejecutar aplicaciones Web Yii. +El mismo verifica que el servidor este corriendo una versión adecuada de PHP, +que las extensiones PHP necesarias hayan sido cargadas y que las configuraciones del archivo php.ini sean correctas. +

+ +

Conclusión

+

+0): ?> +Felicitaciones! Su servidor satisface todos los requerimientos de Yii. + +La configuración de su servidor satisface los requerimientos mínimos de Yii. Por favor preste atención a las advertencias listadas en el cuadro más abajo si su aplicación utiliza alguna de esas características. + +Desafortunadamente la configuración de su servidor no satisface los requerimientos de Yii. + +

+ +

Detalles

+ + + + + + + + + + + +
NombreResultadoRequerido porMemo
+ + + + + + + +
+ + + + + + + +
 paso fallo advertencia
+ +
+ + + +
+ + \ No newline at end of file diff --git a/requirements/views/fr/index.php b/requirements/views/fr/index.php new file mode 100644 index 00000000..614c5a30 --- /dev/null +++ b/requirements/views/fr/index.php @@ -0,0 +1,75 @@ + + + + + + +Vérification de la configuration nécessaire pour Yii + + + +
+ + + +
+

Description

+

+Ce script vérifie si la configuration de votre serveur satisfait toutes les dépendances nécessaires +pour exécuter les applications Yii. +Il vérifie si le serveur exécute la version correcte de PHP, +si toutes les extensions PHP nécessaires ont été chargées, et si les paramètres du fichier php.ini sont corrects +

+ +

Conclusion

+

+0): ?> +Félicitations ! Votre configuration vérifie toutes les exigences de Yii. + +Votre configuration satisfait les exigences minimales de Yii. Notez les avertissements listés ci-dessous si votre application utilise les fonctionnalités correspondantes. + +Malheureusement, votre configuration ne satisfait pas les exigences de Yii. + +

+ +

Details

+ + + + + + + + + + + +
NomResultatRequis ParInfo
+ + + + + + + +
+ + + + + + + +
 Ok Echec Avertissement
+ +
+ + + +
+ + \ No newline at end of file diff --git a/requirements/views/he/index.php b/requirements/views/he/index.php new file mode 100644 index 00000000..3ee8ac50 --- /dev/null +++ b/requirements/views/he/index.php @@ -0,0 +1,76 @@ + + + + + + +בדיקת דרישות מינימום להרצת Yii + + + +
+ + + +
+

תיאור

+

+הסקריפט הבא בודק אם סביבת השרת שלך תוכל לעמוד בדרישות המינימום כדי להריץ את + Yii לפיתוח מערכות ווב מתקדמות. +הסקריפט בודק אם השרת מריץ גרסאת PHP עדכנית, +אם הרחבות מסויימת קיימות ב PHP ונטענו בהצלחה, ואם הגדרות ה php.ini מוגדרות כמו שצריך. +

+ +

סיכום

+

+0): ?> +ברכותיינו! סביבת השרת שלך תומכת בכל הגדרישות של Yii. + +הגדרות סביבת השרת שלך מתאימות לדרישות המינימום של Yii. + אנא שים לב לאזהרות והערות הכתובות מטה במידה והאפליקציה שתכתוב תשתמש באחת מהאפשרויות הללו. + +לצערנו סביבת השרת שלך אינה תומכת בדרישות המינימום של Yii. + +

+ +

פרטים

+ + + + + + + + + + + +
כותרתתוצאהנדרש על ידיתזכורת
+ + + + + + + +
+ + + + + + + +
 עבר נכשל אזהרה
+ +
+ + + +
+ + \ No newline at end of file diff --git a/requirements/views/index.php b/requirements/views/index.php new file mode 100644 index 00000000..4d6df8f2 --- /dev/null +++ b/requirements/views/index.php @@ -0,0 +1,75 @@ + + + + + + +Yii Requirement Checker + + + +
+ + + +
+

Description

+

+This script checks if your server configuration meets the requirements +for running Yii Web applications. +It checks if the server is running the right version of PHP, +if appropriate PHP extensions have been loaded, and if php.ini file settings are correct. +

+ +

Conclusion

+

+0): ?> +Congratulations! Your server configuration satisfies all requirements by Yii. + +Your server configuration satisfies the minimum requirements by Yii. Please pay attention to the warnings listed below if your application will use the corresponding features. + +Unfortunately your server configuration does not satisfy the requirements by Yii. + +

+ +

Details

+ + + + + + + + + + + +
NameResultRequired ByMemo
+ + + + + + + +
+ + + + + + + +
 passed failed warning
+ +
+ + + +
+ + \ No newline at end of file diff --git a/requirements/views/ja/index.php b/requirements/views/ja/index.php new file mode 100644 index 00000000..c6e04272 --- /dev/null +++ b/requirements/views/ja/index.php @@ -0,0 +1,76 @@ + + + + + + +Yii Requirement Checker + + + +
+ + + +
+

説明

+

+このスクリプトは、あなたのサーバ構成が、Yiiアプリケーション +を実行するための要求を満たしているかどうかを確認します。 +このスクリプトはサーバにおいて正しいバージョンのPHPを実行しているか、適切なPHP拡張をロードしているか、php.iniファイル設定が正しいか +を確認します。 +

+ +

結果

+

+0): ?> +おめでとうございます。あなたのサーバ構成はYiiの全ての要求を満しています。 + +あなたのサーバ構成はYiiの最低限の要求を満しています。もしあなたのアプリケーションが対応する機能を +使用している場合には以下の警告に注意してください。 + +申し訳ありませんが、あなたのサーバ構成はYiiの要求を満していません。 + +

+ +

詳細

+ + + + + + + + + + + +
名称結果必要元備考
+ + + + + + + +
+ + + + + + + +
 合格 不合格 注意
+ +
+ + + +
+ + \ No newline at end of file diff --git a/requirements/views/no/index.php b/requirements/views/no/index.php new file mode 100644 index 00000000..f4092654 --- /dev/null +++ b/requirements/views/no/index.php @@ -0,0 +1,77 @@ + + + + + + +Yii - Sjekk systemkrav + + + +
+ + + +
+

Beskrivelse

+

+Dette skriptet sjekker om serverkonfigurasjonen oppfyller kravene for å kjøre +Yii-applikasjoner. +Det sjekker om serveren kjører riktig versjon av PHP, om nødvendige extensions +er lastet og om PHP-innstillingene i php.ini er korrekt. +

+ +

Konklusjon

+

+0): ?> +Gratulerer! Konfigurasjonen på serveren tilfredstiller alle krav for å kjøre Yii. + +Konfigurasjonen på serveren tilfredstiller minimumskravene til Yii. Vær oppmerksom +på advarslene listet nedenfor dersom applikasjonen din trenger noe av denne +funksjonaliteten. + +Desverre tilfredstiller ikke konfigurasjonen av serveren minimumskravene til Yii. + +

+ +

Detaljer

+ + + + + + + + + + + +
NavnResultatKreves avNotat
+ + + + + + + +
+ + + + + + + +
 ok feil advarsel
+ +
+ + + +
+ + \ No newline at end of file diff --git a/requirements/views/pl/index.php b/requirements/views/pl/index.php new file mode 100644 index 00000000..d86c88d3 --- /dev/null +++ b/requirements/views/pl/index.php @@ -0,0 +1,76 @@ + + + + + + +Sprawdzanie wymagań przez Yii + + + +
+ + + +
+

Opis

+

+Skrypt ten sprawdza czy konfiguracja Twojego serwera spełnia wymagania +pozwalające uruchomić aplikację napisaną przy użyciu Yii. +Sprawdza on, czy serwej używa poprawnej wersji PHP, +czy zostały załadowane odpowiednie rozszerzenia PHP oraz czy ustawienia w pliku php.ini są prawidłowe. +

+ +

Rozstrzygnięcie

+

+0): ?> +Gratulacje! Konfiguracja Twojego serwera spełnia wszystkie wymagania stawiane przez Yii. + +Konfiguracja Twojego serwera spełnia minimalne wymagania stawiane przez Yii. +Zwróć uwagę na ostrzeżenia wyświetlone poniżej jeśli Twoja aplikacja będzie używała odpowiadających im funkcjonalności. + +Niestety konfiguracja Twojego serwera nie spełnia wymagań stawianych przez Yii. + +

+ +

Szczegóły

+ + + + + + + + + + + +
NazwaRezultatWymagana przezNotka
+ + + + + + + +
+ + + + + + + +
 powiódł się nie powiódł się ostrzeżenie
+ +
+ + + +
+ + \ No newline at end of file diff --git a/requirements/views/pt/index.php b/requirements/views/pt/index.php new file mode 100644 index 00000000..047bd73c --- /dev/null +++ b/requirements/views/pt/index.php @@ -0,0 +1,76 @@ + + + + + + +Verificador de requisitos do Yii + + + +
+ + + +
+

Descrição

+

+Este script verifica se as configurações do servidor satisfazem os requisitos +para executar aplicações Web que utilizem o Yii . +É verificado se o servidor está executando a versão correta do PHP, +se as extensões apropriadas do PHP foram carregadas, +e se as definições do arquivo php.ini estão corretas. +

+ +

Resultados

+

+0): ?> +Parabéns! As configurações do seu servidor satisfazem todos os requisitos do Yii. + +As configurações do seu servidor satisfazem os requisitos mínimos do Yii. Por favor, preste atenção às advertências listados abaixo caso sua aplicação irá utilizar os recursos correspondentes. + +Infelizmente o as configurações do seu servidor não satisfazem os requisitos do Yii. + +

+ +

Detalhes

+ + + + + + + + + + + +
NomeResultadoExigido porDetalhe
+ + + + + + + +
+ + + + + + + +
 OK Falhou Advertência
+ +
+ + + +
+ + \ No newline at end of file diff --git a/requirements/views/pt_br/index.php b/requirements/views/pt_br/index.php new file mode 100644 index 00000000..09d3bff4 --- /dev/null +++ b/requirements/views/pt_br/index.php @@ -0,0 +1,76 @@ + + + + + + +Verificador de requisitos do Yii + + + +
+ + + +
+

Descrição

+

+Este script verifica se as configurações do servidor satisfazem os requisitos +para executar aplicações Web que utilizem o Yii . +É verificado se o servidor está executando a versão correta do PHP, +se as extensões apropriadas do PHP foram carregadas, +e se as definições do arquivo php.ini estão corretas. +

+ +

Resultados

+

+0): ?> +Parabéns! As configurações do seu servidor satisfazem todos os requisitos do Yii. + +As configurações do seu servidor satisfazem os requisitos mínimos do Yii. Por favor, preste atenção às advertências listados abaixo caso sua aplicação irá utilizar os recursos correspondentes. + +Infelizmente o as configurações do seu servidor não satisfazem os requisitos do Yii. + +

+ +

Detalhes

+ + + + + + + + + + + +
NomeResultadoExigido porDetalhe
+ + + + + + + +
+ + + + + + + +
 OK Falhou Advertência
+ +
+ + + +
+ + \ No newline at end of file diff --git a/requirements/views/ro/index.php b/requirements/views/ro/index.php new file mode 100644 index 00000000..ec9c6c84 --- /dev/null +++ b/requirements/views/ro/index.php @@ -0,0 +1,78 @@ + + + + + + +Verificare cerinte Yii + + + +
+ + + +
+

Descriere

+

+Acest script verifica daca configuratia serverului dvs indeplineste cerintele +pentru rularea aplicatiilor Web Yii. +Se fac urmatoarele verificari: daca serverul ruleaza versiunea corecta de PHP, +daca extensiile PHP corespunzatoare au fost incarcate si daca +setarile din fisierul php.ini sunt corecte. +

+ +

Concluzie

+

+0): ?> +Felicitari! Configuratia serverului dvs indeplineste toate cerintele Yii. + +Configuratia serverului dvs indeplineste cerintele minime pentru Yii. +Va rugam sa cititi avertismentele afisate mai jos, in cazul in care aplicatia pe care o veti crea +va folosi respectivele feature-uri. + +Din pacate, configuratia serverului dvs nu indeplineste cerintele Yii. + +

+ +

Detalii

+ + + + + + + + + + + +
NumeRezultatCerut dePrecizari
+ + + + + + + +
+ + + + + + + +
 passed failed warning
+ +
+ + + +
+ + \ No newline at end of file diff --git a/requirements/views/ru/index.php b/requirements/views/ru/index.php new file mode 100644 index 00000000..34891987 --- /dev/null +++ b/requirements/views/ru/index.php @@ -0,0 +1,75 @@ + + + + + + +Проверка на соответствие требованиям Yii + + + +
+ + + +
+

Описание

+

+Данный скрипт проверяет соответствие конфигурации Вашего веб-сервера требованиям, +предъявляемым веб-приложениями Yii. +В частности, проверяются версия РНР и загруженные расширения РНР, а также +корректность настроек файла php.ini. +

+ +

Заключение

+

+0): ?> +Поздравляем! Конфигурация Вашего веб-сервера полностью удовлетворяет требованиям Yii. + +Конфигурация Вашего веб-сервера удовлетворяет минимально необходимым требованиям Yii. Обратите внимание на предупреждения в таблице ниже, если предполагается использование соответствующего функционала. + +К сожалению, конфигурация Вашего веб-сервера не удовлетворяет требованиям Yii. + +

+ +

Результаты проверки

+ + + + + + + + + + + +
НазваниеИтогТребуется дляПояснение
+ + + + + + + +
+ + + + + + + +
 Да Нет Предупреждение
+ +
+ + + +
+ + \ No newline at end of file diff --git a/requirements/views/sk/index.php b/requirements/views/sk/index.php new file mode 100644 index 00000000..e45f96c3 --- /dev/null +++ b/requirements/views/sk/index.php @@ -0,0 +1,76 @@ + + + + + + +Yii - Test prostredia + + + +
+ + + +
+

Popis

+

+Tento skript preverí, či je konfigurácia vášho servera postačujúca +pre korektné fungovanie aplikácii vytvorených pre Yii framework. +Test preveruje správnu verziu PHP, prítomnosť potrebných PHP rozšírení a správne nastavenie +konfigurácie v php.ini. +

+ +

Záver

+

+0): ?> +Gratulujem! Váš server spĺňa všetky požiadavky potrebné pre korektné fungovanie Yii. + +Váš server spĺňa minimálne požiadavky potrebné pre fungovanie Yii. +Venujte prosím pozornosť upozorneniam uvedeným nižšie v prípade, že vaša aplikácia bude využívať potrebné funkcie. + +Bohužiaľ, váš server nespĺňa požiadavky potrebné pre fungovanie Yii. + +

+ +

Detaily

+ + + + + + + + + + + +
NázovVýsledokPožadované odPozn.
+ + + + + + + +
+ + + + + + + +
 OK chyba upozornenie
+ +
+ + + +
+ + \ No newline at end of file diff --git a/requirements/views/sv/index.php b/requirements/views/sv/index.php new file mode 100644 index 00000000..b08eada8 --- /dev/null +++ b/requirements/views/sv/index.php @@ -0,0 +1,74 @@ + + + + + + +Yii - Kontroll systemkrav + + + +
+ + + +
+

Beskrivning

+

+Det här skriptet kontrollerar om serverkonfigurationen uppfyller kraven för att köra Yii webbapplikationer. +Det kollar att servern kör rätt version av PHP, +att erforderliga PHP-tillägg är laddade, och att inställningar i filen php.ini är korrekta. +

+ +

Slutsats

+

+0): ?> +Grattis! Serverkonfigurationen uppfyller alla krav som Yii ställer. + +Serverkonfigurationen uppfyller minimikraven som Yii ställer. Lägg märke till nedanstående varningar om applikationer behöver använda nämnda finesser. + +Tyvärr uppfyller inte serverkonfigurationen minimikraven Yii ställer. + +

+ +

Detaljer

+ + + + + + + + + + + +
NamnResultatKrävs förMemo
+ + + + + + + +
+ + + + + + + +
 passed failed warning
+ +
+ + + +
+ + \ No newline at end of file diff --git a/requirements/views/zh/index.php b/requirements/views/zh/index.php new file mode 100644 index 00000000..22511e86 --- /dev/null +++ b/requirements/views/zh/index.php @@ -0,0 +1,72 @@ + + + + + + +Yii配置需求检查 + + + +
+ + + +
+

检查内容

+

+本网页用于确认您的服务器配置是否能满足运行Yii Web应用的要求。它将检查服务器所运行的PHP版本,查看是否安装了合适的PHP扩展模块,以及确认php.ini文件是否正确设置。 +

+ +

检查结果

+

+0): ?> +恭喜!您的服务器配置完全符合Yii的要求。 + +您的服务器配置符合Yii的最低要求。如果您需要使用特定的功能,请关注如下警告。 + +您的服务器配置未能满足Yii的要求。 + +

+ +

具体结果

+ + + + + + + + + + + +
项目名称结果使用者备注
+ + + + + + + +
+ + + + + + + +
 通过 未通过 警告
+ +
+ + + +
+ + \ No newline at end of file diff --git a/requirements/views/zh_cn/index.php b/requirements/views/zh_cn/index.php new file mode 100644 index 00000000..52a45d62 --- /dev/null +++ b/requirements/views/zh_cn/index.php @@ -0,0 +1,72 @@ + + + + + + +Yii配置需求检查 + + + +
+ + + +
+

检查内容

+

+本网页用于确认您的服务器配置是否能满足运行Yii Web应用的要求。它将检查服务器所运行的PHP版本,查看是否安装了合适的PHP扩展模块,以及确认php.ini文件是否正确设置。 +

+ +

检查结果

+

+0): ?> +恭喜!您的服务器配置完全符合Yii的要求。 + +您的服务器配置符合Yii的最低要求。如果您需要使用特定的功能,请关注如下警告。 + +您的服务器配置未能满足Yii的要求。 + +

+ +

具体结果

+ + + + + + + + + + + +
项目名称结果使用者备注
+ + + + + + + +
+ + + + + + + +
 通过 未通过 警告
+ +
+ + + +
+ + \ No newline at end of file diff --git a/requirements/views/zh_tw/index.php b/requirements/views/zh_tw/index.php new file mode 100644 index 00000000..c5d2e306 --- /dev/null +++ b/requirements/views/zh_tw/index.php @@ -0,0 +1,72 @@ + + + + + + +Yii系統需求檢查 + + + +
+ + + +
+

檢查內容說明

+

+本網頁用於確認您的伺服器組態設定是否能滿足執行Yii Web應用程式的要求. 它將檢查伺服器是否使用正確的PHP版本, 是否安裝了合適的PHP extension, 以及確認php.ini檔案是否正確設定. +

+ +

檢查結果

+

+0): ?> +恭喜! 您的伺服器組態設定完全符合Yii的要求. + +您的伺服器組態設定符合Yii的最低要求. 請注意下列警告(如果您的應用程式會需要使用到相關功能). + +您的伺服器組態設定未能滿足Yii的要求. + +

+ +

詳細結果

+ + + + + + + + + + + +
項目名稱結果使用者備註
+ + + + + + + +
+ + + + + + + +
 通過 未通過 警告
+ +
+ + + +
+ + \ No newline at end of file