├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── README.md ├── composer.json ├── composer.phar ├── config ├── application.config.php └── autoload │ ├── .gitignore │ ├── README.md │ ├── global.php │ └── local.php.dist ├── data └── cache │ └── .gitignore ├── init_autoloader.php ├── module └── Application │ ├── Module.php │ ├── config │ └── module.config.php │ ├── language │ ├── ar_SY.mo │ ├── ar_SY.po │ ├── cs_CZ.mo │ ├── cs_CZ.po │ ├── de_DE.mo │ ├── de_DE.po │ ├── en_US.mo │ ├── en_US.po │ ├── es_ES.mo │ ├── es_ES.po │ ├── fr_CA.mo │ ├── fr_CA.po │ ├── fr_FR.mo │ ├── fr_FR.po │ ├── it_IT.mo │ ├── it_IT.po │ ├── ja_JP.mo │ ├── ja_JP.po │ ├── nb_NO.mo │ ├── nb_NO.po │ ├── nl_NL.mo │ ├── nl_NL.po │ ├── pl_PL.mo │ ├── pl_PL.po │ ├── pt_BR.mo │ ├── pt_BR.po │ ├── ru_RU.mo │ ├── ru_RU.po │ ├── tr_TR.mo │ ├── tr_TR.po │ ├── zh_CN.mo │ ├── zh_CN.po │ ├── zh_TW.mo │ └── zh_TW.po │ ├── src │ └── Application │ │ └── Controller │ │ └── IndexController.php │ └── view │ ├── application │ └── index │ │ └── index.phtml │ ├── error │ ├── 404.phtml │ └── index.phtml │ └── layout │ └── layout.phtml ├── public ├── .htaccess ├── css │ ├── bootstrap-responsive.min.css │ ├── bootstrap.min.css │ └── style.css ├── img │ ├── favicon.ico │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ └── zf2-logo.png ├── index.php └── js │ ├── bootstrap.min.js │ ├── html5.js │ └── jquery.min.js └── vendor ├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | nbproject 2 | ._* 3 | .~lock.* 4 | .buildpath 5 | .DS_Store 6 | .idea 7 | .project 8 | .settings 9 | composer.lock 10 | vendor/bin 11 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "vendor/ZF2"] 2 | path = vendor/ZF2 3 | url = https://github.com/zendframework/zf2.git 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2005-2013, Zend Technologies USA, Inc. 2 | All rights reserved. 3 | 4 | Redistribution and use in source and binary forms, with or without modification, 5 | are permitted provided that the following conditions are met: 6 | 7 | * Redistributions of source code must retain the above copyright notice, 8 | this list of conditions and the following disclaimer. 9 | 10 | * Redistributions in binary form must reproduce the above copyright notice, 11 | this list of conditions and the following disclaimer in the documentation 12 | and/or other materials provided with the distribution. 13 | 14 | * Neither the name of Zend Technologies USA, Inc. nor the names of its 15 | contributors may be used to endorse or promote products derived from this 16 | software without specific prior written permission. 17 | 18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 19 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 20 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 21 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR 22 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 23 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 24 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 25 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 27 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Site Builder 2 | ============ 3 | 4 | Introduction 5 | ------------ 6 | Site Builder is a HTML5 Website Builder written in PHP. 7 | Site Builder is used to build amazing Web 3.0 HTML5 Applications that work both on Desktop and Mobile Browsers. 8 | 9 | Installation 10 | ------------ 11 | 12 | Using Composer (recommended) 13 | ---------------------------- 14 | The recommended way to get a working copy of this project is to clone the repository 15 | and use `composer` to install dependencies using the `create-project` command: 16 | 17 | curl -s https://getcomposer.org/installer | php -- 18 | php composer.phar create-project -sdev --repository-url="http://packages.zendframework.com" zendframework/skeleton-application path/to/install 19 | 20 | Alternately, clone the repository and manually invoke `composer` using the shipped 21 | `composer.phar`: 22 | 23 | cd my/project/dir 24 | git clone git://github.com/zendframework/ZendSkeletonApplication.git 25 | cd ZendSkeletonApplication 26 | php composer.phar self-update 27 | php composer.phar install 28 | 29 | (The `self-update` directive is to ensure you have an up-to-date `composer.phar` 30 | available.) 31 | 32 | Another alternative for downloading the project is to grab it via `curl`, and 33 | then pass it to `tar`: 34 | 35 | cd my/project/dir 36 | curl -#L https://github.com/zendframework/ZendSkeletonApplication/tarball/master | tar xz --strip-components=1 37 | 38 | You would then invoke `composer` to install dependencies per the previous 39 | example. 40 | 41 | Using Git submodules 42 | -------------------- 43 | Alternatively, you can install using native git submodules: 44 | 45 | git clone git://github.com/zendframework/ZendSkeletonApplication.git --recursive 46 | 47 | Virtual Host 48 | ------------ 49 | Afterwards, set up a virtual host to point to the public/ directory of the 50 | project and you should be ready to go! 51 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "zendframework/skeleton-application", 3 | "description": "Skeleton Application for ZF2", 4 | "license": "BSD-3-Clause", 5 | "keywords": [ 6 | "framework", 7 | "zf2" 8 | ], 9 | "homepage": "http://framework.zend.com/", 10 | "require": { 11 | "php": ">=5.3.3", 12 | "zendframework/zendframework": ">2.2.0rc1" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /composer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/composer.phar -------------------------------------------------------------------------------- /config/application.config.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Application', 6 | ), 7 | 8 | // These are various options for the listeners attached to the ModuleManager 9 | 'module_listener_options' => array( 10 | // This should be an array of paths in which modules reside. 11 | // If a string key is provided, the listener will consider that a module 12 | // namespace, the value of that key the specific path to that module's 13 | // Module class. 14 | 'module_paths' => array( 15 | './module', 16 | './vendor', 17 | ), 18 | 19 | // An array of paths from which to glob configuration files after 20 | // modules are loaded. These effectively overide configuration 21 | // provided by modules themselves. Paths may use GLOB_BRACE notation. 22 | 'config_glob_paths' => array( 23 | 'config/autoload/{,*.}{global,local}.php', 24 | ), 25 | 26 | // Whether or not to enable a configuration cache. 27 | // If enabled, the merged configuration will be cached and used in 28 | // subsequent requests. 29 | //'config_cache_enabled' => $booleanValue, 30 | 31 | // The key used to create the configuration cache file name. 32 | //'config_cache_key' => $stringKey, 33 | 34 | // Whether or not to enable a module class map cache. 35 | // If enabled, creates a module class map cache which will be used 36 | // by in future requests, to reduce the autoloading process. 37 | //'module_map_cache_enabled' => $booleanValue, 38 | 39 | // The key used to create the class map cache file name. 40 | //'module_map_cache_key' => $stringKey, 41 | 42 | // The path in which to cache merged configuration. 43 | //'cache_dir' => $stringPath, 44 | 45 | // Whether or not to enable modules dependency checking. 46 | // Enabled by default, prevents usage of modules that depend on other modules 47 | // that weren't loaded. 48 | // 'check_dependencies' => true, 49 | ), 50 | 51 | // Used to create an own service manager. May contain one or more child arrays. 52 | //'service_listener_options' => array( 53 | // array( 54 | // 'service_manager' => $stringServiceManagerName, 55 | // 'config_key' => $stringConfigKey, 56 | // 'interface' => $stringOptionalInterface, 57 | // 'method' => $stringRequiredMethodName, 58 | // ), 59 | // ) 60 | 61 | // Initial configuration with which to seed the ServiceManager. 62 | // Should be compatible with Zend\ServiceManager\Config. 63 | // 'service_manager' => array(), 64 | ); -------------------------------------------------------------------------------- /config/autoload/.gitignore: -------------------------------------------------------------------------------- 1 | local.php 2 | *.local.php 3 | -------------------------------------------------------------------------------- /config/autoload/README.md: -------------------------------------------------------------------------------- 1 | About this directory: 2 | ===================== 3 | 4 | By default, this application is configured to load all configs in 5 | `./config/autoload/{,*.}{global,local}.php`. Doing this provides a 6 | location for a developer to drop in configuration override files provided by 7 | modules, as well as cleanly provide individual, application-wide config files 8 | for things like database connections, etc. 9 | -------------------------------------------------------------------------------- /config/autoload/global.php: -------------------------------------------------------------------------------- 1 | false, 19 | // The key used to create the configuration cache file name. 20 | //'config_cache_key' => 'module_config_cache', 21 | // The path in which to cache merged configuration. 22 | //'cache_dir' => './data/cache', 23 | // ... 24 | ); 25 | -------------------------------------------------------------------------------- /data/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /init_autoloader.php: -------------------------------------------------------------------------------- 1 | add('Zend', $zf2Path); 37 | } else { 38 | include $zf2Path . '/Zend/Loader/AutoloaderFactory.php'; 39 | Zend\Loader\AutoloaderFactory::factory(array( 40 | 'Zend\Loader\StandardAutoloader' => array( 41 | 'autoregister_zf' => true 42 | ) 43 | )); 44 | } 45 | } 46 | 47 | if (!class_exists('Zend\Loader\AutoloaderFactory')) { 48 | throw new RuntimeException('Unable to load ZF2. Run `php composer.phar install` or define a ZF2_PATH environment variable.'); 49 | } 50 | -------------------------------------------------------------------------------- /module/Application/Module.php: -------------------------------------------------------------------------------- 1 | getApplication()->getEventManager(); 20 | $moduleRouteListener = new ModuleRouteListener(); 21 | $moduleRouteListener->attach($eventManager); 22 | } 23 | 24 | public function getConfig() 25 | { 26 | return include __DIR__ . '/config/module.config.php'; 27 | } 28 | 29 | public function getAutoloaderConfig() 30 | { 31 | return array( 32 | 'Zend\Loader\StandardAutoloader' => array( 33 | 'namespaces' => array( 34 | __NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__, 35 | ), 36 | ), 37 | ); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /module/Application/config/module.config.php: -------------------------------------------------------------------------------- 1 | array( 12 | 'routes' => array( 13 | 'home' => array( 14 | 'type' => 'Zend\Mvc\Router\Http\Literal', 15 | 'options' => array( 16 | 'route' => '/', 17 | 'defaults' => array( 18 | 'controller' => 'Application\Controller\Index', 19 | 'action' => 'index', 20 | ), 21 | ), 22 | ), 23 | // The following is a route to simplify getting started creating 24 | // new controllers and actions without needing to create a new 25 | // module. Simply drop new controllers in, and you can access them 26 | // using the path /application/:controller/:action 27 | 'application' => array( 28 | 'type' => 'Literal', 29 | 'options' => array( 30 | 'route' => '/application', 31 | 'defaults' => array( 32 | '__NAMESPACE__' => 'Application\Controller', 33 | 'controller' => 'Index', 34 | 'action' => 'index', 35 | ), 36 | ), 37 | 'may_terminate' => true, 38 | 'child_routes' => array( 39 | 'default' => array( 40 | 'type' => 'Segment', 41 | 'options' => array( 42 | 'route' => '/[:controller[/:action]]', 43 | 'constraints' => array( 44 | 'controller' => '[a-zA-Z][a-zA-Z0-9_-]*', 45 | 'action' => '[a-zA-Z][a-zA-Z0-9_-]*', 46 | ), 47 | 'defaults' => array( 48 | ), 49 | ), 50 | ), 51 | ), 52 | ), 53 | ), 54 | ), 55 | 'service_manager' => array( 56 | 'abstract_factories' => array( 57 | 'Zend\Cache\Service\StorageCacheAbstractServiceFactory', 58 | 'Zend\Log\LoggerAbstractServiceFactory', 59 | ), 60 | 'aliases' => array( 61 | 'translator' => 'MvcTranslator', 62 | ), 63 | ), 64 | 'translator' => array( 65 | 'locale' => 'en_US', 66 | 'translation_file_patterns' => array( 67 | array( 68 | 'type' => 'gettext', 69 | 'base_dir' => __DIR__ . '/../language', 70 | 'pattern' => '%s.mo', 71 | ), 72 | ), 73 | ), 74 | 'controllers' => array( 75 | 'invokables' => array( 76 | 'Application\Controller\Index' => 'Application\Controller\IndexController' 77 | ), 78 | ), 79 | 'view_manager' => array( 80 | 'display_not_found_reason' => true, 81 | 'display_exceptions' => true, 82 | 'doctype' => 'HTML5', 83 | 'not_found_template' => 'error/404', 84 | 'exception_template' => 'error/index', 85 | 'template_map' => array( 86 | 'layout/layout' => __DIR__ . '/../view/layout/layout.phtml', 87 | 'application/index/index' => __DIR__ . '/../view/application/index/index.phtml', 88 | 'error/404' => __DIR__ . '/../view/error/404.phtml', 89 | 'error/index' => __DIR__ . '/../view/error/index.phtml', 90 | ), 91 | 'template_path_stack' => array( 92 | __DIR__ . '/../view', 93 | ), 94 | ), 95 | ); 96 | -------------------------------------------------------------------------------- /module/Application/language/ar_SY.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/module/Application/language/ar_SY.mo -------------------------------------------------------------------------------- /module/Application/language/ar_SY.po: -------------------------------------------------------------------------------- 1 | # 2 | # tawfek daghistani , 2012. 3 | # Tawfek Daghistani , 2012. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: ZendSkeletonApplication\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "POT-Creation-Date: 2012-07-05 22:17-0700\n" 10 | "PO-Revision-Date: 2012-07-07 13:58+0300\n" 11 | "Last-Translator: Tawfek Daghistani \n" 12 | "Language-Team: Arabic <>\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Poedit-KeywordsList: translate\n" 18 | "X-Poedit-Language: English\n" 19 | "X-Poedit-Country: UNITED STATES\n" 20 | "X-Poedit-Basepath: .\n" 21 | "X-Poedit-SearchPath-0: ..\n" 22 | "Plural-Forms: nplurals=2; plural=(n!=1);\n" 23 | 24 | #: ../view/layout/layout.phtml:6 ../view/layout/layout.phtml:33 25 | msgid "Skeleton Application" 26 | msgstr "Skeleton Application" 27 | 28 | #: ../view/layout/layout.phtml:36 29 | msgid "Home" 30 | msgstr "الصفحة الرئيسية" 31 | 32 | #: ../view/layout/layout.phtml:50 33 | msgid "All rights reserved." 34 | msgstr "جميع الحقوق محفوظة" 35 | 36 | #: ../view/application/index/index.phtml:2 37 | #, php-format 38 | msgid "Welcome to %sZend Framework 2%s" 39 | msgstr "أهلا بك في %sZend Framework 2%s" 40 | 41 | #: ../view/application/index/index.phtml:3 42 | #, php-format 43 | msgid "" 44 | "Congratulations! You have successfully installed the %sZF2 Skeleton " 45 | "Application%s. You are currently running Zend Framework version %s. This " 46 | "skeleton can serve as a simple starting point for you to begin building your " 47 | "application on ZF2." 48 | msgstr "" 49 | "تهانينا! لقد قمت بتنصيب %sZF2 Skeleton Application%s . أنت الآن تستخدم مكتبة " 50 | "زيند الإصدار %s . هذا التطبيق يمكن أن يكون لك نقطة بداية سهلة في بناء " 51 | "برامجك الخاصة على مكتبة زيند " 52 | 53 | #: ../view/application/index/index.phtml:4 54 | msgid "Fork Zend Framework 2 on GitHub" 55 | msgstr "اشتق مكتبة زيند على GitHub " 56 | 57 | #: ../view/application/index/index.phtml:10 58 | msgid "Follow Development" 59 | msgstr "تابع أخر التطورات" 60 | 61 | #: ../view/application/index/index.phtml:11 62 | #, php-format 63 | msgid "" 64 | "Zend Framework 2 is under active development. If you are interested in " 65 | "following the development of ZF2, there is a special ZF2 portal on the " 66 | "official Zend Framework website which provides links to the ZF2 %swiki%s, " 67 | "%sdev blog%s, %sissue tracker%s, and much more. This is a great resource for " 68 | "staying up to date with the latest developments!" 69 | msgstr "" 70 | "مكتبة زيند تخضع للتطوير المستمر , إذا كان لديك الرغبة في متابعة التطورات , " 71 | "بإمكانك تصفح الموقع الرسمي للمكتبة الذي يحتوي على روابط إلى %swiki%s, %sdev " 72 | "blog%s, %sissue tracker%s, ,و المزيد . هذه مصادر رائعة لمتابعة أخر التطورات" 73 | 74 | #: ../view/application/index/index.phtml:12 75 | msgid "ZF2 Development Portal" 76 | msgstr "بوابة التطوير الخاصة ب زيند" 77 | 78 | #: ../view/application/index/index.phtml:16 79 | msgid "Discover Modules" 80 | msgstr "تعرف على الإضافات" 81 | 82 | #: ../view/application/index/index.phtml:17 83 | #, php-format 84 | msgid "" 85 | "The community is working on developing a community site to serve as a " 86 | "repository and gallery for ZF2 modules. The project is available %son GitHub" 87 | "%s. The site is currently live and currently contains a list of some of the " 88 | "modules already available for ZF2." 89 | msgstr "" 90 | "المجتمع البرمجي يعمل على تطوير موقع خاص به ليكون كمصدر و معرض لإضافات ZF2 . " 91 | "هذا المشروع موجود على %son GitHub%s . هذا الموقع يخضع للتطوير المستمر و " 92 | "يحتوي على قائمة من الإضافات الخاصة ب ZF2 " 93 | 94 | #: ../view/application/index/index.phtml:18 95 | msgid "Explore ZF2 Modules" 96 | msgstr "إكتشف إضافات ZF2 " 97 | 98 | #: ../view/application/index/index.phtml:22 99 | msgid "Help & Support" 100 | msgstr "الدعم و المساعدة " 101 | 102 | #: ../view/application/index/index.phtml:23 103 | #, php-format 104 | msgid "" 105 | "If you need any help or support while developing with ZF2, you may reach us " 106 | "via IRC: %s#zftalk on Freenode%s. We'd love to hear any questions or " 107 | "feedback you may have regarding the beta releases. Alternatively, you may " 108 | "subscribe and post questions to the %smailing lists%s." 109 | msgstr "" 110 | "إذا كنت تريد الحصول على دعم فني أو مساعدة في تطوير ZF2 , بإمكانك التواصل عبر " 111 | "IRC: %s#zftalk on Freenode%s. نحن نريد أن نسمع منك المزيد من الأسئلة , " 112 | "الأراء و الملاحظات على النسخة التجربية من المكتبة , أو بإمكانك الإشتراك و " 113 | "التفاعل أو وضع الأسئلة في القائمة البريدية %smailing lists%s." 114 | 115 | #: ../view/application/index/index.phtml:24 116 | msgid "Ping us on IRC" 117 | msgstr "تواصل معنا في IRC" 118 | 119 | #: ../view/error/index.phtml:1 120 | msgid "An error occurred" 121 | msgstr "حصل خطأ ما " 122 | 123 | #: ../view/error/index.phtml:8 124 | msgid "Additional information" 125 | msgstr "مزيد من المعلومات" 126 | 127 | #: ../view/error/index.phtml:11 ../view/error/index.phtml:35 128 | msgid "File" 129 | msgstr "ملف" 130 | 131 | #: ../view/error/index.phtml:15 ../view/error/index.phtml:39 132 | msgid "Message" 133 | msgstr "الرسالة" 134 | 135 | #: ../view/error/index.phtml:19 ../view/error/index.phtml:43 136 | #: ../view/error/404.phtml:55 137 | msgid "Stack trace" 138 | msgstr "تفاصيل الخطأ" 139 | 140 | #: ../view/error/index.phtml:29 141 | msgid "Previous exceptions" 142 | msgstr "الأخطاء السابقة" 143 | 144 | #: ../view/error/index.phtml:58 145 | msgid "No Exception available" 146 | msgstr "لايوجد خطأ" 147 | 148 | #: ../view/error/404.phtml:1 149 | msgid "A 404 error occurred" 150 | msgstr "حصل خطأ 404 , الصفحة غير موجودة" 151 | 152 | #: ../view/error/404.phtml:10 153 | msgid "The requested controller was unable to dispatch the request." 154 | msgstr "المتحكم المطلوب غير قادر على إجابة الطلب" 155 | 156 | #: ../view/error/404.phtml:13 157 | msgid "" 158 | "The requested controller could not be mapped to an existing controller class." 159 | msgstr "لا يمكن ربط المتحكم المطلوب بأي من المتحكمات الموجودة حالياًَ" 160 | 161 | #: ../view/error/404.phtml:16 162 | msgid "The requested controller was not dispatchable." 163 | msgstr "المتحكم المطلوب غير قادر على الإجابة " 164 | 165 | #: ../view/error/404.phtml:19 166 | msgid "The requested URL could not be matched by routing." 167 | msgstr "الرابط المطلوب غير معرف لدى الموجه" 168 | 169 | #: ../view/error/404.phtml:22 170 | msgid "We cannot determine at this time why a 404 was generated." 171 | msgstr "لا يمكنني التحديد لماذا حصل الخطأ 404 في هذا الوقت " 172 | 173 | #: ../view/error/404.phtml:34 174 | msgid "Controller" 175 | msgstr "المتحكم " 176 | 177 | #: ../view/error/404.phtml:41 178 | #, php-format 179 | msgid "resolves to %s" 180 | msgstr "يوصل إلى %s" 181 | 182 | #: ../view/error/404.phtml:51 183 | msgid "Exception" 184 | msgstr "خطأ برمجي" 185 | -------------------------------------------------------------------------------- /module/Application/language/cs_CZ.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/module/Application/language/cs_CZ.mo -------------------------------------------------------------------------------- /module/Application/language/cs_CZ.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: ZendSkeletonApplication\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2012-07-05 22:17-0700\n" 6 | "PO-Revision-Date: 2012-07-06 13:05+0100\n" 7 | "Last-Translator: David Lukas \n" 8 | "Language-Team: ZF Contibutors \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Poedit-KeywordsList: translate\n" 14 | "X-Poedit-Language: Czech\n" 15 | "X-Poedit-Country: CZECH REPUBLIC\n" 16 | "X-Poedit-Basepath: .\n" 17 | "X-Poedit-SearchPath-0: ..\n" 18 | 19 | #: ../view/layout/layout.phtml:6 20 | #: ../view/layout/layout.phtml:33 21 | msgid "Skeleton Application" 22 | msgstr "Skeleton aplikace" 23 | 24 | #: ../view/layout/layout.phtml:36 25 | msgid "Home" 26 | msgstr "Úvod" 27 | 28 | #: ../view/layout/layout.phtml:50 29 | msgid "All rights reserved." 30 | msgstr "Všechna práva vyhrazena." 31 | 32 | #: ../view/application/index/index.phtml:2 33 | #, php-format 34 | msgid "Welcome to %sZend Framework 2%s" 35 | msgstr "Vítejte v %sZend Framework 2%s" 36 | 37 | #: ../view/application/index/index.phtml:3 38 | #, php-format 39 | msgid "Congratulations! You have successfully installed the %sZF2 Skeleton Application%s. You are currently running Zend Framework version %s. This skeleton can serve as a simple starting point for you to begin building your application on ZF2." 40 | msgstr "Blahopřejeme! Úspěšně jste nainstalovali %sZF2 Skeleton Application%s. Právě používáte Zend Framework verze %s. Tato kostra aplikace vám poslouží jako jednoduchý výchozí bod, ze kterého můžete vyjít při tvorbě vlastní aplikace nad ZF2." 41 | 42 | #: ../view/application/index/index.phtml:4 43 | msgid "Fork Zend Framework 2 on GitHub" 44 | msgstr "Fork Zend Framework 2 na GitHub" 45 | 46 | #: ../view/application/index/index.phtml:10 47 | msgid "Follow Development" 48 | msgstr "Sledujte vývoj" 49 | 50 | #: ../view/application/index/index.phtml:11 51 | #, php-format 52 | msgid "Zend Framework 2 is under active development. If you are interested in following the development of ZF2, there is a special ZF2 portal on the official Zend Framework website which provides links to the ZF2 %swiki%s, %sdev blog%s, %sissue tracker%s, and much more. This is a great resource for staying up to date with the latest developments!" 53 | msgstr "Zend Framework 2 je aktivně vyvíjen. Chcete-li sledovat vývoj ZF2, máte na oficiálních webových stránkách Zend Framework k dispozici zvláštní portál ZF2, na kterém najdete odkazy na ZF2 %swiki%s, %svývojářský blog%s, %sissue tracker%s a mnoho dalšího. Tento portál je skvělý zdroj aktuálních informací o nejnovějším vývoji!" 54 | 55 | #: ../view/application/index/index.phtml:12 56 | msgid "ZF2 Development Portal" 57 | msgstr "Vývojářský portál ZF2" 58 | 59 | #: ../view/application/index/index.phtml:16 60 | msgid "Discover Modules" 61 | msgstr "Objevte Moduly" 62 | 63 | #: ../view/application/index/index.phtml:17 64 | #, php-format 65 | msgid "The community is working on developing a community site to serve as a repository and gallery for ZF2 modules. The project is available %son GitHub%s. The site is currently live and currently contains a list of some of the modules already available for ZF2." 66 | msgstr "Komunita pracuje na vývoji komunitního webu, který bude sloužit jako archiv a galerie modulů ZF2. Tento projekt je dostupný %sna GitHub%s. Web je aktuálně v provozu a obsahuje seznam některých již dostupných modulů ZF2." 67 | 68 | #: ../view/application/index/index.phtml:18 69 | msgid "Explore ZF2 Modules" 70 | msgstr "Prozkoumejte Moduly ZF2" 71 | 72 | #: ../view/application/index/index.phtml:22 73 | msgid "Help & Support" 74 | msgstr "Pomoc & Podpora" 75 | 76 | #: ../view/application/index/index.phtml:23 77 | #, php-format 78 | msgid "If you need any help or support while developing with ZF2, you may reach us via IRC: %s#zftalk on Freenode%s. We'd love to hear any questions or feedback you may have regarding the beta releases. Alternatively, you may subscribe and post questions to the %smailing lists%s." 79 | msgstr "Budete-li při vývoji se ZF2 potřebovat jakoukoli pomoc nebo podporu, můžete nás zastihnout přes IRC: %s#zftalk na Freenode%s. Budeme rádi za jakékoli vaše otázky nebo připomínky týkající se beta verzí. Případně se také můžete přihlásit k odběru a posílat otázky na naše %se-mailové distribuční seznamy%s." 80 | 81 | #: ../view/application/index/index.phtml:24 82 | msgid "Ping us on IRC" 83 | msgstr "Ozvěte se nám na IRC" 84 | 85 | #: ../view/error/index.phtml:1 86 | msgid "An error occurred" 87 | msgstr "Vyskytla se chyba" 88 | 89 | #: ../view/error/index.phtml:8 90 | msgid "Additional information" 91 | msgstr "Další informace" 92 | 93 | #: ../view/error/index.phtml:11 94 | #: ../view/error/index.phtml:35 95 | msgid "File" 96 | msgstr "Soubor" 97 | 98 | #: ../view/error/index.phtml:15 99 | #: ../view/error/index.phtml:39 100 | msgid "Message" 101 | msgstr "Zpráva" 102 | 103 | #: ../view/error/index.phtml:19 104 | #: ../view/error/index.phtml:43 105 | #: ../view/error/404.phtml:55 106 | msgid "Stack trace" 107 | msgstr "Trasování zásobníku (Stack trace)" 108 | 109 | #: ../view/error/index.phtml:29 110 | msgid "Previous exceptions" 111 | msgstr "Předchozí výjimky" 112 | 113 | #: ../view/error/index.phtml:58 114 | msgid "No Exception available" 115 | msgstr "Žádná výjimka není k dispozici" 116 | 117 | #: ../view/error/404.phtml:1 118 | msgid "A 404 error occurred" 119 | msgstr "Vyskytla se chyba 404" 120 | 121 | #: ../view/error/404.phtml:10 122 | msgid "The requested controller was unable to dispatch the request." 123 | msgstr "Požadovaný controller nemohl vyřídit požadavek." 124 | 125 | #: ../view/error/404.phtml:13 126 | msgid "The requested controller could not be mapped to an existing controller class." 127 | msgstr "Požadovaný controller se nepodařilo namapovat na žádnou existující třídu controlleru." 128 | 129 | #: ../view/error/404.phtml:16 130 | msgid "The requested controller was not dispatchable." 131 | msgstr "Požadovaný controller nepodporuje vyřízení (controller not dispatchable)." 132 | 133 | #: ../view/error/404.phtml:19 134 | msgid "The requested URL could not be matched by routing." 135 | msgstr "S požadovaným URL nebyla při směrování (routing) nalezena shoda." 136 | 137 | #: ../view/error/404.phtml:22 138 | msgid "We cannot determine at this time why a 404 was generated." 139 | msgstr "Momentálně nedokážeme určit, proč byla vygenerována chyba 404." 140 | 141 | #: ../view/error/404.phtml:34 142 | msgid "Controller" 143 | msgstr "Controller" 144 | 145 | #: ../view/error/404.phtml:41 146 | #, php-format 147 | msgid "resolves to %s" 148 | msgstr "je mapován na %s" 149 | 150 | #: ../view/error/404.phtml:51 151 | msgid "Exception" 152 | msgstr "Výjimka" 153 | 154 | -------------------------------------------------------------------------------- /module/Application/language/de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/module/Application/language/de_DE.mo -------------------------------------------------------------------------------- /module/Application/language/de_DE.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: ZendSkeletonApplication\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2012-07-05 23:45-0700\n" 6 | "PO-Revision-Date: 2012-07-06 08:18-0700\n" 7 | "Last-Translator: Evan Coury \n" 8 | "Language-Team: ZF Contributors \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Poedit-KeywordsList: translate\n" 14 | "X-Poedit-Basepath: .\n" 15 | "X-Poedit-Language: German\n" 16 | "X-Poedit-Country: GERMANY\n" 17 | "X-Poedit-SearchPath-0: ..\n" 18 | 19 | #: ../view/layout/layout.phtml:6 20 | #: ../view/layout/layout.phtml:33 21 | msgid "Skeleton Application" 22 | msgstr "" 23 | 24 | #: ../view/layout/layout.phtml:36 25 | msgid "Home" 26 | msgstr "Startseite" 27 | 28 | #: ../view/layout/layout.phtml:50 29 | msgid "All rights reserved." 30 | msgstr "Alle Rechte vorbehalten." 31 | 32 | #: ../view/application/index/index.phtml:2 33 | #, php-format 34 | msgid "Welcome to %sZend Framework 2%s" 35 | msgstr "Willkommen zu dem %sZend Framework 2%s" 36 | 37 | #: ../view/application/index/index.phtml:3 38 | #, php-format 39 | msgid "Congratulations! You have successfully installed the %sZF2 Skeleton Application%s. You are currently running Zend Framework version %s. This skeleton can serve as a simple starting point for you to begin building your application on ZF2." 40 | msgstr "Herzlichen Glückwunsch! Sie haben die %sZF2 Skeleton Application%s erfolgreich installiert und benutzen gerade die Version %s des Zend Frameworks. Dieses Gerüst kann Ihnen als Einstiegspunkt, für Ihre weitere Entwicklung, basierend auf dem Zend Framework 2, dienen." 41 | 42 | #: ../view/application/index/index.phtml:4 43 | msgid "Fork Zend Framework 2 on GitHub" 44 | msgstr "Fork Zend Framework 2 auf GitHub" 45 | 46 | #: ../view/application/index/index.phtml:10 47 | msgid "Follow Development" 48 | msgstr "Folge der Entwicklung" 49 | 50 | #: ../view/application/index/index.phtml:11 51 | #, php-format 52 | msgid "Zend Framework 2 is under active development. If you are interested in following the development of ZF2, there is a special ZF2 portal on the official Zend Framework website which provides links to the ZF2 %swiki%s, %sdev blog%s, %sissue tracker%s, and much more. This is a great resource for staying up to date with the latest developments!" 53 | msgstr "Das Zend Framework 2 wird z.Z. aktiv weiterentwickelt. Sollten Sie daran interessiert sein, die Entwicklung von ZF2 zu verfolgen, so bietet Ihnen die offizielle Webseite einen eigens für das Zend Framework 2 eingerichteten Bereich, auf der Sie Verlinkungen zum ZF2 %sWiki%s, %sEntwickler Blog%s, einem %sFehlerverfolgungssystem%s und noch vielem mehr finden. Dieser Bereich ist eine hervorragende Quelle um stets aktuell zu bleiben." 54 | 55 | #: ../view/application/index/index.phtml:12 56 | msgid "ZF2 Development Portal" 57 | msgstr "ZF2 Entwickler Portal" 58 | 59 | #: ../view/application/index/index.phtml:16 60 | msgid "Discover Modules" 61 | msgstr "Entdecken Sie Module" 62 | 63 | #: ../view/application/index/index.phtml:17 64 | #, php-format 65 | msgid "The community is working on developing a community site to serve as a repository and gallery for ZF2 modules. The project is available %son GitHub%s. The site is currently live and currently contains a list of some of the modules already available for ZF2." 66 | msgstr "Die Community arbeitet momentan an einer Community Seite, welche als Galerie für ZF2 Module dient. Dieses Projekt ist %sauf GitHub%s verfügbar. Die Webseite ist bereits Online und enthält eine Liste mit schon veröffentlichten Modulen für das Zend Framework 2." 67 | 68 | #: ../view/application/index/index.phtml:18 69 | msgid "Explore ZF2 Modules" 70 | msgstr "Erkunden Sie ZF2 Module" 71 | 72 | #: ../view/application/index/index.phtml:22 73 | msgid "Help & Support" 74 | msgstr "Hilfe & Support" 75 | 76 | #: ../view/application/index/index.phtml:23 77 | #, php-format 78 | msgid "If you need any help or support while developing with ZF2, you may reach us via IRC: %s#zftalk on Freenode%s. We'd love to hear any questions or feedback you may have regarding the beta releases. Alternatively, you may subscribe and post questions to the %smailing lists%s." 79 | msgstr "Sollten Sie Hilfe jeglicher Art bei der Entwicklung mit dem Zend Framework 2 benötigen, kontaktieren Sie uns doch einfach über das IRC: %s#zftalk on Freenode%s. Wir freuen uns darauf, Ihnen bei Ihren Fragen zu helfen oder aber auch Ihre Meinung bezüglich der Beta Versionen zu hören. Alternativ können Sie auch die %smailing lists%s abonnieren und Ihre Fragen dort stellen." 80 | 81 | #: ../view/application/index/index.phtml:24 82 | msgid "Ping us on IRC" 83 | msgstr "Schreiben Sie uns im IRC an" 84 | 85 | #: ../view/error/index.phtml:1 86 | msgid "An error occurred" 87 | msgstr "Ein Fehler ist aufgetreten" 88 | 89 | #: ../view/error/index.phtml:8 90 | msgid "Additional information" 91 | msgstr "Zusätzliche Information" 92 | 93 | #: ../view/error/index.phtml:11 94 | #: ../view/error/index.phtml:35 95 | msgid "File" 96 | msgstr "Datei" 97 | 98 | #: ../view/error/index.phtml:15 99 | #: ../view/error/index.phtml:39 100 | msgid "Message" 101 | msgstr "Meldung" 102 | 103 | #: ../view/error/index.phtml:19 104 | #: ../view/error/index.phtml:43 105 | #: ../view/error/404.phtml:55 106 | msgid "Stack trace" 107 | msgstr "Stapelüberwachung" 108 | 109 | #: ../view/error/index.phtml:29 110 | msgid "Previous exceptions" 111 | msgstr "Vorherige Ausnahme" 112 | 113 | #: ../view/error/index.phtml:58 114 | msgid "No Exception available" 115 | msgstr "Es ist keine Ausnahme verfügbar" 116 | 117 | #: ../view/error/404.phtml:1 118 | msgid "A 404 error occurred" 119 | msgstr "Es trat ein 404 Fehler auf" 120 | 121 | #: ../view/error/404.phtml:10 122 | msgid "The requested controller was unable to dispatch the request." 123 | msgstr "Der angeforderte Controller war nicht in der Lage die Anfrage zu verarbeiten." 124 | 125 | #: ../view/error/404.phtml:13 126 | msgid "The requested controller could not be mapped to an existing controller class." 127 | msgstr "Der angeforderte Controller konnte keiner Controller Klasse zugeordnet werden." 128 | 129 | #: ../view/error/404.phtml:16 130 | msgid "The requested controller was not dispatchable." 131 | msgstr "Der angeforderte Controller ist nicht aufrufbar." 132 | 133 | #: ../view/error/404.phtml:19 134 | msgid "The requested URL could not be matched by routing." 135 | msgstr "Für die angeforderte URL konnte keine Übereinstimmung gefunden werden." 136 | 137 | #: ../view/error/404.phtml:22 138 | msgid "We cannot determine at this time why a 404 was generated." 139 | msgstr "Zu diesem Zeitpunkt ist es uns nicht möglich zu bestimmen, warum ein 404 Fehler aufgetreten ist." 140 | 141 | #: ../view/error/404.phtml:34 142 | msgid "Controller" 143 | msgstr "Controller" 144 | 145 | #: ../view/error/404.phtml:41 146 | #, php-format 147 | msgid "resolves to %s" 148 | msgstr "wird aufgelöst in %s" 149 | 150 | #: ../view/error/404.phtml:51 151 | msgid "Exception" 152 | msgstr "Ausnahme" 153 | 154 | -------------------------------------------------------------------------------- /module/Application/language/en_US.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/module/Application/language/en_US.mo -------------------------------------------------------------------------------- /module/Application/language/en_US.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: ZendSkeletonApplication\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2012-07-05 22:17-0700\n" 6 | "PO-Revision-Date: 2012-07-05 22:17-0700\n" 7 | "Last-Translator: Evan Coury \n" 8 | "Language-Team: ZF Contibutors \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Poedit-KeywordsList: translate\n" 14 | "X-Poedit-Language: English\n" 15 | "X-Poedit-Country: UNITED STATES\n" 16 | "X-Poedit-Basepath: .\n" 17 | "X-Poedit-SearchPath-0: ..\n" 18 | 19 | #: ../view/layout/layout.phtml:6 20 | #: ../view/layout/layout.phtml:33 21 | msgid "Skeleton Application" 22 | msgstr "" 23 | 24 | #: ../view/layout/layout.phtml:36 25 | msgid "Home" 26 | msgstr "" 27 | 28 | #: ../view/layout/layout.phtml:50 29 | msgid "All rights reserved." 30 | msgstr "" 31 | 32 | #: ../view/application/index/index.phtml:2 33 | #, php-format 34 | msgid "Welcome to %sZend Framework 2%s" 35 | msgstr "" 36 | 37 | #: ../view/application/index/index.phtml:3 38 | #, php-format 39 | msgid "Congratulations! You have successfully installed the %sZF2 Skeleton Application%s. You are currently running Zend Framework version %s. This skeleton can serve as a simple starting point for you to begin building your application on ZF2." 40 | msgstr "" 41 | 42 | #: ../view/application/index/index.phtml:4 43 | msgid "Fork Zend Framework 2 on GitHub" 44 | msgstr "" 45 | 46 | #: ../view/application/index/index.phtml:10 47 | msgid "Follow Development" 48 | msgstr "" 49 | 50 | #: ../view/application/index/index.phtml:11 51 | #, php-format 52 | msgid "Zend Framework 2 is under active development. If you are interested in following the development of ZF2, there is a special ZF2 portal on the official Zend Framework website which provides links to the ZF2 %swiki%s, %sdev blog%s, %sissue tracker%s, and much more. This is a great resource for staying up to date with the latest developments!" 53 | msgstr "" 54 | 55 | #: ../view/application/index/index.phtml:12 56 | msgid "ZF2 Development Portal" 57 | msgstr "" 58 | 59 | #: ../view/application/index/index.phtml:16 60 | msgid "Discover Modules" 61 | msgstr "" 62 | 63 | #: ../view/application/index/index.phtml:17 64 | #, php-format 65 | msgid "The community is working on developing a community site to serve as a repository and gallery for ZF2 modules. The project is available %son GitHub%s. The site is currently live and currently contains a list of some of the modules already available for ZF2." 66 | msgstr "" 67 | 68 | #: ../view/application/index/index.phtml:18 69 | msgid "Explore ZF2 Modules" 70 | msgstr "" 71 | 72 | #: ../view/application/index/index.phtml:22 73 | msgid "Help & Support" 74 | msgstr "" 75 | 76 | #: ../view/application/index/index.phtml:23 77 | #, php-format 78 | msgid "If you need any help or support while developing with ZF2, you may reach us via IRC: %s#zftalk on Freenode%s. We'd love to hear any questions or feedback you may have regarding the beta releases. Alternatively, you may subscribe and post questions to the %smailing lists%s." 79 | msgstr "" 80 | 81 | #: ../view/application/index/index.phtml:24 82 | msgid "Ping us on IRC" 83 | msgstr "" 84 | 85 | #: ../view/error/index.phtml:1 86 | msgid "An error occurred" 87 | msgstr "" 88 | 89 | #: ../view/error/index.phtml:8 90 | msgid "Additional information" 91 | msgstr "" 92 | 93 | #: ../view/error/index.phtml:11 94 | #: ../view/error/index.phtml:35 95 | msgid "File" 96 | msgstr "" 97 | 98 | #: ../view/error/index.phtml:15 99 | #: ../view/error/index.phtml:39 100 | msgid "Message" 101 | msgstr "" 102 | 103 | #: ../view/error/index.phtml:19 104 | #: ../view/error/index.phtml:43 105 | #: ../view/error/404.phtml:55 106 | msgid "Stack trace" 107 | msgstr "" 108 | 109 | #: ../view/error/index.phtml:29 110 | msgid "Previous exceptions" 111 | msgstr "" 112 | 113 | #: ../view/error/index.phtml:58 114 | msgid "No Exception available" 115 | msgstr "" 116 | 117 | #: ../view/error/404.phtml:1 118 | msgid "A 404 error occurred" 119 | msgstr "" 120 | 121 | #: ../view/error/404.phtml:10 122 | msgid "The requested controller was unable to dispatch the request." 123 | msgstr "" 124 | 125 | #: ../view/error/404.phtml:13 126 | msgid "The requested controller could not be mapped to an existing controller class." 127 | msgstr "" 128 | 129 | #: ../view/error/404.phtml:16 130 | msgid "The requested controller was not dispatchable." 131 | msgstr "" 132 | 133 | #: ../view/error/404.phtml:19 134 | msgid "The requested URL could not be matched by routing." 135 | msgstr "" 136 | 137 | #: ../view/error/404.phtml:22 138 | msgid "We cannot determine at this time why a 404 was generated." 139 | msgstr "" 140 | 141 | #: ../view/error/404.phtml:34 142 | msgid "Controller" 143 | msgstr "" 144 | 145 | #: ../view/error/404.phtml:41 146 | #, php-format 147 | msgid "resolves to %s" 148 | msgstr "" 149 | 150 | #: ../view/error/404.phtml:51 151 | msgid "Exception" 152 | msgstr "" 153 | 154 | -------------------------------------------------------------------------------- /module/Application/language/es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/module/Application/language/es_ES.mo -------------------------------------------------------------------------------- /module/Application/language/es_ES.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: ZendSkeletonApplication\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2012-07-06 19:07+0100\n" 6 | "PO-Revision-Date: 2012-07-06 19:09+0100\n" 7 | "Last-Translator: Adolfo Abegg \n" 8 | "Language-Team: ZF Contributors \n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "Language: \n" 13 | "X-Poedit-KeywordsList: translate\n" 14 | "X-Poedit-Basepath: .\n" 15 | "X-Poedit-Language: Spanish\n" 16 | "X-Poedit-Country: SPAIN\n" 17 | "X-Poedit-SearchPath-0: ..\n" 18 | 19 | msgid "Skeleton Application" 20 | msgstr "Aplicación Esqueleto" 21 | 22 | msgid "Home" 23 | msgstr "Inicio" 24 | 25 | msgid "All rights reserved." 26 | msgstr "Todos los derechos reservados" 27 | 28 | msgid "Welcome to %sZend Framework 2%s" 29 | msgstr "Bienvenido al %sZend Framework 2%s" 30 | 31 | msgid "Congratulations! You have successfully installed the %sZF2 Skeleton Application%s. You are currently running Zend Framework version %s. This skeleton can serve as a simple starting point for you to begin building your application on ZF2." 32 | msgstr "¡Felicitaciones! Haz instalado correctamente el %sla aplicación esqueleto del ZF2%s. Estás corriendo la versión %s del Zend Framework. Este esqueleto te servirá como un punto de inicio sencillo para empezar a construir tu aplicación con el ZF2." 33 | 34 | msgid "Fork Zend Framework 2 on GitHub" 35 | msgstr "Hacer un Fork del Zend Framework 2 en GitHub" 36 | 37 | msgid "Follow Development" 38 | msgstr "Seguir el Desarrollo" 39 | 40 | msgid "Zend Framework 2 is under active development. If you are interested in following the development of ZF2, there is a special ZF2 portal on the official Zend Framework website which provides links to the ZF2 %swiki%s, %sdev blog%s, %sissue tracker%s, and much more. This is a great resource for staying up to date with the latest developments!" 41 | msgstr "El Zend Framework 2 está en pleno desarrollo. Si estás interesado en seguir el desarrollo del ZF2, existe un portal especial para el ZF2 en el sitio web oficial del Zend Framework el cual provee enlaces %sa la Wiki%s, %sal Blog de desarrollo%s, %sal issue tracker%s y mucho más. Este es un gran recurso para mantenerte al día con los últimos avances en el desarrollo!" 42 | 43 | msgid "ZF2 Development Portal" 44 | msgstr "Portal de Desarrollo del ZF2" 45 | 46 | msgid "Discover Modules" 47 | msgstr "Descubre Módulos" 48 | 49 | msgid "The community is working on developing a community site to serve as a repository and gallery for ZF2 modules. The project is available %son GitHub%s. The site is currently live and currently contains a list of some of the modules already available for ZF2." 50 | msgstr "La comunidad está trabajando en el desarrollo de una web comunitaria que servirá de repositorio y galería de los módulos del ZF2. El proyecto está disponible %sen GitHub%s. El sitio web está en línea y actualmente posee una lista de algunos módulos que ya están disponibles para el ZF2." 51 | 52 | msgid "Explore ZF2 Modules" 53 | msgstr "Explora los módulos del ZF2" 54 | 55 | msgid "Help & Support" 56 | msgstr "Ayuda & Soporte" 57 | 58 | msgid "If you need any help or support while developing with ZF2, you may reach us via IRC: %s#zftalk on Freenode%s. We'd love to hear any questions or feedback you may have regarding the beta releases. Alternatively, you may subscribe and post questions to the %smailing lists%s." 59 | msgstr "Si necesitas alguna ayuda o soporte mientras estás desarrollando con el ZF2, puedes encontrarnos via IRC: %s#zftalk en Freenode%s. Nos encantaría leer tus preguntas o cualquier feedback que puedas tener en relación a los lanzamientos de las versiones beta. También puedes subscribirte y enviar preguntas %sa la lista de correos%s" 60 | 61 | msgid "Ping us on IRC" 62 | msgstr "Escríbenos en el IRC" 63 | 64 | msgid "An error occurred" 65 | msgstr "Ha ocurrido un error" 66 | 67 | msgid "Additional information" 68 | msgstr "Información adicional" 69 | 70 | msgid "File" 71 | msgstr "Archivo" 72 | 73 | msgid "Message" 74 | msgstr "Mensaje" 75 | 76 | msgid "Stack trace" 77 | msgstr "Seguimiento de la pila (stack trace)" 78 | 79 | msgid "Previous exceptions" 80 | msgstr "Excepciones anteriores" 81 | 82 | msgid "No Exception available" 83 | msgstr "No hay ninguna Excepción disponible." 84 | 85 | msgid "A 404 error occurred" 86 | msgstr "Ha ocurrido un error 404" 87 | 88 | msgid "The requested controller was unable to dispatch the request." 89 | msgstr "El controlador solicitado no pudo ejecutar la petición." 90 | 91 | msgid "The requested controller could not be mapped to an existing controller class." 92 | msgstr "El controlador solicitado no se pudo mapear con una clase de controlador existente." 93 | 94 | msgid "The requested controller was not dispatchable." 95 | msgstr "El controlador solicitado no es ejecutable." 96 | 97 | msgid "The requested URL could not be matched by routing." 98 | msgstr "El ruteador no ha encontrado la ruta para la URL solicitada." 99 | 100 | msgid "We cannot determine at this time why a 404 was generated." 101 | msgstr "No pudimos determinar por qué un error 404 ha sido generado." 102 | 103 | msgid "Controller" 104 | msgstr "Controller" 105 | 106 | msgid "resolves to %s" 107 | msgstr "se resuelve a %s" 108 | 109 | msgid "Exception" 110 | msgstr "Excepción" 111 | 112 | -------------------------------------------------------------------------------- /module/Application/language/fr_CA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/module/Application/language/fr_CA.mo -------------------------------------------------------------------------------- /module/Application/language/fr_CA.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: ZendSkeletonApplication\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2012-07-06 01:46-0500\n" 6 | "PO-Revision-Date: 2012-07-06 02:08-0500\n" 7 | "Last-Translator: EBB Dev \n" 8 | "Language-Team: ZF Contibutors \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Poedit-KeywordsList: translate\n" 14 | "X-Poedit-Language: French\n" 15 | "X-Poedit-Country: CANADA\n" 16 | "X-Poedit-Basepath: .\n" 17 | "X-Poedit-SearchPath-0: ..\n" 18 | 19 | #: ../view/error/404.phtml:1 20 | msgid "A 404 error occurred" 21 | msgstr "Une erreur 404 est survenue" 22 | 23 | #: ../view/error/404.phtml:10 24 | msgid "The requested controller was unable to dispatch the request." 25 | msgstr "Le contrôleur demandé n'a pas pu acheminer la requête." 26 | 27 | #: ../view/error/404.phtml:13 28 | msgid "The requested controller could not be mapped to an existing controller class." 29 | msgstr "Le contrôleur demandé ne correspond pas à une classe contrôleur existante." 30 | 31 | #: ../view/error/404.phtml:16 32 | msgid "The requested controller was not dispatchable." 33 | msgstr "Le contrôleur demandé ne peut être acheminé." 34 | 35 | #: ../view/error/404.phtml:19 36 | msgid "The requested URL could not be matched by routing." 37 | msgstr "L'URL demandée n'a pas pu trouver de route correspondante." 38 | 39 | #: ../view/error/404.phtml:22 40 | msgid "We cannot determine at this time why a 404 was generated." 41 | msgstr "Nous ne pouvons pas déterminer pour le moment pourquoi une 404 a été générée." 42 | 43 | #: ../view/error/404.phtml:34 44 | msgid "Controller" 45 | msgstr "Contrôleur" 46 | 47 | #: ../view/error/404.phtml:41 48 | #, php-format 49 | msgid "resolves to %s" 50 | msgstr "résout en %s" 51 | 52 | #: ../view/error/404.phtml:51 53 | msgid "Exception" 54 | msgstr "Exception" 55 | 56 | #: ../view/error/404.phtml:55 57 | #: ../view/error/index.phtml:19 58 | #: ../view/error/index.phtml:43 59 | msgid "Stack trace" 60 | msgstr "Pile d'exécution" 61 | 62 | #: ../view/error/index.phtml:1 63 | msgid "An error occurred" 64 | msgstr "Une erreur est survenue" 65 | 66 | #: ../view/error/index.phtml:8 67 | msgid "Additional information" 68 | msgstr "Informations complémentaires" 69 | 70 | #: ../view/error/index.phtml:11 71 | #: ../view/error/index.phtml:35 72 | msgid "File" 73 | msgstr "Fichier" 74 | 75 | #: ../view/error/index.phtml:15 76 | #: ../view/error/index.phtml:39 77 | msgid "Message" 78 | msgstr "Message" 79 | 80 | #: ../view/error/index.phtml:29 81 | msgid "Previous exceptions" 82 | msgstr "Exceptions précédentes" 83 | 84 | #: ../view/error/index.phtml:58 85 | msgid "No Exception available" 86 | msgstr "Aucune exception disponible" 87 | 88 | #: ../view/application/index/index.phtml:2 89 | #, php-format 90 | msgid "Welcome to %sZend Framework 2%s" 91 | msgstr "Bienvenue dans %sZend Framework 2%s" 92 | 93 | #: ../view/application/index/index.phtml:3 94 | #, php-format 95 | msgid "Congratulations! You have successfully installed the %sZF2 Skeleton Application%s. You are currently running Zend Framework version %s. This skeleton can serve as a simple starting point for you to begin building your application on ZF2." 96 | msgstr "Félicitations ! Vous avez installé %sZF2 Skeleton Application%s avec succès. Vous utilisez actuellement Zend Framework version %s. Cette structure peut vous servir comme point de départ simple pour démarrer la construction de votre application avec ZF2." 97 | 98 | #: ../view/application/index/index.phtml:4 99 | msgid "Fork Zend Framework 2 on GitHub" 100 | msgstr "Faites un Fork de Zend Framework 2 sur GitHub" 101 | 102 | #: ../view/application/index/index.phtml:10 103 | msgid "Follow Development" 104 | msgstr "Suivre le développement" 105 | 106 | #: ../view/application/index/index.phtml:11 107 | #, php-format 108 | msgid "Zend Framework 2 is under active development. If you are interested in following the development of ZF2, there is a special ZF2 portal on the official Zend Framework website which provides links to the ZF2 %swiki%s, %sdev blog%s, %sissue tracker%s, and much more. This is a great resource for staying up to date with the latest developments!" 109 | msgstr "Zend Framework 2 est en cours de développement. Si vous êtes intéressé pour suivre l'évolution de ZF2, il existe un portail dédié à ZF2 sur le site officiel Zend Framework qui propose des liens vers le %swiki%s ZF2, le %sblogue de dev%s, le %ssuivi des problèmes%s, et bien plus encore. Il s'agit d'une excellente ressource pour rester à jour sur les dernières évolutions !" 110 | 111 | #: ../view/application/index/index.phtml:12 112 | msgid "ZF2 Development Portal" 113 | msgstr "Portail sur le développement de ZF2" 114 | 115 | #: ../view/application/index/index.phtml:16 116 | msgid "Discover Modules" 117 | msgstr "Découvrez les modules" 118 | 119 | #: ../view/application/index/index.phtml:17 120 | #, php-format 121 | msgid "The community is working on developing a community site to serve as a repository and gallery for ZF2 modules. The project is available %son GitHub%s. The site is currently live and currently contains a list of some of the modules already available for ZF2." 122 | msgstr "La communauté travaille sur le développement d'un site communautaire avec l'objectif de servir de dépôt et de galerie pour les modules ZF2. Le projet est disponible %ssur GitHub%s. Le site est déjà en ligne, et contient une liste non exhaustive des modules déjà disponibles pour ZF2." 123 | 124 | #: ../view/application/index/index.phtml:18 125 | msgid "Explore ZF2 Modules" 126 | msgstr "Explorer les modules ZF2" 127 | 128 | #: ../view/application/index/index.phtml:22 129 | msgid "Help & Support" 130 | msgstr "Aide & support" 131 | 132 | #: ../view/application/index/index.phtml:23 133 | #, php-format 134 | msgid "If you need any help or support while developing with ZF2, you may reach us via IRC: %s#zftalk on Freenode%s. We'd love to hear any questions or feedback you may have regarding the beta releases. Alternatively, you may subscribe and post questions to the %smailing lists%s." 135 | msgstr "Si vous avez besoin d'aide ou de soutient en développant avec ZF2, vous pouvez nous joindre sur IRC : %s#zftalk sur Freenode%s. Nous aimerions connaître vos questions ou les commentaires que vous pourriez avoir au sujet des versions beta. Sinon, vous pouvez vous abonner, et poser des questions sur la %sliste de diffusion%s." 136 | 137 | #: ../view/application/index/index.phtml:24 138 | msgid "Ping us on IRC" 139 | msgstr "Rejoignez-nous sur IRC" 140 | 141 | #: ../view/layout/layout.phtml:6 142 | #: ../view/layout/layout.phtml:33 143 | msgid "Skeleton Application" 144 | msgstr "Skeleton Application" 145 | 146 | #: ../view/layout/layout.phtml:36 147 | msgid "Home" 148 | msgstr "Accueil" 149 | 150 | #: ../view/layout/layout.phtml:50 151 | msgid "All rights reserved." 152 | msgstr "Tous droits réservés." 153 | 154 | -------------------------------------------------------------------------------- /module/Application/language/fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/module/Application/language/fr_FR.mo -------------------------------------------------------------------------------- /module/Application/language/fr_FR.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: ZendSkeletonApplication\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2012-07-05 22:32-0700\n" 6 | "PO-Revision-Date: 2012-07-05 23:36-0700\n" 7 | "Last-Translator: Evan Coury \n" 8 | "Language-Team: ZF Contibutors \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Poedit-KeywordsList: translate\n" 14 | "X-Poedit-Language: French\n" 15 | "X-Poedit-Country: FRANCE\n" 16 | "X-Poedit-Basepath: .\n" 17 | "X-Poedit-SearchPath-0: ..\n" 18 | 19 | #: ../view/layout/layout.phtml:6 20 | #: ../view/layout/layout.phtml:33 21 | msgid "Skeleton Application" 22 | msgstr "Skeleton Application" 23 | 24 | #: ../view/layout/layout.phtml:36 25 | msgid "Home" 26 | msgstr "Accueil" 27 | 28 | #: ../view/layout/layout.phtml:50 29 | msgid "All rights reserved." 30 | msgstr "Tous droits réservés." 31 | 32 | #: ../view/application/index/index.phtml:2 33 | #, php-format 34 | msgid "Welcome to %sZend Framework 2%s" 35 | msgstr "Bienvenue dans le %sZend Framework 2%s" 36 | 37 | #: ../view/application/index/index.phtml:3 38 | #, php-format 39 | msgid "Congratulations! You have successfully installed the %sZF2 Skeleton Application%s. You are currently running Zend Framework version %s. This skeleton can serve as a simple starting point for you to begin building your application on ZF2." 40 | msgstr "Félicitations ! Vous avez installé avec succès le %sZF2 Skeleton Application%s. Vous utilisez actuellement Zend Framework version %s. Cette structure peut vous servir comme un point de départ simple pour démarrer la construction de votre application avec ZF2." 41 | 42 | #: ../view/application/index/index.phtml:4 43 | msgid "Fork Zend Framework 2 on GitHub" 44 | msgstr "Faites un Fork de Zend Framework 2 sur GitHub" 45 | 46 | #: ../view/application/index/index.phtml:10 47 | msgid "Follow Development" 48 | msgstr "Suivre le développement" 49 | 50 | #: ../view/application/index/index.phtml:11 51 | #, php-format 52 | msgid "Zend Framework 2 is under active development. If you are interested in following the development of ZF2, there is a special ZF2 portal on the official Zend Framework website which provides links to the ZF2 %swiki%s, %sdev blog%s, %sissue tracker%s, and much more. This is a great resource for staying up to date with the latest developments!" 53 | msgstr "Zend Framework 2 est en cours de développement. Si vous êtes intéressé pour suivre l'évolution de ZF2, il existe un portail dédié à ZF2 sur le site officiel Zend Framework qui propose des liens vers le %swiki%s ZF2, %sdev blog%s, %ssuivi des problèmes%s, et bien plus encore. Il s'agit d'une excellente ressource pour rester à jour sur les dernières évolutions !" 54 | 55 | #: ../view/application/index/index.phtml:12 56 | msgid "ZF2 Development Portal" 57 | msgstr "Portail sur le développement de ZF2" 58 | 59 | #: ../view/application/index/index.phtml:16 60 | msgid "Discover Modules" 61 | msgstr "Découvrez les modules" 62 | 63 | #: ../view/application/index/index.phtml:17 64 | #, php-format 65 | msgid "The community is working on developing a community site to serve as a repository and gallery for ZF2 modules. The project is available %son GitHub%s. The site is currently live and currently contains a list of some of the modules already available for ZF2." 66 | msgstr "La communauté travaille sur le développement d'un site communautaire avec l'objectif de servir de dépôt et de galerie pour les modules ZF2. Le projet est disponible %ssur GitHub%s. Le site est déjà en ligne, et contient une liste non exhaustive des modules déjà disponibles pour ZF2." 67 | 68 | #: ../view/application/index/index.phtml:18 69 | msgid "Explore ZF2 Modules" 70 | msgstr "Explorer les modules ZF2" 71 | 72 | #: ../view/application/index/index.phtml:22 73 | msgid "Help & Support" 74 | msgstr "Aide & support" 75 | 76 | #: ../view/application/index/index.phtml:23 77 | #, php-format 78 | msgid "If you need any help or support while developing with ZF2, you may reach us via IRC: %s#zftalk on Freenode%s. We'd love to hear any questions or feedback you may have regarding the beta releases. Alternatively, you may subscribe and post questions to the %smailing lists%s." 79 | msgstr "Si vous avez besoin d'aide ou de support en développant avec ZF2, vous pouvez nous joindre sur IRC : %s#zftalk sur Freenode%s. Nous aimerions avoir vos questions ou vos commentaires que vous pourriez avoir au sujet des versions bêta. Sinon, vous pouvez vous abonner, et poser des questions sur la %sliste de diffusion%s." 80 | 81 | #: ../view/application/index/index.phtml:24 82 | msgid "Ping us on IRC" 83 | msgstr "Rejoignez-nous sur IRC" 84 | 85 | #: ../view/error/index.phtml:1 86 | msgid "An error occurred" 87 | msgstr "Une erreur est survenue" 88 | 89 | #: ../view/error/index.phtml:8 90 | msgid "Additional information" 91 | msgstr "Informations complémentaires" 92 | 93 | #: ../view/error/index.phtml:11 94 | #: ../view/error/index.phtml:35 95 | msgid "File" 96 | msgstr "Fichier" 97 | 98 | #: ../view/error/index.phtml:15 99 | #: ../view/error/index.phtml:39 100 | msgid "Message" 101 | msgstr "Message" 102 | 103 | #: ../view/error/index.phtml:19 104 | #: ../view/error/index.phtml:43 105 | #: ../view/error/404.phtml:55 106 | msgid "Stack trace" 107 | msgstr "Pile d'exécution" 108 | 109 | #: ../view/error/index.phtml:29 110 | msgid "Previous exceptions" 111 | msgstr "Exceptions précédentes" 112 | 113 | #: ../view/error/index.phtml:58 114 | msgid "No Exception available" 115 | msgstr "Aucune exception disponible" 116 | 117 | #: ../view/error/404.phtml:1 118 | msgid "A 404 error occurred" 119 | msgstr "Une erreur 404 est survenue" 120 | 121 | #: ../view/error/404.phtml:10 122 | msgid "The requested controller was unable to dispatch the request." 123 | msgstr "Le contrôleur demandé n'a pas pu dispatcher la requête." 124 | 125 | #: ../view/error/404.phtml:13 126 | msgid "The requested controller could not be mapped to an existing controller class." 127 | msgstr "Le contrôleur demandé ne correspond pas à une classe existante de contrôleur." 128 | 129 | #: ../view/error/404.phtml:16 130 | msgid "The requested controller was not dispatchable." 131 | msgstr "Le contrôleur demandé n'est pas dispatchable." 132 | 133 | #: ../view/error/404.phtml:19 134 | msgid "The requested URL could not be matched by routing." 135 | msgstr "L'URL demandée n'a pas pu trouver de route correspondante." 136 | 137 | #: ../view/error/404.phtml:22 138 | msgid "We cannot determine at this time why a 404 was generated." 139 | msgstr "Nous ne pouvons pas déterminer pour le moment pourquoi une 404 a été générée." 140 | 141 | #: ../view/error/404.phtml:34 142 | msgid "Controller" 143 | msgstr "Contrôleur" 144 | 145 | #: ../view/error/404.phtml:41 146 | #, php-format 147 | msgid "resolves to %s" 148 | msgstr "résout en %s" 149 | 150 | #: ../view/error/404.phtml:51 151 | msgid "Exception" 152 | msgstr "Exception" 153 | 154 | -------------------------------------------------------------------------------- /module/Application/language/it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/module/Application/language/it_IT.mo -------------------------------------------------------------------------------- /module/Application/language/it_IT.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: ZendSkeletonApplication\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2012-07-05 23:45-0700\n" 6 | "PO-Revision-Date: 2012-07-12 22:14+0100\n" 7 | "Last-Translator: Marco Pivetta \n" 8 | "Language-Team: ZF Contributors \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Poedit-KeywordsList: translate\n" 14 | "X-Poedit-Basepath: .\n" 15 | "X-Poedit-Language: German\n" 16 | "X-Poedit-Country: GERMANY\n" 17 | "X-Poedit-Bookmarks: -1,-1,-1,-1,-1,-1,5,-1,-1,-1\n" 18 | "X-Poedit-SearchPath-0: ..\n" 19 | 20 | #: ../view/layout/layout.phtml:6 21 | #: ../view/layout/layout.phtml:33 22 | msgid "Skeleton Application" 23 | msgstr "" 24 | 25 | #: ../view/layout/layout.phtml:36 26 | msgid "Home" 27 | msgstr "Pagina iniziale" 28 | 29 | #: ../view/layout/layout.phtml:50 30 | msgid "All rights reserved." 31 | msgstr "Tutti i diritti sono riservati." 32 | 33 | #: ../view/application/index/index.phtml:2 34 | #, php-format 35 | msgid "Welcome to %sZend Framework 2%s" 36 | msgstr "Benvenuto in %sZend Framework 2%s" 37 | 38 | #: ../view/application/index/index.phtml:3 39 | #, php-format 40 | msgid "Congratulations! You have successfully installed the %sZF2 Skeleton Application%s. You are currently running Zend Framework version %s. This skeleton can serve as a simple starting point for you to begin building your application on ZF2." 41 | msgstr "Congratulazioni! Hai appena installato con successo %sZF2 Skeleton Application%s e stai utilizzando la versione %s di Zend Framework. Questa struttura può servirti come semplice punto di riferimento per iniziare a costruire un'applicazione basata su ZF2." 42 | 43 | #: ../view/application/index/index.phtml:4 44 | msgid "Fork Zend Framework 2 on GitHub" 45 | msgstr "Crea un fork di Zend Framework 2 su GitHub" 46 | 47 | #: ../view/application/index/index.phtml:10 48 | msgid "Follow Development" 49 | msgstr "Segui lo sviluppo" 50 | 51 | #: ../view/application/index/index.phtml:11 52 | #, php-format 53 | msgid "Zend Framework 2 is under active development. If you are interested in following the development of ZF2, there is a special ZF2 portal on the official Zend Framework website which provides links to the ZF2 %swiki%s, %sdev blog%s, %sissue tracker%s, and much more. This is a great resource for staying up to date with the latest developments!" 54 | msgstr "Zend Framework 2 è in forte sviluppo. Se sei interessato a seguire lo sviluppo di ZF2, è presente un portale che fornisce link al %swiki%s, al %sdev blog%s, all'%sissue tracker%s e a molto altro riguardo a ZF2. Il Portale è un'ottima risorsa per rimanere aggiornati con gli ultimi sviluppi!" 55 | 56 | #: ../view/application/index/index.phtml:12 57 | msgid "ZF2 Development Portal" 58 | msgstr "Portale sullo sviluppo di ZF2" 59 | 60 | #: ../view/application/index/index.phtml:16 61 | msgid "Discover Modules" 62 | msgstr "Scopri i Moduli" 63 | 64 | #: ../view/application/index/index.phtml:17 65 | #, php-format 66 | msgid "The community is working on developing a community site to serve as a repository and gallery for ZF2 modules. The project is available %son GitHub%s. The site is currently live and currently contains a list of some of the modules already available for ZF2." 67 | msgstr "La community sta lavorando allo sviluppo di un sito che deve servire come raccolta e gallery di Moduli per ZF2. Il progetto è disponibile %son Github%s. Il sito è visitabile e al momento contiene una lista di alcuni dei Moduli già disponibili per ZF2." 68 | 69 | #: ../view/application/index/index.phtml:18 70 | msgid "Explore ZF2 Modules" 71 | msgstr "Esplora i Moduli di ZF2" 72 | 73 | #: ../view/application/index/index.phtml:22 74 | msgid "Help & Support" 75 | msgstr "Aiuto & Supporto" 76 | 77 | #: ../view/application/index/index.phtml:23 78 | #, php-format 79 | msgid "If you need any help or support while developing with ZF2, you may reach us via IRC: %s#zftalk on Freenode%s. We'd love to hear any questions or feedback you may have regarding the beta releases. Alternatively, you may subscribe and post questions to the %smailing lists%s." 80 | msgstr "Qualora ti servisse aiuto o supporto mentre sviluppi con ZF2, puoi contattarci tramite IRC: %s#zftalk on Freenode%s. Ci piacerebbe moltissimo ricevere le tue domande o qualunque feedback tu possa avere riguardo alle beta release. In alternativa, puoi iscriverti e inviare domande alla %smailing lists%s." 81 | 82 | #: ../view/application/index/index.phtml:24 83 | msgid "Ping us on IRC" 84 | msgstr "Contattaci su IRC" 85 | 86 | #: ../view/error/index.phtml:1 87 | msgid "An error occurred" 88 | msgstr "Si è verificato un errore" 89 | 90 | #: ../view/error/index.phtml:8 91 | msgid "Additional information" 92 | msgstr "Informazioni aggiuntive" 93 | 94 | #: ../view/error/index.phtml:11 95 | #: ../view/error/index.phtml:35 96 | msgid "File" 97 | msgstr "File" 98 | 99 | #: ../view/error/index.phtml:15 100 | #: ../view/error/index.phtml:39 101 | msgid "Message" 102 | msgstr "Messaggio" 103 | 104 | #: ../view/error/index.phtml:19 105 | #: ../view/error/index.phtml:43 106 | #: ../view/error/404.phtml:55 107 | msgid "Stack trace" 108 | msgstr "" 109 | 110 | #: ../view/error/index.phtml:29 111 | msgid "Previous exceptions" 112 | msgstr "Eccezioni precedenti" 113 | 114 | #: ../view/error/index.phtml:58 115 | msgid "No Exception available" 116 | msgstr "Non è disponibile alcuna eccezione" 117 | 118 | #: ../view/error/404.phtml:1 119 | msgid "A 404 error occurred" 120 | msgstr "Si è verificato un errore 404" 121 | 122 | #: ../view/error/404.phtml:10 123 | msgid "The requested controller was unable to dispatch the request." 124 | msgstr "Il controller richiesto non è stato in grado di elaborare la richiesta." 125 | 126 | #: ../view/error/404.phtml:13 127 | msgid "The requested controller could not be mapped to an existing controller class." 128 | msgstr "Non è stato possibile mappare il controller richiesto ad una classe di tipo controller." 129 | 130 | #: ../view/error/404.phtml:16 131 | msgid "The requested controller was not dispatchable." 132 | msgstr "Il controller richiesto non è un oggetto dispatchable." 133 | 134 | #: ../view/error/404.phtml:19 135 | msgid "The requested URL could not be matched by routing." 136 | msgstr "Non è stato possibile effettuare il match dell'indirizzo richiesto tramite routing." 137 | 138 | #: ../view/error/404.phtml:22 139 | msgid "We cannot determine at this time why a 404 was generated." 140 | msgstr "In questo momento non siamo in grado di determinare perchè sia stato generato un 404." 141 | 142 | #: ../view/error/404.phtml:34 143 | msgid "Controller" 144 | msgstr "Controller" 145 | 146 | #: ../view/error/404.phtml:41 147 | #, php-format 148 | msgid "resolves to %s" 149 | msgstr "viene risolto in %s" 150 | 151 | #: ../view/error/404.phtml:51 152 | msgid "Exception" 153 | msgstr "Eccezione" 154 | 155 | -------------------------------------------------------------------------------- /module/Application/language/ja_JP.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/module/Application/language/ja_JP.mo -------------------------------------------------------------------------------- /module/Application/language/ja_JP.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: ZendSkeletonApplication\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2012-07-05 19:30-0700\n" 6 | "PO-Revision-Date: 2012-07-15 08:20+0900\n" 7 | "Last-Translator: sasezaki \n" 8 | "Language-Team: Japanese\n" 9 | "Language: ja\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Poedit-KeywordsList: translate\n" 14 | "X-Poedit-Language: Japanese\n" 15 | "X-Poedit-Country: Japan\n" 16 | "X-Poedit-Basepath: .\n" 17 | "X-Poedit-SearchPath-0: ..\n" 18 | 19 | #: ../view/application/index/index.phtml:2 20 | #, php-format 21 | msgid "Welcome to %sZend Framework 2%s" 22 | msgstr "%sZend Framework 2%s へようこそ" 23 | 24 | #: ../view/application/index/index.phtml:3 25 | #, php-format 26 | msgid "Congratulations! You have successfully installed the %sZF2 Skeleton Application%s. You are currently running Zend Framework version %s. This skeleton can serve as a simple starting point for you to begin building your application on ZF2." 27 | msgstr "おめでとうございます! %sZF2 Skeleton Application%s のインストールに成功しました。 あなたは Zend Framework version %s を動作させています。このスケルトンはZF2上でのアプリケーション構築を始めるためにシンプルなスタートポイントを提供します。" 28 | 29 | #: ../view/application/index/index.phtml:4 30 | msgid "Fork Zend Framework 2 on GitHub" 31 | msgstr "GitHub で Zend Framework 2 をフォーク" 32 | 33 | #: ../view/application/index/index.phtml:10 34 | msgid "Follow Development" 35 | msgstr "開発を追う" 36 | 37 | #: ../view/application/index/index.phtml:11 38 | #, php-format 39 | msgid "Zend Framework 2 is under active development. If you are interested in following the development of ZF2, there is a special ZF2 portal on the official Zend Framework website which provides links to the ZF2 %swiki%s, %sdev blog%s, %sissue tracker%s, and much more. This is a great resource for staying up to date with the latest developments!" 40 | msgstr "Zend Framework 2 は鋭意開発中です。ZF2の開発進行にご関心がおありでしょうか、Zend Framework公式ウェブサイト上ではZF2特別ポータルがあり、 %swiki%s、 %sdev blog%s、 %sissue tracker%s、 などのZF2関連のものを提供しています。最新の開発状況に追随するためのすばらしいリソースです。" 41 | 42 | #: ../view/application/index/index.phtml:12 43 | msgid "ZF2 Development Portal" 44 | msgstr "ZF2 開発ポータル" 45 | 46 | #: ../view/application/index/index.phtml:16 47 | msgid "Discover Modules" 48 | msgstr "モジュールを見つける" 49 | 50 | #: ../view/application/index/index.phtml:17 51 | #, php-format 52 | msgid "The community is working on developing a community site to serve as a repository and gallery for ZF2 modules. The project is available %son GitHub%s. The site is currently live and currently contains a list of some of the modules already available for ZF2." 53 | msgstr "コミュニティーはZF2モジュールのためのリポジトリとギャラリーを提供するコミュニティーサイトを開発中です。プロジェクトは %s GitHub%s で利用可能です。サイトは現在運営されており、ZF2ですでに利用可能なモジュールのリストを持っています。" 54 | 55 | #: ../view/application/index/index.phtml:18 56 | msgid "Explore ZF2 Modules" 57 | msgstr "ZF2モジュールを探す" 58 | 59 | #: ../view/application/index/index.phtml:22 60 | msgid "Help & Support" 61 | msgstr "ヘルプとサポート" 62 | 63 | #: ../view/application/index/index.phtml:23 64 | #, php-format 65 | msgid "If you need any help or support while developing with ZF2, you may reach us via IRC: %s#zftalk on Freenode%s. We'd love to hear any questions or feedback you may have regarding the beta releases. Alternatively, you may subscribe and post questions to the %smailing lists%s." 66 | msgstr "ZF2 で開発中に何らかのお手伝いやサポートが必要な場合、IRC を通じて私たちと連絡することができます。: %s#zftalk on Freenode%s ベータ版についてあなたが抱えるかもしれない質問やフィードバックを何でも聞きたいと望みます。あるいは、%smailing lists%s を購読したり質問をポストしたりできます。" 67 | 68 | #: ../view/application/index/index.phtml:24 69 | msgid "Ping us on IRC" 70 | msgstr "IRC で呼び出す" 71 | 72 | #: ../view/error/index.phtml:1 73 | msgid "An error occurred" 74 | msgstr "エラーが発生しました" 75 | 76 | #: ../view/error/index.phtml:8 77 | msgid "Additional information" 78 | msgstr "追加の情報" 79 | 80 | #: ../view/error/index.phtml:11 81 | #: ../view/error/index.phtml:35 82 | msgid "File" 83 | msgstr "ファイル" 84 | 85 | #: ../view/error/index.phtml:15 86 | #: ../view/error/index.phtml:39 87 | msgid "Message" 88 | msgstr "メッセージ" 89 | 90 | #: ../view/error/index.phtml:19 91 | #: ../view/error/index.phtml:43 92 | #: ../view/error/404.phtml:55 93 | msgid "Stack trace" 94 | msgstr "スタックトレース" 95 | 96 | #: ../view/error/index.phtml:29 97 | msgid "Previous exceptions" 98 | msgstr "前の例外" 99 | 100 | #: ../view/error/index.phtml:58 101 | msgid "No Exception available" 102 | msgstr "例外が利用できません" 103 | 104 | #: ../view/error/404.phtml:1 105 | msgid "A 404 error occurred" 106 | msgstr "404エラーが発生しました" 107 | 108 | #: ../view/error/404.phtml:10 109 | msgid "The requested controller was unable to dispatch the request." 110 | msgstr "要求されたコントローラはリクエストをディスパッチできませんでした。" 111 | 112 | #: ../view/error/404.phtml:13 113 | msgid "The requested controller could not be mapped to an existing controller class." 114 | msgstr "要求されたコントローラは存在するコントローラクラスにマッピングできませんでした。" 115 | 116 | #: ../view/error/404.phtml:16 117 | msgid "The requested controller was not dispatchable." 118 | msgstr "要求されたコントローラはディスパッチ不可能でした。" 119 | 120 | #: ../view/error/404.phtml:19 121 | msgid "The requested URL could not be matched by routing." 122 | msgstr "要求されたURLはルーティングにマッチしませんでした。" 123 | 124 | #: ../view/error/404.phtml:22 125 | msgid "We cannot determine at this time why a 404 was generated." 126 | msgstr "404が生成された理由について現時点で判断できません。" 127 | 128 | #: ../view/error/404.phtml:34 129 | msgid "Controller" 130 | msgstr "コントローラ" 131 | 132 | #: ../view/error/404.phtml:41 133 | #, php-format 134 | msgid "resolves to %s" 135 | msgstr "%s に解決" 136 | 137 | #: ../view/error/404.phtml:51 138 | msgid "Exception" 139 | msgstr "例外" 140 | 141 | -------------------------------------------------------------------------------- /module/Application/language/nb_NO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/module/Application/language/nb_NO.mo -------------------------------------------------------------------------------- /module/Application/language/nb_NO.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: ZendSkeletonApplication\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2012-07-05 22:17-0700\n" 6 | "PO-Revision-Date: 2012-10-20 15:20+0100\n" 7 | "Last-Translator: Sven Anders Robbestad \n" 8 | "Language-Team: ZF Contibutors \n" 9 | "Language: en_US\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Poedit-KeywordsList: translate\n" 14 | "X-Poedit-Basepath: .\n" 15 | "X-Generator: Poedit 1.5.4\n" 16 | "X-Poedit-SearchPath-0: ..\n" 17 | 18 | #: ../view/layout/layout.phtml:6 ../view/layout/layout.phtml:33 19 | msgid "Skeleton Application" 20 | msgstr "Skjelettapplikasjon" 21 | 22 | #: ../view/layout/layout.phtml:36 23 | msgid "Home" 24 | msgstr "Hjem" 25 | 26 | #: ../view/layout/layout.phtml:50 27 | msgid "All rights reserved." 28 | msgstr "Alle rettigheter reservert." 29 | 30 | #: ../view/application/index/index.phtml:2 31 | #, php-format 32 | msgid "Welcome to %sZend Framework 2%s" 33 | msgstr "Velkommen til %sZend Framework 2%s" 34 | 35 | #: ../view/application/index/index.phtml:3 36 | #, php-format 37 | msgid "" 38 | "Congratulations! You have successfully installed the %sZF2 Skeleton " 39 | "Application%s. You are currently running Zend Framework version %s. This " 40 | "skeleton can serve as a simple starting point for you to begin building your " 41 | "application on ZF2." 42 | msgstr "" 43 | "Gratulerer! Du har installert %sZF2 Skjelettapplikasjon%s, Du bruker " 44 | "akkurat nå versjon %s av Zend Framework. Dette skjelettet kan brukes som et " 45 | "enkelt utgangspunkt når du begynner å bygge din applikasjon med ZF2." 46 | 47 | #: ../view/application/index/index.phtml:4 48 | msgid "Fork Zend Framework 2 on GitHub" 49 | msgstr "Forgren Zend Framework 2 på GitHub" 50 | 51 | #: ../view/application/index/index.phtml:10 52 | msgid "Follow Development" 53 | msgstr "Følg Utviklingen" 54 | 55 | #: ../view/application/index/index.phtml:11 56 | #, php-format 57 | msgid "" 58 | "Zend Framework 2 is under active development. If you are interested in " 59 | "following the development of ZF2, there is a special ZF2 portal on the " 60 | "official Zend Framework website which provides links to the ZF2 %swiki%s, " 61 | "%sdev blog%s, %sissue tracker%s, and much more. This is a great resource for " 62 | "staying up to date with the latest developments!" 63 | msgstr "" 64 | "ZF2 er i aktiv utvikling. Hvis du er interessert i å følge utviklingen så " 65 | "finnes det en spesiell ZF2-portal på den offisielle hjemmesiden til Zend " 66 | "Framework som inneholder lenker til ZF2 %swiki%s, %sdev blog%s, %sissue " 67 | "tracker%s, og mye mer. Det er en flott ressurs for deg som vil holde deg " 68 | "oppdatert!" 69 | 70 | #: ../view/application/index/index.phtml:12 71 | msgid "ZF2 Development Portal" 72 | msgstr "ZF2 Utviklingsportal" 73 | 74 | #: ../view/application/index/index.phtml:16 75 | msgid "Discover Modules" 76 | msgstr "Oppdag Moduler" 77 | 78 | #: ../view/application/index/index.phtml:17 79 | #, php-format 80 | msgid "" 81 | "The community is working on developing a community site to serve as a " 82 | "repository and gallery for ZF2 modules. The project is available %son GitHub" 83 | "%s. The site is currently live and currently contains a list of some of the " 84 | "modules already available for ZF2." 85 | msgstr "" 86 | "Nettsamfunnet arbeider med å utvikle en spesiell samfunnsside som kan tjene " 87 | "som et bibliotek og galleri for ZF2-moduler. Prosjektet er tilgjengelig %spå " 88 | "GitHub%s. Nettstedet inneholder for tiden en liste med enkelte av modulene " 89 | "som er tilgjengelig for Zend Framework 2." 90 | 91 | #: ../view/application/index/index.phtml:18 92 | msgid "Explore ZF2 Modules" 93 | msgstr "Utforsk ZF2-moduler" 94 | 95 | #: ../view/application/index/index.phtml:22 96 | msgid "Help & Support" 97 | msgstr "Hjelp & Støtte" 98 | 99 | #: ../view/application/index/index.phtml:23 100 | #, php-format 101 | msgid "" 102 | "If you need any help or support while developing with ZF2, you may reach us " 103 | "via IRC: %s#zftalk on Freenode%s. We'd love to hear any questions or " 104 | "feedback you may have regarding the beta releases. Alternatively, you may " 105 | "subscribe and post questions to the %smailing lists%s." 106 | msgstr "" 107 | "Hvis du trenger hjelp eller støtte mens du utvikler med ZF2 så kan du nå oss " 108 | "via IRC: %s#zftalk on Freenode%s. Vi hører gjerne fra deg om du har " 109 | "spørsmål eller tilbakemeldinger på betautgavene. Du kan også abonnere og " 110 | "stille spørsmål på våre %smailinglister%s." 111 | 112 | #: ../view/application/index/index.phtml:24 113 | msgid "Ping us on IRC" 114 | msgstr "Ping oss på IRC" 115 | 116 | #: ../view/error/index.phtml:1 117 | msgid "An error occurred" 118 | msgstr "En feil har oppstått" 119 | 120 | #: ../view/error/index.phtml:8 121 | msgid "Additional information" 122 | msgstr "Ytterligere informasjon" 123 | 124 | #: ../view/error/index.phtml:11 ../view/error/index.phtml:35 125 | msgid "File" 126 | msgstr "Fil" 127 | 128 | #: ../view/error/index.phtml:15 ../view/error/index.phtml:39 129 | msgid "Message" 130 | msgstr "Beskjed" 131 | 132 | #: ../view/error/index.phtml:19 ../view/error/index.phtml:43 133 | #: ../view/error/404.phtml:55 134 | msgid "Stack trace" 135 | msgstr "Stakkspor" 136 | 137 | #: ../view/error/index.phtml:29 138 | msgid "Previous exceptions" 139 | msgstr "Forrige unntak" 140 | 141 | #: ../view/error/index.phtml:58 142 | msgid "No Exception available" 143 | msgstr "Ingen unntak tilgjengelig" 144 | 145 | #: ../view/error/404.phtml:1 146 | msgid "A 404 error occurred" 147 | msgstr "En 404 feil oppsto" 148 | 149 | #: ../view/error/404.phtml:10 150 | msgid "The requested controller was unable to dispatch the request." 151 | msgstr "Den valgte kontrolleren kunne ikke håndtere forespørselen." 152 | 153 | #: ../view/error/404.phtml:13 154 | msgid "" 155 | "The requested controller could not be mapped to an existing controller class." 156 | msgstr "" 157 | "Den valgte kontrolleren kunne ikke knyttes opp mot en eksisterende " 158 | "kontrollerklasse." 159 | 160 | #: ../view/error/404.phtml:16 161 | msgid "The requested controller was not dispatchable." 162 | msgstr "Den forspurte kontrolleren kunne ikke brukes." 163 | 164 | #: ../view/error/404.phtml:19 165 | msgid "The requested URL could not be matched by routing." 166 | msgstr "Den angitte URL kunne ikke finnes i rutingoppsettet" 167 | 168 | #: ../view/error/404.phtml:22 169 | msgid "We cannot determine at this time why a 404 was generated." 170 | msgstr "" 171 | "På dette tidspunkt kan vi ikke bestemme årsaken til at en 404 ble generert." 172 | 173 | #: ../view/error/404.phtml:34 174 | msgid "Controller" 175 | msgstr "Kontroller" 176 | 177 | #: ../view/error/404.phtml:41 178 | #, php-format 179 | msgid "resolves to %s" 180 | msgstr "løser til %s" 181 | 182 | #: ../view/error/404.phtml:51 183 | msgid "Exception" 184 | msgstr "Unntak" 185 | -------------------------------------------------------------------------------- /module/Application/language/nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/module/Application/language/nl_NL.mo -------------------------------------------------------------------------------- /module/Application/language/nl_NL.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: ZendSkeletonApplication\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2012-07-05 22:17-0700\n" 6 | "PO-Revision-Date: 2012-07-24 12:48+0100\n" 7 | "Last-Translator: Walter Tamboer\n" 8 | "Language-Team: ZF Contibutors \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Poedit-KeywordsList: translate\n" 14 | "X-Poedit-Language: Dutch\n" 15 | "X-Poedit-Country: NETHERLANDS\n" 16 | "X-Poedit-Basepath: .\n" 17 | "X-Poedit-SearchPath-0: ..\n" 18 | 19 | #: ../view/layout/layout.phtml:6 20 | #: ../view/layout/layout.phtml:33 21 | msgid "Skeleton Application" 22 | msgstr "Applicatie Fundering" 23 | 24 | #: ../view/layout/layout.phtml:36 25 | msgid "Home" 26 | msgstr "Home" 27 | 28 | #: ../view/layout/layout.phtml:50 29 | msgid "All rights reserved." 30 | msgstr "Alle rechten voorbehouden." 31 | 32 | #: ../view/application/index/index.phtml:2 33 | #, php-format 34 | msgid "Welcome to %sZend Framework 2%s" 35 | msgstr "Welkom bij %sZend Framework 2%s" 36 | 37 | #: ../view/application/index/index.phtml:3 38 | #, php-format 39 | msgid "Congratulations! You have successfully installed the %sZF2 Skeleton Application%s. You are currently running Zend Framework version %s. This skeleton can serve as a simple starting point for you to begin building your application on ZF2." 40 | msgstr "Gefeliciteerd! Je hebt de %sZF2 Applicatie Fundering%s succesvol geinstalleerd. Je gebruikt Zend Framework versie %s. Deze fundering biedt je een startpunt om je ZF2 applicatie op voort te bouwen." 41 | 42 | #: ../view/application/index/index.phtml:4 43 | msgid "Fork Zend Framework 2 on GitHub" 44 | msgstr "Fork Zend Framework 2 op GitHub" 45 | 46 | #: ../view/application/index/index.phtml:10 47 | msgid "Follow Development" 48 | msgstr "Volg de Ontwikkeling" 49 | 50 | #: ../view/application/index/index.phtml:11 51 | #, php-format 52 | msgid "Zend Framework 2 is under active development. If you are interested in following the development of ZF2, there is a special ZF2 portal on the official Zend Framework website which provides links to the ZF2 %swiki%s, %sdev blog%s, %sissue tracker%s, and much more. This is a great resource for staying up to date with the latest developments!" 53 | msgstr "Zend Framework 2 wordt actief ontwikkeld. Als je interesse hebt in het volgen van deze ontwikkelingen dan kun je de ZF2 portaal bezoeken op de officiële website van Zend Framework. Daar staan links naar de ZF2 %swiki%s, %sdev blog%s, %sissue tracker%s en nog veel meer. Het is het perfecte middel om up-to-date te blijven met de ontwikkelingen." 54 | 55 | #: ../view/application/index/index.phtml:12 56 | msgid "ZF2 Development Portal" 57 | msgstr "ZF2 Ontwikkelaars Portaal" 58 | 59 | #: ../view/application/index/index.phtml:16 60 | msgid "Discover Modules" 61 | msgstr "Ontdek Modules" 62 | 63 | #: ../view/application/index/index.phtml:17 64 | #, php-format 65 | msgid "The community is working on developing a community site to serve as a repository and gallery for ZF2 modules. The project is available %son GitHub%s. The site is currently live and currently contains a list of some of the modules already available for ZF2." 66 | msgstr "De community werkt aan een eigen community website die dient als een bewaarplaats en galerij voor ZF2 modules. Het project is beschikbaar %sop GitHub%s. De site staat op dit moment live en bevat een lijst met modules die op dit moment beschikbaar zijn voor ZF2." 67 | 68 | #: ../view/application/index/index.phtml:18 69 | msgid "Explore ZF2 Modules" 70 | msgstr "Verken ZF2 Modules" 71 | 72 | #: ../view/application/index/index.phtml:22 73 | msgid "Help & Support" 74 | msgstr "Hulp & Support" 75 | 76 | #: ../view/application/index/index.phtml:23 77 | #, php-format 78 | msgid "If you need any help or support while developing with ZF2, you may reach us via IRC: %s#zftalk on Freenode%s. We'd love to hear any questions or feedback you may have regarding the beta releases. Alternatively, you may subscribe and post questions to the %smailing lists%s." 79 | msgstr "Als je hulp nodig hebt tijdens het ontwikkelen met ZF2, dan kun je ons bereiken via IRC: %s#zftalk op Freenode%s. We beantwoorde met alle liefde je vragen en zouden graag feedback krijgen betreffende de beta releases. Je kunt je ook abonneren op de %smailing lists%s." 80 | 81 | #: ../view/application/index/index.phtml:24 82 | msgid "Ping us on IRC" 83 | msgstr "Ping ons via IRC" 84 | 85 | #: ../view/error/index.phtml:1 86 | msgid "An error occurred" 87 | msgstr "Er is een fout opgetreden" 88 | 89 | #: ../view/error/index.phtml:8 90 | msgid "Additional information" 91 | msgstr "Additionele informatie" 92 | 93 | #: ../view/error/index.phtml:11 94 | #: ../view/error/index.phtml:35 95 | msgid "File" 96 | msgstr "Bestand" 97 | 98 | #: ../view/error/index.phtml:15 99 | #: ../view/error/index.phtml:39 100 | msgid "Message" 101 | msgstr "Bericht" 102 | 103 | #: ../view/error/index.phtml:19 104 | #: ../view/error/index.phtml:43 105 | #: ../view/error/404.phtml:55 106 | msgid "Stack trace" 107 | msgstr "Stack trace" 108 | 109 | #: ../view/error/index.phtml:29 110 | msgid "Previous exceptions" 111 | msgstr "Vorige excepties" 112 | 113 | #: ../view/error/index.phtml:58 114 | msgid "No Exception available" 115 | msgstr "Geen exceptie beschikbaar" 116 | 117 | #: ../view/error/404.phtml:1 118 | msgid "A 404 error occurred" 119 | msgstr "De pagina kon niet worden gevonden." 120 | 121 | #: ../view/error/404.phtml:10 122 | msgid "The requested controller was unable to dispatch the request." 123 | msgstr "De opgevraagde controller kon deze aanvraag niet verwerken." 124 | 125 | #: ../view/error/404.phtml:13 126 | msgid "The requested controller could not be mapped to an existing controller class." 127 | msgstr "Er is geen mapping beschikbaar voor de opgevraagde controller." 128 | 129 | #: ../view/error/404.phtml:16 130 | msgid "The requested controller was not dispatchable." 131 | msgstr "De opgevraagde controller is niet bruikbaar (dispatchable)." 132 | 133 | #: ../view/error/404.phtml:19 134 | msgid "The requested URL could not be matched by routing." 135 | msgstr "Er is geen route gevonden die overeenkomt met de opgevraagde URL." 136 | 137 | #: ../view/error/404.phtml:22 138 | msgid "We cannot determine at this time why a 404 was generated." 139 | msgstr "We kunnen op dit moment niet achterhalen waarom de pagina niet kon worden gevonden." 140 | 141 | #: ../view/error/404.phtml:34 142 | msgid "Controller" 143 | msgstr "Controller" 144 | 145 | #: ../view/error/404.phtml:41 146 | #, php-format 147 | msgid "resolves to %s" 148 | msgstr "verwijst naar %s" 149 | 150 | #: ../view/error/404.phtml:51 151 | msgid "Exception" 152 | msgstr "Exceptie" 153 | 154 | -------------------------------------------------------------------------------- /module/Application/language/pl_PL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/module/Application/language/pl_PL.mo -------------------------------------------------------------------------------- /module/Application/language/pl_PL.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: ZendSkeletonApplication\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2012-07-05 22:17-0700\n" 6 | "PO-Revision-Date: 2012-07-28 20:33+0100\n" 7 | "Last-Translator: Łukasz Rodziewicz \n" 8 | "Language-Team: ZF Contibutors \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Poedit-KeywordsList: translate\n" 14 | "X-Poedit-Language: Polish\n" 15 | "X-Poedit-Country: POLAND\n" 16 | "X-Poedit-Basepath: .\n" 17 | "X-Poedit-SearchPath-0: ..\n" 18 | 19 | #: ../view/layout/layout.phtml:6 20 | #: ../view/layout/layout.phtml:33 21 | msgid "Skeleton Application" 22 | msgstr "Szkielet Aplikacji" 23 | 24 | #: ../view/layout/layout.phtml:36 25 | msgid "Home" 26 | msgstr "Strona startowa" 27 | 28 | #: ../view/layout/layout.phtml:50 29 | msgid "All rights reserved." 30 | msgstr "Wszelkie prawa zastrzeżone." 31 | 32 | #: ../view/application/index/index.phtml:2 33 | #, php-format 34 | msgid "Welcome to %sZend Framework 2%s" 35 | msgstr "Witaj w %sZend Framework 2%s" 36 | 37 | #: ../view/application/index/index.phtml:3 38 | #, php-format 39 | msgid "Congratulations! You have successfully installed the %sZF2 Skeleton Application%s. You are currently running Zend Framework version %s. This skeleton can serve as a simple starting point for you to begin building your application on ZF2." 40 | msgstr "Gratulacje! Z powodzeniem zainstalowałeś %sZF2 Skeleton Application%s. Aktualnie używasz Zend Framework w wersji %s. Ten szkielet może służyć jak prosty punkt startowy do budowy Twoich aplikacji na ZF2." 41 | 42 | #: ../view/application/index/index.phtml:4 43 | msgid "Fork Zend Framework 2 on GitHub" 44 | msgstr "Forkuj Zend Framework 2 na GitHub'e" 45 | 46 | #: ../view/application/index/index.phtml:10 47 | msgid "Follow Development" 48 | msgstr "Śledź prace programistyczne" 49 | 50 | #: ../view/application/index/index.phtml:11 51 | #, php-format 52 | msgid "Zend Framework 2 is under active development. If you are interested in following the development of ZF2, there is a special ZF2 portal on the official Zend Framework website which provides links to the ZF2 %swiki%s, %sdev blog%s, %sissue tracker%s, and much more. This is a great resource for staying up to date with the latest developments!" 53 | msgstr "Zend Framework 2 jest w trakcie aktywnych prac programistycznych. Jeśli jesteś zainteresowany śledzeniem jego rozwoju, istnieje specialny portal ZF2 na oficjalnej stronie Zend Framework na którym dostępne są linki do ZF2 %swiki%s, %sdev blog%s, %sissue tracker%s, oraz wiele więcej. Jest to świetne miejsce by śledzić najnowsze zmiany!" 54 | 55 | #: ../view/application/index/index.phtml:12 56 | msgid "ZF2 Development Portal" 57 | msgstr "ZF2 Development Portal" 58 | 59 | #: ../view/application/index/index.phtml:16 60 | msgid "Discover Modules" 61 | msgstr "Odkryj Moduły" 62 | 63 | #: ../view/application/index/index.phtml:17 64 | #, php-format 65 | msgid "The community is working on developing a community site to serve as a repository and gallery for ZF2 modules. The project is available %son GitHub%s. The site is currently live and currently contains a list of some of the modules already available for ZF2." 66 | msgstr "Społeczność pracuje nad stworzeniem społecznościowego serwisu który posłuży jako repozytorium i galeria dla modułów ZF2. Projekt wkrótce będzie dostępny na %son GitHub%s. Ta strona jest aktualnie online i udostępnia listę niektórych modułów dostępnych dla ZF2." 67 | 68 | #: ../view/application/index/index.phtml:18 69 | msgid "Explore ZF2 Modules" 70 | msgstr "Odkryj Moduły ZF2" 71 | 72 | #: ../view/application/index/index.phtml:22 73 | msgid "Help & Support" 74 | msgstr "Pomoc & Wsparcie" 75 | 76 | #: ../view/application/index/index.phtml:23 77 | #, php-format 78 | msgid "If you need any help or support while developing with ZF2, you may reach us via IRC: %s#zftalk on Freenode%s. We'd love to hear any questions or feedback you may have regarding the beta releases. Alternatively, you may subscribe and post questions to the %smailing lists%s." 79 | msgstr "Jeśli potrzebujesz jakiejkolwiek pomocy lub wsparcia podczas programowania na ZF2, możesz skontaktować się z nami via IRC: %s#zftalk w sieci Freenode%s. Z przyjemnością wysłuchamy wszelkich pytań lub sugestii które możesz mieć odnoście wydań beta. Alternatywnie, możesz zapisać się i wysłać pytanie na %smailing lists%s." 80 | 81 | #: ../view/application/index/index.phtml:24 82 | msgid "Ping us on IRC" 83 | msgstr "Wyślij nam wiadomość na IRC" 84 | 85 | #: ../view/error/index.phtml:1 86 | msgid "An error occurred" 87 | msgstr "Wystąpił błąd" 88 | 89 | #: ../view/error/index.phtml:8 90 | msgid "Additional information" 91 | msgstr "Dodatkowe informacje" 92 | 93 | #: ../view/error/index.phtml:11 94 | #: ../view/error/index.phtml:35 95 | msgid "File" 96 | msgstr "Plik" 97 | 98 | #: ../view/error/index.phtml:15 99 | #: ../view/error/index.phtml:39 100 | msgid "Message" 101 | msgstr "Komunikat" 102 | 103 | #: ../view/error/index.phtml:19 104 | #: ../view/error/index.phtml:43 105 | #: ../view/error/404.phtml:55 106 | msgid "Stack trace" 107 | msgstr "Stack trace" 108 | 109 | #: ../view/error/index.phtml:29 110 | msgid "Previous exceptions" 111 | msgstr "Poprzedni wyjątek" 112 | 113 | #: ../view/error/index.phtml:58 114 | msgid "No Exception available" 115 | msgstr "Brak dostępnego wyjątku" 116 | 117 | #: ../view/error/404.phtml:1 118 | msgid "A 404 error occurred" 119 | msgstr "Wystąpił błąd 404" 120 | 121 | #: ../view/error/404.phtml:10 122 | msgid "The requested controller was unable to dispatch the request." 123 | msgstr "Żądany kontroler nie mógł zmapować żądania." 124 | 125 | #: ../view/error/404.phtml:13 126 | msgid "The requested controller could not be mapped to an existing controller class." 127 | msgstr "Żądany kontroler nie mógł być zmapowany na isteniejącą klasę kontrolera." 128 | 129 | #: ../view/error/404.phtml:16 130 | msgid "The requested controller was not dispatchable." 131 | msgstr "Żądany kontroler nie mógł zostać zmapowany." 132 | 133 | #: ../view/error/404.phtml:19 134 | msgid "The requested URL could not be matched by routing." 135 | msgstr "Żądany adres URL nie mógł zostać powiązany z routing'iem." 136 | 137 | #: ../view/error/404.phtml:22 138 | msgid "We cannot determine at this time why a 404 was generated." 139 | msgstr "Nie możemy określić tym razem dlaczego wygenerowano błąd 404." 140 | 141 | #: ../view/error/404.phtml:34 142 | msgid "Controller" 143 | msgstr "Kontroler" 144 | 145 | #: ../view/error/404.phtml:41 146 | #, php-format 147 | msgid "resolves to %s" 148 | msgstr "rozwiązuje na %s" 149 | 150 | #: ../view/error/404.phtml:51 151 | msgid "Exception" 152 | msgstr "Wyjątek" 153 | 154 | -------------------------------------------------------------------------------- /module/Application/language/pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/module/Application/language/pt_BR.mo -------------------------------------------------------------------------------- /module/Application/language/pt_BR.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: ZendSkeletonApplication\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2012-07-05 22:17-0700\n" 6 | "PO-Revision-Date: 2012-09-09 15:23-0300\n" 7 | "Last-Translator: Diogo Melo \n" 8 | "Language-Team: ZF Contibutors \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Poedit-KeywordsList: translate\n" 14 | "X-Poedit-Language: Portuguese\n" 15 | "X-Poedit-Country: Brazil\n" 16 | "X-Poedit-Basepath: .\n" 17 | "X-Poedit-SearchPath-0: ..\n" 18 | 19 | #: ../view/layout/layout.phtml:6 20 | #: ../view/layout/layout.phtml:33 21 | msgid "Skeleton Application" 22 | msgstr "Aplicação Skeleton" 23 | 24 | #: ../view/layout/layout.phtml:36 25 | msgid "Home" 26 | msgstr "Início" 27 | 28 | #: ../view/layout/layout.phtml:50 29 | msgid "All rights reserved." 30 | msgstr "Todos os direitos reservados." 31 | 32 | #: ../view/application/index/index.phtml:2 33 | #, php-format 34 | msgid "Welcome to %sZend Framework 2%s" 35 | msgstr "Bem vindo ao %sZend Framework 2%s" 36 | 37 | #: ../view/application/index/index.phtml:3 38 | #, php-format 39 | msgid "Congratulations! You have successfully installed the %sZF2 Skeleton Application%s. You are currently running Zend Framework version %s. This skeleton can serve as a simple starting point for you to begin building your application on ZF2." 40 | msgstr "Parabéns! Você instalou a %sAplicação Skeleton ZF2%s com sucesso. Você está usando a versão %s do Zend Framework. Este esqueleto serve simplesmente como um ponto de inicio na construção da sua aplicação ZF2." 41 | 42 | #: ../view/application/index/index.phtml:4 43 | msgid "Fork Zend Framework 2 on GitHub" 44 | msgstr "Replique Zend Framework 2 no GitHub" 45 | 46 | #: ../view/application/index/index.phtml:10 47 | msgid "Follow Development" 48 | msgstr "Acompanhe o Desenvolvimento" 49 | 50 | #: ../view/application/index/index.phtml:11 51 | #, php-format 52 | msgid "Zend Framework 2 is under active development. If you are interested in following the development of ZF2, there is a special ZF2 portal on the official Zend Framework website which provides links to the ZF2 %swiki%s, %sdev blog%s, %sissue tracker%s, and much more. This is a great resource for staying up to date with the latest developments!" 53 | msgstr "Zend Framework 2 está sob desenvolvimento ativo. Se vocês está interessado em acompanhar o desenvolvimento do ZF2, tem um portal ZF2 especial no site oficial do Zend Framework que possui links para ZF2 %swiki%s, %sdev blog%s, %sissue tracker%s, dentre outros. Este é um excelente material para se manter atualizado com os últimos desenvolvimentos!" 54 | 55 | #: ../view/application/index/index.phtml:12 56 | msgid "ZF2 Development Portal" 57 | msgstr "Portal de Desenvolvimento do ZF2" 58 | 59 | #: ../view/application/index/index.phtml:16 60 | msgid "Discover Modules" 61 | msgstr "Descubra Módulos" 62 | 63 | #: ../view/application/index/index.phtml:17 64 | #, php-format 65 | msgid "The community is working on developing a community site to serve as a repository and gallery for ZF2 modules. The project is available %son GitHub%s. The site is currently live and currently contains a list of some of the modules already available for ZF2." 66 | msgstr "A Comunidade está trabalhando em desenvolver um site comunitário para servir como repositório e galeria de módulos ZF2. O projeto estará disponível %sem breve no GitHub%s. O site já está online e atualmente contém uma lista de alguns dos módulos já disponíveis para ZF2." 67 | 68 | #: ../view/application/index/index.phtml:18 69 | msgid "Explore ZF2 Modules" 70 | msgstr "Explore Módulos ZF2" 71 | 72 | #: ../view/application/index/index.phtml:22 73 | msgid "Help & Support" 74 | msgstr "Ajuda & Suporte" 75 | 76 | #: ../view/application/index/index.phtml:23 77 | #, php-format 78 | msgid "If you need any help or support while developing with ZF2, you may reach us via IRC: %s#zftalk on Freenode%s. We'd love to hear any questions or feedback you may have regarding the beta releases. Alternatively, you may subscribe and post questions to the %smailing lists%s." 79 | msgstr "Caso você precise de ajuda ou suporte enquanto desenvolve com ZF2, pode nos encontrar pelo %s#zftalk on Freenode%s. Vamos gostar muito de ouvir perguntas e opiniões que você possa ter em relação às versões beta. Também, você pode se registrar e enviar perguntar para a %slista de e-mail%s." 80 | 81 | #: ../view/application/index/index.phtml:24 82 | msgid "Ping us on IRC" 83 | msgstr "Nos escreva no IRC" 84 | 85 | #: ../view/error/index.phtml:1 86 | msgid "An error occurred" 87 | msgstr "Ocorreu um erro" 88 | 89 | #: ../view/error/index.phtml:8 90 | msgid "Additional information" 91 | msgstr "Informação adicional" 92 | 93 | #: ../view/error/index.phtml:11 94 | #: ../view/error/index.phtml:35 95 | msgid "File" 96 | msgstr "Arquivo" 97 | 98 | #: ../view/error/index.phtml:15 99 | #: ../view/error/index.phtml:39 100 | msgid "Message" 101 | msgstr "Mensagem" 102 | 103 | #: ../view/error/index.phtml:19 104 | #: ../view/error/index.phtml:43 105 | #: ../view/error/404.phtml:55 106 | msgid "Stack trace" 107 | msgstr "Pilha de execução" 108 | 109 | #: ../view/error/index.phtml:29 110 | msgid "Previous exceptions" 111 | msgstr "Exceções anteriores" 112 | 113 | #: ../view/error/index.phtml:58 114 | msgid "No Exception available" 115 | msgstr "Nenhuma exceção disponível" 116 | 117 | #: ../view/error/404.phtml:1 118 | msgid "A 404 error occurred" 119 | msgstr "Ocorreu um erro 404" 120 | 121 | #: ../view/error/404.phtml:10 122 | msgid "The requested controller was unable to dispatch the request." 123 | msgstr "O controlador requisitado não foi capaz de despachar a requisição." 124 | 125 | #: ../view/error/404.phtml:13 126 | msgid "The requested controller could not be mapped to an existing controller class." 127 | msgstr "O controlador requisitados não pode ser mapeado a uma classe de controlador existente." 128 | 129 | #: ../view/error/404.phtml:16 130 | msgid "The requested controller was not dispatchable." 131 | msgstr "O controlador requisitado não foi despachado." 132 | 133 | #: ../view/error/404.phtml:19 134 | msgid "The requested URL could not be matched by routing." 135 | msgstr "A URL requisitada não pode ser encontrada em uma rota." 136 | 137 | #: ../view/error/404.phtml:22 138 | msgid "We cannot determine at this time why a 404 was generated." 139 | msgstr "Não foi possível determinar o motivo do 404 ter ocorrido." 140 | 141 | #: ../view/error/404.phtml:34 142 | msgid "Controller" 143 | msgstr "Controlador" 144 | 145 | #: ../view/error/404.phtml:41 146 | #, php-format 147 | msgid "resolves to %s" 148 | msgstr "resolve como %s" 149 | 150 | #: ../view/error/404.phtml:51 151 | msgid "Exception" 152 | msgstr "Exceção" 153 | 154 | -------------------------------------------------------------------------------- /module/Application/language/ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/module/Application/language/ru_RU.mo -------------------------------------------------------------------------------- /module/Application/language/ru_RU.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: ZendSkeletonApplication\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2012-07-05 22:17-0700\n" 6 | "PO-Revision-Date: 2012-10-23 08:46+0400\n" 7 | "Last-Translator: vragovR \n" 8 | "Language-Team: ZF Contibutors \n" 9 | "Language: en_US\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Poedit-KeywordsList: translate\n" 14 | "X-Poedit-Basepath: .\n" 15 | "X-Generator: Poedit 1.5.4\n" 16 | "X-Poedit-SearchPath-0: ..\n" 17 | 18 | #: ../view/layout/layout.phtml:6 ../view/layout/layout.phtml:33 19 | msgid "Skeleton Application" 20 | msgstr "Skeleton Application" 21 | 22 | #: ../view/layout/layout.phtml:36 23 | msgid "Home" 24 | msgstr "Главная" 25 | 26 | #: ../view/layout/layout.phtml:50 27 | msgid "All rights reserved." 28 | msgstr "Все права защищены." 29 | 30 | #: ../view/application/index/index.phtml:2 31 | #, php-format 32 | msgid "Welcome to %sZend Framework 2%s" 33 | msgstr "Привет, %sZend Framework 2%s" 34 | 35 | #: ../view/application/index/index.phtml:3 36 | #, php-format 37 | msgid "" 38 | "Congratulations! You have successfully installed the %sZF2 Skeleton " 39 | "Application%s. You are currently running Zend Framework version %s. This " 40 | "skeleton can serve as a simple starting point for you to begin building your " 41 | "application on ZF2." 42 | msgstr "" 43 | "Поздравляем! Вы успешно установили %sZF2 Skeleton Application%s. У вас " 44 | "установлен Zend Framework версии %s. Этот каркас может служить простой " 45 | "отправной точкой, чтобы начать строить приложения на ZF2." 46 | 47 | #: ../view/application/index/index.phtml:4 48 | msgid "Fork Zend Framework 2 on GitHub" 49 | msgstr "Fork Zend Framework 2 на GitHub" 50 | 51 | #: ../view/application/index/index.phtml:10 52 | msgid "Follow Development" 53 | msgstr "Следи за Разработкой" 54 | 55 | #: ../view/application/index/index.phtml:11 56 | #, php-format 57 | msgid "" 58 | "Zend Framework 2 is under active development. If you are interested in " 59 | "following the development of ZF2, there is a special ZF2 portal on the " 60 | "official Zend Framework website which provides links to the ZF2 %swiki%s, " 61 | "%sdev blog%s, %sissue tracker%s, and much more. This is a great resource for " 62 | "staying up to date with the latest developments!" 63 | msgstr "" 64 | "Zend Framework 2 активно развивается. Если вы заинтерисованны в его " 65 | "развитии, для вас есть специальный портал ZF2 на официальном сайте Zend " 66 | "Framework который дает ссылки на ZF2 %swiki%s, %sdev blog%s, %sissue tracker" 67 | "%s, и многое другое. Это отличный ресурс для того чтобы быть в курсе " 68 | "последних событий." 69 | 70 | #: ../view/application/index/index.phtml:12 71 | msgid "ZF2 Development Portal" 72 | msgstr "ZF2 Портал Разработчика" 73 | 74 | #: ../view/application/index/index.phtml:16 75 | msgid "Discover Modules" 76 | msgstr "Узнай о Модулях" 77 | 78 | #: ../view/application/index/index.phtml:17 79 | #, php-format 80 | msgid "" 81 | "The community is working on developing a community site to serve as a " 82 | "repository and gallery for ZF2 modules. The project is available %son GitHub" 83 | "%s. The site is currently live and currently contains a list of some of the " 84 | "modules already available for ZF2." 85 | msgstr "" 86 | "Сообщество работает на созданием сайта, который служит хранилищем и галерей " 87 | "для ZF2 модулей. Проект доступен %sна GitHub%s. Сайт в настоящее время " 88 | "активен и содержит список модулей уже достпных для ZF2." 89 | 90 | #: ../view/application/index/index.phtml:18 91 | msgid "Explore ZF2 Modules" 92 | msgstr "Узнать о ZF2 модулях" 93 | 94 | #: ../view/application/index/index.phtml:22 95 | msgid "Help & Support" 96 | msgstr "Помощь и Поддержка" 97 | 98 | #: ../view/application/index/index.phtml:23 99 | #, php-format 100 | msgid "" 101 | "If you need any help or support while developing with ZF2, you may reach us " 102 | "via IRC: %s#zftalk on Freenode%s. We'd love to hear any questions or " 103 | "feedback you may have regarding the beta releases. Alternatively, you may " 104 | "subscribe and post questions to the %smailing lists%s." 105 | msgstr "" 106 | "Если вам нужна помощь или поддержка при разработке с ZF2, вы можете " 107 | "связаться с нами по IRC: %s#zftalk on Freenode%s. Мы хотели бы узнать " 108 | "какие вопросы или предложения вы имеете относительно текущей версии. Кроме " 109 | "того, вы можете задавать вопросы в %smailing lists%s." 110 | 111 | #: ../view/application/index/index.phtml:24 112 | msgid "Ping us on IRC" 113 | msgstr "Присоединяйся к IRC" 114 | 115 | #: ../view/error/index.phtml:1 116 | msgid "An error occurred" 117 | msgstr "Произошла ошибка" 118 | 119 | #: ../view/error/index.phtml:8 120 | msgid "Additional information" 121 | msgstr "Дополнительная информация" 122 | 123 | #: ../view/error/index.phtml:11 ../view/error/index.phtml:35 124 | msgid "File" 125 | msgstr "Файл" 126 | 127 | #: ../view/error/index.phtml:15 ../view/error/index.phtml:39 128 | msgid "Message" 129 | msgstr "Сообщение" 130 | 131 | #: ../view/error/index.phtml:19 ../view/error/index.phtml:43 132 | #: ../view/error/404.phtml:55 133 | msgid "Stack trace" 134 | msgstr "Развертывание стека" 135 | 136 | #: ../view/error/index.phtml:29 137 | msgid "Previous exceptions" 138 | msgstr "Предыдущие исключения" 139 | 140 | #: ../view/error/index.phtml:58 141 | msgid "No Exception available" 142 | msgstr "Нет имеющихся исключений" 143 | 144 | #: ../view/error/404.phtml:1 145 | msgid "A 404 error occurred" 146 | msgstr "Ошибка 404" 147 | 148 | #: ../view/error/404.phtml:10 149 | msgid "The requested controller was unable to dispatch the request." 150 | msgstr "Запрашиваемый контроллер не смог отправить запрос." 151 | 152 | #: ../view/error/404.phtml:13 153 | msgid "" 154 | "The requested controller could not be mapped to an existing controller class." 155 | msgstr "" 156 | "Запрашиваемый контроллер не может быть сопоставлен с существующими классом " 157 | "контроллера." 158 | 159 | #: ../view/error/404.phtml:16 160 | msgid "The requested controller was not dispatchable." 161 | msgstr "Запрашиваемый контроллер не доступен." 162 | 163 | #: ../view/error/404.phtml:19 164 | msgid "The requested URL could not be matched by routing." 165 | msgstr "Для запрашиваемого URL не может быть достигнуто направление." 166 | 167 | #: ../view/error/404.phtml:22 168 | msgid "We cannot determine at this time why a 404 was generated." 169 | msgstr "Мы не можем определить причину создания страницы 404." 170 | 171 | #: ../view/error/404.phtml:34 172 | msgid "Controller" 173 | msgstr "Контроллер" 174 | 175 | #: ../view/error/404.phtml:41 176 | #, php-format 177 | msgid "resolves to %s" 178 | msgstr "разрешает для %s" 179 | 180 | #: ../view/error/404.phtml:51 181 | msgid "Exception" 182 | msgstr "Исключение" 183 | -------------------------------------------------------------------------------- /module/Application/language/tr_TR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/module/Application/language/tr_TR.mo -------------------------------------------------------------------------------- /module/Application/language/tr_TR.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: ZendSkeletonApplication\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2012-07-05 22:17-0700\n" 6 | "PO-Revision-Date: 2012-07-06 13:19+0200\n" 7 | "Last-Translator: H.H.G. multistore \n" 8 | "Language-Team: ZF Contibutors \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Poedit-KeywordsList: translate\n" 14 | "X-Poedit-Language: Turkish\n" 15 | "X-Poedit-Country: TURKEY\n" 16 | "X-Poedit-Basepath: .\n" 17 | "X-Poedit-SearchPath-0: ..\n" 18 | 19 | #: ../view/layout/layout.phtml:6 20 | #: ../view/layout/layout.phtml:33 21 | msgid "Skeleton Application" 22 | msgstr "" 23 | 24 | #: ../view/layout/layout.phtml:36 25 | msgid "Home" 26 | msgstr "Anasayfa" 27 | 28 | #: ../view/layout/layout.phtml:50 29 | msgid "All rights reserved." 30 | msgstr "Tüm haklar saklıdır." 31 | 32 | #: ../view/application/index/index.phtml:2 33 | #, php-format 34 | msgid "Welcome to %sZend Framework 2%s" 35 | msgstr "%sZend Framework 2%s'a hoş geldiniz" 36 | 37 | #: ../view/application/index/index.phtml:3 38 | #, php-format 39 | msgid "Congratulations! You have successfully installed the %sZF2 Skeleton Application%s. You are currently running Zend Framework version %s. This skeleton can serve as a simple starting point for you to begin building your application on ZF2." 40 | msgstr "Tebrikler! %sZF2 Skeleton Application%s'u başarıyla yüklediniz. Şu anda Zend Framework %s sürüm ile çalışıyorsunuz. Bu iskelet ZF2 üzerinde uygulama oluşturmak için basit bir başlangıç ​​noktası olarak hizmet verebilir." 41 | 42 | #: ../view/application/index/index.phtml:4 43 | msgid "Fork Zend Framework 2 on GitHub" 44 | msgstr "Zend Framework 2'yi GitHub'da fork edin" 45 | 46 | #: ../view/application/index/index.phtml:10 47 | msgid "Follow Development" 48 | msgstr "Gelişimi izleyin" 49 | 50 | #: ../view/application/index/index.phtml:11 51 | #, php-format 52 | msgid "Zend Framework 2 is under active development. If you are interested in following the development of ZF2, there is a special ZF2 portal on the official Zend Framework website which provides links to the ZF2 %swiki%s, %sdev blog%s, %sissue tracker%s, and much more. This is a great resource for staying up to date with the latest developments!" 53 | msgstr "Zend Framework 2 aktif geliştirilmektedir. Eğer ZF2'nin gelişimi ile ilgileniyorsanız, ZF2 için resmi Zend Framework websitesinde özel portal mevcut, orada ZF2 %swiki%s'ye, %sDEV blog%s'a, %ssorun takibi%s'ne bağlantılarını ve çok daha fazlasını sunar. Bu son gelişmeler ile güncel kalmak için büyük bir kaynaktır!" 54 | 55 | #: ../view/application/index/index.phtml:12 56 | msgid "ZF2 Development Portal" 57 | msgstr "ZF2 Development Portal" 58 | 59 | #: ../view/application/index/index.phtml:16 60 | msgid "Discover Modules" 61 | msgstr "Modülleri keşfedin" 62 | 63 | #: ../view/application/index/index.phtml:17 64 | #, php-format 65 | msgid "The community is working on developing a community site to serve as a repository and gallery for ZF2 modules. The project is available %son GitHub%s. The site is currently live and currently contains a list of some of the modules already available for ZF2." 66 | msgstr "Topluluk ZF2 modülleri için bir depo ve galeri olarak hizmet edecek bir topluluk sitesi geliştirme üzerinde çalışıyor. Proje %sGitHub%s'da mevcut. Site şu anda canlı ve ZF2 için bazı mevcut modüllerin listesini içerir." 67 | 68 | #: ../view/application/index/index.phtml:18 69 | msgid "Explore ZF2 Modules" 70 | msgstr "ZF2 Modüllerini keşfedin" 71 | 72 | #: ../view/application/index/index.phtml:22 73 | msgid "Help & Support" 74 | msgstr "Yardım & Destek" 75 | 76 | #: ../view/application/index/index.phtml:23 77 | #, php-format 78 | msgid "If you need any help or support while developing with ZF2, you may reach us via IRC: %s#zftalk on Freenode%s. We'd love to hear any questions or feedback you may have regarding the beta releases. Alternatively, you may subscribe and post questions to the %smailing lists%s." 79 | msgstr "ZF2 ile geliştirirken herhangi yardım veya desteğe ihtiyacınız varsa, bize IRC: %sFreenode #zftalk%s üzerinden ulaşabilirsiniz. Beta sürümleri ile ilgili olabilecek herhangi bir sorunuzu ya da yorumlarınızı duymak isteriz. Alternatif olarak %smailing listelerine%s abone olup sorularınızı sorabilirsiniz." 80 | 81 | #: ../view/application/index/index.phtml:24 82 | msgid "Ping us on IRC" 83 | msgstr "IRC bizi pingleyin" 84 | 85 | #: ../view/error/index.phtml:1 86 | msgid "An error occurred" 87 | msgstr "An error occurred" 88 | 89 | #: ../view/error/index.phtml:8 90 | msgid "Additional information" 91 | msgstr "Ek bilgiler" 92 | 93 | #: ../view/error/index.phtml:11 94 | #: ../view/error/index.phtml:35 95 | msgid "File" 96 | msgstr "Klasör" 97 | 98 | #: ../view/error/index.phtml:15 99 | #: ../view/error/index.phtml:39 100 | msgid "Message" 101 | msgstr "Mesaj" 102 | 103 | #: ../view/error/index.phtml:19 104 | #: ../view/error/index.phtml:43 105 | #: ../view/error/404.phtml:55 106 | msgid "Stack trace" 107 | msgstr "Denetleyici" 108 | 109 | #: ../view/error/index.phtml:29 110 | msgid "Previous exceptions" 111 | msgstr "Önceki istisnalar" 112 | 113 | #: ../view/error/index.phtml:58 114 | msgid "No Exception available" 115 | msgstr "İstisna yok" 116 | 117 | #: ../view/error/404.phtml:1 118 | msgid "A 404 error occurred" 119 | msgstr "Bir 404 hatası oluştu" 120 | 121 | #: ../view/error/404.phtml:10 122 | msgid "The requested controller was unable to dispatch the request." 123 | msgstr "Talep edilen denetleyici işlemi işlemesi mümkün değildir." 124 | 125 | #: ../view/error/404.phtml:13 126 | msgid "The requested controller could not be mapped to an existing controller class." 127 | msgstr "Talep edilen denetleyiciye uygun denetleyici sınıfı tahsis edilemedi." 128 | 129 | #: ../view/error/404.phtml:16 130 | msgid "The requested controller was not dispatchable." 131 | msgstr "Talep edilen denetleyici çağrılabilir değildir." 132 | 133 | #: ../view/error/404.phtml:19 134 | msgid "The requested URL could not be matched by routing." 135 | msgstr "İstenen URL yönlendirmede tahsis edilemedi" 136 | 137 | #: ../view/error/404.phtml:22 138 | msgid "We cannot determine at this time why a 404 was generated." 139 | msgstr "Neden 404 hatasının oluştuğunu şu an belirleyemiyoruz." 140 | 141 | #: ../view/error/404.phtml:34 142 | msgid "Controller" 143 | msgstr "Denetleyici" 144 | 145 | #: ../view/error/404.phtml:41 146 | #, php-format 147 | msgid "resolves to %s" 148 | msgstr "Buraya çözümlenir: %s" 149 | 150 | #: ../view/error/404.phtml:51 151 | msgid "Exception" 152 | msgstr "İstisna" 153 | 154 | -------------------------------------------------------------------------------- /module/Application/language/zh_CN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/module/Application/language/zh_CN.mo -------------------------------------------------------------------------------- /module/Application/language/zh_CN.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: ZendSkeletonApplication\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2012-07-05 22:17-0700\n" 6 | "PO-Revision-Date: 2012-09-08 13:15+0800\n" 7 | "Last-Translator: Evan Coury \n" 8 | "Language-Team: ZF Contibutors \n" 9 | "Language: en_US\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Poedit-KeywordsList: translate\n" 14 | "X-Poedit-Basepath: .\n" 15 | "X-Poedit-SearchPath-0: ..\n" 16 | 17 | #: ../view/layout/layout.phtml:6 ../view/layout/layout.phtml:33 18 | msgid "Skeleton Application" 19 | msgstr "框架应用" 20 | 21 | #: ../view/layout/layout.phtml:36 22 | msgid "Home" 23 | msgstr "主页" 24 | 25 | #: ../view/layout/layout.phtml:50 26 | msgid "All rights reserved." 27 | msgstr "All rights reserved." 28 | 29 | #: ../view/application/index/index.phtml:2 30 | #, php-format 31 | msgid "Welcome to %sZend Framework 2%s" 32 | msgstr "欢迎使用%sZend Framework 2%s" 33 | 34 | #: ../view/application/index/index.phtml:3 35 | #, php-format 36 | msgid "" 37 | "Congratulations! You have successfully installed the %sZF2 Skeleton " 38 | "Application%s. You are currently running Zend Framework version %s. This " 39 | "skeleton can serve as a simple starting point for you to begin building your " 40 | "application on ZF2." 41 | msgstr "" 42 | "恭喜!您已经成功安装了%sZF2 Skeleton Application%s。您现在运行的Zend " 43 | "Framework的版本为%s。这个框架应用可以用作您创建自己的ZF2应用的起点。" 44 | 45 | #: ../view/application/index/index.phtml:4 46 | msgid "Fork Zend Framework 2 on GitHub" 47 | msgstr "在GitHub中获取Zend Framework 2到您的应用" 48 | 49 | #: ../view/application/index/index.phtml:10 50 | msgid "Follow Development" 51 | msgstr "关注开发" 52 | 53 | #: ../view/application/index/index.phtml:11 54 | #, php-format 55 | msgid "" 56 | "Zend Framework 2 is under active development. If you are interested in " 57 | "following the development of ZF2, there is a special ZF2 portal on the " 58 | "official Zend Framework website which provides links to the ZF2 %swiki%s, " 59 | "%sdev blog%s, %sissue tracker%s, and much more. This is a great resource for " 60 | "staying up to date with the latest developments!" 61 | msgstr "" 62 | "Zend Framework 2正在开发中。如果您有兴趣关注ZF2的开发,Zend Framework的官方网" 63 | "站有一个专门的ZF2入口,从这个入口可以进入ZF2的%swiki%s, %sdev blog%s, " 64 | "%sissue tracker%s等。这些是关注我们最新开发的好资源!" 65 | 66 | #: ../view/application/index/index.phtml:12 67 | msgid "ZF2 Development Portal" 68 | msgstr "ZF2 开发入口" 69 | 70 | #: ../view/application/index/index.phtml:16 71 | msgid "Discover Modules" 72 | msgstr "探索模块" 73 | 74 | #: ../view/application/index/index.phtml:17 75 | #, php-format 76 | msgid "" 77 | "The community is working on developing a community site to serve as a " 78 | "repository and gallery for ZF2 modules. The project is available %son GitHub" 79 | "%s. The site is currently live and currently contains a list of some of the " 80 | "modules already available for ZF2." 81 | msgstr "" 82 | "社区正在开发一个能够存储和展示ZF2模块的功能。这个项目可以在%son GitHub%s找" 83 | "到。这个网站现在已经包含了许多ZF2可用的模块。" 84 | 85 | #: ../view/application/index/index.phtml:18 86 | msgid "Explore ZF2 Modules" 87 | msgstr "浏览ZF2模块" 88 | 89 | #: ../view/application/index/index.phtml:22 90 | msgid "Help & Support" 91 | msgstr "帮助 & 支持" 92 | 93 | #: ../view/application/index/index.phtml:23 94 | #, php-format 95 | msgid "" 96 | "If you need any help or support while developing with ZF2, you may reach us " 97 | "via IRC: %s#zftalk on Freenode%s. We'd love to hear any questions or " 98 | "feedback you may have regarding the beta releases. Alternatively, you may " 99 | "subscribe and post questions to the %smailing lists%s." 100 | msgstr "" 101 | "如果您需要一些关于ZF2开发的帮助和支持,可以通过IRC: %s#zftalk on Freenode" 102 | "%s。我们非常乐意收到您对于发布的公测版提问和反馈。或者,您也可以通" 103 | "过%smailing lists%s订阅并发布问题。" 104 | 105 | #: ../view/application/index/index.phtml:24 106 | msgid "Ping us on IRC" 107 | msgstr "在IRC上ping我们" 108 | 109 | #: ../view/error/index.phtml:1 110 | msgid "An error occurred" 111 | msgstr "发生错误" 112 | 113 | #: ../view/error/index.phtml:8 114 | msgid "Additional information" 115 | msgstr "附加信息" 116 | 117 | #: ../view/error/index.phtml:11 ../view/error/index.phtml:35 118 | msgid "File" 119 | msgstr "文件" 120 | 121 | #: ../view/error/index.phtml:15 ../view/error/index.phtml:39 122 | msgid "Message" 123 | msgstr "消息" 124 | 125 | #: ../view/error/index.phtml:19 ../view/error/index.phtml:43 126 | #: ../view/error/404.phtml:55 127 | msgid "Stack trace" 128 | msgstr "Stack trace" 129 | 130 | #: ../view/error/index.phtml:29 131 | msgid "Previous exceptions" 132 | msgstr "上一个异常" 133 | 134 | #: ../view/error/index.phtml:58 135 | msgid "No Exception available" 136 | msgstr "没有可用的Exception" 137 | 138 | #: ../view/error/404.phtml:1 139 | msgid "A 404 error occurred" 140 | msgstr "404 缺少目标文件" 141 | 142 | #: ../view/error/404.phtml:10 143 | msgid "The requested controller was unable to dispatch the request." 144 | msgstr "所请求的控制器不能分发该请求" 145 | 146 | #: ../view/error/404.phtml:13 147 | msgid "" 148 | "The requested controller could not be mapped to an existing controller class." 149 | msgstr "所请求的控制器不能映射到已存在的控制器类" 150 | 151 | #: ../view/error/404.phtml:16 152 | msgid "The requested controller was not dispatchable." 153 | msgstr "" 154 | 155 | #: ../view/error/404.phtml:19 156 | msgid "The requested URL could not be matched by routing." 157 | msgstr "所请求的URL不能与路由对应" 158 | 159 | #: ../view/error/404.phtml:22 160 | msgid "We cannot determine at this time why a 404 was generated." 161 | msgstr "我们不能确定为什么这次会出现404" 162 | 163 | #: ../view/error/404.phtml:34 164 | msgid "Controller" 165 | msgstr "控制器" 166 | 167 | #: ../view/error/404.phtml:41 168 | #, php-format 169 | msgid "resolves to %s" 170 | msgstr "解决: %s" 171 | 172 | #: ../view/error/404.phtml:51 173 | msgid "Exception" 174 | msgstr "异常" 175 | -------------------------------------------------------------------------------- /module/Application/language/zh_TW.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/module/Application/language/zh_TW.mo -------------------------------------------------------------------------------- /module/Application/language/zh_TW.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: ZendSkeletonApplication\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2012-07-05 22:17-0700\n" 6 | "PO-Revision-Date: 2012-10-21 17:47+0800\n" 7 | "Last-Translator: atans \n" 8 | "Language-Team: ZF Contibutors \n" 9 | "Language: en_US\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Poedit-KeywordsList: translate\n" 14 | "X-Poedit-Basepath: .\n" 15 | "X-Generator: Poedit 1.5.4\n" 16 | "X-Poedit-SearchPath-0: ..\n" 17 | 18 | #: ../view/layout/layout.phtml:6 ../view/layout/layout.phtml:33 19 | msgid "Skeleton Application" 20 | msgstr "框架應用" 21 | 22 | #: ../view/layout/layout.phtml:36 23 | msgid "Home" 24 | msgstr "首頁" 25 | 26 | #: ../view/layout/layout.phtml:50 27 | msgid "All rights reserved." 28 | msgstr "All rights reserved." 29 | 30 | #: ../view/application/index/index.phtml:2 31 | #, php-format 32 | msgid "Welcome to %sZend Framework 2%s" 33 | msgstr "歡迎使用%sZend Framework 2%s" 34 | 35 | #: ../view/application/index/index.phtml:3 36 | #, php-format 37 | msgid "" 38 | "Congratulations! You have successfully installed the %sZF2 Skeleton " 39 | "Application%s. You are currently running Zend Framework version %s. This " 40 | "skeleton can serve as a simple starting point for you to begin building your " 41 | "application on ZF2." 42 | msgstr "" 43 | "恭喜!您已經成功安裝了%sZF2 Skeleton Application%s。您現在運行的Zend " 44 | "Framework的版本為%s。這個框架應用可以用作您創建自己的ZF2應用的起點。" 45 | 46 | #: ../view/application/index/index.phtml:4 47 | msgid "Fork Zend Framework 2 on GitHub" 48 | msgstr "在GitHub中獲取Zend Framework 2到你的應用" 49 | 50 | #: ../view/application/index/index.phtml:10 51 | msgid "Follow Development" 52 | msgstr "關注開發" 53 | 54 | #: ../view/application/index/index.phtml:11 55 | #, php-format 56 | msgid "" 57 | "Zend Framework 2 is under active development. If you are interested in " 58 | "following the development of ZF2, there is a special ZF2 portal on the " 59 | "official Zend Framework website which provides links to the ZF2 %swiki%s, " 60 | "%sdev blog%s, %sissue tracker%s, and much more. This is a great resource for " 61 | "staying up to date with the latest developments!" 62 | msgstr "" 63 | "Zend Framework 2正在開發中。如果您有興趣關注ZF2的開發,Zend Framework的官方網" 64 | "站有一個專門的ZF2入口,從這個入口可以進入ZF2的%swiki%s, %sdev blog%s, " 65 | "%sissue tracker%s等。這些是關注我們最新開發的好資源!" 66 | 67 | #: ../view/application/index/index.phtml:12 68 | msgid "ZF2 Development Portal" 69 | msgstr "ZF2 開發入口" 70 | 71 | #: ../view/application/index/index.phtml:16 72 | msgid "Discover Modules" 73 | msgstr "探索模塊" 74 | 75 | #: ../view/application/index/index.phtml:17 76 | #, php-format 77 | msgid "" 78 | "The community is working on developing a community site to serve as a " 79 | "repository and gallery for ZF2 modules. The project is available %son GitHub" 80 | "%s. The site is currently live and currently contains a list of some of the " 81 | "modules already available for ZF2." 82 | msgstr "" 83 | "社區正在開發一個能夠存儲和展示ZF2模塊批號的功能。這個項目可以在%son GitHub%s" 84 | "找到。這個網站現在已經包含了許多ZF2可用的模塊。" 85 | 86 | #: ../view/application/index/index.phtml:18 87 | msgid "Explore ZF2 Modules" 88 | msgstr "瀏覽ZF2模塊" 89 | 90 | #: ../view/application/index/index.phtml:22 91 | msgid "Help & Support" 92 | msgstr "幫助 & 支持" 93 | 94 | #: ../view/application/index/index.phtml:23 95 | #, php-format 96 | msgid "" 97 | "If you need any help or support while developing with ZF2, you may reach us " 98 | "via IRC: %s#zftalk on Freenode%s. We'd love to hear any questions or " 99 | "feedback you may have regarding the beta releases. Alternatively, you may " 100 | "subscribe and post questions to the %smailing lists%s." 101 | msgstr "" 102 | "如果您需要一些關於ZF2開發的幫助和支持,可以通過IRC: %s#zftalk on Freenode" 103 | "%s。我們非常樂意​​收到您對於發布的公測版提問和反饋。或者,您也可以通" 104 | "過%smailing lists%s訂閱並發布問題。" 105 | 106 | #: ../view/application/index/index.phtml:24 107 | msgid "Ping us on IRC" 108 | msgstr "在IRC上ping我們" 109 | 110 | #: ../view/error/index.phtml:1 111 | msgid "An error occurred" 112 | msgstr "發生錯誤" 113 | 114 | #: ../view/error/index.phtml:8 115 | msgid "Additional information" 116 | msgstr "附加信息" 117 | 118 | #: ../view/error/index.phtml:11 ../view/error/index.phtml:35 119 | msgid "File" 120 | msgstr "文件" 121 | 122 | #: ../view/error/index.phtml:15 ../view/error/index.phtml:39 123 | msgid "Message" 124 | msgstr "消息" 125 | 126 | #: ../view/error/index.phtml:19 ../view/error/index.phtml:43 127 | #: ../view/error/404.phtml:55 128 | msgid "Stack trace" 129 | msgstr "Stack trace" 130 | 131 | #: ../view/error/index.phtml:29 132 | msgid "Previous exceptions" 133 | msgstr "上一个異常" 134 | 135 | #: ../view/error/index.phtml:58 136 | msgid "No Exception available" 137 | msgstr "沒有可用的Exception" 138 | 139 | #: ../view/error/404.phtml:1 140 | msgid "A 404 error occurred" 141 | msgstr "404 缺少目標文件" 142 | 143 | #: ../view/error/404.phtml:10 144 | msgid "The requested controller was unable to dispatch the request." 145 | msgstr "所请求的控制器不能分发该请求" 146 | 147 | #: ../view/error/404.phtml:13 148 | msgid "" 149 | "The requested controller could not be mapped to an existing controller class." 150 | msgstr "所請求的控制器不能映射到已存在的控制器類" 151 | 152 | #: ../view/error/404.phtml:16 153 | msgid "The requested controller was not dispatchable." 154 | msgstr "" 155 | 156 | #: ../view/error/404.phtml:19 157 | msgid "The requested URL could not be matched by routing." 158 | msgstr "所請求的URL不能與路由對應" 159 | 160 | #: ../view/error/404.phtml:22 161 | msgid "We cannot determine at this time why a 404 was generated." 162 | msgstr "我們不能確定為什麼這次會出現404" 163 | 164 | #: ../view/error/404.phtml:34 165 | msgid "Controller" 166 | msgstr "控制器" 167 | 168 | #: ../view/error/404.phtml:41 169 | #, php-format 170 | msgid "resolves to %s" 171 | msgstr "解決: %s" 172 | 173 | #: ../view/error/404.phtml:51 174 | msgid "Exception" 175 | msgstr "異常" 176 | -------------------------------------------------------------------------------- /module/Application/src/Application/Controller/IndexController.php: -------------------------------------------------------------------------------- 1 | 2 |

