Files
online.tbbank.gov.tm-larave…/config/locale-finder.php
2023-11-27 01:19:42 +05:00

77 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',
],
];