1<?php
2/**
3 * English (en) Settings Language File for KaTeX Plugin
4 *
5 * @license GPLv3 https://www.gnu.org/licenses/gpl-3.0.html
6 * @author H.-H. PENG (Hsins) <hsinspeng@gmail.com>
7 */
8
9// CDN Provider
10$lang['cdn-provider']               = 'Select the CDN (Content Delivery Network) service provider for hosting KaTeX files.';
11$lang['cdn-provider_o_self-hosted'] = 'Self-hosted without using CDN service';
12$lang['cdn-provider_o_bootcdn']     = 'BootCDN';
13$lang['cdn-provider_o_cdnjs']       = 'cdnjs';
14$lang['cdn-provider_o_unpkg']       = 'UNPKG';
15$lang['cdn-provider_o_jsdelivr']    = 'jsDelivr';
16$lang['cdn-provider_o_jshub']       = 'jsHub';
17$lang['cdn-provider_o_staticfile']  = 'Staticfile CDN';
18
19// KaTeX Extensions
20$lang['extension-copy-tex'] = 'Enable the "copy-tex" extension (When selecting and copying KaTeX-rendered elements, copies their LaTeX source to the clipboard).';
21$lang['extension-mhchem']   = 'Enable the "mhchem" extension (Write beautiful chemical equations easily)';
22
23// Rendering Options
24$lang['option-displaymode']     = 'Render expressions in Display Mode. The Display Mode starts in <code>\displaystyle</code>, so <code>\int</code> and <code>\sum</code> are large for example.';
25$lang['option-output']          = 'The markup language of the rendering output.';
26$lang['option-delimiters']      = 'List of delimiters to look for expressions, processed in the same order as the list.';
27$lang['option-ignored-tags']    = 'List of types of DOM node to ignore when recursing through.';
28$lang['option-ignored-classes'] = 'List of class names of DOM node to ignore when recursing through.';
29$lang['option-throwonerror']    = 'Throw a <code>ParseError</code> when it encounters an unsupported command or invalid LaTeX syntax; Else, KaTeX will render unsupported commands as text by given color.';
30$lang['option-error-color']     = 'The color that unsupported commands and invalid LaTeX syntax are rendered in when "throwonerror" is set to <code>false</code>.';
31$lang['option-macros']          = 'Collection of custom macros. Each macro maps a command to given expansion.';
32