xref: /plugin/mermaid/lang/en/settings.php (revision 92788e2adf6db51e15a23fbdf03e4583c834cd34)
1<?php
2 /**
3  * Language settings for the DokuWiki Mermaid plugin.
4  *
5  * @package DokuWiki\Plugin\Mermaid
6  */
7
8 declare(strict_types=1);
9
10 if (!defined('DOKU_INC')) {
11     die();
12 }
13
14 require_once __DIR__ . '/../../conf/config_keys.php';
15
16 $lang = [
17     // Location settings
18     CONFIG_LOCATION => 'Use locally or remotely hosted mermaid file?',
19     CONFIG_LOCATION . '_o_local' => 'locally hosted, version 11.12.1 (CJS)',
20     CONFIG_LOCATION . '_o_latest' => 'remotely hosted, latest version (ESM)',
21     CONFIG_LOCATION . '_o_remote1095' => 'remotely hosted, version 10.9.5 (ESM)',
22     CONFIG_LOCATION . '_o_remote943' => 'remotely hosted, version 9.4.3 (CJS)',
23
24     // Legacy location settings (no longer explicitly available)
25     CONFIG_LOCATION . '_o_remote1091' => 'remotely hosted, version 10.9.1 (ESM)',
26     CONFIG_LOCATION . '_o_remote108' => 'remotely hosted, version 10.8 (ESM)',
27     CONFIG_LOCATION . '_o_remote106' => 'remotely hosted, version 10.6 (ESM)',
28     CONFIG_LOCATION . '_o_remote104' => 'remotely hosted, version 10.4 (ESM)',
29     CONFIG_LOCATION . '_o_remote103' => 'remotely hosted, version 10.3 (ESM)',
30     CONFIG_LOCATION . '_o_remote102' => 'remotely hosted, version 10.2 (ESM)',
31     CONFIG_LOCATION . '_o_remote101' => 'remotely hosted, version 10.1 (ESM)',
32     CONFIG_LOCATION . '_o_remote100' => 'remotely hosted, version 10.0 (ESM)',
33     CONFIG_LOCATION . '_o_remote94' => 'remotely hosted, version 9.4 (CJS)',
34     CONFIG_LOCATION . '_o_remote93' => 'remotely hosted, version 9.3 (CJS)',
35
36     // Theme settings
37     CONFIG_THEME => 'Default theme',
38     CONFIG_THEME . '_o_default' => 'default',
39     CONFIG_THEME . '_o_neutral' => 'neutral',
40     CONFIG_THEME . '_o_dark' => 'dark',
41     CONFIG_THEME . '_o_forest' => 'forest',
42     CONFIG_THEME . '_o_base' => 'base',
43     CONFIG_THEME . '_o_mc' => 'mc',
44     CONFIG_THEME . '_o_neo' => 'neo',
45     CONFIG_THEME . '_o_neo_dark' => 'neo-dark',
46
47     // Look settings
48     CONFIG_LOOK => 'Default look',
49     CONFIG_LOOK . '_o_classic' => 'classic',
50     CONFIG_LOOK . '_o_neo' => 'neo',
51     CONFIG_LOOK . '_o_handDrawn' => 'handDrawn',
52
53     // Log level settings
54     CONFIG_LOG_LEVEL => 'Log level',
55     CONFIG_LOG_LEVEL . '_o_trace' => 'trace',
56     CONFIG_LOG_LEVEL . '_o_debug' => 'debug',
57     CONFIG_LOG_LEVEL . '_o_info' => 'info',
58     CONFIG_LOG_LEVEL . '_o_warn' => 'warn',
59     CONFIG_LOG_LEVEL . '_o_error' => 'error',
60     CONFIG_LOG_LEVEL . '_o_fatal' => 'fatal',
61
62     // Show save button settings
63     SHOW_SAVE_BUTTON => 'Show save button',
64
65     // Show lock button settings
66     SHOW_LOCK_BUTTON => 'Show lock button',
67 ];