wip on loan order
This commit is contained in:
76
config/locale-finder.php
Normal file
76
config/locale-finder.php
Normal file
@@ -0,0 +1,76 @@
|
||||
<?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',
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user