diff options
| author | Patrick Seeger <pseeger@ccwn.org> | 2012-04-13 23:11:05 +0200 |
|---|---|---|
| committer | Patrick Seeger <pseeger@ccwn.org> | 2012-04-13 23:11:05 +0200 |
| commit | 341cc4dd9c53ffbfb863e026dd58549c1082c7a7 (patch) | |
| tree | 1bbbed20313bafb9b063b6b4d894fe580d8b000f /requirements | |
Diffstat (limited to 'requirements')
52 files changed, 3147 insertions, 0 deletions
diff --git a/requirements/css/main.css b/requirements/css/main.css new file mode 100644 index 0000000..bff20d1 --- /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 0000000..f023ddb --- /dev/null +++ b/requirements/index.php @@ -0,0 +1,251 @@ +<?php + +/** + * Yii Requirement Checker script + * + * This script will check if your system meets the requirements for running + * Yii-powered Web applications. + * + * @author Qiang Xue <qiang.xue@gmail.com> + * @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",">="), + '<a href="http://www.yiiframework.com">Yii Framework</a>', + t('yii','PHP 5.1.0 or higher is required.')), + array( + t('yii','$_SERVER variable'), + true, + ($message=checkServerVar()) === '', + '<a href="http://www.yiiframework.com">Yii Framework</a>', + $message), + array( + t('yii','Reflection extension'), + true, + class_exists('Reflection',false), + '<a href="http://www.yiiframework.com">Yii Framework</a>', + ''), + array( + t('yii','PCRE extension'), + true, + extension_loaded("pcre"), + '<a href="http://www.yiiframework.com">Yii Framework</a>', + ''), + array( + t('yii','SPL extension'), + true, + extension_loaded("SPL"), + '<a href="http://www.yiiframework.com">Yii Framework</a>', + ''), + array( + t('yii','DOM extension'), + false, + class_exists("DOMDocument",false), + '<a href="http://www.yiiframework.com/doc/api/CHtmlPurifier">CHtmlPurifier</a>, <a href="http://www.yiiframework.com/doc/api/CWsdlGenerator">CWsdlGenerator</a>', + ''), + array( + t('yii','PDO extension'), + false, + extension_loaded('pdo'), + t('yii','All <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>'), + ''), + array( + t('yii','PDO SQLite extension'), + false, + extension_loaded('pdo_sqlite'), + t('yii','All <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>'), + 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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>'), + 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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>'), + t('yii','This is required if you are using PostgreSQL database.')), + array( + t('yii','Memcache extension'), + false, + extension_loaded("memcache") || extension_loaded("memcached"), + '<a href="http://www.yiiframework.com/doc/api/CMemCache">CMemCache</a>', + extension_loaded("memcached") ? t('yii', 'To use memcached set <a href="http://www.yiiframework.com/doc/api/CMemCache#useMemcached-detail">CMemCache::useMemcached</a> to <code>true</code>.') : ''), + array( + t('yii','APC extension'), + false, + extension_loaded("apc"), + '<a href="http://www.yiiframework.com/doc/api/CApcCache">CApcCache</a>', + ''), + array( + t('yii','Mcrypt extension'), + false, + extension_loaded("mcrypt"), + '<a href="http://www.yiiframework.com/doc/api/CSecurityManager">CSecurityManager</a>', + t('yii','This is required by encrypt and decrypt methods.')), + array( + t('yii','SOAP extension'), + false, + extension_loaded("soap"), + '<a href="http://www.yiiframework.com/doc/api/CWebService">CWebService</a>, <a href="http://www.yiiframework.com/doc/api/CWebServiceAction">CWebServiceAction</a>', + ''), + array( + t('yii','GD extension with<br />FreeType support'), + false, + ($message=checkGD()) === '', + //extension_loaded('gd'), + '<a href="http://www.yiiframework.com/doc/api/CCaptchaAction">CCaptchaAction</a>', + $message), + array( + t('yii','Ctype extension'), + false, + extension_loaded("ctype"), + '<a href="http://www.yiiframework.com/doc/api/CDateFormatter">CDateFormatter</a>, <a href="http://www.yiiframework.com/doc/api/CDateFormatter">CDateTimeParser</a>, <a href="http://www.yiiframework.com/doc/api/CTextHighlighter">CTextHighlighter</a>, <a href="http://www.yiiframework.com/doc/api/CHtmlPurifier">CHtmlPurifier</a>', + '' + ) +); + +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<br />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[]='<a href="http://www.yiiframework.com/">Yii Framework</a>/'.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 0000000..8d2f256 --- /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 0000000..13c733a --- /dev/null +++ b/requirements/messages/ar/yii.php @@ -0,0 +1,44 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @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"] يجب ان يكون مساوي لمسار الملف الافتتاحي للسكربت (entry script file).', + 'APC extension' => 'لاحقة APC', + 'All <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => 'جميع <a href="http://www.yiiframework.com/doc/api/#system.db">الفئات ذات العلاقة</a>', + '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 0000000..6896156 --- /dev/null +++ b/requirements/messages/bg/yii.php @@ -0,0 +1,34 @@ +<?php +/** + * Message translations. + * + * + * @version $Id: 1 + */ +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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => 'Всички <a href="http://www.yiiframework.com/doc/api/#system.db">класове за работа с базата от данни</a>.', + '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 0000000..13a23c1 --- /dev/null +++ b/requirements/messages/config.php @@ -0,0 +1,17 @@ +<?php +/** + * This is the configuration for generating message translations + * for the Yii requirement checker. It is used by the 'yiic message' command. + */ +return array( + 'sourcePath'=>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 0000000..8ee3698 --- /dev/null +++ b/requirements/messages/de/yii.php @@ -0,0 +1,51 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * Message string can be used with plural forms format. Check i18n section + * of the guide for details. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @version $Id: $ + */ +return array ( + 'Ctype extension' => 'Ctype Erweiterung', + 'To use memcached set <a href="http://www.yiiframework.com/doc/api/CMemCache#useMemcached-detail">CMemCache::useMemcached</a> to <code>true</code>.' => 'Um memcached verwenden zu können, muss <a href="http://www.yiiframework.com/doc/api/CMemCache#useMemcached-detail">CMemCache::useMemcached</a> auf <code>true</code> 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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => 'Alle <a href="http://www.yiiframework.com/doc/api/#system.db">DB-bezogenen Klassen</a>', + '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<br />FreeType support' => 'GD Erweiterung mit <br />FreeType-Unterstützung', + 'GD installed<br />FreeType support not installed' => 'GD installiert<br />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 0000000..f02de5b --- /dev/null +++ b/requirements/messages/de_de/yii.php @@ -0,0 +1,43 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @version $Id: $ + */ +return array ( + '$_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 der selbe Eingangsscriptpfad sein.', + 'APC extension' => 'APC Erweiterung', + 'All <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => 'Alle <a href="http://www.yiiframework.com/doc/api/#system.db">DB-bezüglichen Klassen</a>', + '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 0000000..91bc594 --- /dev/null +++ b/requirements/messages/el/yii.php @@ -0,0 +1,51 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * Message string can be used with plural forms format. Check i18n section + * of the guide for details. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @version $Id: yii.php 2164 2011-06-23 13:46:17Z yiifrmwrk@lourdas.name $ + */ +return array ( + 'Ctype extension' => 'Επέκταση 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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => 'Όλες οι <a href="http://www.yiiframework.com/doc/api/#system.db">σχετικές με βάση κλάσεις</a>', + 'DOM extension' => 'Επέκταση DOM', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => 'Πρέπει να υπάρχει είτε το $_SERVER["REQUEST_URI"] είτε το $_SERVER["QUERY_STRING"].', + 'GD extension with<br />FreeType support' => 'Επέκταση GD με<br />υποστήριξη για FreeType', + 'GD installed<br />FreeType support not installed' => 'Επέκταση GD εγκατεστημένη<br />υποστήριξη 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 <a href="http://www.yiiframework.com/doc/api/CMemCache#useMemcached-detail">CMemCache::useMemcached</a> to <code>true</code>.' => 'Για να χρησιμοποιήσετε memcached, ορίστε το <a href="http://www.yiiframework.com/doc/api/CMemCache#useMemcached-detail">CMemCache::useMemcached</a> να είναι <code>true</code>.', + '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 0000000..1f4e042 --- /dev/null +++ b/requirements/messages/es/yii.php @@ -0,0 +1,44 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @version $Id: $ + */ +return array ( + '$_SERVER does not have {vars}.' => '$_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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => 'Todas las <a href="http://www.yiiframework.com/doc/api/#system.db">clases relacionadas con DB</a>', + '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 0000000..4cf0675 --- /dev/null +++ b/requirements/messages/fr/yii.php @@ -0,0 +1,44 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @version $Id: $ + */ +return array ( + '$_SERVER does not have {vars}.' => '$_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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => 'Toutes les <a href="http://www.yiiframework.com/doc/api/#system.db">classes relatives aux BD</a>.', + '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 0000000..6a5e888 --- /dev/null +++ b/requirements/messages/he/yii.php @@ -0,0 +1,43 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => 'כל <a href="http://www.yiiframework.com/doc/api/#system.db">מחלקות מסדי הנתונים</a>', + '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 0000000..1f60573 --- /dev/null +++ b/requirements/messages/hu/yii.php @@ -0,0 +1,44 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @version $Id: $ + */ +return array ( + '$_SERVER does not have {vars}.' => '', + '$_SERVER variable' => '', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '', + 'APC extension' => '', + 'All <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => '', + '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 0000000..5c60346 --- /dev/null +++ b/requirements/messages/id/yii.php @@ -0,0 +1,51 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * Message string can be used with plural forms format. Check i18n section + * of the guide for details. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @version $Id: $ + */ +return array ( + 'Ctype extension' => '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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => 'Semua <a href="http://www.yiiframework.com/doc/api/#system.db">kelas berhubungan DB </a>', + '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<br />FreeType support' => 'Dukungan Extension GD dengan <br/>FreeType', + 'GD installed<br />FreeType support not installed' => 'GD terinstalasi<br/>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 <a href="http://www.yiiframework.com/doc/api/CMemCache#useMemcached-detail">CMemCache::useMemcached</a> to <code>true</code>.' => 'Untuk menggunakan memcached set <a href="http://www.yiiframework.com/doc/api/CMemCache#useMemcached-detail">CMemCache::useMemcached</a> menjadi <code>true</code>.', + '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 0000000..992c66b --- /dev/null +++ b/requirements/messages/it/yii.php @@ -0,0 +1,43 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @version $Id: $ + */ +return array ( + '$_SERVER does not have {vars}.' => '$_SERVER non contiene {vars}.', + '$_SERVER variable' => 'variabile $_SERVER', + '$_SERVER["SCRIPT_FILENAME"] must be the same as the entry script file path.' => '$_SERVER["SCRIPT_FILENAME"] deve essere identico al path del file di entrata.', + 'APC extension' => 'Estensione APC', + 'All <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => 'Tutte le <a href="http://www.yiiframework.com/doc/api/#system.db">classi legate al DB</a>', + 'DOM extension' => 'Estensione DOM', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => 'Uno tra $_SERVER["REQUEST_URI"] o $_SERVER["QUERY_STRING"] deve esistere', + 'GD extension' => 'Estensione GD', + 'Mcrypt extension' => 'Estensione Mcrypt', + 'Memcache extension' => 'Estensione Memcache', + 'PCRE extension' => 'Estensione PCRE', + 'PDO MySQL extension' => 'Estensione PDO MySQL', + 'PDO PostgreSQL extension' => 'Estensione PDO PostgreSQL', + 'PDO SQLite extension' => 'Estensione PDO SQLite', + 'PDO extension' => 'Estensione PDO', + 'PHP 5.1.0 or higher is required.' => 'È richiesto PHP 5.1.0 o superiore', + 'PHP version' => 'Versione PHP', + 'Reflection extension' => 'Estensione Reflection', + 'SOAP extension' => 'Estensione SOAP', + 'SPL extension' => 'Estensione SPL', + 'This is required if you are using MySQL database.' => 'Necessario se si utilizza il database MySQL.', + 'This is required if you are using PostgreSQL database.' => 'Necessario se si utilizza il database PostgreSQL.', + 'This is required if you are using SQLite database.' => 'Necessario se si utilizza il 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.' => 'Impossibile determinare il path dell\'URL. Assicurarsi che $_SERVER["PATH_INFO"] (o $_SERVER["PHP_SELF"] e $_SERVER["SCRIPT_NAME"]) contengano valori adeguati.', +);
\ No newline at end of file diff --git a/requirements/messages/ja/yii.php b/requirements/messages/ja/yii.php new file mode 100644 index 0000000..5f1f77a --- /dev/null +++ b/requirements/messages/ja/yii.php @@ -0,0 +1,46 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @version $Id: yii.php,v 1.2 2009-01-16 18:45:59+09 mocapapa Exp mocapapa $ + */ +return array ( + 'GD extension with<br />FreeType support'=>'GD拡張 (FreeTypeサポート)', + 'GD installed<br />FreeType support not installed' => 'GDはインストールされています。<br />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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => '全ての<a href="http://www.yiiframework.com/doc/api/#system.db">データベース関連クラス</a>', + '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 0000000..902bbf4 --- /dev/null +++ b/requirements/messages/nl/yii.php @@ -0,0 +1,43 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @version $Id: $ + */ +return array ( + '$_SERVER does not have {vars}.' => '$_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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => 'Alle <a href="http://www.yiiframework.com/doc/api/#system.db">DB-gerelateerde classes</a>', + '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 0000000..53c3460 --- /dev/null +++ b/requirements/messages/no/yii.php @@ -0,0 +1,44 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @version $Id: $ + */ +return array ( + '$_SERVER does not have {vars}.' => '$_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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => 'Alle <a href="http://www.yiiframework.com/doc/api/#system.db">DB-relaterte klasser</a>', + '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 0000000..3207a4d --- /dev/null +++ b/requirements/messages/pl/yii.php @@ -0,0 +1,46 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @version $Id: $ + */ +return array ( + 'GD extension with<br />FreeType support' => 'Rozszerzenie GD <br />ze wsparciem dla FreeType', + 'GD installed<br />FreeType support not installed' => 'Rozszerzenie GD jest zainstalowane<br />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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => 'Wszystkie <a href="http://www.yiiframework.com/doc/api/#system.db">klasy bazodanowe</a>', + '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 0000000..7a3c891 --- /dev/null +++ b/requirements/messages/pt/yii.php @@ -0,0 +1,44 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @version $Id: $ + */ +return array ( + 'This is required by encrypt and decrypt methods.' => 'É 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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => 'Todas as classes relacionadas ao <a href="http://www.yiiframework.com/doc/api/#system.db">banco de dados</a>', + '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 0000000..6271809 --- /dev/null +++ b/requirements/messages/pt_br/yii.php @@ -0,0 +1,52 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * Message string can be used with plural forms format. Check i18n section + * of the guide for details. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @version $Id: $ + */ +return array ( + 'Ctype extension' => 'extensão Ctype', + 'GD extension with<br />FreeType support' => 'extensão GD com<br />suporte a FreeType', + 'GD installed<br />FreeType support not installed' => 'GD instalada<br />suporte a FreeType não instalado', + 'GD not installed' => 'GD não instalada', + 'To use memcached set <a href="http://www.yiiframework.com/doc/api/CMemCache#useMemcached-detail">CMemCache::useMemcached</a> to <code>true</code>.' => 'Para usar memcached configure <a href="http://www.yiiframework.com/doc/api/CMemCache#useMemcached-detail">CMemCache::useMemcached</a> como <code>true</code>.', + '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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => 'Todas as classes relacionadas ao <a href="http://www.yiiframework.com/doc/api/#system.db">banco de dados</a>', + '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 0000000..193feae --- /dev/null +++ b/requirements/messages/ro/yii.php @@ -0,0 +1,44 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @version $Id: $ + */ +return array ( + '$_SERVER does not have {vars}.' => '$_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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => 'Toate <a href="http://www.yiiframework.com/doc/api/#system.db">clasele de legatura cu bazele de date</a>', + '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 0000000..3d25614 --- /dev/null +++ b/requirements/messages/ru/yii.php @@ -0,0 +1,44 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => 'Все <a href="http://www.yiiframework.com/doc/api/#system.db">DB-классы</a>', + '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 0000000..435a6e0 --- /dev/null +++ b/requirements/messages/sk/yii.php @@ -0,0 +1,44 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @version $Id: $ + */ +return array ( + 'This is required by encrypt and decrypt methods.' => '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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => 'Všetky <a href="http://www.yiiframework.com/doc/api/#system.db">objekty vzťahujúce sa k databáze</a>', + '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 0000000..a5b407d --- /dev/null +++ b/requirements/messages/sv/yii.php @@ -0,0 +1,51 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * Message string can be used with plural forms format. Check i18n section + * of the guide for details. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @version $Id: $ + */ +return array ( + 'Ctype extension' => '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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => 'Alla <a href="http://www.yiiframework.com/doc/api/#system.db">DB-relaterade klasser</a>', + '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<br />FreeType support' => 'GD-tillägg med<br />FreeType-stöd', + 'GD installed<br />FreeType support not installed' => 'GD installerad<br />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 <a href="http://www.yiiframework.com/doc/api/CMemCache#useMemcached-detail">CMemCache::useMemcached</a> to <code>true</code>.' => 'För att använda memcached, sätt <a href="http://www.yiiframework.com/doc/api/CMemCache#useMemcached-detail">CMemCache::useMemcached</a> till <code>true</code>.', + '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 0000000..8d8e433 --- /dev/null +++ b/requirements/messages/ta_in/yii.php @@ -0,0 +1,47 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @author Srinivasan A Paul Joseph <sapauljoseph@gmail.com> + * @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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => '<a href="http://www.yiiframework.com/doc/api/#system.db">தகவல்தளம்</a> சம்பந்தப்பட்ட உருக்கள் அனைத்தும்', + 'DOM extension' => 'DOM நீட்சி', + 'Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must exist.' => '$_SERVER["REQUEST_URI"] அல்லது $_SERVER["QUERY_STRING"] கண்டிப்பாக இருக்க வேண்டும்.', + 'GD extension with<br />FreeType support' => 'GD நீட்சி<br />FreeType பயன்பாட்டுடன்', + 'GD installed<br />FreeType support not installed' => 'GD நிறுவப்பட்டுள்ளது<br />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 0000000..be38f7d --- /dev/null +++ b/requirements/messages/vi/yii.php @@ -0,0 +1,43 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @version $Id: $ + */ +return array ( + '$_SERVER does not have {vars}.' => '$_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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => 'Tất cả <a href="http://www.yiiframework.com/doc/api/#system.db">các lớp liên quan đến CSDL</a>', + '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 0000000..b760aac --- /dev/null +++ b/requirements/messages/zh_cn/yii.php @@ -0,0 +1,43 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @version $Id: yii.php 2651 2010-11-14 14:17:44Z qiang.xue $ + */ +return array ( + 'PHP version' => '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 <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => '所有和<a href="http://www.yiiframework.com/doc/api/#system.db">数据库相关的类</a>', + '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 0000000..244aaf6 --- /dev/null +++ b/requirements/messages/zh_tw/yii.php @@ -0,0 +1,43 @@ +<?php +/** + * Message translations. + * + * This file is automatically generated by 'yiic message' command. + * It contains the localizable messages extracted from source code. + * You may modify this file by translating the extracted messages. + * + * Each array element represents the translation (value) of a message (key). + * If the value is empty, the message is considered as not translated. + * Messages that no longer need translation will have their translations + * enclosed between a pair of '@@' marks. + * + * NOTE, this file must be saved in UTF-8 encoding. + * + * @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' => '', + 'All <a href="http://www.yiiframework.com/doc/api/#system.db">DB-related classes</a>' => '所有 <a href="http://www.yiiframework.com/doc/api/#system.db">資料庫相關的類別</a>', + '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 0000000..8d2f256 --- /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 0000000..4daeba7 --- /dev/null +++ b/requirements/views/ar/index.php @@ -0,0 +1,74 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ar" lang="ar"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="ar"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>مدقق متطلبات Yii</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>مدقق متطلبات Yii</h1> +</div><!-- header--> + +<div id="content"> +<h2>الوصف</h2> +<p> +يتحقق هذا السكربت ماإذا كانت إعدادات الخادم لديك تفي بمتطلبات تشغيل تطبيقات الويب لاطار العمل <a href="http://www.yiiframework.com/">Yii</a>. +يتحقق ايضا ما إذا كان الخادم يعمل على الإصدارة الصحيحة من PHP، +تحميل اللاحقات المناسبة، وأيضا ما إذا كانت إعدادات ملف php.ini صحيحة. +</p> + +<h2>النتيجة</h2> +<p> +<?php if($result>0): ?> +تهانينا! إعدادات الخادم لديك مستوفية جميع متطلبات تشغيل Yii. +<?php elseif($result<0): ?> +إعدادات الخادم الخاص بك مستوفية للحد الادنى لمتطلبات تشغيل Yii. الرجاء ملاحظة قائمة التنبيهات أدناه وما إذا كان التطبيق الخاص بك يستخدم أحد هذه المزايا. +<?php else: ?> +لسوء الحظ إعدادات الخادم الخاص بك لا تلبي متطلبات تشغيل Yii. +<?php endif; ?> +</p> + +<h2>التفاصيل</h2> + +<table class="result"> +<tr><th>الاسم</th><th>النتيجة</th><th>مطلوب من قبل</th><th>ملاحظات</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'نجح' : ($requirement[1] ? 'فشل' : 'تنبيه'); ?>"> + <?php echo $requirement[2] ? 'نجح' : ($requirement[1] ? 'فشل' : 'تنبيه'); ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>نجح</td> +<td class="failed"> </td><td>فشل</td> +<td class="warning"> </td><td>تنبيه</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ 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 0000000..703b2be --- /dev/null +++ b/requirements/views/bg/index.php @@ -0,0 +1,81 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="en"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>Yii Requirement Checker</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>Проверка на изискванията на Yii</h1> +</div><!-- header--> + +<div id="content"> +<h2>Описание</h2> +<p> +This script checks if your server configuration meets the requirements +for running <a href="http://www.yiiframework.com/">Yii</a> 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. + +Този скрипт проверява дали конфигурацията на вавият сървър, отговаря на изискванията за +работа на <a href="http://www.yiiframework.com/">Yii</a> уеб приложенията. +Проверява дали на сървъра работи подходящата версия на PHP, +дали подходящите PHP добавки са заредени и дали настройките в php.ini са вярни +</p> + +<h2>Заключение</h2> +<p> +<?php if($result>0): ?> +Congratulations! Your server configuration satisfies all requirements by Yii. +Поздравление! Вашият сървър отговаря на всики изисквания за работа на Yii. +<?php elseif($result<0): ?> +Вашият сървър удоблетворява минималните изисквания на Yii. Моля, обърнете внимание на списъка с грешки отдоло, ако вашето приложение ще използва тези функции. +<?php else: ?> +За жалост, вашият сървър, не отговаря на изискванията за работа на Yii. +<?php endif; ?> +</p> + +<h2>Детайли</h2> + +<table class="result"> +<tr><th>Име</th><th>Резултат</th><th>Поискано от</th><th>Бележка</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>"> + <?php echo $requirement[2] ? 'Passed' : ($requirement[1] ? 'Failed' : 'Warning'); ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>преминат</td> +<td class="failed"> </td><td>провален</td> +<td class="warning"> </td><td>предупреждение</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html> diff --git a/requirements/views/de/index.php b/requirements/views/de/index.php new file mode 100644 index 0000000..9d55aba --- /dev/null +++ b/requirements/views/de/index.php @@ -0,0 +1,76 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="en"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>Yii Anforderungs-Tester</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>Yii Anforderungs-Tester</h1> +</div><!-- header--> + +<div id="content"> +<h2>Beschreibung</h2> +<p> +Dieses Script ermittelt, ob Ihre Serverkonfiguration die Anforderungen zum +Ausführen von <a href="http://www.yiiframework.com/">Yii</a> 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 +</p> + +<h2>Zusammenfassung</h2> +<p> +<?php if($result>0): ?> +Gratulation! Ihr Server erfüllt alle Anforderungen von Yii. +<?php elseif($result<0): ?> +Ihr Server erfüllt die minimalen Anforderungen von Yii. Bitte beachten Sie die untenstehenden Warnungen, wenn Ihre Anwendungen einige dieser Features verwenden sollen. + <?php else: ?> +Unglücklicherweise erfüllt Ihr Server die Anforderungen von Yii nicht. +<?php endif; ?> +</p> + +<h2>Details</h2> + +<table class="result"> +<tr><th>Name</th><th>Resultat</th><th>Benötigt von</th><th>Memo</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>"> + <?php echo $requirement[2] ? 'Bestanden' : ($requirement[1] ? 'Verfehlt' : 'Warnung'); ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>Bestanden</td> +<td class="failed"> </td><td>Verfehlt</td> +<td class="warning"> </td><td>Warnung</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ 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 0000000..9d55aba --- /dev/null +++ b/requirements/views/de_de/index.php @@ -0,0 +1,76 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="en"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>Yii Anforderungs-Tester</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>Yii Anforderungs-Tester</h1> +</div><!-- header--> + +<div id="content"> +<h2>Beschreibung</h2> +<p> +Dieses Script ermittelt, ob Ihre Serverkonfiguration die Anforderungen zum +Ausführen von <a href="http://www.yiiframework.com/">Yii</a> 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 +</p> + +<h2>Zusammenfassung</h2> +<p> +<?php if($result>0): ?> +Gratulation! Ihr Server erfüllt alle Anforderungen von Yii. +<?php elseif($result<0): ?> +Ihr Server erfüllt die minimalen Anforderungen von Yii. Bitte beachten Sie die untenstehenden Warnungen, wenn Ihre Anwendungen einige dieser Features verwenden sollen. + <?php else: ?> +Unglücklicherweise erfüllt Ihr Server die Anforderungen von Yii nicht. +<?php endif; ?> +</p> + +<h2>Details</h2> + +<table class="result"> +<tr><th>Name</th><th>Resultat</th><th>Benötigt von</th><th>Memo</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>"> + <?php echo $requirement[2] ? 'Bestanden' : ($requirement[1] ? 'Verfehlt' : 'Warnung'); ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>Bestanden</td> +<td class="failed"> </td><td>Verfehlt</td> +<td class="warning"> </td><td>Warnung</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ 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 0000000..2ef3448 --- /dev/null +++ b/requirements/views/el/index.php @@ -0,0 +1,75 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="en"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>Ελεγκτής Απαιτήσεων Yii</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>Ελεγκτής Απαιτήσεων Yii</h1> +</div><!-- header--> + +<div id="content"> +<h2>Περιγραφή</h2> +<p> +Αυτή η σελίδα ελέγχει αν η παραμετροποίηση του διακομιστή σας είναι σωστή +για την εκτέλεση των εφαρμογών ιστού του <a href="http://www.yiiframework.com/">Yii</a>. +Ελέγχει αν ο διακομιστής εκτελεί τη σωστή έκδοση PHP, αν έχουν φορτωθεί +οι κατάλληλες επεκτάσεις PHP και αν οι ρυθμίσεις του αρχείου php.ini είναι σωστές. +</p> + +<h2>Συμπέρασμα</h2> +<p> +<?php if($result>0): ?> +Συγχαρητήρια! Η παραμετροποίηση του διακομιστή σας ικανοποιεί όλες τις απαιτήσεις του Yii. +<?php elseif($result<0): ?> +Η παραμετροποίηση του διακομιστή σας ικανοποιεί τις ελάχιστες απαιτήσεις του Yii. Παρακαλούμε δείτε με προσοχή τις παρακάτω προειδοποιήσεις εφόσον η εφαρμογή σας θα χρησιμοποιεί τα αντίστοιχα χαρακτηριστικά. +<?php else: ?> +Δυστυχώς, η παραμετροποίηση του διακομιστή σας δεν ικανοποιεί τις απαιτήσεις του Yii. +<?php endif; ?> +</p> + +<h2>Λεπτομέρειες</h2> + +<table class="result"> +<tr><th>Όνομα</th><th>Αποτέλεσμα</th><th>Απαιτούμενο από</th><th>Σημειώσεις</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'πέρασε' : ($requirement[1] ? 'απέτυχε' : 'προειδοποίηση'); ?>"> + <?php echo $requirement[2] ? 'Πέρασε' : ($requirement[1] ? 'Απέτυχε' : 'Προειδοποίηση'); ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>πέρασε</td> +<td class="failed"> </td><td>απέτυχε</td> +<td class="warning"> </td><td>προειδοποίηση</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ 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 0000000..faff0ba --- /dev/null +++ b/requirements/views/es/index.php @@ -0,0 +1,75 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="es"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>Verificación de requerimientos de Yii</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>Verificación de requerimientos de Yii</h1> +</div><!-- header--> + +<div id="content"> +<h2>Descripción</h2> +<p> +Este script verifica que la configuración de su servidor cumpla con los requerimientos +para poder ejecutar aplicaciones Web <a href="http://www.yiiframework.com/">Yii</a>. +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. +</p> + +<h2>Conclusión</h2> +<p> +<?php if($result>0): ?> +Felicitaciones! Su servidor satisface todos los requerimientos de Yii. +<?php elseif($result<0): ?> +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. +<?php else: ?> +Desafortunadamente la configuración de su servidor no satisface los requerimientos de Yii. +<?php endif; ?> +</p> + +<h2>Detalles</h2> + +<table class="result"> +<tr><th>Nombre</th><th>Resultado</th><th>Requerido por</th><th>Memo</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>"> + <?php echo $requirement[2] ? 'Paso' : 'Fallo'; ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>paso</td> +<td class="failed"> </td><td>fallo</td> +<td class="warning"> </td><td>advertencia</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ 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 0000000..653fb66 --- /dev/null +++ b/requirements/views/fr/index.php @@ -0,0 +1,75 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="en"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>Vérification de la configuration nécessaire pour Yii</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>Vérification de la configuration nécessaire pour Yii</h1> +</div><!-- header--> + +<div id="content"> +<h2>Description</h2> +<p> +Ce script vérifie si la configuration de votre serveur satisfait toutes les dépendances nécessaires +pour exécuter les applications <a href="http://www.yiiframework.com/">Yii</a>. +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 +</p> + +<h2>Conclusion</h2> +<p> +<?php if($result>0): ?> +Félicitations ! Votre configuration vérifie toutes les exigences de Yii. +<?php elseif($result<0): ?> +Votre configuration satisfait les exigences minimales de Yii. Notez les avertissements listés ci-dessous si votre application utilise les fonctionnalités correspondantes. +<?php else: ?> +Malheureusement, votre configuration ne satisfait pas les exigences de Yii. +<?php endif; ?> +</p> + +<h2>Details</h2> + +<table class="result"> +<tr><th>Nom</th><th>Resultat</th><th>Requis Par</th><th>Info</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>"> + <?php echo $requirement[2] ? 'Ok' : 'Echec'; ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>Ok</td> +<td class="failed"> </td><td>Echec</td> +<td class="warning"> </td><td>Avertissement</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ 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 0000000..3ee8ac5 --- /dev/null +++ b/requirements/views/he/index.php @@ -0,0 +1,76 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html dir='rtl' xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="en"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>בדיקת דרישות מינימום להרצת Yii</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>בדיקת דרישות מינימום להרצת Yii</h1> +</div><!-- header--> + +<div id="content"> +<h2>תיאור</h2> +<p> +הסקריפט הבא בודק אם סביבת השרת שלך תוכל לעמוד בדרישות המינימום כדי להריץ את + <a href="http://www.yiiframework.com/">Yii</a> לפיתוח מערכות ווב מתקדמות. +הסקריפט בודק אם השרת מריץ גרסאת PHP עדכנית, +אם הרחבות מסויימת קיימות ב PHP ונטענו בהצלחה, ואם הגדרות ה php.ini מוגדרות כמו שצריך. +</p> + +<h2>סיכום</h2> +<p> +<?php if($result>0): ?> +ברכותיינו! סביבת השרת שלך תומכת בכל הגדרישות של Yii. +<?php elseif($result<0): ?> +הגדרות סביבת השרת שלך מתאימות לדרישות המינימום של Yii. + אנא שים לב לאזהרות והערות הכתובות מטה במידה והאפליקציה שתכתוב תשתמש באחת מהאפשרויות הללו. +<?php else: ?> +לצערנו סביבת השרת שלך אינה תומכת בדרישות המינימום של Yii. +<?php endif; ?> +</p> + +<h2>פרטים</h2> + +<table class="result"> +<tr><th>כותרת</th><th>תוצאה</th><th>נדרש על ידי</th><th>תזכורת</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>"> + <?php echo $requirement[2] ? 'עבר' : 'נכשל'; ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>עבר</td> +<td class="failed"> </td><td>נכשל</td> +<td class="warning"> </td><td>אזהרה</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ No newline at end of file diff --git a/requirements/views/index.php b/requirements/views/index.php new file mode 100644 index 0000000..4d6df8f --- /dev/null +++ b/requirements/views/index.php @@ -0,0 +1,75 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="en"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>Yii Requirement Checker</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>Yii Requirement Checker</h1> +</div><!-- header--> + +<div id="content"> +<h2>Description</h2> +<p> +This script checks if your server configuration meets the requirements +for running <a href="http://www.yiiframework.com/">Yii</a> 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. +</p> + +<h2>Conclusion</h2> +<p> +<?php if($result>0): ?> +Congratulations! Your server configuration satisfies all requirements by Yii. +<?php elseif($result<0): ?> +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. +<?php else: ?> +Unfortunately your server configuration does not satisfy the requirements by Yii. +<?php endif; ?> +</p> + +<h2>Details</h2> + +<table class="result"> +<tr><th>Name</th><th>Result</th><th>Required By</th><th>Memo</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>"> + <?php echo $requirement[2] ? 'Passed' : ($requirement[1] ? 'Failed' : 'Warning'); ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>passed</td> +<td class="failed"> </td><td>failed</td> +<td class="warning"> </td><td>warning</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ No newline at end of file diff --git a/requirements/views/it/index.php b/requirements/views/it/index.php new file mode 100644 index 0000000..9b77d24 --- /dev/null +++ b/requirements/views/it/index.php @@ -0,0 +1,75 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="en"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>Verifica soddisfazione requisiti di Yii</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>Verifica soddisfazione requisiti di Yii</h1> +</div><!-- header--> + +<div id="content"> +<h2>Descrizione</h2> +<p> +Questo script verifica se la configurazione del tuo server soddisfa i requisiti +di esecuzione delle web application sviluppate con <a href="http://www.yiiframework.com/">Yii</a>. +Verifica se nel server è in esecuzione la corretta versione di PHP, se le +estensioni PHP necessarie sono state caricate e se le impostazioni di php.ini sono corrette. +</p> + +<h2>Conclusioni</h2> +<p> +<?php if($result>0): ?> +Congratulazioni! La configurazione del tuo server soddisfa tutti i requisiti di Yii. +<?php elseif($result<0): ?> +La configurazione del tuo server soddisfa i requisiti minimi di Yii. Si prega di prestare attenzione agli avvisi qui sotto qualora l'applicazione utilizzi le corrispondenti funzionalità. +<?php else: ?> +Sfortunatamente La configurazione del tuo server non soddisfa i requisiti di Yii. +<?php endif; ?> +</p> + +<h2>Dettagli</h2> + +<table class="result"> +<tr><th>Nome</th><th>Resultato</th><th>Richiesto da</th><th>Memo</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>"> + <?php echo $requirement[2] ? 'Superato' : 'Fallito'; ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>superato</td> +<td class="failed"> </td><td>fallito</td> +<td class="warning"> </td><td>avviso</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ 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 0000000..c6e0427 --- /dev/null +++ b/requirements/views/ja/index.php @@ -0,0 +1,76 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="en"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>Yii Requirement Checker</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>Yii要求チェッカ</h1> +</div><!-- header--> + +<div id="content"> +<h2>説明</h2> +<p> +このスクリプトは、あなたのサーバ構成が、<a href="http://www.yiiframework.com/">Yii</a>アプリケーション +を実行するための要求を満たしているかどうかを確認します。 +このスクリプトはサーバにおいて正しいバージョンのPHPを実行しているか、適切なPHP拡張をロードしているか、php.iniファイル設定が正しいか +を確認します。 +</p> + +<h2>結果</h2> +<p> +<?php if($result>0): ?> +おめでとうございます。あなたのサーバ構成はYiiの全ての要求を満しています。 +<?php elseif($result<0): ?> +あなたのサーバ構成はYiiの最低限の要求を満しています。もしあなたのアプリケーションが対応する機能を +使用している場合には以下の警告に注意してください。 +<?php else: ?> +申し訳ありませんが、あなたのサーバ構成はYiiの要求を満していません。 +<?php endif; ?> +</p> + +<h2>詳細</h2> + +<table class="result"> +<tr><th>名称</th><th>結果</th><th>必要元</th><th>備考</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>"> + <?php echo $requirement[2] ? '合格' : ($requirement[1] ? '不合格' : '注意'); ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>合格</td> +<td class="failed"> </td><td>不合格</td> +<td class="warning"> </td><td>注意</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ 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 0000000..f409265 --- /dev/null +++ b/requirements/views/no/index.php @@ -0,0 +1,77 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="no" lang="no"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="en"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>Yii - Sjekk systemkrav</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>Yii - Sjekk systemkrav</h1> +</div><!-- header--> + +<div id="content"> +<h2>Beskrivelse</h2> +<p> +Dette skriptet sjekker om serverkonfigurasjonen oppfyller kravene for å kjøre +<a href="http://www.yiiframework.com/">Yii</a>-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. +</p> + +<h2>Konklusjon</h2> +<p> +<?php if($result>0): ?> +Gratulerer! Konfigurasjonen på serveren tilfredstiller alle krav for å kjøre Yii. +<?php elseif($result<0): ?> +Konfigurasjonen på serveren tilfredstiller minimumskravene til Yii. Vær oppmerksom +på advarslene listet nedenfor dersom applikasjonen din trenger noe av denne +funksjonaliteten. +<?php else: ?> +Desverre tilfredstiller ikke konfigurasjonen av serveren minimumskravene til Yii. +<?php endif; ?> +</p> + +<h2>Detaljer</h2> + +<table class="result"> +<tr><th>Navn</th><th>Resultat</th><th>Kreves av</th><th>Notat</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'ok' : ($requirement[1] ? 'feil' : 'advarsel'); ?>"> + <?php echo $requirement[2] ? 'Ok' : 'Feil'; ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>ok</td> +<td class="failed"> </td><td>feil</td> +<td class="warning"> </td><td>advarsel</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ 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 0000000..3ea3e90 --- /dev/null +++ b/requirements/views/pl/index.php @@ -0,0 +1,76 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="en"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>Sprawdzanie wymagań przez Yii</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>Sprawdzanie wymagań stawianych przez Yii</h1> +</div><!-- header--> + +<div id="content"> +<h2>Opis</h2> +<p> +Skrypt ten sprawdza czy konfiguracja Twojego serwera spełnia wymagania +pozwalające uruchomić aplikację napisaną przy użyciu <a href="http://www.yiiframework.com/">Yii</a>. +Sprawdza on, czy serwer używa poprawnej wersji PHP, +czy zostały załadowane odpowiednie rozszerzenia PHP oraz czy ustawienia w pliku php.ini są prawidłowe. +</p> + +<h2>Rozstrzygnięcie</h2> +<p> +<?php if($result>0): ?> +Gratulacje! Konfiguracja Twojego serwera spełnia wszystkie wymagania stawiane przez Yii. +<?php elseif($result<0): ?> +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. +<?php else: ?> +Niestety konfiguracja Twojego serwera nie spełnia wymagań stawianych przez Yii. +<?php endif; ?> +</p> + +<h2>Szczegóły</h2> + +<table class="result"> +<tr><th>Nazwa</th><th>Rezultat</th><th>Wymagana przez</th><th>Notka</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>"> + <?php echo $requirement[2] ? 'Passed' : 'Failed'; ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>powiódł się</td> +<td class="failed"> </td><td>nie powiódł się</td> +<td class="warning"> </td><td>ostrzeżenie</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ 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 0000000..047bd73 --- /dev/null +++ b/requirements/views/pt/index.php @@ -0,0 +1,76 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="en"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>Verificador de requisitos do Yii</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>Verificador de requisitos do Yii</h1> +</div><!-- header--> + +<div id="content"> +<h2>Descrição</h2> +<p> +Este script verifica se as configurações do servidor satisfazem os requisitos +para executar aplicações Web que utilizem o <a href="http://www.yiiframework.com/"> Yii </a>. +É 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. +</p> + +<h2>Resultados</h2> +<p> +<?php if($result>0): ?> +Parabéns! As configurações do seu servidor satisfazem todos os requisitos do Yii. +<?php elseif($result<0): ?> +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. +<?php else: ?> +Infelizmente o as configurações do seu servidor não satisfazem os requisitos do Yii. +<?php endif; ?> +</p> + +<h2>Detalhes</h2> + +<table class="result"> +<tr><th>Nome</th><th>Resultado</th><th>Exigido por</th><th>Detalhe</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>"> + <?php echo $requirement[2] ? 'Passed' : 'Failed'; ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>OK</td> +<td class="failed"> </td><td>Falhou</td> +<td class="warning"> </td><td>Advertência</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ 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 0000000..09d3bff --- /dev/null +++ b/requirements/views/pt_br/index.php @@ -0,0 +1,76 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="en"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>Verificador de requisitos do Yii</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>Verificador de requisitos do Yii</h1> +</div><!-- header--> + +<div id="content"> +<h2>Descrição</h2> +<p> +Este script verifica se as configurações do servidor satisfazem os requisitos +para executar aplicações Web que utilizem o <a href="http://www.yiiframework.com/"> Yii </a>. +É 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. +</p> + +<h2>Resultados</h2> +<p> +<?php if($result>0): ?> +Parabéns! As configurações do seu servidor satisfazem todos os requisitos do Yii. +<?php elseif($result<0): ?> +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. +<?php else: ?> +Infelizmente o as configurações do seu servidor não satisfazem os requisitos do Yii. +<?php endif; ?> +</p> + +<h2>Detalhes</h2> + +<table class="result"> +<tr><th>Nome</th><th>Resultado</th><th>Exigido por</th><th>Detalhe</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>"> + <?php echo $requirement[2] ? 'OK' : ($requirement[1] ? 'Falhou' : 'Advertência'); ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>OK</td> +<td class="failed"> </td><td>Falhou</td> +<td class="warning"> </td><td>Advertência</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ 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 0000000..ec9c6c8 --- /dev/null +++ b/requirements/views/ro/index.php @@ -0,0 +1,78 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="en"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>Verificare cerinte Yii</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>Verificarea cerintelor Yii</h1> +</div><!-- header--> + +<div id="content"> +<h2>Descriere</h2> +<p> +Acest script verifica daca configuratia serverului dvs indeplineste cerintele +pentru rularea aplicatiilor Web <a href="http://www.yiiframework.com/">Yii</a>. +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. +</p> + +<h2>Concluzie</h2> +<p> +<?php if($result>0): ?> +Felicitari! Configuratia serverului dvs indeplineste toate cerintele Yii. +<?php elseif($result<0): ?> +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. +<?php else: ?> +Din pacate, configuratia serverului dvs nu indeplineste cerintele Yii. +<?php endif; ?> +</p> + +<h2>Detalii</h2> + +<table class="result"> +<tr><th>Nume</th><th>Rezultat</th><th>Cerut de</th><th>Precizari</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>"> + <?php echo $requirement[2] ? 'Passed' : 'Failed'; ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>passed</td> +<td class="failed"> </td><td>failed</td> +<td class="warning"> </td><td>warning</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ 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 0000000..3489198 --- /dev/null +++ b/requirements/views/ru/index.php @@ -0,0 +1,75 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="en"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>Проверка на соответствие требованиям Yii</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>Проверка на соответствие требованиям Yii</h1> +</div><!-- header--> + +<div id="content"> +<h2>Описание</h2> +<p> +Данный скрипт проверяет соответствие конфигурации Вашего веб-сервера требованиям, +предъявляемым веб-приложениями <a href="http://www.yiiframework.com/">Yii</a>. +В частности, проверяются версия РНР и загруженные расширения РНР, а также +корректность настроек файла php.ini. +</p> + +<h2>Заключение</h2> +<p> +<?php if($result>0): ?> +Поздравляем! Конфигурация Вашего веб-сервера полностью удовлетворяет требованиям Yii. +<?php elseif($result<0): ?> +Конфигурация Вашего веб-сервера удовлетворяет минимально необходимым требованиям Yii. Обратите внимание на предупреждения в таблице ниже, если предполагается использование соответствующего функционала. +<?php else: ?> +К сожалению, конфигурация Вашего веб-сервера не удовлетворяет требованиям Yii. +<?php endif; ?> +</p> + +<h2>Результаты проверки</h2> + +<table class="result"> +<tr><th>Название</th><th>Итог</th><th>Требуется для</th><th>Пояснение</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>"> + <?php echo $requirement[2] ? 'Да' : ($requirement[1] ? 'Нет' : 'Предупреждение'); ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>Да</td> +<td class="failed"> </td><td>Нет</td> +<td class="warning"> </td><td>Предупреждение</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ 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 0000000..e45f96c --- /dev/null +++ b/requirements/views/sk/index.php @@ -0,0 +1,76 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="en"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>Yii - Test prostredia</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>Yii - Test prostredia</h1> +</div><!-- header--> + +<div id="content"> +<h2>Popis</h2> +<p> +Tento skript preverí, či je konfigurácia vášho servera postačujúca +pre korektné fungovanie aplikácii vytvorených pre <a href="http://www.yiiframework.com/">Yii framework</a>. +Test preveruje správnu verziu PHP, prítomnosť potrebných PHP rozšírení a správne nastavenie +konfigurácie v php.ini. +</p> + +<h2>Záver</h2> +<p> +<?php if($result>0): ?> +Gratulujem! Váš server spĺňa všetky požiadavky potrebné pre korektné fungovanie Yii. +<?php elseif($result<0): ?> +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. +<?php else: ?> +Bohužiaľ, váš server nespĺňa požiadavky potrebné pre fungovanie Yii. +<?php endif; ?> +</p> + +<h2>Detaily</h2> + +<table class="result"> +<tr><th>Názov</th><th>Výsledok</th><th>Požadované od</th><th>Pozn.</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>"> + <?php echo $requirement[2] ? 'OK' : ($requirement[1] ? 'Chyba' : 'Upozornenie'); ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>OK</td> +<td class="failed"> </td><td>chyba</td> +<td class="warning"> </td><td>upozornenie</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ 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 0000000..b08eada --- /dev/null +++ b/requirements/views/sv/index.php @@ -0,0 +1,74 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="en"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>Yii - Kontroll systemkrav</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>Yii - Kontroll systemkrav</h1> +</div><!-- header--> + +<div id="content"> +<h2>Beskrivning</h2> +<p> +Det här skriptet kontrollerar om serverkonfigurationen uppfyller kraven för att köra <a href="http://www.yiiframework.com/">Yii</a> 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. +</p> + +<h2>Slutsats</h2> +<p> +<?php if($result>0): ?> +Grattis! Serverkonfigurationen uppfyller alla krav som Yii ställer. +<?php elseif($result<0): ?> +Serverkonfigurationen uppfyller minimikraven som Yii ställer. Lägg märke till nedanstående varningar om applikationer behöver använda nämnda finesser. +<?php else: ?> +Tyvärr uppfyller inte serverkonfigurationen minimikraven Yii ställer. +<?php endif; ?> +</p> + +<h2>Detaljer</h2> + +<table class="result"> +<tr><th>Namn</th><th>Resultat</th><th>Krävs för</th><th>Memo</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>"> + <?php echo $requirement[2] ? 'Stöds' : ($requirement[1] ? 'Stöd saknas' : 'Warning'); ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>passed</td> +<td class="failed"> </td><td>failed</td> +<td class="warning"> </td><td>warning</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ 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 0000000..22511e8 --- /dev/null +++ b/requirements/views/zh/index.php @@ -0,0 +1,72 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="en"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>Yii配置需求检查</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>Yii配置需求检查</h1> +</div><!-- header--> + +<div id="content"> +<h2>检查内容</h2> +<p> +本网页用于确认您的服务器配置是否能满足运行<a href="http://www.yiiframework.com/">Yii</a> Web应用的要求。它将检查服务器所运行的PHP版本,查看是否安装了合适的PHP扩展模块,以及确认php.ini文件是否正确设置。 +</p> + +<h2>检查结果</h2> +<p> +<?php if($result>0): ?> +恭喜!您的服务器配置完全符合Yii的要求。 +<?php elseif($result<0): ?> +您的服务器配置符合Yii的最低要求。如果您需要使用特定的功能,请关注如下警告。 +<?php else: ?> +您的服务器配置未能满足Yii的要求。 +<?php endif; ?> +</p> + +<h2>具体结果</h2> + +<table class="result"> +<tr><th>项目名称</th><th>结果</th><th>使用者</th><th>备注</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>"> + <?php echo $requirement[2] ? '通过' : ($requirement[1] ? '未通过' : 'Warning'); ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>通过</td> +<td class="failed"> </td><td>未通过</td> +<td class="warning"> </td><td>警告</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ 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 0000000..52a45d6 --- /dev/null +++ b/requirements/views/zh_cn/index.php @@ -0,0 +1,72 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="en"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>Yii配置需求检查</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>Yii配置需求检查</h1> +</div><!-- header--> + +<div id="content"> +<h2>检查内容</h2> +<p> +本网页用于确认您的服务器配置是否能满足运行<a href="http://www.yiiframework.com/">Yii</a> Web应用的要求。它将检查服务器所运行的PHP版本,查看是否安装了合适的PHP扩展模块,以及确认php.ini文件是否正确设置。 +</p> + +<h2>检查结果</h2> +<p> +<?php if($result>0): ?> +恭喜!您的服务器配置完全符合Yii的要求。 +<?php elseif($result<0): ?> +您的服务器配置符合Yii的最低要求。如果您需要使用特定的功能,请关注如下警告。 +<?php else: ?> +您的服务器配置未能满足Yii的要求。 +<?php endif; ?> +</p> + +<h2>具体结果</h2> + +<table class="result"> +<tr><th>项目名称</th><th>结果</th><th>使用者</th><th>备注</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>"> + <?php echo $requirement[2] ? '通过' : '未通过'; ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>通过</td> +<td class="failed"> </td><td>未通过</td> +<td class="warning"> </td><td>警告</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ 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 0000000..c5d2e30 --- /dev/null +++ b/requirements/views/zh_tw/index.php @@ -0,0 +1,72 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta http-equiv="content-language" content="en"/> +<link rel="stylesheet" type="text/css" href="css/main.css" /> +<title>Yii系統需求檢查</title> +</head> + +<body> +<div id="page"> + +<div id="header"> +<h1>Yii系統需求檢查</h1> +</div><!-- header--> + +<div id="content"> +<h2>檢查內容說明</h2> +<p> +本網頁用於確認您的伺服器組態設定是否能滿足執行<a href="http://www.yiiframework.com/">Yii</a> Web應用程式的要求. 它將檢查伺服器是否使用正確的PHP版本, 是否安裝了合適的PHP extension, 以及確認php.ini檔案是否正確設定. +</p> + +<h2>檢查結果</h2> +<p> +<?php if($result>0): ?> +恭喜! 您的伺服器組態設定完全符合Yii的要求. +<?php elseif($result<0): ?> +您的伺服器組態設定符合Yii的最低要求. 請注意下列警告(如果您的應用程式會需要使用到相關功能). +<?php else: ?> +您的伺服器組態設定未能滿足Yii的要求. +<?php endif; ?> +</p> + +<h2>詳細結果</h2> + +<table class="result"> +<tr><th>項目名稱</th><th>結果</th><th>使用者</th><th>備註</th></tr> +<?php foreach($requirements as $requirement): ?> +<tr> + <td> + <?php echo $requirement[0]; ?> + </td> + <td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>"> + <?php echo $requirement[2] ? '通過' : '未通過'; ?> + </td> + <td> + <?php echo $requirement[3]; ?> + </td> + <td> + <?php echo $requirement[4]; ?> + </td> +</tr> +<?php endforeach; ?> +</table> + +<table> +<tr> +<td class="passed"> </td><td>通過</td> +<td class="failed"> </td><td>未通過</td> +<td class="warning"> </td><td>警告</td> +</tr> +</table> + +</div><!-- content --> + +<div id="footer"> +<?php echo $serverInfo; ?> +</div><!-- footer --> + +</div><!-- page --> +</body> +</html>
\ No newline at end of file |
