| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /**
- * This file is part of the "Laravel-Lang/publisher" project.
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- *
- * @author Andrey Helldar <helldar@dragon-code.pro>
- * @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',
- ],
- ];
|