Files
Andreas Gohr 5586e97bc4 added cleanLang command
This helps with refactoring larger plugins. The string detection is
using regular expressions and may not find all strings on some occasions
2022-03-14 16:02:45 +01:00

10 lines
200 B
JavaScript

LANG.plugins.foo.string1; LANG['plugins']['foo']['string 2'];
LANG.plugins['foo']['string 3']
LANG.plugins['foo'].string4 + 'something';
LANG.plugins.foo.string1;
LANG.plugins['foo']['string 5'];