1<?php
2/*
3 * Display File Dokuwiki Plugin
4 * Copyright (c) 2016 Jay Jeckel
5 * Licensed under the MIT license: https://opensource.org/licenses/MIT
6 * Permission is granted to use, copy, modify, and distribute the work.
7 * Full license information available in the project LICENSE file.
8*/
9
10$lang['error_root_empty'] = "The 'root_path' plugin configuration option is empty.";
11$lang['error_root_invalid'] = "The 'root_path' plugin configuration option is invalid.";
12$lang['error_traversal_token'] = "The target '%s' must not contain path traversal tokens '../'.";
13$lang['error_extension_allow'] = "Access is not allowed to files with the extension '%s'.";
14$lang['error_extension_deny'] = "Access is denied to files with the extension '%s'.";
15$lang['error_access'] = "The file '%s' could not be accessed.";
16$lang['error_read'] = "The file '%s' could not be read.";
17$lang['error_self'] = "The file '%s' could not read itself.";
18
19?>