translate('Welcome to %sZend Framework 2%s'), '', '') ?>

3 |

translate('Congratulations! You have successfully installed the %sZF2 Skeleton Application%s. You are currently running Zend Framework version %s. This skeleton can serve as a simple starting point for you to begin building your application on ZF2.'), '', '', \Zend\Version\Version::VERSION) ?>

4 |

translate('Fork Zend Framework 2 on GitHub') ?> »

5 | 6 | 7 |
8 | 9 |
10 |

translate('Follow Development') ?>

11 |

translate('Zend Framework 2 is under active development. If you are interested in following the development of ZF2, there is a special ZF2 portal on the official Zend Framework website which provides links to the ZF2 %swiki%s, %sdev blog%s, %sissue tracker%s, and much more. This is a great resource for staying up to date with the latest developments!'), '', '', '', '', '', '') ?>

12 |

translate('ZF2 Development Portal') ?> »

13 |
14 | 15 |
16 |

translate('Discover Modules') ?>

17 |

translate('The community is working on developing a community site to serve as a repository and gallery for ZF2 modules. The project is available %son GitHub%s. The site is currently live and currently contains a list of some of the modules already available for ZF2.'), '', '') ?>

18 |

translate('Explore ZF2 Modules') ?> »

19 |
20 | 21 |
22 |

