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.15.0 (CJS)', 20 CONFIG_LOCATION . '_o_latest' => 'remotely hosted, latest version (ESM)', 21 CONFIG_LOCATION . '_o_remote1096' => 'remotely hosted, version 10.9.6 (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_remote1095' => 'remotely hosted, version 10.9.5 (ESM)', 26 CONFIG_LOCATION . '_o_remote1091' => 'remotely hosted, version 10.9.1 (ESM)', 27 CONFIG_LOCATION . '_o_remote108' => 'remotely hosted, version 10.8 (ESM)', 28 CONFIG_LOCATION . '_o_remote106' => 'remotely hosted, version 10.6 (ESM)', 29 CONFIG_LOCATION . '_o_remote104' => 'remotely hosted, version 10.4 (ESM)', 30 CONFIG_LOCATION . '_o_remote103' => 'remotely hosted, version 10.3 (ESM)', 31 CONFIG_LOCATION . '_o_remote102' => 'remotely hosted, version 10.2 (ESM)', 32 CONFIG_LOCATION . '_o_remote101' => 'remotely hosted, version 10.1 (ESM)', 33 CONFIG_LOCATION . '_o_remote100' => 'remotely hosted, version 10.0 (ESM)', 34 CONFIG_LOCATION . '_o_remote94' => 'remotely hosted, version 9.4 (CJS)', 35 CONFIG_LOCATION . '_o_remote93' => 'remotely hosted, version 9.3 (CJS)', 36 37 // Theme settings 38 CONFIG_THEME => 'Default theme', 39 CONFIG_THEME . '_o_default' => 'default', 40 CONFIG_THEME . '_o_neutral' => 'neutral', 41 CONFIG_THEME . '_o_dark' => 'dark', 42 CONFIG_THEME . '_o_forest' => 'forest', 43 CONFIG_THEME . '_o_base' => 'base', 44 CONFIG_THEME . '_o_mc' => 'mc', 45 CONFIG_THEME . '_o_neo' => 'neo', 46 CONFIG_THEME . '_o_neo_dark' => 'neo-dark', 47 48 // Look settings 49 CONFIG_LOOK => 'Default look', 50 CONFIG_LOOK . '_o_classic' => 'classic', 51 CONFIG_LOOK . '_o_neo' => 'neo', 52 CONFIG_LOOK . '_o_handDrawn' => 'handDrawn', 53 54 // Log level settings 55 CONFIG_LOG_LEVEL => 'Log level', 56 CONFIG_LOG_LEVEL . '_o_trace' => 'trace', 57 CONFIG_LOG_LEVEL . '_o_debug' => 'debug', 58 CONFIG_LOG_LEVEL . '_o_info' => 'info', 59 CONFIG_LOG_LEVEL . '_o_warn' => 'warn', 60 CONFIG_LOG_LEVEL . '_o_error' => 'error', 61 CONFIG_LOG_LEVEL . '_o_fatal' => 'fatal', 62 63 // Show save button settings 64 SHOW_SAVE_BUTTON => 'Show save button', 65 66 // Show lock button settings 67 SHOW_LOCK_BUTTON => 'Show lock button', 68 ];