From a716e0cae1dde8c30ce03ddd0abf33803a0f5d5a Mon Sep 17 00:00:00 2001 From: printempw Date: Sat, 5 Aug 2017 13:43:55 +0800 Subject: [PATCH] Add Chinese translation for dependency check --- bootstrap/autoload.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bootstrap/autoload.php b/bootstrap/autoload.php index b3af0926..9ce776cf 100644 --- a/bootstrap/autoload.php +++ b/bootstrap/autoload.php @@ -17,7 +17,10 @@ define('LARAVEL_START', microtime(true)); if (file_exists($autoload = __DIR__.'/../vendor/autoload.php')) { require $autoload; } else { - exit("No vendor folder found. Have you installed the dependencies with composer?"); + exit( + "No vendor folder found. Have you installed the dependencies with composer?
". + "根目录下未发现 vendor 文件夹,请参照安装说明使用 composer 安装依赖库。" + ); } /*