Files
online.tbbank.gov.tm-larave…/config/locale-finder.php

78 lines
2.2 KiB
PHP

<?php
return [
/*
|--------------------------------------------------------------------------
| Determine the paths
|--------------------------------------------------------------------------
|
*/
'paths' => [
'lang_folder' => base_path('lang'),
],
/*
|--------------------------------------------------------------------------
| The search options
|--------------------------------------------------------------------------
|
*/
'search' => [
/*
|--------------------------------------------------------------------------
| The folders the package uses to scan for translation keys
|--------------------------------------------------------------------------
|
*/
'folders' => [
base_path('app'),
resource_path('views'),
],
/*
|--------------------------------------------------------------------------
| Enter specific files
|--------------------------------------------------------------------------
|
*/
'files' => [
],
/*
|--------------------------------------------------------------------------
| The folders the package excludes from scanning
|--------------------------------------------------------------------------
|
*/
'exclude' => [
'storage',
],
/*
|--------------------------------------------------------------------------
| The files the package uses to scan for translation keys
|--------------------------------------------------------------------------
|
*/
'file_extension' => [
'*.php',
'*.js',
],
],
/*
|--------------------------------------------------------------------------
| The methods used to translate keys
|--------------------------------------------------------------------------
|
*/
'translation_methods' => [
'\$t',
'i18n.t',
'@lang',
'__',
'trans_choice',
],
];