├── .github ├── FUNDING.yml ├── SECURITY.md └── workflows │ └── master.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src ├── LaravelPtBrLocalizationServiceProvider.php ├── pt_BR.json └── pt_BR ├── auth.php ├── pagination.php ├── passwords.php └── validation.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascudo/laravel-pt-BR-localization/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascudo/laravel-pt-BR-localization/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/workflows/master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascudo/laravel-pt-BR-localization/HEAD/.github/workflows/master.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascudo/laravel-pt-BR-localization/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascudo/laravel-pt-BR-localization/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascudo/laravel-pt-BR-localization/HEAD/composer.json -------------------------------------------------------------------------------- /src/LaravelPtBrLocalizationServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascudo/laravel-pt-BR-localization/HEAD/src/LaravelPtBrLocalizationServiceProvider.php -------------------------------------------------------------------------------- /src/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascudo/laravel-pt-BR-localization/HEAD/src/pt_BR.json -------------------------------------------------------------------------------- /src/pt_BR/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascudo/laravel-pt-BR-localization/HEAD/src/pt_BR/auth.php -------------------------------------------------------------------------------- /src/pt_BR/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascudo/laravel-pt-BR-localization/HEAD/src/pt_BR/pagination.php -------------------------------------------------------------------------------- /src/pt_BR/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascudo/laravel-pt-BR-localization/HEAD/src/pt_BR/passwords.php -------------------------------------------------------------------------------- /src/pt_BR/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascudo/laravel-pt-BR-localization/HEAD/src/pt_BR/validation.php --------------------------------------------------------------------------------