Skip to content

Commit 12fb35e

Browse files
committed
Update readme
1 parent f340d0e commit 12fb35e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
Laravel Larex lets you translate your whole Laravel application with a single CSV file.
1616

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.
1818

1919
Laravel Larex also supports functionalities to sort entries and find strings that aren't localized yet.
2020

@@ -48,7 +48,7 @@ php artisan vendor:publish --provider="Lukasss93\Larex\LarexServiceProvider" --t
4848
## 👓 Usage
4949

5050
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>
5252
The csv file has the following columns:
5353

5454
* group (basically the file name)
@@ -99,7 +99,7 @@ php artisan vendor:publish --provider="Lukasss93\Larex\LarexServiceProvider" --t
9999
4. You'll get the following files:
100100

101101
```php
102-
//project-root/resources/lang/en/app.php
102+
//project-root/lang/en/app.php
103103

104104
<?php
105105

@@ -113,7 +113,7 @@ php artisan vendor:publish --provider="Lukasss93\Larex\LarexServiceProvider" --t
113113
```
114114

115115
```php
116-
//project-root/resources/lang/it/app.php
116+
//project-root/lang/it/app.php
117117

118118
<?php
119119

0 commit comments

Comments
 (0)