1<?php 2 /** 3 * Language settings for the DokuWiki Mermaid plugin. 4 * 5 * @package DokuWiki\Plugin\Mermaid 6 */ 7 8declare(strict_types=1); 9 10if (!defined('DOKU_INC')) { 11 die(); 12} 13 14require_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.2.1 (CJS)', 20 CONFIG_LOCATION . '_o_latest' => 'remotely hosted, latest version (ESM)', 21 CONFIG_LOCATION . '_o_remote1091' => 'remotely hosted, version 10.9.1 (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_remote108' => 'remotely hosted, version 10.8 (ESM)', 26 CONFIG_LOCATION . '_o_remote106' => 'remotely hosted, version 10.6 (ESM)', 27 CONFIG_LOCATION . '_o_remote104' => 'remotely hosted, version 10.4 (ESM)', 28 CONFIG_LOCATION . '_o_remote103' => 'remotely hosted, version 10.3 (ESM)', 29 CONFIG_LOCATION . '_o_remote102' => 'remotely hosted, version 10.2 (ESM)', 30 CONFIG_LOCATION . '_o_remote101' => 'remotely hosted, version 10.1 (ESM)', 31 CONFIG_LOCATION . '_o_remote100' => 'remotely hosted, version 10.0 (ESM)', 32 CONFIG_LOCATION . '_o_remote94' => 'remotely hosted, version 9.4 (CJS)', 33 CONFIG_LOCATION . '_o_remote93' => 'remotely hosted, version 9.3 (CJS)', 34 35 // Theme settings 36 CONFIG_THEME => 'Default theme', 37 CONFIG_THEME . '_o_default' => 'default', 38 CONFIG_THEME . '_o_neutral' => 'neutral', 39 CONFIG_THEME . '_o_dark' => 'dark', 40 CONFIG_THEME . '_o_forest' => 'forest', 41 CONFIG_THEME . '_o_base' => 'base', 42 CONFIG_THEME . '_o_mc' => 'mc', 43 CONFIG_THEME . '_o_neo' => 'neo', 44 CONFIG_THEME . '_o_neo_dark' => 'neo-dark', 45 46 // Look settings 47 CONFIG_LOOK => 'Default look', 48 CONFIG_LOOK . '_o_classic' => 'classic', 49 CONFIG_LOOK . '_o_neo' => 'neo', 50 CONFIG_LOOK . '_o_handDrawn' => 'handDrawn', 51 52 // Log level settings 53 CONFIG_LOG_LEVEL => 'Log level', 54 CONFIG_LOG_LEVEL . '_o_trace' => 'trace', 55 CONFIG_LOG_LEVEL . '_o_debug' => 'debug', 56 CONFIG_LOG_LEVEL . '_o_info' => 'info', 57 CONFIG_LOG_LEVEL . '_o_warn' => 'warn', 58 CONFIG_LOG_LEVEL . '_o_error' => 'error', 59 CONFIG_LOG_LEVEL . '_o_fatal' => 'fatal', 60 61 // Show save button settings 62 SHOW_SAVE_BUTTON => 'Show save button', 63 64 // Show lock button settings 65 SHOW_LOCK_BUTTON => 'Show lock button', 66];