Skip to content
This repository has been archived by the owner on Jul 16, 2020. It is now read-only.

Releases: martinlindhe/laravel-vue-i18n-generator

0.1.16

19 Jul 18:41
Compare
Choose a tag to compare
Named translation fix for JSON files (#23)

0.1.15: Individual locales files (#22)

11 Jul 20:46
Compare
Choose a tag to compare
* Added Option to create Multiple Files with multiple languages so it can be implemented via Component based localization

* Added option to change Locales so we use Lang:get() on our language files on laravel and recive a pure js fully translated , example in php         'error' => Lang::get('errors.please_enter_valid',['label' => Lang::get('words.email')]),  on js
"en": {
        "email": {
            "error": "Please enter a valid Email Address",
        },
    },
    "es": {
        "email": {
            "error": "Por favor inserta un Correo Electronico correcto",
        },
    }

* Fixed multi line on privates
Added validation on allocateLocaleArray to prevent  creation of fileToCreate if no Locale is defined

0.1.14: feat: Add optional UMD style module export (#19)

05 Jul 12:35
Compare
Choose a tag to compare
* feat: Add optional UMD style module export

Add ability to export the locales into an UMD styled export object.

* test: Fix failing tests.

0.1.13: Add support for JSON translation files (#16)

12 Jun 20:48
Compare
Choose a tag to compare
* Add support for JSON translation files

* fixed array merge

* refactored code

0.1.12

21 Mar 01:26
Compare
Choose a tag to compare
improve regexp to not treat single : as links, fixes #13

0.1.11

07 Feb 02:48
Compare
Choose a tag to compare
Generator: propagate error if found unexpected data

Laravel 5.4 compatibility

25 Jan 14:06
Compare
Choose a tag to compare
0.1.10

composer: accept laravel 5.4

Laravel 5.4 compatibility

25 Jan 13:39
Compare
Choose a tag to compare
Merge pull request #10 from yateric/patch-1

share() method has depreciated in Laravel 5.4

0.1.8: Merge pull request #9 from appointer/support-dir-nesting

29 Dec 20:39
Compare
Choose a tag to compare
Support dir nesting (and further minor tweaks)

0.1.7: Merge pull request #7 from bayi/master

01 Nov 08:43
Compare
Choose a tag to compare
Ignore non php files in resources/lang folders