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

Releases: martinlindhe/laravel-vue-i18n-generator

0.1.16

Choose a tag to compare

@martinlindhe martinlindhe released this 19 Jul 18:41
Named translation fix for JSON files (#23)

0.1.15: Individual locales files (#22)

Choose a tag to compare

@martinlindhe martinlindhe released this 11 Jul 20:46
* 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)

Choose a tag to compare

@martinlindhe martinlindhe released this 05 Jul 12:35
* 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)

Choose a tag to compare

@martinlindhe martinlindhe released this 12 Jun 20:48
* Add support for JSON translation files

* fixed array merge

* refactored code

0.1.12

Choose a tag to compare

@martinlindhe martinlindhe released this 21 Mar 01:26
improve regexp to not treat single : as links, fixes #13

0.1.11

Choose a tag to compare

@martinlindhe martinlindhe released this 07 Feb 02:48
Generator: propagate error if found unexpected data

Laravel 5.4 compatibility

Choose a tag to compare

@martinlindhe martinlindhe released this 25 Jan 14:06
0.1.10

composer: accept laravel 5.4

Laravel 5.4 compatibility

Choose a tag to compare

@martinlindhe martinlindhe released this 25 Jan 13:39
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

Choose a tag to compare

@martinlindhe martinlindhe released this 29 Dec 20:39
Support dir nesting (and further minor tweaks)

0.1.7: Merge pull request #7 from bayi/master

Choose a tag to compare

@martinlindhe martinlindhe released this 01 Nov 08:43
Ignore non php files in resources/lang folders