chewei05 / quickadmin-lang
Traditional Chinese (zh-TW) Language for Quickadmin.
Installs: 22
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/chewei05/quickadmin-lang
Requires
- laraveldaily/quickadmin: ^2.1.0
This package is not auto-updated.
Last update: 2025-10-07 23:26:27 UTC
README
Traditional Chinese (zh-TW) Language for Quickadmin 2.x
Quickadmin 2.x 的正體中文(繁體中文)語系檔.
Requirements
laraveldaily/quickadmin: ^2.1.0
Installation
Open the root directory of your Laravel project in terminal(CLI), and follow the following steps.
- Install laraveldaily/quickadmin first.
composer require laraveldaily/quickadmin
- Install this package QuickAdmin-Lang
composer require chewei05/quickadmin-lang
Copy Language Files
Copy Directly
- Files of languages are in "vendor/chewei05/src/lang" directory
- Copy the folders of languages to the resources/lang/vendor/laraveldaily folder of your Laravel 5 project.
Via Laravel Service Provider
- Add service provider to config/app.php.
'providers' => [ ... CheweiHu\QuickadminLang\QuickadminLangServiceProvider::class, ],
- Run composer dump-autoload if composer went wrong.
composer dump-autoload
- Publish vendor files of this package.
php artisan vendor:publish --provider="CheweiHu\QuickadminLang\QuickadminLangServiceProvider"
- Done.