<?php
/*
 * Display File Dokuwiki Plugin
 * Copyright (c) 2016 Jay Jeckel
 * Licensed under the MIT license: https://opensource.org/licenses/MIT
 * Permission is granted to use, copy, modify, and distribute the work.
 * Full license information available in the project LICENSE file.
*/

$lang['error_root_empty'] = "The 'root_path' plugin configuration option is empty.";
$lang['error_root_invalid'] = "The 'root_path' plugin configuration option is invalid.";
$lang['error_traversal_token'] = "The target '%s' must not contain path traversal tokens '../'.";
$lang['error_extension_allow'] = "Access is not allowed to files with the extension '%s'.";
$lang['error_extension_deny'] = "Access is denied to files with the extension '%s'.";
$lang['error_access'] = "The file '%s' could not be accessed.";
$lang['error_read'] = "The file '%s' could not be read.";
$lang['error_self'] = "The file '%s' could not read itself.";

?>