mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
31 lines
1.4 KiB
PHP
31 lines
1.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Filemanager PHP connector language file: English
|
|
*
|
|
* lang/en.php
|
|
* language file for the filemanager.php connector
|
|
*
|
|
* @license MIT License
|
|
* @author Riaan Los <mail (at) riaanlos (dot) nl>
|
|
* @copyright Authors
|
|
*/
|
|
|
|
$lang['AUTHORIZATION_REQUIRED'] = 'You are not authorized to use filemanager.';
|
|
$lang['INVALID_ACTION'] = 'Invalid action.';
|
|
$lang['MODE_ERROR'] = 'Mode error.';
|
|
$lang['DIRECTORY_ALREADY_EXISTS'] = 'The directory \'%s\' already exists.';
|
|
$lang['UNABLE_TO_CREATE_DIRECTORY'] = 'Unable to create the directory %s.';
|
|
$lang['INVALID_VAR'] = 'Invalid var %s.';
|
|
$lang['DIRECTORY_NOT_EXIST'] = 'The directory %s does not exist.';
|
|
$lang['UNABLE_TO_OPEN_DIRECTORY'] = 'Unable to open the directory %s.';
|
|
$lang['ERROR_RENAMING_DIRECTORY'] = 'Error while renaming the directory %s to %s.';
|
|
$lang['ERROR_RENAMING_FILE'] = 'Error while renaming the file %s to %s.';
|
|
$lang['INVALID_DIRECTORY_OR_FILE'] = 'Invalid directory or file.';
|
|
$lang['INVALID_FILE_UPLOAD'] = 'Invalid file upload.';
|
|
$lang['UPLOAD_FILES_SMALLER_THAN'] = 'Please upload only files smaller than %s.';
|
|
$lang['UPLOAD_IMAGES_ONLY'] = 'Please upload only images, no other files are supported.';
|
|
$lang['UPLOAD_IMAGES_TYPE_JPEG_GIF_PNG'] = 'Please upload only images of type JPEG, GIF or PNG.';
|
|
$lang['FILE_DOES_NOT_EXIST'] = 'The file %s does not exist.';
|
|
|
|
?>
|