You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-4Lines changed: 11 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,14 @@ Brings the translation of a nested key.
73
73
74
74
---
75
75
76
+
```
77
+
php artisan langman:show package::users.name
78
+
```
79
+
80
+
Brings the translation of a vendor package language file.
81
+
82
+
---
83
+
76
84
```
77
85
php artisan langman:show users.nam -c
78
86
```
@@ -113,6 +121,7 @@ asking you to give a translation for each, and finally save the given values to
113
121
```
114
122
php artisan langman:trans users.name
115
123
php artisan langman:trans users.name->en
124
+
php artisan langman:trans package::users.name
116
125
```
117
126
118
127
In the first case it'll ask you to give a translation for the given key in all languages, in the second case it'll ask you only
@@ -124,6 +133,7 @@ This command will add a new key if not existing, and updates the key if it is al
124
133
125
134
```
126
135
php artisan langman:remove users.name
136
+
php artisan langman:remove package::users.name
127
137
```
128
138
129
139
It'll remove that key from all language files.
@@ -135,7 +145,4 @@ It'll remove that key from all language files.
135
145
## Web interface
136
146
137
147
If you want a web interface to manage your language files instead, I recommend [Laravel 5 Translation Manager](https://github.com/barryvdh/laravel-translation-manager)
138
-
by [Barry vd. Heuvel](https://github.com/barryvdh).
139
-
140
-
## TODO
141
-
- Support vendor language files.
148
+
by [Barry vd. Heuvel](https://github.com/barryvdh).
0 commit comments