translate('Help & Support') ?>

23 |

translate('If you need any help or support while developing with ZF2, you may reach us via IRC: %s#zftalk on Freenode%s. We\'d love to hear any questions or feedback you may have regarding the beta releases. Alternatively, you may subscribe and post questions to the %smailing lists%s.'), '', '', '', '') ?>

24 |

translate('Ping us on IRC') ?> »

25 |
26 |
27 | -------------------------------------------------------------------------------- /module/Application/view/error/404.phtml: -------------------------------------------------------------------------------- 1 |

translate('A 404 error occurred') ?>

2 |

message ?>

3 | 4 | reason) && $this->reason): ?> 5 | 6 | reason) { 9 | case 'error-controller-cannot-dispatch': 10 | $reasonMessage = $this->translate('The requested controller was unable to dispatch the request.'); 11 | break; 12 | case 'error-controller-not-found': 13 | $reasonMessage = $this->translate('The requested controller could not be mapped to an existing controller class.'); 14 | break; 15 | case 'error-controller-invalid': 16 | $reasonMessage = $this->translate('The requested controller was not dispatchable.'); 17 | break; 18 | case 'error-router-no-match': 19 | $reasonMessage = $this->translate('The requested URL could not be matched by routing.'); 20 | break; 21 | default: 22 | $reasonMessage = $this->translate('We cannot determine at this time why a 404 was generated.'); 23 | break; 24 | } 25 | ?> 26 | 27 |

