Skip to content

Commit ad72cf2

Browse files
committed
wip
1 parent 0cf7613 commit ad72cf2

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -49,23 +49,23 @@ This reads through all your code and finds all your language function usage.
4949
Then attempts to find matches in your language files and will output any
5050
language keys that are not being used in your code.
5151

52-
**Note:** Default laravel language files are ignored by default.
53-
You can change the filters used in the [config file](config/translation-linter.php).
52+
**Note:** Some language keys are filtered out by default, you can change the
53+
filters used in the [config file](config/translation-linter.php).
5454

5555
```sh
5656
$ php artisan translation:unused
5757

5858
ERROR 5 unused translations found.
5959

60-
+--------+-----------+------------------------------------+----------------------------------------------------+
61-
| Locale | Namespace | Key | Value |
62-
+--------+-----------+------------------------------------+----------------------------------------------------+
63-
| en | | Unused PHP Class | I am unused in php class |
64-
| en | | Unused Blade File | I am unused in blade |
65-
| en | | Unused Vue Component | I am unused in vue component |
66-
| en | | example.unused | I am unused in php class |
67-
| de | | example.unused | Ich werde in einer PHP-Klasse nicht verwendet |
68-
+--------+-----------+------------------------------------+----------------------------------------------------+
60+
+--------+----------------------+-----------------------------------------------+
61+
| Locale | Key | Value |
62+
+--------+----------------------+-----------------------------------------------+
63+
| en | Unused PHP Class | I am unused in php class |
64+
| en | Unused Blade File | I am unused in blade |
65+
| en | Unused Vue Component | I am unused in vue component |
66+
| en | example.unused | I am unused in php class |
67+
| de | example.unused | Ich werde in einer PHP-Klasse nicht verwendet |
68+
+--------+----------------------+-----------------------------------------------+
6969
```
7070

7171
## Testing

0 commit comments

Comments
 (0)