mirror of
https://github.com/dokuwiki/dokuwiki-plugin-dev.git
synced 2026-01-13 20:12:48 +00:00
This helps with refactoring larger plugins. The string detection is using regular expressions and may not find all strings on some occasions
10 lines
200 B
JavaScript
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'];
|