Best laravel framework open-source packages.

Laravel 8 resources lang ja

The Japanese localization files for Laravel 8 JetStream
Updated 5 months ago

The Japanese localization files for Laravel 8 JetStream

A set of Japanese message files for Laravel 8. The necessary parts are Japaneseized for dashboards and so on.

To be specific, this corresponds to the part described in `{{{ __('message') }}} for i18n.

./resources
└── lang
    ├── ja
    │   ├── auth.php
    │   ├── pagination.php
    │   ├── passwords.php
    │   └── validation.php
    └── ja.json

Usage

1. Change the locale specified in the file config/app.php to Japanese. Changing from en to ja.

    'locale' => 'ja',
    'fallback_locale' => 'ja',

2. Download the files from this repository and overwrite them.

GUI Operation

Copy the resouces directory downloaded from this repository to your Laravel root directory.

Command Operation

Please change the your/laravel/root part to your environment.

git clone https://github.com/takehirotakiuchi/laravel-8-resources-lang-ja.git
cd laravel-8-resources-lang-ja
cp -pR ./resources your/laravel/root/

Reference