cares0107 / translatable
This is laravel translatable package
Fund package maintenance!
translatable
Requires
- php: ^8.1|8.2|8.3
- illuminate/contracts: ^10.0
- spatie/laravel-package-tools: ^1.14.0
Requires (Dev)
- larastan/larastan: ^2.0.1
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.8
- orchestra/testbench: ^8.8
- pestphp/pest: ^2.20
- pestphp/pest-plugin-arch: ^2.5
- pestphp/pest-plugin-laravel: ^2.0
- pestphp/pest-plugin-watch: ^2.1
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- roave/security-advisories: dev-latest
This package is not auto-updated.
Last update: 2025-04-03 10:32:06 UTC
README
The Translatable package is a powerful tool designed for Laravel applications that require dynamic translation management across multiple languages. It automates the process of scanning your Laravel project for translation keys and ensures that each key is properly defined in the corresponding JSON translation files for every language specified in your configuration. With Translatable, you can easily maintain and update your application's translations, making it an essential package for developers aiming to provide a multilingual user experience.
Key features include:
- Automatic Scanning: Scours PHP files throughout your Laravel application to identify all instances of translation keys.
- Dynamic Translation Management: Automatically updates JSON translation files for each configured language, ensuring that no translation key is left undefined.
- Configurable and Extensible: Offers flexible configuration options, including customizable paths for scanning and exclusion rules to skip directories like vendor or node_modules.
- Streamlined Localization Workflow: Simplifies the localization process, making it easier to manage translations across large and complex applications. Whether you're building a small project or a large enterprise application, Translatable helps keep your translations organized and in sync, facilitating a smoother development process and a better user experience for multi-language applications.
Installation
You can install the package via composer:
composer require cares0107/translatable
You can publish the config file with:
php artisan vendor:publish --tag="translatable-config"
This is the contents of the published config file:
return [ 'available_countries' => [ 'en', 'nl', ], 'translation_files_path' => base_path(), 'exclude_paths' => [ '/vendor/', '/node_modules/', '/frontend/', '/website/', '/database/', '/.git/', '/.github/', ], ];
Usage
php artisan app:check-translations
Testing
composer test
Credits
License
The MIT License (MIT). Please see License File for more information.