mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
18 lines
533 B
PHP
18 lines
533 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* French translations for PHPFlasher.
|
|
*
|
|
* This file serves as a bridge between Laravel's translation system and
|
|
* PHPFlasher's core translation repository. It simply returns French
|
|
* translations from the core Messages class.
|
|
*
|
|
* Design pattern: Bridge - Connects Laravel's translation system to PHPFlasher's
|
|
* centralized message store.
|
|
*
|
|
* @return array<string, string> Key-value pairs of message identifiers and translations
|
|
*/
|
|
return Flasher\Prime\Translation\Messages::get('fr');
|