This plugin can be used also at sites without more localisations, so plugin should not depend on Translate, am I right? Maybe you can define function `trans` somehow like that? ``` if (!function_exists('trans')) { function trans($s) { return $s; } } ```
This plugin can be used also at sites without more localisations, so plugin should not depend on Translate, am I right?
Maybe you can define function
transsomehow like that?