* @package api * @version $Id: English.php 824 2010-05-02 15:32:06Z wwccss $ * @link http://www.zentao.net */ $lang->api->common = 'API'; $lang->api->getModel = 'Super Model API'; $lang->api->sql = 'SQL Query API'; $lang->api->index = 'Home'; $lang->api->editLib = 'Edit'; $lang->api->releases = 'Release'; $lang->api->deleteRelease = 'Delete Release'; $lang->api->deleteLib = 'Delete API Doc'; $lang->api->createRelease = 'Publish'; $lang->api->createLib = 'Create API Library'; $lang->api->createApi = 'Create API Document'; $lang->api->createAB = 'Create'; $lang->api->createDemo = 'Import ZenTao Library'; $lang->api->edit = 'Edit'; $lang->api->delete = 'Delete'; $lang->api->position = 'Position'; $lang->api->startLine = "%s,%s"; $lang->api->desc = 'Description'; $lang->api->debug = 'Debug'; $lang->api->submit = 'Soumission'; $lang->api->url = 'Request URL'; $lang->api->result = 'Résultats'; $lang->api->status = 'Statut'; $lang->api->data = 'Données'; $lang->api->noParam = "Aucun paramètre n'est requis si GET Debug"; $lang->api->noModule = 'No directory in the API library. Please add the directory first'; $lang->api->post = 'Se référer à la liste si POST Debug'; $lang->api->noUniqueName = 'The API library name exists.'; $lang->api->noUniqueVersion = 'The version exists.'; $lang->api->version = 'Version'; $lang->api->createStruct = 'Create Data Structure'; $lang->api->editStruct = 'Edit Data Structure'; $lang->api->deleteStruct = 'Delete Data Structure'; $lang->api->create = 'Create API'; $lang->api->title = 'Name'; $lang->api->pageTitle = 'API Library'; $lang->api->module = 'Directory'; $lang->api->apiDoc = 'API'; $lang->api->manageType = 'Manage Directory'; $lang->api->managePublish = 'Manage Version'; $lang->api->doing = 'Doing'; $lang->api->done = 'Done'; $lang->api->basicInfo = 'Basic Information'; $lang->api->apiDesc = 'Description'; $lang->api->confirmDelete = "Do you want to delete this API?"; $lang->api->confirmDeleteLib = "Do you want to delete this interface library?"; $lang->api->filterStruct = "use struct"; $lang->api->defaultVersion = "Current Version"; $lang->api->zentaoAPI = "Zentao API v1"; $lang->api->search = "Search"; $lang->api->allLibs = "AllLibs"; /* Common access control lang. */ $lang->api->whiteList = 'Whitelist'; $lang->api->aclList['open'] = 'Open'; $lang->api->aclList['private'] = 'Private'; $lang->api->aclList['custom'] = 'Custom'; $lang->api->group = 'Group'; $lang->api->user = 'User'; $lang->api->noticeAcl = array( 'open' => 'Users who can access the API library can access it.', 'custom' => 'Users on the whiltelist can access it.', 'private' => 'Only the one who creates it can access it.', ); /* fields of struct */ $lang->struct = new stdClass(); $lang->struct->add = 'Add'; $lang->struct->field = 'Field'; $lang->struct->paramsType = 'Type'; $lang->struct->required = 'Require'; $lang->struct->desc = 'Description'; $lang->struct->descPlaceholder = 'Parameter Description'; $lang->struct->action = 'Action'; $lang->struct->addSubField = 'Add Subfield'; $lang->struct->typeOptions = array( 'formData' => 'FormData', 'json' => 'JSON', 'array' => 'Array', 'object' => 'Object', ); /* fields of form */ $lang->api->struct = 'Data Structure'; $lang->api->structName = 'Name'; $lang->api->structType = 'Type'; $lang->api->structAttr = 'Attribute'; $lang->api->structAddedBy = 'CreatedBy'; $lang->api->structAddedDate = 'Created'; $lang->api->name = 'API Library Name'; $lang->api->baseUrl = 'Base URL'; $lang->api->baseUrlDesc = 'Site or path, e.g., api.zentao.com or /v1.'; $lang->api->desc = 'Description'; $lang->api->control = 'Access Control'; $lang->api->noLib = 'No API library yet.'; $lang->api->noApi = 'No API yet.'; $lang->api->noStruct = 'No API yet.'; $lang->api->lib = 'API Library'; $lang->api->apiList = 'API List'; $lang->api->formTitle = 'API Name'; $lang->api->path = 'Request Path'; $lang->api->protocol = 'Protocol'; $lang->api->method = 'Method'; $lang->api->requestType = 'Type'; $lang->api->status = 'Statut'; $lang->api->owner = 'Owner'; $lang->api->paramsExample = 'Request Example'; $lang->api->header = 'Request Header'; $lang->api->query = 'Parameter'; $lang->api->params = 'Request Body'; $lang->api->response = 'Response'; $lang->api->responseExample = 'Response Example'; $lang->api->id = 'ID'; $lang->api->addedBy = 'AddedBy'; $lang->api->addedDate = 'AddedDate'; $lang->api->editedBy = 'EditedBy'; $lang->api->editedDate = 'EditedDate'; $lang->api->version = 'Version'; $lang->api->res = new stdClass(); $lang->api->res->name = 'Name'; $lang->api->res->desc = 'Description'; $lang->api->res->type = 'Type'; $lang->api->req = new stdClass(); $lang->api->req->name = 'Name'; $lang->api->req->desc = 'Description'; $lang->api->req->type = 'Type'; $lang->api->req->required = 'Required'; $lang->api->field = 'Field'; $lang->api->scope = 'Position'; $lang->api->paramsType = 'Type'; $lang->api->required = 'Required'; $lang->api->default = 'Default'; $lang->api->desc = 'Description'; $lang->api->customType = 'Custom Structure'; $lang->api->format = 'Format'; $lang->api->methodOptions = array( 'GET' => 'GET', 'POST' => 'POST', 'PUT' => 'PUT', 'DELETE' => 'DELETE', 'PATCH' => 'PATCH', 'OPTIONS' => 'OPTIONS', 'HEAD' => 'HEAD' ); $lang->api->protocalOptions = array(); $lang->api->protocalOptions['HTTP'] = 'HTTP'; $lang->api->protocalOptions['HTTPS'] = 'HTTPS'; $lang->api->protocalOptions['WS'] = 'WS'; $lang->api->protocalOptions['WSS'] = 'WSS'; $lang->api->requestTypeOptions = array(); $lang->api->requestTypeOptions['application/json'] = 'application/json'; $lang->api->requestTypeOptions['application/x-www-form-urlencoded'] = 'application/x-www-form-urlencoded'; $lang->api->requestTypeOptions['multipart/form-data'] = 'multipart/form-data'; $lang->api->statusOptions = array( 'done' => 'Done', 'doing' => 'Doing', 'hidden' => 'Hidden' ); $lang->api->paramsScopeOptions = array( 'formData' => 'formData', 'path' => 'path', 'query' => 'query', 'body' => 'body', 'header' => 'header', 'cookie' => 'cookie', ); /* Api global common params */ $lang->api->paramsTypeOptions = array( 'object' => 'object', 'array' => 'array', 'string' => 'string', 'date' => 'date', 'datetime' => 'datetime', 'boolean' => 'boolean', 'int' => 'int', 'long' => 'long', 'float' => 'float', 'double' => 'double', 'decimal' => 'decimal' ); $lang->api->boolList = array(false => 'No', true => 'Yes', '' => 'No'); /* Api params */ $lang->api->paramsTypeCustomOptions = array('file' => 'file', 'ref' => 'ref'); $lang->api->structParamsOptons = array_merge($lang->api->paramsTypeOptions, array('file' => 'file', 'ref' => 'ref')); $lang->api->allParamsTypeOptions = array_merge($lang->api->paramsTypeOptions, $lang->api->paramsTypeCustomOptions); $lang->api->requiredOptions = array(0 => 'No', 1 => 'Yes'); $lang->apistruct = new stdClass(); $lang->apistruct->name = 'Name'; $lang->api_lib_release = new stdClass(); $lang->api_lib_release->version = 'Version'; $lang->api->error = new stdclass(); $lang->api->error->onlySelect = 'Cette interface SQL ne supporte que les requêtes SELECT.'; $lang->api->error->disabled = 'For security reasons, this feature is disabled. You can go to the config directory and modify the configuration item %s to open this function.'; $lang->api->error->notInput = 'Debugging is not supported temporarily due to field parameter type restrictions';