* @copyright 2022 Andrey Helldar * @license MIT * * @see https://github.com/Laravel-Lang/publisher */ declare(strict_types=1); return [ /* * Determines what type of files to use when updating language files. * * `true` means inline files will be used. * `false` means that default files will be used. * * For example, the difference between them can be seen here: * * The :attribute must be accepted. // default * This field must be accepted. // inline * * By default, `false`. */ 'inline' => false, /* * Do arrays need to be aligned by keys before processing arrays? * * By default, true */ 'align' => true, /* * The language codes chosen for the files in this repository may not * match the preferences for your project. * * Specify here mappings of localizations with your project. */ 'aliases' => [ //\LaravelLang\Publisher\Constants\Locales::GERMAN->value => 'de-DE', // //\LaravelLang\Publisher\Constants\Locales::GERMAN_SWITZERLAND->value => 'de-CH', ], ];