11### Version Notes
22
3- The 1.x.x versions are for Laravel 4.2, 2.1.x versions are for Laravel 5.1+, 2.3.x for Laravel
4- 5.3, 2.4.x for Laravel 5.4, 2.5.x for Laravel 5.5 and 2.6.x for Laravel 5.6 compatibility.
3+ Version compatibility map:
4+ * 1.x.x versions are for Laravel 4.2,
5+ * 2.1.x versions are for Laravel 5.1+,
6+ * 2.3.x for Laravel 5.3,
7+ * 2.4.x for Laravel 5.4,
8+ * 2.5.x for Laravel 5.5
9+ * 2.6.x for Laravel 5.6
10+ * 6.x.x for Laravel 6.x
11+
12+ #### 6.0.0
13+
14+ * Fix: merge #147 , PR: Add support for Laravel 6 thanks to
15+ [ joaorbrandao] ( https://github.com/joaorbrandao )
516
617#### 2.6.46
718
@@ -19,13 +30,13 @@ The 1.x.x versions are for Laravel 4.2, 2.1.x versions are for Laravel 5.1+, 2.3
1930 setting up routes.
2031
2132 For example:
22-
33+
2334 ``` php
2435 Lang::setCustomPostProcessor(function ($translation) {
2536 return str_replace(':app_name', config('app.name'), $translation);
2637 });
2738 ```
28-
39+
2940 Will change ` :app_name ` to the application name dynamically. Should be used to eliminate the
3041 need to have function calls in translations by changing function calls to parameter arguments.
3142
@@ -50,11 +61,11 @@ The 1.x.x versions are for Laravel 4.2, 2.1.x versions are for Laravel 5.1+, 2.3
5061
5162#### 2.6.32
5263
53- * Fix: #119 , Call to undefined function Vsch\TranslationManager\getSupportedLocale().
64+ * Fix: #119 , Call to undefined function Vsch\TranslationManager\getSupportedLocale().
5465
5566#### 2.6.30
5667
57- * Fix: unpublished mode shows groups not in LTM database as undefined.
68+ * Fix: unpublished mode shows groups not in LTM database as undefined.
5869* Fix: unpublished mode showing translations marked deleted instead of as undefined
5970* Fix: add missing keys to the cache to not thrash the database on every access to their
6071 translations
@@ -76,13 +87,13 @@ The 1.x.x versions are for Laravel 4.2, 2.1.x versions are for Laravel 5.1+, 2.3
7687 before sending for translation. Prefixes results with ` :count ` if it was present in the
7788 original. This prevents Yandex translate from getting confused and results in better plural
7889 forms, especially for Russian which has 3.
79- * Change: Now ` |: ` generates plural forms with ` :count ` prefix and toggles the prefix once
80- the plurals are generated. Toggles in the pattern: plurals only prefixed, all prefixed,
90+ * Change: Now ` |: ` generates plural forms with ` :count ` prefix and toggles the prefix once the
91+ plurals are generated. Toggles in the pattern: plurals only prefixed, all prefixed,
8192 none-prefixed.
8293
8394#### 2.6.26
8495
85- * Add: PR merge from @vesper8 for customizing regex for reference search through the config.
96+ * Add: PR merge from @vesper8 for customizing regex for reference search through the config.
8697* Fix: clean out old recursive publish group code
8798* Fix: zipping translations used to inadvertently publish the translations
8899* Fix: JSON export now fills in any empty json -> ltm mapping keys (the translation values of
212223#### 2.5.16
213224
214225* Fix: hard coded ` ltm_translations ` used in repository queries instead of table name (with
215- prefix).
226+ prefix).
216227
217228#### 2.5.14
218229
274285* Fix: #106 , Working with arrays
275286* Fix: #91 , Cookies generating wrong locales
276287* Add: preview mode for editors/admins, fix for #101 , Is there a way to preview the changes
277- before publishing
288+ before publishing
278289
279290#### 2.4.34
280291
0 commit comments