28 | 29 | 30 | 31 | controller) && $this->controller): ?> 32 | 33 |
34 |
translate('Controller') ?>:
35 |
escapeHtml($this->controller) ?> 36 | controller_class) 38 | && $this->controller_class 39 | && $this->controller_class != $this->controller 40 | ) { 41 | echo '(' . sprintf($this->translate('resolves to %s'), $this->escapeHtml($this->controller_class)) . ')'; 42 | } 43 | ?> 44 |
45 |
46 | 47 | 48 | 49 | display_exceptions) && $this->display_exceptions): ?> 50 | 51 | exception) && $this->exception instanceof Exception): ?> 52 |
53 |

translate('Additional information') ?>:

54 |

exception); ?>

55 |
56 |
translate('File') ?>:
57 |
58 |
exception->getFile() ?>:exception->getLine() ?>
59 |
60 |
translate('Message') ?>:
61 |
62 |
exception->getMessage() ?>
63 |
64 |
translate('Stack trace') ?>:
65 |
66 |
exception->getTraceAsString() ?>
67 |
68 |
69 | exception->getPrevious(); 71 | if ($e) : 72 | ?> 73 |
74 |

translate('Previous exceptions') ?>:

75 |
    76 | 77 |
  • 78 |

    79 |
    80 |
    translate('File') ?>:
    81 |
    82 |
    getFile() ?>:getLine() ?>
    83 |
    84 |
    translate('Message') ?>:
    85 |
    86 |
    getMessage() ?>
    87 |
    88 |
    translate('Stack trace') ?>:
    89 |
    90 |
    getTraceAsString() ?>
    91 |
    92 |
    93 |
  • 94 | getPrevious(); 96 | endwhile; 97 | ?> 98 |
