-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.php
38 lines (34 loc) · 1.36 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
return [
/*
|--------------------------------------------------------------------------
| Node.js-Executable
|--------------------------------------------------------------------------
| If the executable is not available on the global path the absolute path
| can be specified.
*/
'node_executable' => 'node',
/*
|--------------------------------------------------------------------------
| Extension of JavaScript-files
|--------------------------------------------------------------------------
| Only consider files with the given extension as JavaScript files.
*/
'extension' => 'js',
/*
|--------------------------------------------------------------------------
| Directory where to search for translation-calls
|--------------------------------------------------------------------------
| Directory that will be searched for JavaScript-files, subdirectories will
| be searched too.
*/
'directory' => 'resources/assets/js/',
/*
|--------------------------------------------------------------------------
| Default lemma used when inserting new keys
|--------------------------------------------------------------------------
| All new keys will have this lemma as the default translation, you can use
| `%s` to get the key.
*/
'lemma' => 'TODO: %s',
];