xref: /plugin/vegalite/lang/en/settings.php (revision e66c86a29c7c323e0ed804145202ccc8d1c27d79)
1<?php
2/**
3 * Language settings for the DokuWiki Vega-Lite plugin.
4*
5* @package DokuWiki\Plugin\VegaLite
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 files?',
19    CONFIG_LOCATION . '_o_local' => 'locally hosted',
20    CONFIG_LOCATION . '_o_latest' => 'remotely hosted',
21];