99 | 100 | 101 | 102 | 103 |

translate('No Exception available') ?>

104 | 105 | 106 | 107 | 108 | -------------------------------------------------------------------------------- /module/Application/view/error/index.phtml: -------------------------------------------------------------------------------- 1 |

translate('An error occurred') ?>

2 |

message ?>

3 | 4 | display_exceptions) && $this->display_exceptions): ?> 5 | 6 | exception) && $this->exception instanceof Exception): ?> 7 |
8 |

translate('Additional information') ?>:

9 |

exception); ?>

10 |
11 |
translate('File') ?>:
12 |
13 |
exception->getFile() ?>:exception->getLine() ?>
14 |
15 |
translate('Message') ?>:
16 |
17 |
exception->getMessage() ?>
18 |
19 |
translate('Stack trace') ?>:
20 |
21 |
exception->getTraceAsString() ?>
22 |
23 |
24 | exception->getPrevious(); 26 | if ($e) : 27 | ?> 28 |
29 |

translate('Previous exceptions') ?>:

30 |
    31 | 32 |
  • 33 |

    34 |
    35 |
    translate('File') ?>:
    36 |
    37 |
    getFile() ?>:getLine() ?>
    38 |
    39 |
    translate('Message') ?>:
    40 |
    41 |
    getMessage() ?>
    42 |
    43 |
    translate('Stack trace') ?>:
    44 |
    45 |
    getTraceAsString() ?>
    46 |
    47 |
    48 |
  • 49 | getPrevious(); 51 | endwhile; 52 | ?> 53 |
