Georgi Georgiev

Results 52 comments of Georgi Georgiev

Ok, my bad, just found out, that the new validator version does not play well with another 3rd party script that capitalizes the letters in the input on the fly....

A-a-a-and the fix for this is to convert the WPEmerge\Helpers\Handler execute function as follows : ``` public function execute(...$arguments) { //$arguments = func_get_args(); $instance = $this->make(); if ( $instance instanceof...

Hmmm ... is this project still alive at all ?

I've actually got it working. It's a sick way, but it works. What I did is : 1. Configure Unibeautify to use PHP CS Fixer to format php files 2....

There *should* be a way to silence unimportant warnings, namely when a key is present and translated no matter where ! I'm using an approach where all often repeated messages...

By the way a workaround to all this mess is to use two instances - one local and one with global context and refer to the right one when translating....

Aaaand I found the problem : while your plugin states it is for the composition API, it internally uses the options API for the components. So, setting __VUE_OPTIONS_API__ to `false`...

And also - is the project still alive ?

Unfortunately I don't have a repo. I was digging around the error I'm getting, though, and found this : [https://issueexplorer.com/issue/getify/CAF/25](https://issueexplorer.com/issue/getify/CAF/25). I immediately thought this is my case. So maybe you...

@MartinMalinda Checked the CAF sources. They are using module.exports, which means no default export (or not exactly). This means `import CAF from "caf"` will never work in Webpack 5 and...