43 lines
2.2 KiB
PHP
43 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* The file module English file of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package file
|
|
* @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
$lang->file = new stdclass();
|
|
$lang->file->common = 'Attachment';
|
|
$lang->file->uploadImages = 'Batch Upload Images';
|
|
$lang->file->download = 'Download Files';
|
|
$lang->file->uploadDate = 'Uploaded on';
|
|
$lang->file->edit = 'Rename';
|
|
$lang->file->inputFileName = 'Enter a File Name';
|
|
$lang->file->delete = 'Delete File';
|
|
$lang->file->label = 'Label:';
|
|
$lang->file->maxUploadSize = "<span class='red'>%s</span>";
|
|
$lang->file->applyTemplate = "Apply a Template";
|
|
$lang->file->tplTitle = "Template Name";
|
|
$lang->file->setPublic = "Set Public Template";
|
|
$lang->file->exportFields = "Fileds to be Exported";
|
|
$lang->file->defaultTPL = "Default Template";
|
|
$lang->file->setExportTPL = "Settings";
|
|
$lang->file->preview = "Preview";
|
|
|
|
$lang->file->errorNotExists = "<span class='red'>'%s' is not found.</span>";
|
|
$lang->file->errorCanNotWrite = "<span class='red'>'%s' is not writable. Please change its permission. Enter sudo chmod -R 777 '%s'</span> in Linux.";
|
|
$lang->file->confirmDelete = " Do you want to delete it?";
|
|
$lang->file->errorFileSize = " File size exceeds the limit. It cannot be uploaded!";
|
|
$lang->file->errorFileUpload = " Uploading failed. File size might exceeds the limit.";
|
|
$lang->file->dangerFile = " File has been rejected to upload for security issues.";
|
|
$lang->file->errorSuffix = 'Format is incorrect. .zip files ONLY!';
|
|
$lang->file->errorExtract = 'Extracting file failed. File might be damaged or invalid files in the zip package.';
|
|
$lang->file->uploadImagesExplain = <<<EOD
|
|
<p>1. If the uploaded file is image zip package, the file name will be the label and images will be the content.</p>
|
|
<p>2. If the file name containing numbers/underlines, they will be omitted.</p>
|
|
<p>3. Image formate: jpg, jpeg, gif, png.</p>
|
|
EOD;
|