54 | 55 | 56 | 57 | 58 |

translate('No Exception available') ?>

59 | 60 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /module/Application/view/layout/layout.phtml: -------------------------------------------------------------------------------- 1 | doctype(); ?> 2 | 3 | 4 | 5 | 6 | headTitle('ZF2 '. $this->translate('Skeleton Application'))->setSeparator(' - ')->setAutoEscape(false) ?> 7 | 8 | headMeta()->appendName('viewport', 'width=device-width, initial-scale=1.0') ?> 9 | 10 | 11 | headLink(array('rel' => 'shortcut icon', 'type' => 'image/vnd.microsoft.icon', 'href' => $this->basePath() . '/img/favicon.ico')) 12 | ->prependStylesheet($this->basePath() . '/css/bootstrap-responsive.min.css') 13 | ->prependStylesheet($this->basePath() . '/css/style.css') 14 | ->prependStylesheet($this->basePath() . '/css/bootstrap.min.css') ?> 15 | 16 | 17 | headScript()->prependFile($this->basePath() . '/js/html5.js', 'text/javascript', array('conditional' => 'lt IE 9',)) 18 | ->prependFile($this->basePath() . '/js/bootstrap.min.js') 19 | ->prependFile($this->basePath() . '/js/jquery.min.js') ?> 20 | 21 | 22 | 23 | 40 |
41 | content; ?> 42 |
43 |
44 |

