1<?php
2/**
3 * English language file for json plugin
4 *
5 * @author Janez Paternoster <janez.paternoster@siol.net>
6 */
7
8// keys need to match the config setting name
9
10$lang['ignore_if_no_plugin'] = 'If tag name is other than &lt;json&gt; and corresponding plugin is not found, ignore the element.';
11$lang['null_str'] = 'String to show in table cell, if data is not defined.';
12$lang['array_str'] = 'String to show in table cell, if data array with no printable members.';
13$lang['true_str'] = 'String to show in table cell on boolean variable set to true.';
14$lang['false_str'] = 'String to show in table cell on boolean variable set to false.';
15$lang['src_recursive'] = 'Maximum depth for recursive loading JSON data from &lt;json src=...&gt; elements. (0 ... 99)';
16$lang['json_display'] = 'Default type of display for &ltjson&gt element. May be empty or "all" or comma separated list from: '
17                        .'original, inline, combined, log, error. Asterrisk (*) after token will activate corresponding field.';
18$lang['enable_ejs'] = 'Enable EJS template engine. See https://ejs.co/ and https://github.com/json-editor/json-editor#templates';
19