File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 14
14
15
15
Laravel Larex lets you translate your whole Laravel application with a single CSV file.
16
16
17
- You can import translation entries from resources/ lang files into a structured CSV, edit the translations and export them back to Laravel PHP files.
17
+ You can import translation entries from lang folder into a structured CSV, edit the translations and export them back to Laravel PHP files.
18
18
19
19
Laravel Larex also supports functionalities to sort entries and find strings that aren't localized yet.
20
20
@@ -48,7 +48,7 @@ php artisan vendor:publish --provider="Lukasss93\Larex\LarexServiceProvider" --t
48
48
## 👓 Usage
49
49
50
50
1 . First, you must create the initial CSV file with ` php artisan larex:init ` .<br >
51
- Or you can use ` php artisan larex:import ` to import entries from resources/ lang files .<br >
51
+ Or you can use ` php artisan larex:import ` to import entries from lang folder .<br >
52
52
The csv file has the following columns:
53
53
54
54
* group (basically the file name)
@@ -99,7 +99,7 @@ php artisan vendor:publish --provider="Lukasss93\Larex\LarexServiceProvider" --t
99
99
4 . You'll get the following files:
100
100
101
101
``` php
102
- //project-root/resources/ lang/en/app.php
102
+ //project-root/lang/en/app.php
103
103
104
104
<?php
105
105
@@ -113,7 +113,7 @@ php artisan vendor:publish --provider="Lukasss93\Larex\LarexServiceProvider" --t
113
113
```
114
114
115
115
``` php
116
- //project-root/resources/ lang/it/app.php
116
+ //project-root/lang/it/app.php
117
117
118
118
<?php
119
119
You can’t perform that action at this time.
0 commit comments