© 2005 - by Zend Technologies Ltd. translate('All rights reserved.') ?>

45 |
46 |
47 | inlineScript() ?> 48 | 49 | 50 | -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | # The following rule tells Apache that if the requested filename 3 | # exists, simply serve it. 4 | RewriteCond %{REQUEST_FILENAME} -s [OR] 5 | RewriteCond %{REQUEST_FILENAME} -l [OR] 6 | RewriteCond %{REQUEST_FILENAME} -d 7 | RewriteRule ^.*$ - [NC,L] 8 | # The following rewrites all other queries to index.php. The 9 | # condition ensures that if you are using Apache aliases to do 10 | # mass virtual hosting, the base path will be prepended to 11 | # allow proper resolution of the index.php file; it will work 12 | # in non-aliased environments as well, providing a safe, one-size 13 | # fits all solution. 14 | RewriteCond %{REQUEST_URI}::$1 ^(/.+)(.+)::\2$ 15 | RewriteRule ^(.*) - [E=BASE:%1] 16 | RewriteRule ^(.*)$ %{ENV:BASE}index.php [NC,L] 17 | -------------------------------------------------------------------------------- /public/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Responsive v2.2.2 3 | * 4 | * Copyright 2012 Twitter, Inc 5 | * Licensed under the Apache License v2.0 6 | * http://www.apache.org/licenses/LICENSE-2.0 7 | * 8 | * Designed and built with all the love in the world @twitter by @mdo and @fat. 9 | */@-ms-viewport{width:device-width}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.hidden{display:none;visibility:hidden}.visible-phone{display:none!important}.visible-tablet{display:none!important}.hidden-desktop{display:none!important}.visible-desktop{display:inherit!important}@media(min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit!important}.visible-desktop{display:none!important}.visible-tablet{display:inherit!important}.hidden-tablet{display:none!important}}@media(max-width:767px){.hidden-desktop{display:inherit!important}.visible-desktop{display:none!important}.visible-phone{display:inherit!important}.hidden-phone{display:none!important}}@media(min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:30px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px}.span12{width:1170px}.span11{width:1070px}.span10{width:970px}.span9{width:870px}.span8{width:770px}.span7{width:670px}.span6{width:570px}.span5{width:470px}.span4{width:370px}.span3{width:270px}.span2{width:170px}.span1{width:70px}.offset12{margin-left:1230px}.offset11{margin-left:1130px}.offset10{margin-left:1030px}.offset9{margin-left:930px}.offset8{margin-left:830px}.offset7{margin-left:730px}.offset6{margin-left:630px}.offset5{margin-left:530px}.offset4{margin-left:430px}.offset3{margin-left:330px}.offset2{margin-left:230px}.offset1{margin-left:130px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%}.row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%}.row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%}.row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%}.row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%}.row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%}.row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%}.row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%}.row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%}.row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%}.row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%}.row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%}.row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%}.row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%}.row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%}.row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%}.row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%}.row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%}.row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%}.row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%}.row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%}.row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%}.row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%}.row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%}.row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%}.row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%}.row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%}.row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%}.row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%}.row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%}.row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%}.row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%}.row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%}.row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%}.row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:30px}input.span12,textarea.span12,.uneditable-input.span12{width:1156px}input.span11,textarea.span11,.uneditable-input.span11{width:1056px}input.span10,textarea.span10,.uneditable-input.span10{width:956px}input.span9,textarea.span9,.uneditable-input.span9{width:856px}input.span8,textarea.span8,.uneditable-input.span8{width:756px}input.span7,textarea.span7,.uneditable-input.span7{width:656px}input.span6,textarea.span6,.uneditable-input.span6{width:556px}input.span5,textarea.span5,.uneditable-input.span5{width:456px}input.span4,textarea.span4,.uneditable-input.span4{width:356px}input.span3,textarea.span3,.uneditable-input.span3{width:256px}input.span2,textarea.span2,.uneditable-input.span2{width:156px}input.span1,textarea.span1,.uneditable-input.span1{width:56px}.thumbnails{margin-left:-30px}.thumbnails>li{margin-left:30px}.row-fluid .thumbnails{margin-left:0}}@media(min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:20px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px}.span12{width:724px}.span11{width:662px}.span10{width:600px}.span9{width:538px}.span8{width:476px}.span7{width:414px}.span6{width:352px}.span5{width:290px}.span4{width:228px}.span3{width:166px}.span2{width:104px}.span1{width:42px}.offset12{margin-left:764px}.offset11{margin-left:702px}.offset10{margin-left:640px}.offset9{margin-left:578px}.offset8{margin-left:516px}.offset7{margin-left:454px}.offset6{margin-left:392px}.offset5{margin-left:330px}.offset4{margin-left:268px}.offset3{margin-left:206px}.offset2{margin-left:144px}.offset1{margin-left:82px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%}.row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%}.row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%}.row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%}.row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%}.row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%}.row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%}.row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%}.row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%}.row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%}.row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%}.row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%}.row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%}.row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%}.row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%}.row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%}.row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%}.row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%}.row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%}.row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%}.row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%}.row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%}.row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%}.row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%}.row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%}.row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%}.row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%}.row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%}.row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%}.row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%}.row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%}.row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%}.row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%}.row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%}.row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:20px}input.span12,textarea.span12,.uneditable-input.span12{width:710px}input.span11,textarea.span11,.uneditable-input.span11{width:648px}input.span10,textarea.span10,.uneditable-input.span10{width:586px}input.span9,textarea.span9,.uneditable-input.span9{width:524px}input.span8,textarea.span8,.uneditable-input.span8{width:462px}input.span7,textarea.span7,.uneditable-input.span7{width:400px}input.span6,textarea.span6,.uneditable-input.span6{width:338px}input.span5,textarea.span5,.uneditable-input.span5{width:276px}input.span4,textarea.span4,.uneditable-input.span4{width:214px}input.span3,textarea.span3,.uneditable-input.span3{width:152px}input.span2,textarea.span2,.uneditable-input.span2{width:90px}input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media(max-width:767px){body{padding-right:20px;padding-left:20px}.navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-right:-20px;margin-left:-20px}.container-fluid{padding:0}.dl-horizontal dt{float:none;width:auto;clear:none;text-align:left}.dl-horizontal dd{margin-left:0}.container{width:auto}.row-fluid{width:100%}.row,.thumbnails{margin-left:0}.thumbnails>li{float:none;margin-left:0}[class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{display:block;float:none;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="offset"]:first-child{margin-left:0}.input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto}.controls-row [class*="span"]+[class*="span"]{margin-left:0}.modal{position:fixed;top:20px;right:20px;left:20px;width:auto;margin:0}.modal.fade{top:-100px}.modal.fade.in{top:20px}}@media(max-width:480px){.nav-collapse{-webkit-transform:translate3d(0,0,0)}.page-header h1 small{display:block;line-height:20px}input[type="checkbox"],input[type="radio"]{border:1px solid #ccc}.form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left}.form-horizontal .controls{margin-left:0}.form-horizontal .control-list{padding-top:0}.form-horizontal .form-actions{padding-right:10px;padding-left:10px}.media .pull-left,.media .pull-right{display:block;float:none;margin-bottom:10px}.media-object{margin-right:0;margin-left:0}.modal{top:10px;right:10px;left:10px}.modal-header .close{padding:10px;margin:-10px}.carousel-caption{position:static}}@media(max-width:979px){body{padding-top:0}.navbar-fixed-top,.navbar-fixed-bottom{position:static}.navbar-fixed-top{margin-bottom:20px}.navbar-fixed-bottom{margin-top:20px}.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px}.navbar .container{width:auto;padding:0}.navbar .brand{padding-right:10px;padding-left:10px;margin:0 0 0 -5px}.nav-collapse{clear:both}.nav-collapse .nav{float:none;margin:0 0 10px}.nav-collapse .nav>li{float:none}.nav-collapse .nav>li>a{margin-bottom:2px}.nav-collapse .nav>.divider-vertical{display:none}.nav-collapse .nav .nav-header{color:#777;text-shadow:none}.nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.nav-collapse .dropdown-menu li+li a{margin-bottom:2px}.nav-collapse .nav>li>a:hover,.nav-collapse .dropdown-menu a:hover{background-color:#f2f2f2}.navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999}.navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:hover{background-color:#111}.nav-collapse.in .btn-group{padding:0;margin-top:5px}.nav-collapse .dropdown-menu{position:static;top:auto;left:auto;display:none;float:none;max-width:none;padding:0;margin:0 15px;background-color:transparent;border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.nav-collapse .open>.dropdown-menu{display:block}.nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none}.nav-collapse .dropdown-menu .divider{display:none}.nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none}.nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1)}.navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111}.navbar .nav-collapse .nav.pull-right{float:none;margin-left:0}.nav-collapse,.nav-collapse.collapse{height:0;overflow:hidden}.navbar .btn-navbar{display:block}.navbar-static .navbar-inner{padding-right:10px;padding-left:10px}}@media(min-width:980px){.nav-collapse.collapse{height:auto!important;overflow:visible!important}} 10 | -------------------------------------------------------------------------------- /public/css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 60px; 3 | padding-bottom: 40px; 4 | } 5 | 6 | .zf-green { 7 | color: #68b604; 8 | } 9 | 10 | .btn-success { 11 | background-color: #57a900; 12 | background-image: -moz-linear-gradient(top, #70d900, #57a900); 13 | background-image: -ms-linear-gradient(top, #70d900, #57a900); 14 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#70d900), to(#57a900)); 15 | background-image: -webkit-linear-gradient(top, #70d900, #57a900); 16 | background-image: -o-linear-gradient(top, #70d900, #57a900); 17 | background-image: linear-gradient(top, #70d900, #57a900); 18 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#70d900', endColorstr='#57a900', GradientType=0); 19 | } 20 | 21 | .btn-success:hover, 22 | .btn-success:active, 23 | .btn-success.active, 24 | .btn-success.disabled, 25 | .btn-success[disabled] { 26 | background-color: #57a900; 27 | } 28 | 29 | .btn-success:active, .btn-success.active { 30 | background-color: #57a900; 31 | } 32 | 33 | div.container a.brand { 34 | background: url("../img/zf2-logo.png") no-repeat scroll 0 10px transparent; 35 | margin-left: 0; 36 | padding: 8px 20px 12px 40px; 37 | } 38 | -------------------------------------------------------------------------------- /public/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/public/img/favicon.ico -------------------------------------------------------------------------------- /public/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/public/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /public/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/public/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/img/zf2-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicstorm/site-builder/208f9ad513d3327291843c6c93eed07cd3507ded/public/img/zf2-logo.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- 1 | run(); 13 | -------------------------------------------------------------------------------- /public/js/bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap.js by @fat & @mdo 3 | * Copyright 2012 Twitter, Inc. 4 | * http://www.apache.org/licenses/LICENSE-2.0.txt 5 | */ 6 | !function($){"use strict";$(function(){$.support.transition=function(){var transitionEnd=function(){var name,el=document.createElement("bootstrap"),transEndEventNames={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(name in transEndEventNames)if(void 0!==el.style[name])return transEndEventNames[name]}();return transitionEnd&&{end:transitionEnd}}()})}(window.jQuery),!function($){"use strict";var dismiss='[data-dismiss="alert"]',Alert=function(el){$(el).on("click",dismiss,this.close)};Alert.prototype.close=function(e){function removeElement(){$parent.trigger("closed").remove()}var $parent,$this=$(this),selector=$this.attr("data-target");selector||(selector=$this.attr("href"),selector=selector&&selector.replace(/.*(?=#[^\s]*$)/,"")),$parent=$(selector),e&&e.preventDefault(),$parent.length||($parent=$this.hasClass("alert")?$this:$this.parent()),$parent.trigger(e=$.Event("close")),e.isDefaultPrevented()||($parent.removeClass("in"),$.support.transition&&$parent.hasClass("fade")?$parent.on($.support.transition.end,removeElement):removeElement())};var old=$.fn.alert;$.fn.alert=function(option){return this.each(function(){var $this=$(this),data=$this.data("alert");data||$this.data("alert",data=new Alert(this)),"string"==typeof option&&data[option].call($this)})},$.fn.alert.Constructor=Alert,$.fn.alert.noConflict=function(){return $.fn.alert=old,this},$(document).on("click.alert.data-api",dismiss,Alert.prototype.close)}(window.jQuery),!function($){"use strict";var Button=function(element,options){this.$element=$(element),this.options=$.extend({},$.fn.button.defaults,options)};Button.prototype.setState=function(state){var d="disabled",$el=this.$element,data=$el.data(),val=$el.is("input")?"val":"html";state+="Text",data.resetText||$el.data("resetText",$el[val]()),$el[val](data[state]||this.options[state]),setTimeout(function(){"loadingText"==state?$el.addClass(d).attr(d,d):$el.removeClass(d).removeAttr(d)},0)},Button.prototype.toggle=function(){var $parent=this.$element.closest('[data-toggle="buttons-radio"]');$parent&&$parent.find(".active").removeClass("active"),this.$element.toggleClass("active")};var old=$.fn.button;$.fn.button=function(option){return this.each(function(){var $this=$(this),data=$this.data("button"),options="object"==typeof option&&option;data||$this.data("button",data=new Button(this,options)),"toggle"==option?data.toggle():option&&data.setState(option)})},$.fn.button.defaults={loadingText:"loading..."},$.fn.button.Constructor=Button,$.fn.button.noConflict=function(){return $.fn.button=old,this},$(document).on("click.button.data-api","[data-toggle^=button]",function(e){var $btn=$(e.target);$btn.hasClass("btn")||($btn=$btn.closest(".btn")),$btn.button("toggle")})}(window.jQuery),!function($){"use strict";var Carousel=function(element,options){this.$element=$(element),this.options=options,"hover"==this.options.pause&&this.$element.on("mouseenter",$.proxy(this.pause,this)).on("mouseleave",$.proxy(this.cycle,this))};Carousel.prototype={cycle:function(e){return e||(this.paused=!1),this.options.interval&&!this.paused&&(this.interval=setInterval($.proxy(this.next,this),this.options.interval)),this},to:function(pos){var $active=this.$element.find(".item.active"),children=$active.parent().children(),activePos=children.index($active),that=this;if(!(pos>children.length-1||0>pos))return this.sliding?this.$element.one("slid",function(){that.to(pos)}):activePos==pos?this.pause().cycle():this.slide(pos>activePos?"next":"prev",$(children[pos]))},pause:function(e){return e||(this.paused=!0),this.$element.find(".next, .prev").length&&$.support.transition.end&&(this.$element.trigger($.support.transition.end),this.cycle()),clearInterval(this.interval),this.interval=null,this},next:function(){return this.sliding?void 0:this.slide("next")},prev:function(){return this.sliding?void 0:this.slide("prev")},slide:function(type,next){var e,$active=this.$element.find(".item.active"),$next=next||$active[type](),isCycling=this.interval,direction="next"==type?"left":"right",fallback="next"==type?"first":"last",that=this;if(this.sliding=!0,isCycling&&this.pause(),$next=$next.length?$next:this.$element.find(".item")[fallback](),e=$.Event("slide",{relatedTarget:$next[0]}),!$next.hasClass("active")){if($.support.transition&&this.$element.hasClass("slide")){if(this.$element.trigger(e),e.isDefaultPrevented())return;$next.addClass(type),$next[0].offsetWidth,$active.addClass(direction),$next.addClass(direction),this.$element.one($.support.transition.end,function(){$next.removeClass([type,direction].join(" ")).addClass("active"),$active.removeClass(["active",direction].join(" ")),that.sliding=!1,setTimeout(function(){that.$element.trigger("slid")},0)})}else{if(this.$element.trigger(e),e.isDefaultPrevented())return;$active.removeClass("active"),$next.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return isCycling&&this.cycle(),this}}};var old=$.fn.carousel;$.fn.carousel=function(option){return this.each(function(){var $this=$(this),data=$this.data("carousel"),options=$.extend({},$.fn.carousel.defaults,"object"==typeof option&&option),action="string"==typeof option?option:options.slide;data||$this.data("carousel",data=new Carousel(this,options)),"number"==typeof option?data.to(option):action?data[action]():options.interval&&data.cycle()})},$.fn.carousel.defaults={interval:5e3,pause:"hover"},$.fn.carousel.Constructor=Carousel,$.fn.carousel.noConflict=function(){return $.fn.carousel=old,this},$(document).on("click.carousel.data-api","[data-slide]",function(e){var href,$this=$(this),$target=$($this.attr("data-target")||(href=$this.attr("href"))&&href.replace(/.*(?=#[^\s]+$)/,"")),options=$.extend({},$target.data(),$this.data());$target.carousel(options),e.preventDefault()})}(window.jQuery),!function($){"use strict";var Collapse=function(element,options){this.$element=$(element),this.options=$.extend({},$.fn.collapse.defaults,options),this.options.parent&&(this.$parent=$(this.options.parent)),this.options.toggle&&this.toggle()};Collapse.prototype={constructor:Collapse,dimension:function(){var hasWidth=this.$element.hasClass("width");return hasWidth?"width":"height"},show:function(){var dimension,scroll,actives,hasData;if(!this.transitioning){if(dimension=this.dimension(),scroll=$.camelCase(["scroll",dimension].join("-")),actives=this.$parent&&this.$parent.find("> .accordion-group > .in"),actives&&actives.length){if(hasData=actives.data("collapse"),hasData&&hasData.transitioning)return;actives.collapse("hide"),hasData||actives.data("collapse",null)}this.$element[dimension](0),this.transition("addClass",$.Event("show"),"shown"),$.support.transition&&this.$element[dimension](this.$element[0][scroll])}},hide:function(){var dimension;this.transitioning||(dimension=this.dimension(),this.reset(this.$element[dimension]()),this.transition("removeClass",$.Event("hide"),"hidden"),this.$element[dimension](0))},reset:function(size){var dimension=this.dimension();return this.$element.removeClass("collapse")[dimension](size||"auto")[0].offsetWidth,this.$element[null!==size?"addClass":"removeClass"]("collapse"),this},transition:function(method,startEvent,completeEvent){var that=this,complete=function(){"show"==startEvent.type&&that.reset(),that.transitioning=0,that.$element.trigger(completeEvent)};this.$element.trigger(startEvent),startEvent.isDefaultPrevented()||(this.transitioning=1,this.$element[method]("in"),$.support.transition&&this.$element.hasClass("collapse")?this.$element.one($.support.transition.end,complete):complete())},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var old=$.fn.collapse;$.fn.collapse=function(option){return this.each(function(){var $this=$(this),data=$this.data("collapse"),options="object"==typeof option&&option;data||$this.data("collapse",data=new Collapse(this,options)),"string"==typeof option&&data[option]()})},$.fn.collapse.defaults={toggle:!0},$.fn.collapse.Constructor=Collapse,$.fn.collapse.noConflict=function(){return $.fn.collapse=old,this},$(document).on("click.collapse.data-api","[data-toggle=collapse]",function(e){var href,$this=$(this),target=$this.attr("data-target")||e.preventDefault()||(href=$this.attr("href"))&&href.replace(/.*(?=#[^\s]+$)/,""),option=$(target).data("collapse")?"toggle":$this.data();$this[$(target).hasClass("in")?"addClass":"removeClass"]("collapsed"),$(target).collapse(option)})}(window.jQuery),!function($){"use strict";function clearMenus(){$(toggle).each(function(){getParent($(this)).removeClass("open")})}function getParent($this){var $parent,selector=$this.attr("data-target");return selector||(selector=$this.attr("href"),selector=selector&&/#/.test(selector)&&selector.replace(/.*(?=#[^\s]*$)/,"")),$parent=$(selector),$parent.length||($parent=$this.parent()),$parent}var toggle="[data-toggle=dropdown]",Dropdown=function(element){var $el=$(element).on("click.dropdown.data-api",this.toggle);$("html").on("click.dropdown.data-api",function(){$el.parent().removeClass("open")})};Dropdown.prototype={constructor:Dropdown,toggle:function(){var $parent,isActive,$this=$(this);if(!$this.is(".disabled, :disabled"))return $parent=getParent($this),isActive=$parent.hasClass("open"),clearMenus(),isActive||$parent.toggleClass("open"),$this.focus(),!1},keydown:function(e){var $this,$items,$parent,isActive,index;if(/(38|40|27)/.test(e.keyCode)&&($this=$(this),e.preventDefault(),e.stopPropagation(),!$this.is(".disabled, :disabled"))){if($parent=getParent($this),isActive=$parent.hasClass("open"),!isActive||isActive&&27==e.keyCode)return $this.click();$items=$("[role=menu] li:not(.divider):visible a",$parent),$items.length&&(index=$items.index($items.filter(":focus")),38==e.keyCode&&index>0&&index--,40==e.keyCode&&$items.length-1>index&&index++,~index||(index=0),$items.eq(index).focus())}}};var old=$.fn.dropdown;$.fn.dropdown=function(option){return this.each(function(){var $this=$(this),data=$this.data("dropdown");data||$this.data("dropdown",data=new Dropdown(this)),"string"==typeof option&&data[option].call($this)})},$.fn.dropdown.Constructor=Dropdown,$.fn.dropdown.noConflict=function(){return $.fn.dropdown=old,this},$(document).on("click.dropdown.data-api touchstart.dropdown.data-api",clearMenus).on("click.dropdown touchstart.dropdown.data-api",".dropdown form",function(e){e.stopPropagation()}).on("touchstart.dropdown.data-api",".dropdown-menu",function(e){e.stopPropagation()}).on("click.dropdown.data-api touchstart.dropdown.data-api",toggle,Dropdown.prototype.toggle).on("keydown.dropdown.data-api touchstart.dropdown.data-api",toggle+", [role=menu]",Dropdown.prototype.keydown)}(window.jQuery),!function($){"use strict";var Modal=function(element,options){this.options=options,this.$element=$(element).delegate('[data-dismiss="modal"]',"click.dismiss.modal",$.proxy(this.hide,this)),this.options.remote&&this.$element.find(".modal-body").load(this.options.remote)};Modal.prototype={constructor:Modal,toggle:function(){return this[this.isShown?"hide":"show"]()},show:function(){var that=this,e=$.Event("show");this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.escape(),this.backdrop(function(){var transition=$.support.transition&&that.$element.hasClass("fade");that.$element.parent().length||that.$element.appendTo(document.body),that.$element.show(),transition&&that.$element[0].offsetWidth,that.$element.addClass("in").attr("aria-hidden",!1),that.enforceFocus(),transition?that.$element.one($.support.transition.end,function(){that.$element.focus().trigger("shown")}):that.$element.focus().trigger("shown")}))},hide:function(e){e&&e.preventDefault(),e=$.Event("hide"),this.$element.trigger(e),this.isShown&&!e.isDefaultPrevented()&&(this.isShown=!1,this.escape(),$(document).off("focusin.modal"),this.$element.removeClass("in").attr("aria-hidden",!0),$.support.transition&&this.$element.hasClass("fade")?this.hideWithTransition():this.hideModal())},enforceFocus:function(){var that=this;$(document).on("focusin.modal",function(e){that.$element[0]===e.target||that.$element.has(e.target).length||that.$element.focus()})},escape:function(){var that=this;this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.modal",function(e){27==e.which&&that.hide()}):this.isShown||this.$element.off("keyup.dismiss.modal")},hideWithTransition:function(){var that=this,timeout=setTimeout(function(){that.$element.off($.support.transition.end),that.hideModal()},500);this.$element.one($.support.transition.end,function(){clearTimeout(timeout),that.hideModal()})},hideModal:function(){this.$element.hide().trigger("hidden"),this.backdrop()},removeBackdrop:function(){this.$backdrop.remove(),this.$backdrop=null},backdrop:function(callback){var animate=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var doAnimate=$.support.transition&&animate;this.$backdrop=$('