* Modify language.
This commit is contained in:
@@ -1,38 +0,0 @@
|
||||
/**
|
||||
* set avatar event
|
||||
*
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
function setAvatar()
|
||||
{
|
||||
$('#avatarUploadBtn').on('click', function()
|
||||
{
|
||||
$('#files').click();
|
||||
});
|
||||
$("#files").change(function(){
|
||||
var files = this.files;
|
||||
if(!files.length) return;
|
||||
|
||||
$(".avatar img").attr("src", window.URL.createObjectURL(files[0]));
|
||||
$(".avatar").removeClass('hidden');
|
||||
});
|
||||
}
|
||||
|
||||
$(document).ready(function()
|
||||
{
|
||||
$('#gitlabSearch').click(function()
|
||||
{
|
||||
triggerSearch();
|
||||
});
|
||||
$('#keyword').keypress(function(event)
|
||||
{
|
||||
if(event.which == 13) triggerSearch();
|
||||
})
|
||||
|
||||
});
|
||||
|
||||
function triggerSearch()
|
||||
{
|
||||
$("#gitlabForm").submit();
|
||||
}
|
||||
+21
-234
@@ -1,239 +1,26 @@
|
||||
<?php
|
||||
$lang->gitlab = new stdclass;
|
||||
$lang->gitlab->common = 'GitLab';
|
||||
$lang->gitlab->browse = 'GitLab Browse';
|
||||
$lang->gitlab->search = 'Search';
|
||||
$lang->gitlab->create = 'Create GitLab';
|
||||
$lang->gitlab->edit = 'Edit GitLab';
|
||||
$lang->gitlab->view = 'View GitLab';
|
||||
$lang->gitlab->bindUser = 'Bind User';
|
||||
$lang->gitlab->webhook = 'Webhook';
|
||||
$lang->gitlab->bindProduct = 'Import Product';
|
||||
$lang->gitlab->importIssue = 'Import Issue';
|
||||
$lang->gitlab->delete = 'Delete GitLab';
|
||||
$lang->gitlab->confirmDelete = 'Do you want to delete this GitLab server?';
|
||||
$lang->gitlab->gitlabAccount = 'GitLab Account';
|
||||
$lang->gitlab->zentaoAccount = 'Zentao Account';
|
||||
$lang->gitlab->bindingStatus = 'Binding Status';
|
||||
$lang->gitlab->notBind = 'Not bind';
|
||||
$lang->gitlab->binded = 'Binded';
|
||||
$lang->gitlab->bindedError = 'The bound user has been deleted or modified. Please bind again.';
|
||||
$lang->gitlab->bindDynamic = '%s and Zentao user %s';
|
||||
$lang->gitlab->serverFail = 'Connect to GitLab server failed, please check the GitLab server.';
|
||||
$lang->gitlab->lastUpdate = 'Last Update';
|
||||
$lang->gitlab->confirmAddWebhook = 'Are you sure about creating Webhook?';
|
||||
$lang->gitlab->addWebhookSuccess = 'Webhook created successfully';
|
||||
$lang->gitlab->failCreateWebhook = 'Failed to create Webhook, please view the log';
|
||||
$lang->gitlab->placeholderSearch = 'Enter name';
|
||||
$lang->gitea = new stdclass;
|
||||
$lang->gitea->common = 'Gitea';
|
||||
$lang->gitea->browse = 'Gitea Browse';
|
||||
$lang->gitea->search = 'Search';
|
||||
$lang->gitea->create = 'Create Gitea';
|
||||
$lang->gitea->edit = 'Edit Gitea';
|
||||
$lang->gitea->view = 'View Gitea';
|
||||
$lang->gitea->delete = 'Delete Gitea';
|
||||
$lang->gitea->confirmDelete = 'Do you want to delete this Gitea server?';
|
||||
|
||||
$lang->gitlab->browseAction = 'GitLab List';
|
||||
$lang->gitlab->deleteAction = 'Delete GitLab';
|
||||
$lang->gitlab->gitlabProject = "GitLab Project";
|
||||
$lang->gitlab->browseProject = "Project";
|
||||
$lang->gitlab->browseUser = "User";
|
||||
$lang->gitlab->browseGroup = "Group";
|
||||
$lang->gitlab->browseBranch = "GitLab Branch List";
|
||||
$lang->gitlab->browseTag = "GitLab Tag List";
|
||||
$lang->gitlab->browseTagPriv = "GitLab Tag protected List";
|
||||
$lang->gitlab->gitlabIssue = "GitLab Issue";
|
||||
$lang->gitlab->zentaoProduct = 'Zentao Product';
|
||||
$lang->gitlab->objectType = 'Type'; // task, bug, story
|
||||
$lang->gitlab->manageProjectMembers = 'Manage project member';
|
||||
$lang->gitlab->createProject = 'Create GitLab project';
|
||||
$lang->gitlab->editProject = 'Eidt GitLab project';
|
||||
$lang->gitlab->deleteProject = 'Delete GitLab project';
|
||||
$lang->gitlab->createGroup = 'Create group';
|
||||
$lang->gitlab->editGroup = 'Edit group';
|
||||
$lang->gitlab->deleteGroup = 'Delete group';
|
||||
$lang->gitlab->createUser = 'Create user';
|
||||
$lang->gitlab->editUser = 'Edit user';
|
||||
$lang->gitlab->deleteUser = 'Delete user';
|
||||
$lang->gitlab->createBranch = 'Add branch';
|
||||
$lang->gitlab->manageGroupMembers = 'Manage group member';
|
||||
$lang->gitlab->createWebhook = 'Create Webhook';
|
||||
$lang->gitlab->browseBranchPriv = 'Protect branch';
|
||||
$lang->gitlab->createBranchPriv = 'Cerate branch protected';
|
||||
$lang->gitlab->editBranchPriv = 'Edit branch protected';
|
||||
$lang->gitlab->deleteBranchPriv = 'Delete branch protected';
|
||||
$lang->gitlab->createTag = 'Create Tag';
|
||||
$lang->gitlab->deleteTag = 'Delete tag';
|
||||
$lang->gitlab->createTagPriv = 'Create tag protected';
|
||||
$lang->gitlab->editTagPriv = 'Edit tag protected';
|
||||
$lang->gitlab->deleteTagPriv = 'Delete tag protected';
|
||||
$lang->gitea->browseAction = 'Gitea List';
|
||||
$lang->gitea->deleteAction = 'Delete Gitea';
|
||||
|
||||
$lang->gitlab->id = 'ID';
|
||||
$lang->gitlab->name = "Server Name";
|
||||
$lang->gitlab->url = 'Server URL';
|
||||
$lang->gitlab->token = 'Token';
|
||||
$lang->gitlab->defaultProject = 'Default Project';
|
||||
$lang->gitlab->private = 'MD5 Verify';
|
||||
$lang->gitea->id = 'ID';
|
||||
$lang->gitea->name = "Server Name";
|
||||
$lang->gitea->url = 'Server URL';
|
||||
$lang->gitea->token = 'Token';
|
||||
|
||||
$lang->gitlab->server = "Server List";
|
||||
$lang->gitlab->lblCreate = 'Create GitLab Server';
|
||||
$lang->gitlab->desc = 'Description';
|
||||
$lang->gitlab->tokenFirst = 'When the Token is not empty, the Token will be used first';
|
||||
$lang->gitlab->tips = 'When using a password, please disable the "Prevent cross-site request forgery" option in the GitLab global security settings.';
|
||||
$lang->gitlab->emptyError = " cannot be empty";
|
||||
$lang->gitlab->createSuccess = "Create success";
|
||||
$lang->gitlab->mustBindUser = 'You have not registered the GitLab account, please contact the administrator to register.';
|
||||
$lang->gitlab->noAccess = 'Permission denied';
|
||||
$lang->gitlab->notCompatible = 'The current GitLab version is not compatible with ZenTao, please upgrade the GitLab version and try again';
|
||||
$lang->gitlab->deleted = 'Deleted';
|
||||
$lang->gitea->tokenLimit = "The current token has no admin privilege. Please regenerate one with root user in Gitea.";
|
||||
$lang->gitea->hostError = "So the current Gitea server address is invalid, please confirm that the current server can be accessed and try again.";
|
||||
|
||||
$lang->gitlab->placeholder = new stdclass;
|
||||
$lang->gitlab->placeholder->name = '';
|
||||
$lang->gitlab->placeholder->url = "Please fill in the access address of the GitLab Server homepage, as: https://gitlab.zentao.net.";
|
||||
$lang->gitlab->placeholder->token = "Please fill in the access token of an account with root privileges.";
|
||||
$lang->gitlab->placeholder->projectPath = "It should contain only letters, digits, underscore, hyphen and period. It should not start with hypen, or end with .git or .atom.";
|
||||
|
||||
$lang->gitlab->noImportableIssues = "There are currently no issues available for import.";
|
||||
$lang->gitlab->tokenError = "The current token is not root rights.";
|
||||
$lang->gitlab->tokenLimit = "The current token has no admin privilege. Please regenerate one with root user in GitLab.";
|
||||
$lang->gitlab->hostError = "So the current GitLab server address is invalid or the current GitLab version is not compatible with ZenTao, please confirm that the current server can be accessed or contact the administrator to upgrade the GitLab version to %s or above and try again.";
|
||||
$lang->gitlab->bindUserError = "Can not bind users repeatedly %s";
|
||||
$lang->gitlab->importIssueError = "The execution to which this issue belongs is not selected.";
|
||||
$lang->gitlab->importIssueWarn = "There is a problem of import failure, you can try to import again.";
|
||||
|
||||
$lang->gitlab->accessLevels[10] = 'Guest';
|
||||
$lang->gitlab->accessLevels[20] = 'Reporter';
|
||||
$lang->gitlab->accessLevels[30] = 'Developer';
|
||||
$lang->gitlab->accessLevels[40] = 'Maintainer';
|
||||
$lang->gitlab->accessLevels[50] = 'Owner';
|
||||
|
||||
$lang->gitlab->apiError[0] = 'internal is not allowed in a private group.';
|
||||
$lang->gitlab->apiError[1] = 'public is not allowed in a private group.';
|
||||
$lang->gitlab->apiError[2] = 'is too short (minimum is 8 characters)';
|
||||
$lang->gitlab->apiError[3] = "can contain only letters, digits, '_', '-' and '.'. Cannot start with '-', end in '.git' or end in '.atom'";
|
||||
$lang->gitlab->apiError[4] = 'Branch already exists';
|
||||
$lang->gitlab->apiError[5] = 'Failed to save group {:path=>["has already been taken"]}';
|
||||
$lang->gitlab->apiError[6] = '403 Forbidden';
|
||||
|
||||
$lang->gitlab->errorLang[0] = 'You cannot set Internal as its Visibility Level, if it is private in GitLab.';
|
||||
$lang->gitlab->errorLang[1] = 'You cannot set Public as its Visibility Level, if it is private in GitLab.';
|
||||
$lang->gitlab->errorLang[2] = 'Password is too short (minimum is 8 characters)';
|
||||
$lang->gitlab->errorLang[3] = 'It should contain only letters, digits, underscore, hyphen and period. It should not start with hypen, or end with .git or .atom.';
|
||||
$lang->gitlab->errorLang[4] = 'Branch already exists.';
|
||||
$lang->gitlab->errorLang[5] = 'Failed to save group, path has already been taken.';
|
||||
$lang->gitlab->errorLang[6] = $lang->gitlab->noAccess;
|
||||
|
||||
$lang->gitlab->project = new stdclass;
|
||||
$lang->gitlab->project->id = "Project ID";
|
||||
$lang->gitlab->project->name = "Project name";
|
||||
$lang->gitlab->project->create = "Create GitLab project";
|
||||
$lang->gitlab->project->edit = "Edit GitLab project";
|
||||
$lang->gitlab->project->url = "Project URL";
|
||||
$lang->gitlab->project->path = "Project slug";
|
||||
$lang->gitlab->project->description = "Project description";
|
||||
$lang->gitlab->project->visibility = "Visibility Level";
|
||||
$lang->gitlab->project->visibilityList['private'] = "Private(Project access must be granted explicitly to each user. If this project is part of a group, access will be granted to members of the group)";
|
||||
$lang->gitlab->project->visibilityList['internal'] = "Internal(The project can be accessed by any logged in user except external users)";
|
||||
$lang->gitlab->project->visibilityList['public'] = "Public(The project can be accessed without any authentication)";
|
||||
$lang->gitlab->project->star = "Stars";
|
||||
$lang->gitlab->project->fork = "Forks";
|
||||
$lang->gitlab->project->mergeRequests = "Merge Requests";
|
||||
$lang->gitlab->project->issues = "Issues";
|
||||
$lang->gitlab->project->tagList = "Topics";
|
||||
$lang->gitlab->project->tagListTips = "Separate topics with commas.";
|
||||
$lang->gitlab->project->emptyNameError = "Project name cannot be empty.";
|
||||
$lang->gitlab->project->emptyPathError = "Project slug cannot be empty.";
|
||||
$lang->gitlab->project->confirmDelete = 'Do you want to delete this GitLab project?';
|
||||
$lang->gitlab->project->notbindedError = 'GitLab user has not been bound, unable to modify permissions!';
|
||||
$lang->gitlab->project->publicTip = 'The visible status of the current project will be modified to public, and the project can be accessed without any authentication in GitLab. ';
|
||||
|
||||
$lang->gitlab->user = new stdclass;
|
||||
$lang->gitlab->user->id = "User ID";
|
||||
$lang->gitlab->user->name = "Name";
|
||||
$lang->gitlab->user->username = "Username";
|
||||
$lang->gitlab->user->email = "Email";
|
||||
$lang->gitlab->user->password = "Password";
|
||||
$lang->gitlab->user->passwordRepeat = "Repeat Password";
|
||||
$lang->gitlab->user->projectsLimit = "Projects limit";
|
||||
$lang->gitlab->user->canCreateGroup = "Can create group";
|
||||
$lang->gitlab->user->external = "External";
|
||||
$lang->gitlab->user->externalTip = "External users cannot see internal or private projects unless access is explicitly granted. Also, external users cannot create projects, groups, or personal snippets.";
|
||||
$lang->gitlab->user->bind = "Zentao user";
|
||||
$lang->gitlab->user->avatar = "Avatar";
|
||||
$lang->gitlab->user->skype = "Skype";
|
||||
$lang->gitlab->user->linkedin = "Linkedin";
|
||||
$lang->gitlab->user->twitter = "Twitter";
|
||||
$lang->gitlab->user->websiteUrl = "Website url";
|
||||
$lang->gitlab->user->note = "Note";
|
||||
$lang->gitlab->user->createOn = "Created on";
|
||||
$lang->gitlab->user->lastActivity = "Last activity";
|
||||
$lang->gitlab->user->create = "Create GitLab user";
|
||||
$lang->gitlab->user->edit = "Edit GitLab user";
|
||||
$lang->gitlab->user->emptyError = "cannot be empty";
|
||||
$lang->gitlab->user->passwordError = "The second password is inconsistent!";
|
||||
$lang->gitlab->user->bindError = "The user has been bound!";
|
||||
$lang->gitlab->user->confirmDelete = 'Do you want to delete this GitLab user?';
|
||||
|
||||
$lang->gitlab->group = new stdclass;
|
||||
$lang->gitlab->group->id = "Group ID";
|
||||
$lang->gitlab->group->name = "Group name";
|
||||
$lang->gitlab->group->path = "Group URL";
|
||||
$lang->gitlab->group->pathTip = "Changing group URL can have unintended side effects.";
|
||||
$lang->gitlab->group->description = "Group description";
|
||||
$lang->gitlab->group->avatar = "Group avatar";
|
||||
$lang->gitlab->group->avatarTip = 'Max file size is 200 KB.';
|
||||
$lang->gitlab->group->visibility = "Visibility level";
|
||||
$lang->gitlab->group->visibilityList['private'] = "Private(The group and its projects can only be viewed by members)";
|
||||
$lang->gitlab->group->visibilityList['internal'] = "Internal(The group and any internal projects can be viewed by any logged in user except external users)";
|
||||
$lang->gitlab->group->visibilityList['public'] = "Public(The group and any public projects can be viewed without any authentication.)";
|
||||
$lang->gitlab->group->permission = 'Permission';
|
||||
$lang->gitlab->group->requestAccessEnabledTip = "Allow users to request access (if visibility is public or internal)";
|
||||
$lang->gitlab->group->lfsEnabled = 'Large File Storage';
|
||||
$lang->gitlab->group->lfsEnabledTip = "Allow projects within this group to use Git LFS(This setting can be overridden in each project)";
|
||||
$lang->gitlab->group->projectCreationLevel = "Allowed to create projects";
|
||||
$lang->gitlab->group->projectCreationLevelList['noone'] = "No one";
|
||||
$lang->gitlab->group->projectCreationLevelList['maintainer'] = "Maintainers";
|
||||
$lang->gitlab->group->projectCreationLevelList['developer'] = "Developers + Maintainers";
|
||||
$lang->gitlab->group->subgroupCreationLevel = "Allowed to create projects";
|
||||
$lang->gitlab->group->subgroupCreationLevelList['owner'] = "Owners";
|
||||
$lang->gitlab->group->subgroupCreationLevelList['maintainer'] = "Maintainers";
|
||||
$lang->gitlab->group->create = "Create Group";
|
||||
$lang->gitlab->group->edit = "Edit Group";
|
||||
$lang->gitlab->group->createOn = "Created on";
|
||||
$lang->gitlab->group->members = "Group Members";
|
||||
$lang->gitlab->group->confirmDelete = 'Do you want to delete this GitLab group?';
|
||||
$lang->gitlab->group->emptyError = "cannot be empty";
|
||||
$lang->gitlab->group->manageMembers = 'Manage Group Members';
|
||||
$lang->gitlab->group->memberName = 'Account';
|
||||
$lang->gitlab->group->memberAccessLevel = 'Access Level';
|
||||
$lang->gitlab->group->memberExpiresAt = 'Expiration time';
|
||||
$lang->gitlab->group->repeatError = "Group members cannot be added repeatedly";
|
||||
$lang->gitlab->group->publicTip = 'The visible status of the current group will be modified to public, and the group can be accessed without any authentication in GitLab. ';
|
||||
|
||||
$lang->gitlab->branch = new stdclass();
|
||||
$lang->gitlab->branch->name = 'Branch name';
|
||||
$lang->gitlab->branch->from = 'Create from';
|
||||
$lang->gitlab->branch->create = 'Create';
|
||||
$lang->gitlab->branch->lastCommitter = 'Last Committer';
|
||||
$lang->gitlab->branch->lastCommittedDate = 'Last Committed Date';
|
||||
$lang->gitlab->branch->accessLevel = "Branch protection list";
|
||||
$lang->gitlab->branch->mergeAllowed = "Merge Allowed";
|
||||
$lang->gitlab->branch->pushAllowed = "Push Allowed";
|
||||
$lang->gitlab->branch->placeholderSearch = "Branch name";
|
||||
$lang->gitlab->branch->placeholderSelect = "Branch name";
|
||||
$lang->gitlab->branch->confirmDelete = 'Branch will be writable for developers. Are you sure?';
|
||||
$lang->gitlab->branch->branchCreationLevelList[40] = "Maintainers";
|
||||
$lang->gitlab->branch->branchCreationLevelList[30] = "Developers + Maintainers";
|
||||
$lang->gitlab->branch->branchCreationLevelList[0] = "No one";
|
||||
$lang->gitlab->branch->emptyPrivNameError = "Branch cannot be empty.";
|
||||
$lang->gitlab->branch->issetPrivNameError = "The protection branch already exists";
|
||||
|
||||
$lang->gitlab->tag = new stdclass();
|
||||
$lang->gitlab->tag->name = 'Tag name';
|
||||
$lang->gitlab->tag->ref = 'Create from';
|
||||
$lang->gitlab->tag->lastCommitter = 'Last Committer';
|
||||
$lang->gitlab->tag->lastCommittedDate = 'Last Committed Date';
|
||||
$lang->gitlab->tag->placeholderSearch = "Enter branch tag";
|
||||
$lang->gitlab->tag->message = 'Message';
|
||||
$lang->gitlab->tag->emptyNameError = "Name cannot be empty.";
|
||||
$lang->gitlab->tag->emptyRefError = "Create from cannot be empty.";
|
||||
$lang->gitlab->tag->issetNameError = "The tag already exists";
|
||||
$lang->gitlab->tag->confirmDelete = 'Do you want to delete this GitLab tag?';
|
||||
$lang->gitlab->tag->protected = 'Protected';
|
||||
$lang->gitlab->tag->accessLevel = 'Allow creation';
|
||||
$lang->gitlab->tag->protectConfirmDel = 'Do you want to delete this GitLab tag protected?';
|
||||
$lang->gitlab->tag->emptyPrivNameError = 'Tag cannot be empty.';
|
||||
$lang->gitlab->tag->issetPrivNameError = 'The protection tag already exists.';
|
||||
$lang->gitea->server = "Server List";
|
||||
$lang->gitea->lblCreate = 'Create Gitea Server';
|
||||
$lang->gitea->emptyError = " cannot be empty";
|
||||
$lang->gitea->createSuccess = "Create success";
|
||||
|
||||
+21
-234
@@ -1,239 +1,26 @@
|
||||
<?php
|
||||
$lang->gitlab = new stdclass;
|
||||
$lang->gitlab->common = 'GitLab';
|
||||
$lang->gitlab->browse = 'GitLab Browse';
|
||||
$lang->gitlab->search = 'Search';
|
||||
$lang->gitlab->create = 'Create GitLab';
|
||||
$lang->gitlab->edit = 'Edit GitLab';
|
||||
$lang->gitlab->view = 'View GitLab';
|
||||
$lang->gitlab->bindUser = 'Bind User';
|
||||
$lang->gitlab->webhook = 'Webhook';
|
||||
$lang->gitlab->bindProduct = 'Import Product';
|
||||
$lang->gitlab->importIssue = 'Import Issue';
|
||||
$lang->gitlab->delete = 'Delete GitLab';
|
||||
$lang->gitlab->confirmDelete = 'Do you want to delete this GitLab server?';
|
||||
$lang->gitlab->gitlabAccount = 'GitLab Account';
|
||||
$lang->gitlab->zentaoAccount = 'Zentao Account';
|
||||
$lang->gitlab->bindingStatus = 'Binding Status';
|
||||
$lang->gitlab->notBind = 'Not bind';
|
||||
$lang->gitlab->binded = 'Binded';
|
||||
$lang->gitlab->bindedError = 'The bound user has been deleted or modified. Please bind again.';
|
||||
$lang->gitlab->bindDynamic = '%s and Zentao user %s';
|
||||
$lang->gitlab->serverFail = 'Connect to GitLab server failed, please check the GitLab server.';
|
||||
$lang->gitlab->lastUpdate = 'Last Update';
|
||||
$lang->gitlab->confirmAddWebhook = 'Are you sure about creating Webhook?';
|
||||
$lang->gitlab->addWebhookSuccess = 'Webhook created successfully';
|
||||
$lang->gitlab->failCreateWebhook = 'Failed to create Webhook, please view the log';
|
||||
$lang->gitlab->placeholderSearch = 'Enter name';
|
||||
$lang->gitea = new stdclass;
|
||||
$lang->gitea->common = 'Gitea';
|
||||
$lang->gitea->browse = 'Gitea Browse';
|
||||
$lang->gitea->search = 'Search';
|
||||
$lang->gitea->create = 'Create Gitea';
|
||||
$lang->gitea->edit = 'Edit Gitea';
|
||||
$lang->gitea->view = 'View Gitea';
|
||||
$lang->gitea->delete = 'Delete Gitea';
|
||||
$lang->gitea->confirmDelete = 'Do you want to delete this Gitea server?';
|
||||
|
||||
$lang->gitlab->browseAction = 'GitLab List';
|
||||
$lang->gitlab->deleteAction = 'Delete GitLab';
|
||||
$lang->gitlab->gitlabProject = "GitLab Project";
|
||||
$lang->gitlab->browseProject = "Project";
|
||||
$lang->gitlab->browseUser = "User";
|
||||
$lang->gitlab->browseGroup = "Group";
|
||||
$lang->gitlab->browseBranch = "GitLab Branch List";
|
||||
$lang->gitlab->browseTag = "GitLab Tag List";
|
||||
$lang->gitlab->browseTagPriv = "GitLab Tag protected List";
|
||||
$lang->gitlab->gitlabIssue = "GitLab Issue";
|
||||
$lang->gitlab->zentaoProduct = 'Zentao Product';
|
||||
$lang->gitlab->objectType = 'Type'; // task, bug, story
|
||||
$lang->gitlab->manageProjectMembers = 'Manage project member';
|
||||
$lang->gitlab->createProject = 'Create GitLab project';
|
||||
$lang->gitlab->editProject = 'Eidt GitLab project';
|
||||
$lang->gitlab->deleteProject = 'Delete GitLab project';
|
||||
$lang->gitlab->createGroup = 'Create group';
|
||||
$lang->gitlab->editGroup = 'Edit group';
|
||||
$lang->gitlab->deleteGroup = 'Delete group';
|
||||
$lang->gitlab->createUser = 'Create user';
|
||||
$lang->gitlab->editUser = 'Edit user';
|
||||
$lang->gitlab->deleteUser = 'Delete user';
|
||||
$lang->gitlab->createBranch = 'Add branch';
|
||||
$lang->gitlab->manageGroupMembers = 'Manage group member';
|
||||
$lang->gitlab->createWebhook = 'Create Webhook';
|
||||
$lang->gitlab->browseBranchPriv = 'Protect branch';
|
||||
$lang->gitlab->createBranchPriv = 'Cerate branch protected';
|
||||
$lang->gitlab->editBranchPriv = 'Edit branch protected';
|
||||
$lang->gitlab->deleteBranchPriv = 'Delete branch protected';
|
||||
$lang->gitlab->createTag = 'Create Tag';
|
||||
$lang->gitlab->deleteTag = 'Delete tag';
|
||||
$lang->gitlab->createTagPriv = 'Create tag protected';
|
||||
$lang->gitlab->editTagPriv = 'Edit tag protected';
|
||||
$lang->gitlab->deleteTagPriv = 'Delete tag protected';
|
||||
$lang->gitea->browseAction = 'Gitea List';
|
||||
$lang->gitea->deleteAction = 'Delete Gitea';
|
||||
|
||||
$lang->gitlab->id = 'ID';
|
||||
$lang->gitlab->name = "Server Name";
|
||||
$lang->gitlab->url = 'Server URL';
|
||||
$lang->gitlab->token = 'Token';
|
||||
$lang->gitlab->defaultProject = 'Default Project';
|
||||
$lang->gitlab->private = 'MD5 Verify';
|
||||
$lang->gitea->id = 'ID';
|
||||
$lang->gitea->name = "Server Name";
|
||||
$lang->gitea->url = 'Server URL';
|
||||
$lang->gitea->token = 'Token';
|
||||
|
||||
$lang->gitlab->server = "Server List";
|
||||
$lang->gitlab->lblCreate = 'Create GitLab Server';
|
||||
$lang->gitlab->desc = 'Description';
|
||||
$lang->gitlab->tokenFirst = 'When the Token is not empty, the Token will be used first';
|
||||
$lang->gitlab->tips = 'When using a password, please disable the "Prevent cross-site request forgery" option in the GitLab global security settings.';
|
||||
$lang->gitlab->emptyError = " cannot be empty";
|
||||
$lang->gitlab->createSuccess = "Create success";
|
||||
$lang->gitlab->mustBindUser = 'You have not registered the GitLab account, please contact the administrator to register.';
|
||||
$lang->gitlab->noAccess = 'Permission denied';
|
||||
$lang->gitlab->notCompatible = 'The current GitLab version is not compatible with ZenTao, please upgrade the GitLab version and try again';
|
||||
$lang->gitlab->deleted = 'Deleted';
|
||||
$lang->gitea->tokenLimit = "The current token has no admin privilege. Please regenerate one with root user in Gitea.";
|
||||
$lang->gitea->hostError = "So the current Gitea server address is invalid, please confirm that the current server can be accessed and try again.";
|
||||
|
||||
$lang->gitlab->placeholder = new stdclass;
|
||||
$lang->gitlab->placeholder->name = '';
|
||||
$lang->gitlab->placeholder->url = "Please fill in the access address of the GitLab Server homepage, as: https://gitlab.zentao.net.";
|
||||
$lang->gitlab->placeholder->token = "Please fill in the access token of an account with root privileges.";
|
||||
$lang->gitlab->placeholder->projectPath = "It should contain only letters, digits, underscore, hyphen and period. It should not start with hypen, or end with .git or .atom.";
|
||||
|
||||
$lang->gitlab->noImportableIssues = "There are currently no issues available for import.";
|
||||
$lang->gitlab->tokenError = "The current token is not root rights.";
|
||||
$lang->gitlab->tokenLimit = "The current token has no admin privilege. Please regenerate one with root user in GitLab.";
|
||||
$lang->gitlab->hostError = "So the current GitLab server address is invalid or the current GitLab version is not compatible with ZenTao, please confirm that the current server can be accessed or contact the administrator to upgrade the GitLab version to %s or above and try again.";
|
||||
$lang->gitlab->bindUserError = "Can not bind users repeatedly %s";
|
||||
$lang->gitlab->importIssueError = "The execution to which this issue belongs is not selected.";
|
||||
$lang->gitlab->importIssueWarn = "There is a problem of import failure, you can try to import again.";
|
||||
|
||||
$lang->gitlab->accessLevels[10] = 'Guest';
|
||||
$lang->gitlab->accessLevels[20] = 'Reporter';
|
||||
$lang->gitlab->accessLevels[30] = 'Developer';
|
||||
$lang->gitlab->accessLevels[40] = 'Maintainer';
|
||||
$lang->gitlab->accessLevels[50] = 'Owner';
|
||||
|
||||
$lang->gitlab->apiError[0] = 'internal is not allowed in a private group.';
|
||||
$lang->gitlab->apiError[1] = 'public is not allowed in a private group.';
|
||||
$lang->gitlab->apiError[2] = 'is too short (minimum is 8 characters)';
|
||||
$lang->gitlab->apiError[3] = "can contain only letters, digits, '_', '-' and '.'. Cannot start with '-', end in '.git' or end in '.atom'";
|
||||
$lang->gitlab->apiError[4] = 'Branch already exists';
|
||||
$lang->gitlab->apiError[5] = 'Failed to save group {:path=>["has already been taken"]}';
|
||||
$lang->gitlab->apiError[6] = '403 Forbidden';
|
||||
|
||||
$lang->gitlab->errorLang[0] = 'You cannot set Internal as its Visibility Level, if it is private in GitLab.';
|
||||
$lang->gitlab->errorLang[1] = 'You cannot set Public as its Visibility Level, if it is private in GitLab.';
|
||||
$lang->gitlab->errorLang[2] = 'Password is too short (minimum is 8 characters)';
|
||||
$lang->gitlab->errorLang[3] = 'It should contain only letters, digits, underscore, hyphen and period. It should not start with hypen, or end with .git or .atom.';
|
||||
$lang->gitlab->errorLang[4] = 'Branch already exists.';
|
||||
$lang->gitlab->errorLang[5] = 'Failed to save group, path has already been taken.';
|
||||
$lang->gitlab->errorLang[6] = $lang->gitlab->noAccess;
|
||||
|
||||
$lang->gitlab->project = new stdclass;
|
||||
$lang->gitlab->project->id = "Project ID";
|
||||
$lang->gitlab->project->name = "Project name";
|
||||
$lang->gitlab->project->create = "Create GitLab project";
|
||||
$lang->gitlab->project->edit = "Edit GitLab project";
|
||||
$lang->gitlab->project->url = "Project URL";
|
||||
$lang->gitlab->project->path = "Project slug";
|
||||
$lang->gitlab->project->description = "Project description";
|
||||
$lang->gitlab->project->visibility = "Visibility Level";
|
||||
$lang->gitlab->project->visibilityList['private'] = "Private(Project access must be granted explicitly to each user. If this project is part of a group, access will be granted to members of the group)";
|
||||
$lang->gitlab->project->visibilityList['internal'] = "Internal(The project can be accessed by any logged in user except external users)";
|
||||
$lang->gitlab->project->visibilityList['public'] = "Public(The project can be accessed without any authentication)";
|
||||
$lang->gitlab->project->star = "Stars";
|
||||
$lang->gitlab->project->fork = "Forks";
|
||||
$lang->gitlab->project->mergeRequests = "Merge Requests";
|
||||
$lang->gitlab->project->issues = "Issues";
|
||||
$lang->gitlab->project->tagList = "Topics";
|
||||
$lang->gitlab->project->tagListTips = "Separate topics with commas.";
|
||||
$lang->gitlab->project->emptyNameError = "Project name cannot be empty.";
|
||||
$lang->gitlab->project->emptyPathError = "Project slug cannot be empty.";
|
||||
$lang->gitlab->project->confirmDelete = 'Do you want to delete this GitLab project?';
|
||||
$lang->gitlab->project->notbindedError = 'GitLab user has not been bound, unable to modify permissions!';
|
||||
$lang->gitlab->project->publicTip = 'The visible status of the current project will be modified to public, and the project can be accessed without any authentication in GitLab. ';
|
||||
|
||||
$lang->gitlab->user = new stdclass;
|
||||
$lang->gitlab->user->id = "User ID";
|
||||
$lang->gitlab->user->name = "Name";
|
||||
$lang->gitlab->user->username = "Username";
|
||||
$lang->gitlab->user->email = "Email";
|
||||
$lang->gitlab->user->password = "Password";
|
||||
$lang->gitlab->user->passwordRepeat = "Repeat Password";
|
||||
$lang->gitlab->user->projectsLimit = "Projects limit";
|
||||
$lang->gitlab->user->canCreateGroup = "Can create group";
|
||||
$lang->gitlab->user->external = "External";
|
||||
$lang->gitlab->user->externalTip = "External users cannot see internal or private projects unless access is explicitly granted. Also, external users cannot create projects, groups, or personal snippets.";
|
||||
$lang->gitlab->user->bind = "Zentao user";
|
||||
$lang->gitlab->user->avatar = "Avatar";
|
||||
$lang->gitlab->user->skype = "Skype";
|
||||
$lang->gitlab->user->linkedin = "Linkedin";
|
||||
$lang->gitlab->user->twitter = "Twitter";
|
||||
$lang->gitlab->user->websiteUrl = "Website url";
|
||||
$lang->gitlab->user->note = "Note";
|
||||
$lang->gitlab->user->createOn = "Created on";
|
||||
$lang->gitlab->user->lastActivity = "Last activity";
|
||||
$lang->gitlab->user->create = "Create GitLab user";
|
||||
$lang->gitlab->user->edit = "Edit GitLab user";
|
||||
$lang->gitlab->user->emptyError = "cannot be empty";
|
||||
$lang->gitlab->user->passwordError = "The second password is inconsistent!";
|
||||
$lang->gitlab->user->bindError = "The user has been bound!";
|
||||
$lang->gitlab->user->confirmDelete = 'Do you want to delete this GitLab user?';
|
||||
|
||||
$lang->gitlab->group = new stdclass;
|
||||
$lang->gitlab->group->id = "Group ID";
|
||||
$lang->gitlab->group->name = "Group name";
|
||||
$lang->gitlab->group->path = "Group URL";
|
||||
$lang->gitlab->group->pathTip = "Changing group URL can have unintended side effects.";
|
||||
$lang->gitlab->group->description = "Group description";
|
||||
$lang->gitlab->group->avatar = "Group avatar";
|
||||
$lang->gitlab->group->avatarTip = 'Max file size is 200 KB.';
|
||||
$lang->gitlab->group->visibility = "Visibility level";
|
||||
$lang->gitlab->group->visibilityList['private'] = "Private(The group and its projects can only be viewed by members)";
|
||||
$lang->gitlab->group->visibilityList['internal'] = "Internal(The group and any internal projects can be viewed by any logged in user except external users)";
|
||||
$lang->gitlab->group->visibilityList['public'] = "Public(The group and any public projects can be viewed without any authentication.)";
|
||||
$lang->gitlab->group->permission = 'Permission';
|
||||
$lang->gitlab->group->requestAccessEnabledTip = "Allow users to request access (if visibility is public or internal)";
|
||||
$lang->gitlab->group->lfsEnabled = 'Large File Storage';
|
||||
$lang->gitlab->group->lfsEnabledTip = "Allow projects within this group to use Git LFS(This setting can be overridden in each project)";
|
||||
$lang->gitlab->group->projectCreationLevel = "Allowed to create projects";
|
||||
$lang->gitlab->group->projectCreationLevelList['noone'] = "No one";
|
||||
$lang->gitlab->group->projectCreationLevelList['maintainer'] = "Maintainers";
|
||||
$lang->gitlab->group->projectCreationLevelList['developer'] = "Developers + Maintainers";
|
||||
$lang->gitlab->group->subgroupCreationLevel = "Allowed to create projects";
|
||||
$lang->gitlab->group->subgroupCreationLevelList['owner'] = "Owners";
|
||||
$lang->gitlab->group->subgroupCreationLevelList['maintainer'] = "Maintainers";
|
||||
$lang->gitlab->group->create = "Create Group";
|
||||
$lang->gitlab->group->edit = "Edit Group";
|
||||
$lang->gitlab->group->createOn = "Created on";
|
||||
$lang->gitlab->group->members = "Group Members";
|
||||
$lang->gitlab->group->confirmDelete = 'Do you want to delete this GitLab group?';
|
||||
$lang->gitlab->group->emptyError = "cannot be empty";
|
||||
$lang->gitlab->group->manageMembers = 'Manage Group Members';
|
||||
$lang->gitlab->group->memberName = 'Account';
|
||||
$lang->gitlab->group->memberAccessLevel = 'Access Level';
|
||||
$lang->gitlab->group->memberExpiresAt = 'Expiration time';
|
||||
$lang->gitlab->group->repeatError = "Group members cannot be added repeatedly";
|
||||
$lang->gitlab->group->publicTip = 'The visible status of the current group will be modified to public, and the group can be accessed without any authentication in GitLab. ';
|
||||
|
||||
$lang->gitlab->branch = new stdclass();
|
||||
$lang->gitlab->branch->name = 'Branch name';
|
||||
$lang->gitlab->branch->from = 'Create from';
|
||||
$lang->gitlab->branch->create = 'Create';
|
||||
$lang->gitlab->branch->lastCommitter = 'Last Committer';
|
||||
$lang->gitlab->branch->lastCommittedDate = 'Last Committed Date';
|
||||
$lang->gitlab->branch->accessLevel = "Branch protection list";
|
||||
$lang->gitlab->branch->mergeAllowed = "Merge Allowed";
|
||||
$lang->gitlab->branch->pushAllowed = "Push Allowed";
|
||||
$lang->gitlab->branch->placeholderSearch = "Branch name";
|
||||
$lang->gitlab->branch->placeholderSelect = "Branch name";
|
||||
$lang->gitlab->branch->confirmDelete = 'Branch will be writable for developers. Are you sure?';
|
||||
$lang->gitlab->branch->branchCreationLevelList[40] = "Maintainers";
|
||||
$lang->gitlab->branch->branchCreationLevelList[30] = "Developers + Maintainers";
|
||||
$lang->gitlab->branch->branchCreationLevelList[0] = "No one";
|
||||
$lang->gitlab->branch->emptyPrivNameError = "Branch cannot be empty.";
|
||||
$lang->gitlab->branch->issetPrivNameError = "The protection branch already exists";
|
||||
|
||||
$lang->gitlab->tag = new stdclass();
|
||||
$lang->gitlab->tag->name = 'Tag name';
|
||||
$lang->gitlab->tag->ref = 'Create from';
|
||||
$lang->gitlab->tag->lastCommitter = 'Last Committer';
|
||||
$lang->gitlab->tag->lastCommittedDate = 'Last Committed Date';
|
||||
$lang->gitlab->tag->placeholderSearch = "Enter branch tag";
|
||||
$lang->gitlab->tag->message = 'Message';
|
||||
$lang->gitlab->tag->emptyNameError = "Name cannot be empty.";
|
||||
$lang->gitlab->tag->emptyRefError = "Create from cannot be empty.";
|
||||
$lang->gitlab->tag->issetNameError = "The tag already exists";
|
||||
$lang->gitlab->tag->confirmDelete = 'Do you want to delete this GitLab tag?';
|
||||
$lang->gitlab->tag->protected = 'Protected';
|
||||
$lang->gitlab->tag->accessLevel = 'Allow creation';
|
||||
$lang->gitlab->tag->protectConfirmDel = 'Do you want to delete this GitLab tag protected?';
|
||||
$lang->gitlab->tag->emptyPrivNameError = 'Tag cannot be empty.';
|
||||
$lang->gitlab->tag->issetPrivNameError = 'The protection tag already exists.';
|
||||
$lang->gitea->server = "Server List";
|
||||
$lang->gitea->lblCreate = 'Create Gitea Server';
|
||||
$lang->gitea->emptyError = " cannot be empty";
|
||||
$lang->gitea->createSuccess = "Create success";
|
||||
|
||||
+21
-234
@@ -1,239 +1,26 @@
|
||||
<?php
|
||||
$lang->gitlab = new stdclass;
|
||||
$lang->gitlab->common = 'GitLab';
|
||||
$lang->gitlab->browse = 'GitLab Browse';
|
||||
$lang->gitlab->search = 'Search';
|
||||
$lang->gitlab->create = 'Create GitLab';
|
||||
$lang->gitlab->edit = 'Edit GitLab';
|
||||
$lang->gitlab->view = 'View GitLab';
|
||||
$lang->gitlab->bindUser = 'Bind User';
|
||||
$lang->gitlab->webhook = 'Webhook';
|
||||
$lang->gitlab->bindProduct = 'Import Product';
|
||||
$lang->gitlab->importIssue = 'Import Issue';
|
||||
$lang->gitlab->delete = 'Delete GitLab';
|
||||
$lang->gitlab->confirmDelete = 'Do you want to delete this GitLab server?';
|
||||
$lang->gitlab->gitlabAccount = 'GitLab Account';
|
||||
$lang->gitlab->zentaoAccount = 'Zentao Account';
|
||||
$lang->gitlab->bindingStatus = 'Binding Status';
|
||||
$lang->gitlab->notBind = 'Not bind';
|
||||
$lang->gitlab->binded = 'Binded';
|
||||
$lang->gitlab->bindedError = 'The bound user has been deleted or modified. Please bind again.';
|
||||
$lang->gitlab->bindDynamic = '%s and Zentao user %s';
|
||||
$lang->gitlab->serverFail = 'Connect to GitLab server failed, please check the GitLab server.';
|
||||
$lang->gitlab->lastUpdate = 'Last Update';
|
||||
$lang->gitlab->confirmAddWebhook = 'Are you sure about creating Webhook?';
|
||||
$lang->gitlab->addWebhookSuccess = 'Webhook created successfully';
|
||||
$lang->gitlab->failCreateWebhook = 'Failed to create Webhook, please view the log';
|
||||
$lang->gitlab->placeholderSearch = 'Enter name';
|
||||
$lang->gitea = new stdclass;
|
||||
$lang->gitea->common = 'Gitea';
|
||||
$lang->gitea->browse = 'Gitea Browse';
|
||||
$lang->gitea->search = 'Search';
|
||||
$lang->gitea->create = 'Create Gitea';
|
||||
$lang->gitea->edit = 'Edit Gitea';
|
||||
$lang->gitea->view = 'View Gitea';
|
||||
$lang->gitea->delete = 'Delete Gitea';
|
||||
$lang->gitea->confirmDelete = 'Do you want to delete this Gitea server?';
|
||||
|
||||
$lang->gitlab->browseAction = 'GitLab List';
|
||||
$lang->gitlab->deleteAction = 'Delete GitLab';
|
||||
$lang->gitlab->gitlabProject = "GitLab Project";
|
||||
$lang->gitlab->browseProject = "Project";
|
||||
$lang->gitlab->browseUser = "User";
|
||||
$lang->gitlab->browseGroup = "Group";
|
||||
$lang->gitlab->browseBranch = "GitLab Branch List";
|
||||
$lang->gitlab->browseTag = "GitLab Tag List";
|
||||
$lang->gitlab->browseTagPriv = "GitLab Tag protected List";
|
||||
$lang->gitlab->gitlabIssue = "GitLab Issue";
|
||||
$lang->gitlab->zentaoProduct = 'Zentao Product';
|
||||
$lang->gitlab->objectType = 'Type'; // task, bug, story
|
||||
$lang->gitlab->manageProjectMembers = 'Manage project member';
|
||||
$lang->gitlab->createProject = 'Create GitLab project';
|
||||
$lang->gitlab->editProject = 'Eidt GitLab project';
|
||||
$lang->gitlab->deleteProject = 'Delete GitLab project';
|
||||
$lang->gitlab->createGroup = 'Create group';
|
||||
$lang->gitlab->editGroup = 'Edit group';
|
||||
$lang->gitlab->deleteGroup = 'Delete group';
|
||||
$lang->gitlab->createUser = 'Create user';
|
||||
$lang->gitlab->editUser = 'Edit user';
|
||||
$lang->gitlab->deleteUser = 'Delete user';
|
||||
$lang->gitlab->createBranch = 'Add branch';
|
||||
$lang->gitlab->manageGroupMembers = 'Manage group member';
|
||||
$lang->gitlab->createWebhook = 'Create Webhook';
|
||||
$lang->gitlab->browseBranchPriv = 'Protect branch';
|
||||
$lang->gitlab->createBranchPriv = 'Cerate branch protected';
|
||||
$lang->gitlab->editBranchPriv = 'Edit branch protected';
|
||||
$lang->gitlab->deleteBranchPriv = 'Delete branch protected';
|
||||
$lang->gitlab->createTag = 'Create Tag';
|
||||
$lang->gitlab->deleteTag = 'Delete tag';
|
||||
$lang->gitlab->createTagPriv = 'Create tag protected';
|
||||
$lang->gitlab->editTagPriv = 'Edit tag protected';
|
||||
$lang->gitlab->deleteTagPriv = 'Delete tag protected';
|
||||
$lang->gitea->browseAction = 'Gitea List';
|
||||
$lang->gitea->deleteAction = 'Delete Gitea';
|
||||
|
||||
$lang->gitlab->id = 'ID';
|
||||
$lang->gitlab->name = "Server Name";
|
||||
$lang->gitlab->url = 'Server URL';
|
||||
$lang->gitlab->token = 'Token';
|
||||
$lang->gitlab->defaultProject = 'Default Project';
|
||||
$lang->gitlab->private = 'MD5 Verify';
|
||||
$lang->gitea->id = 'ID';
|
||||
$lang->gitea->name = "Server Name";
|
||||
$lang->gitea->url = 'Server URL';
|
||||
$lang->gitea->token = 'Token';
|
||||
|
||||
$lang->gitlab->server = "Server List";
|
||||
$lang->gitlab->lblCreate = 'Create GitLab Server';
|
||||
$lang->gitlab->desc = 'Description';
|
||||
$lang->gitlab->tokenFirst = 'When the Token is not empty, the Token will be used first';
|
||||
$lang->gitlab->tips = 'When using a password, please disable the "Prevent cross-site request forgery" option in the GitLab global security settings.';
|
||||
$lang->gitlab->emptyError = " cannot be empty";
|
||||
$lang->gitlab->createSuccess = "Create success";
|
||||
$lang->gitlab->mustBindUser = 'You have not registered the GitLab account, please contact the administrator to register.';
|
||||
$lang->gitlab->noAccess = 'Permission denied';
|
||||
$lang->gitlab->notCompatible = 'The current GitLab version is not compatible with ZenTao, please upgrade the GitLab version and try again';
|
||||
$lang->gitlab->deleted = 'Deleted';
|
||||
$lang->gitea->tokenLimit = "The current token has no admin privilege. Please regenerate one with root user in Gitea.";
|
||||
$lang->gitea->hostError = "So the current Gitea server address is invalid, please confirm that the current server can be accessed and try again.";
|
||||
|
||||
$lang->gitlab->placeholder = new stdclass;
|
||||
$lang->gitlab->placeholder->name = '';
|
||||
$lang->gitlab->placeholder->url = "Please fill in the access address of the GitLab Server homepage, as: https://gitlab.zentao.net.";
|
||||
$lang->gitlab->placeholder->token = "Please fill in the access token of an account with root privileges.";
|
||||
$lang->gitlab->placeholder->projectPath = "It should contain only letters, digits, underscore, hyphen and period. It should not start with hypen, or end with .git or .atom.";
|
||||
|
||||
$lang->gitlab->noImportableIssues = "There are currently no issues available for import.";
|
||||
$lang->gitlab->tokenError = "The current token is not root rights.";
|
||||
$lang->gitlab->tokenLimit = "The current token has no admin privilege. Please regenerate one with root user in GitLab.";
|
||||
$lang->gitlab->hostError = "So the current GitLab server address is invalid or the current GitLab version is not compatible with ZenTao, please confirm that the current server can be accessed or contact the administrator to upgrade the GitLab version to %s or above and try again.";
|
||||
$lang->gitlab->bindUserError = "Can not bind users repeatedly %s";
|
||||
$lang->gitlab->importIssueError = "The execution to which this issue belongs is not selected.";
|
||||
$lang->gitlab->importIssueWarn = "There is a problem of import failure, you can try to import again.";
|
||||
|
||||
$lang->gitlab->accessLevels[10] = 'Guest';
|
||||
$lang->gitlab->accessLevels[20] = 'Reporter';
|
||||
$lang->gitlab->accessLevels[30] = 'Developer';
|
||||
$lang->gitlab->accessLevels[40] = 'Maintainer';
|
||||
$lang->gitlab->accessLevels[50] = 'Owner';
|
||||
|
||||
$lang->gitlab->apiError[0] = 'internal is not allowed in a private group.';
|
||||
$lang->gitlab->apiError[1] = 'public is not allowed in a private group.';
|
||||
$lang->gitlab->apiError[2] = 'is too short (minimum is 8 characters)';
|
||||
$lang->gitlab->apiError[3] = "can contain only letters, digits, '_', '-' and '.'. Cannot start with '-', end in '.git' or end in '.atom'";
|
||||
$lang->gitlab->apiError[4] = 'Branch already exists';
|
||||
$lang->gitlab->apiError[5] = 'Failed to save group {:path=>["has already been taken"]}';
|
||||
$lang->gitlab->apiError[6] = '403 Forbidden';
|
||||
|
||||
$lang->gitlab->errorLang[0] = 'You cannot set Internal as its Visibility Level, if it is private in GitLab.';
|
||||
$lang->gitlab->errorLang[1] = 'You cannot set Public as its Visibility Level, if it is private in GitLab.';
|
||||
$lang->gitlab->errorLang[2] = 'Password is too short (minimum is 8 characters)';
|
||||
$lang->gitlab->errorLang[3] = 'It should contain only letters, digits, underscore, hyphen and period. It should not start with hypen, or end with .git or .atom.';
|
||||
$lang->gitlab->errorLang[4] = 'Branch already exists.';
|
||||
$lang->gitlab->errorLang[5] = 'Failed to save group, path has already been taken.';
|
||||
$lang->gitlab->errorLang[6] = $lang->gitlab->noAccess;
|
||||
|
||||
$lang->gitlab->project = new stdclass;
|
||||
$lang->gitlab->project->id = "Project ID";
|
||||
$lang->gitlab->project->name = "Project name";
|
||||
$lang->gitlab->project->create = "Create GitLab project";
|
||||
$lang->gitlab->project->edit = "Edit GitLab project";
|
||||
$lang->gitlab->project->url = "Project URL";
|
||||
$lang->gitlab->project->path = "Project slug";
|
||||
$lang->gitlab->project->description = "Project description";
|
||||
$lang->gitlab->project->visibility = "Visibility Level";
|
||||
$lang->gitlab->project->visibilityList['private'] = "Private(Project access must be granted explicitly to each user. If this project is part of a group, access will be granted to members of the group)";
|
||||
$lang->gitlab->project->visibilityList['internal'] = "Internal(The project can be accessed by any logged in user except external users)";
|
||||
$lang->gitlab->project->visibilityList['public'] = "Public(The project can be accessed without any authentication)";
|
||||
$lang->gitlab->project->star = "Stars";
|
||||
$lang->gitlab->project->fork = "Forks";
|
||||
$lang->gitlab->project->mergeRequests = "Merge Requests";
|
||||
$lang->gitlab->project->issues = "Issues";
|
||||
$lang->gitlab->project->tagList = "Topics";
|
||||
$lang->gitlab->project->tagListTips = "Separate topics with commas.";
|
||||
$lang->gitlab->project->emptyNameError = "Project name cannot be empty.";
|
||||
$lang->gitlab->project->emptyPathError = "Project slug cannot be empty.";
|
||||
$lang->gitlab->project->confirmDelete = 'Do you want to delete this GitLab project?';
|
||||
$lang->gitlab->project->notbindedError = 'GitLab user has not been bound, unable to modify permissions!';
|
||||
$lang->gitlab->project->publicTip = 'The visible status of the current project will be modified to public, and the project can be accessed without any authentication in GitLab. ';
|
||||
|
||||
$lang->gitlab->user = new stdclass;
|
||||
$lang->gitlab->user->id = "User ID";
|
||||
$lang->gitlab->user->name = "Name";
|
||||
$lang->gitlab->user->username = "Username";
|
||||
$lang->gitlab->user->email = "Email";
|
||||
$lang->gitlab->user->password = "Password";
|
||||
$lang->gitlab->user->passwordRepeat = "Repeat Password";
|
||||
$lang->gitlab->user->projectsLimit = "Projects limit";
|
||||
$lang->gitlab->user->canCreateGroup = "Can create group";
|
||||
$lang->gitlab->user->external = "External";
|
||||
$lang->gitlab->user->externalTip = "External users cannot see internal or private projects unless access is explicitly granted. Also, external users cannot create projects, groups, or personal snippets.";
|
||||
$lang->gitlab->user->bind = "Zentao user";
|
||||
$lang->gitlab->user->avatar = "Avatar";
|
||||
$lang->gitlab->user->skype = "Skype";
|
||||
$lang->gitlab->user->linkedin = "Linkedin";
|
||||
$lang->gitlab->user->twitter = "Twitter";
|
||||
$lang->gitlab->user->websiteUrl = "Website url";
|
||||
$lang->gitlab->user->note = "Note";
|
||||
$lang->gitlab->user->createOn = "Created on";
|
||||
$lang->gitlab->user->lastActivity = "Last activity";
|
||||
$lang->gitlab->user->create = "Create GitLab user";
|
||||
$lang->gitlab->user->edit = "Edit GitLab user";
|
||||
$lang->gitlab->user->emptyError = "cannot be empty";
|
||||
$lang->gitlab->user->passwordError = "The second password is inconsistent!";
|
||||
$lang->gitlab->user->bindError = "The user has been bound!";
|
||||
$lang->gitlab->user->confirmDelete = 'Do you want to delete this GitLab user?';
|
||||
|
||||
$lang->gitlab->group = new stdclass;
|
||||
$lang->gitlab->group->id = "Group ID";
|
||||
$lang->gitlab->group->name = "Group name";
|
||||
$lang->gitlab->group->path = "Group URL";
|
||||
$lang->gitlab->group->pathTip = "Changing group URL can have unintended side effects.";
|
||||
$lang->gitlab->group->description = "Group description";
|
||||
$lang->gitlab->group->avatar = "Group avatar";
|
||||
$lang->gitlab->group->avatarTip = 'Max file size is 200 KB.';
|
||||
$lang->gitlab->group->visibility = "Visibility level";
|
||||
$lang->gitlab->group->visibilityList['private'] = "Private(The group and its projects can only be viewed by members)";
|
||||
$lang->gitlab->group->visibilityList['internal'] = "Internal(The group and any internal projects can be viewed by any logged in user except external users)";
|
||||
$lang->gitlab->group->visibilityList['public'] = "Public(The group and any public projects can be viewed without any authentication.)";
|
||||
$lang->gitlab->group->permission = 'Permission';
|
||||
$lang->gitlab->group->requestAccessEnabledTip = "Allow users to request access (if visibility is public or internal)";
|
||||
$lang->gitlab->group->lfsEnabled = 'Large File Storage';
|
||||
$lang->gitlab->group->lfsEnabledTip = "Allow projects within this group to use Git LFS(This setting can be overridden in each project)";
|
||||
$lang->gitlab->group->projectCreationLevel = "Allowed to create projects";
|
||||
$lang->gitlab->group->projectCreationLevelList['noone'] = "No one";
|
||||
$lang->gitlab->group->projectCreationLevelList['maintainer'] = "Maintainers";
|
||||
$lang->gitlab->group->projectCreationLevelList['developer'] = "Developers + Maintainers";
|
||||
$lang->gitlab->group->subgroupCreationLevel = "Allowed to create projects";
|
||||
$lang->gitlab->group->subgroupCreationLevelList['owner'] = "Owners";
|
||||
$lang->gitlab->group->subgroupCreationLevelList['maintainer'] = "Maintainers";
|
||||
$lang->gitlab->group->create = "Create Group";
|
||||
$lang->gitlab->group->edit = "Edit Group";
|
||||
$lang->gitlab->group->createOn = "Created on";
|
||||
$lang->gitlab->group->members = "Group Members";
|
||||
$lang->gitlab->group->confirmDelete = 'Do you want to delete this GitLab group?';
|
||||
$lang->gitlab->group->emptyError = "cannot be empty";
|
||||
$lang->gitlab->group->manageMembers = 'Manage Group Members';
|
||||
$lang->gitlab->group->memberName = 'Account';
|
||||
$lang->gitlab->group->memberAccessLevel = 'Access Level';
|
||||
$lang->gitlab->group->memberExpiresAt = 'Expiration time';
|
||||
$lang->gitlab->group->repeatError = "Group members cannot be added repeatedly";
|
||||
$lang->gitlab->group->publicTip = 'The visible status of the current group will be modified to public, and the group can be accessed without any authentication in GitLab. ';
|
||||
|
||||
$lang->gitlab->branch = new stdclass();
|
||||
$lang->gitlab->branch->name = 'Branch name';
|
||||
$lang->gitlab->branch->from = 'Create from';
|
||||
$lang->gitlab->branch->create = 'Create';
|
||||
$lang->gitlab->branch->lastCommitter = 'Last Committer';
|
||||
$lang->gitlab->branch->lastCommittedDate = 'Last Committed Date';
|
||||
$lang->gitlab->branch->accessLevel = "Branch protection list";
|
||||
$lang->gitlab->branch->mergeAllowed = "Merge Allowed";
|
||||
$lang->gitlab->branch->pushAllowed = "Push Allowed";
|
||||
$lang->gitlab->branch->placeholderSearch = "Branch name";
|
||||
$lang->gitlab->branch->placeholderSelect = "Branch name";
|
||||
$lang->gitlab->branch->confirmDelete = 'Branch will be writable for developers. Are you sure?';
|
||||
$lang->gitlab->branch->branchCreationLevelList[40] = "Maintainers";
|
||||
$lang->gitlab->branch->branchCreationLevelList[30] = "Developers + Maintainers";
|
||||
$lang->gitlab->branch->branchCreationLevelList[0] = "No one";
|
||||
$lang->gitlab->branch->emptyPrivNameError = "Branch cannot be empty.";
|
||||
$lang->gitlab->branch->issetPrivNameError = "The protection branch already exists";
|
||||
|
||||
$lang->gitlab->tag = new stdclass();
|
||||
$lang->gitlab->tag->name = 'Tag name';
|
||||
$lang->gitlab->tag->ref = 'Create from';
|
||||
$lang->gitlab->tag->lastCommitter = 'Last Committer';
|
||||
$lang->gitlab->tag->lastCommittedDate = 'Last Committed Date';
|
||||
$lang->gitlab->tag->placeholderSearch = "Enter branch tag";
|
||||
$lang->gitlab->tag->message = 'Message';
|
||||
$lang->gitlab->tag->emptyNameError = "Name cannot be empty.";
|
||||
$lang->gitlab->tag->emptyRefError = "Create from cannot be empty.";
|
||||
$lang->gitlab->tag->issetNameError = "The tag already exists";
|
||||
$lang->gitlab->tag->confirmDelete = 'Do you want to delete this GitLab tag?';
|
||||
$lang->gitlab->tag->protected = 'Protected';
|
||||
$lang->gitlab->tag->accessLevel = 'Allow creation';
|
||||
$lang->gitlab->tag->protectConfirmDel = 'Do you want to delete this GitLab tag protected?';
|
||||
$lang->gitlab->tag->emptyPrivNameError = 'Tag cannot be empty.';
|
||||
$lang->gitlab->tag->issetPrivNameError = 'The protection tag already exists.';
|
||||
$lang->gitea->server = "Server List";
|
||||
$lang->gitea->lblCreate = 'Create Gitea Server';
|
||||
$lang->gitea->emptyError = " cannot be empty";
|
||||
$lang->gitea->createSuccess = "Create success";
|
||||
|
||||
+21
-220
@@ -1,225 +1,26 @@
|
||||
<?php
|
||||
$lang->gitlab = new stdclass;
|
||||
$lang->gitlab->common = 'GitLab';
|
||||
$lang->gitlab->browse = '瀏覽GitLab';
|
||||
$lang->gitlab->search = '搜索';
|
||||
$lang->gitlab->create = '添加GitLab';
|
||||
$lang->gitlab->edit = '編輯GitLab';
|
||||
$lang->gitlab->view = '查看GitLab';
|
||||
$lang->gitlab->bindUser = '綁定用戶';
|
||||
$lang->gitlab->webhook = 'Webhook';
|
||||
$lang->gitlab->bindProduct = '關聯產品';
|
||||
$lang->gitlab->importIssue = '關聯issue';
|
||||
$lang->gitlab->delete = '刪除GitLab';
|
||||
$lang->gitlab->confirmDelete = '確認刪除該GitLab嗎?';
|
||||
$lang->gitlab->gitlabAccount = 'GitLab用戶';
|
||||
$lang->gitlab->zentaoAccount = '禪道用戶';
|
||||
$lang->gitlab->bindingStatus = '綁定狀態';
|
||||
$lang->gitlab->binded = '已綁定';
|
||||
$lang->gitlab->bindedError = '綁定的用戶已刪除或者已修改,請重新綁定';
|
||||
$lang->gitlab->serverFail = '連接GitLab伺服器異常,請檢查GitLab伺服器。';
|
||||
$lang->gitlab->lastUpdate = '最後更新';
|
||||
$lang->gitlab->confirmAddWebhook = '您確定創建Webhook嗎?';
|
||||
$lang->gitlab->addWebhookSuccess = 'Webhook創建成功';
|
||||
$lang->gitlab->failCreateWebhook = 'Webhook創建失敗,請查看日誌';
|
||||
$lang->gitlab->placeholderSearch = '請輸入項目名稱';
|
||||
$lang->gitea = new stdclass;
|
||||
$lang->gitea->common = 'Gitea';
|
||||
$lang->gitea->browse = '浏览Gitea';
|
||||
$lang->gitea->search = '搜索';
|
||||
$lang->gitea->create = '添加Gitea';
|
||||
$lang->gitea->edit = '编辑Gitea';
|
||||
$lang->gitea->view = '查看Gitea';
|
||||
$lang->gitea->delete = '删除Gitea';
|
||||
$lang->gitea->confirmDelete = '确认删除该Gitea吗?';
|
||||
|
||||
$lang->gitlab->browseAction = 'GitLab列表';
|
||||
$lang->gitlab->deleteAction = '刪除GitLab';
|
||||
$lang->gitlab->gitlabProject = "{$lang->gitlab->common}項目";
|
||||
$lang->gitlab->browseProject = "{$lang->gitlab->common}項目列表";
|
||||
$lang->gitlab->browseUser = "用戶列表";
|
||||
$lang->gitlab->browseGroup = "群組列表";
|
||||
$lang->gitlab->browseBranch = "GitLab分支列表";
|
||||
$lang->gitlab->browseTag = "GitLab標籤列表";
|
||||
$lang->gitlab->gitlabIssue = "{$lang->gitlab->common} issue";
|
||||
$lang->gitlab->zentaoProduct = '禪道產品';
|
||||
$lang->gitlab->objectType = '類型'; // task, bug, story
|
||||
$lang->gitlab->manageProjectMembers = '項目成員管理';
|
||||
$lang->gitlab->createProject = '添加GitLab項目';
|
||||
$lang->gitlab->editProject = '編輯GitLab項目';
|
||||
$lang->gitlab->deleteProject = '刪除GitLab項目';
|
||||
$lang->gitlab->createGroup = '添加群組';
|
||||
$lang->gitlab->editGroup = '編輯群組';
|
||||
$lang->gitlab->deleteGroup = '刪除群組';
|
||||
$lang->gitlab->createUser = '添加用戶';
|
||||
$lang->gitlab->editUser = '編輯用戶';
|
||||
$lang->gitlab->deleteUser = '刪除用戶';
|
||||
$lang->gitlab->createBranch = '添加分支';
|
||||
$lang->gitlab->manageGroupMembers = '群組成員管理';
|
||||
$lang->gitlab->createWebhook = '創建Webhook';
|
||||
$lang->gitlab->browseBranchPriv = '分支保護管理';
|
||||
$lang->gitlab->createBranchPriv = '創建分支保護';
|
||||
$lang->gitlab->editBranchPriv = '編輯分支保護';
|
||||
$lang->gitlab->deleteBranchPriv = '刪除分支保護';
|
||||
$lang->gitlab->createTag = '創建標籤';
|
||||
$lang->gitlab->deleteTag = '刪除標籤';
|
||||
$lang->gitlab->createTagPriv = '創建標簽保護';
|
||||
$lang->gitlab->editTagPriv = '編輯標簽保護';
|
||||
$lang->gitea->browseAction = 'Gitea列表';
|
||||
$lang->gitea->deleteAction = '删除Gitea';
|
||||
|
||||
$lang->gitlab->id = 'ID';
|
||||
$lang->gitlab->name = "{$lang->gitlab->common}名稱";
|
||||
$lang->gitlab->url = '服務地址';
|
||||
$lang->gitlab->token = 'Token';
|
||||
$lang->gitlab->defaultProject = '預設項目';
|
||||
$lang->gitlab->private = 'MD5驗證';
|
||||
$lang->gitea->id = 'ID';
|
||||
$lang->gitea->name = "服务器名称";
|
||||
$lang->gitea->url = '服务器地址';
|
||||
$lang->gitea->token = 'Token';
|
||||
|
||||
$lang->gitlab->lblCreate = '添加GitLab伺服器';
|
||||
$lang->gitlab->desc = '描述';
|
||||
$lang->gitlab->tokenFirst = 'Token不為空時,優先使用Token。';
|
||||
$lang->gitlab->tips = '使用密碼時,請在GitLab全局安全設置中禁用"防止跨站點請求偽造"選項。';
|
||||
$lang->gitlab->emptyError = "不能為空";
|
||||
$lang->gitlab->createSuccess = "創建成功";
|
||||
$lang->gitea->tokenLimit = "Gitea Token权限不足。";
|
||||
$lang->gitea->hostError = "当前Gitea服务器地址无效,请确认当前服务器可被访问";
|
||||
|
||||
$lang->gitlab->placeholder = new stdclass;
|
||||
$lang->gitlab->placeholder->name = '';
|
||||
$lang->gitlab->placeholder->url = "請填寫GitLab Server首頁的訪問地址,如:https://gitlab.zentao.net。";
|
||||
$lang->gitlab->placeholder->token = "請填寫具有admin權限賬戶的access token";
|
||||
$lang->gitlab->placeholder->projectPath = "項目標識串只能包含字母、數字、“_”、“-”和“.”。不能以“-”開頭,以.git或者.atom結尾";
|
||||
|
||||
$lang->gitlab->noImportableIssues = "目前沒有可供導入的issue。";
|
||||
$lang->gitlab->tokenError = "當前token非管理員權限。";
|
||||
$lang->gitlab->tokenLimit = "GitLab Token權限不足。請更換為有管理員權限的GitLab Token。";
|
||||
$lang->gitlab->hostError = "無效的GitLab服務地址。";
|
||||
$lang->gitlab->bindUserError = "不能重複綁定用戶 %s";
|
||||
$lang->gitlab->importIssueError = "未選擇該issue所屬的執行。";
|
||||
$lang->gitlab->importIssueWarn = "存在導入失敗的issue,可再次嘗試導入。";
|
||||
|
||||
$lang->gitlab->accessLevels[10] = 'Guest';
|
||||
$lang->gitlab->accessLevels[20] = 'Reporter';
|
||||
$lang->gitlab->accessLevels[30] = 'Developer';
|
||||
$lang->gitlab->accessLevels[40] = 'Maintainer';
|
||||
$lang->gitlab->accessLevels[50] = 'Owner';
|
||||
|
||||
$lang->gitlab->apiError[0] = 'internal is not allowed in a private group.';
|
||||
$lang->gitlab->apiError[1] = 'public is not allowed in a private group.';
|
||||
$lang->gitlab->apiError[2] = 'is too short (minimum is 8 characters)';
|
||||
$lang->gitlab->apiError[3] = "can contain only letters, digits, '_', '-' and '.'. Cannot start with '-', end in '.git' or end in '.atom'";
|
||||
$lang->gitlab->apiError[4] = 'Branch already exists';
|
||||
$lang->gitlab->apiError[5] = 'Failed to save group {:path=>["has already been taken"]}';
|
||||
|
||||
$lang->gitlab->errorLang[0] = '私有分組的項目,可見性級別不能設為內部。';
|
||||
$lang->gitlab->errorLang[1] = '私有分組的項目,可見性級別不能設為公開。';
|
||||
$lang->gitlab->errorLang[2] = '密碼太短(最少8個字元)';
|
||||
$lang->gitlab->errorLang[3] = "只能包含字母、數字、'.'-'和'.'。不能以'-'開頭、以'.git'結尾或以'.atom'結尾。";
|
||||
$lang->gitlab->errorLang[4] = '分支名已存在。';
|
||||
$lang->gitlab->errorLang[5] = '保存失敗,群組URL路徑已經被使用。';
|
||||
|
||||
$lang->gitlab->project = new stdclass;
|
||||
$lang->gitlab->project->id = "項目ID";
|
||||
$lang->gitlab->project->name = "項目名稱";
|
||||
$lang->gitlab->project->create = "添加GitLab項目";
|
||||
$lang->gitlab->project->edit = "編輯GitLab項目";
|
||||
$lang->gitlab->project->url = "項目 URL";
|
||||
$lang->gitlab->project->path = "項目標識串";
|
||||
$lang->gitlab->project->description = "項目描述";
|
||||
$lang->gitlab->project->visibility = "可見性級別";
|
||||
$lang->gitlab->project->visibilityList['private'] = "私有(項目訪問必須明確授予每個用戶。 如果此項目是在一個群組中,群組成員將會獲得訪問權限)";
|
||||
$lang->gitlab->project->visibilityList['internal'] = "內部(除外部用戶外,任何登錄用戶均可訪問該項目)";
|
||||
$lang->gitlab->project->visibilityList['public'] = "公開(該項目允許任何人訪問)";
|
||||
$lang->gitlab->project->star = "星標";
|
||||
$lang->gitlab->project->fork = "派生";
|
||||
$lang->gitlab->project->mergeRequests = "合併請求";
|
||||
$lang->gitlab->project->issues = "議題";
|
||||
$lang->gitlab->project->tagList = "主題";
|
||||
$lang->gitlab->project->tagListTips = "用逗號分隔主題。";
|
||||
$lang->gitlab->project->emptyNameError = "項目名稱不能為空";
|
||||
$lang->gitlab->project->emptyPathError = "項目標識串不能為空";
|
||||
$lang->gitlab->project->confirmDelete = '確認刪除該GitLab項目嗎?';
|
||||
$lang->gitlab->project->notbindedError = '還沒綁定GitLab用戶,無法修改權限!';
|
||||
|
||||
$lang->gitlab->user = new stdclass;
|
||||
$lang->gitlab->user->id = "用戶ID";
|
||||
$lang->gitlab->user->name = "名稱";
|
||||
$lang->gitlab->user->username = "用戶名";
|
||||
$lang->gitlab->user->email = "郵箱";
|
||||
$lang->gitlab->user->password = "密碼";
|
||||
$lang->gitlab->user->passwordRepeat = "請重複密碼";
|
||||
$lang->gitlab->user->projectsLimit = "限制項目";
|
||||
$lang->gitlab->user->canCreateGroup = "可創建組";
|
||||
$lang->gitlab->user->external = "外部人員";
|
||||
$lang->gitlab->user->externalTip = "除非明確授予訪問權限,否則外部用戶無法查看內部或私有項目。另外,外部用戶無法創建項目,群組或個人代碼片段。";
|
||||
$lang->gitlab->user->bind = "禪道用戶";
|
||||
$lang->gitlab->user->avatar = "頭像";
|
||||
$lang->gitlab->user->skype = "Skype";
|
||||
$lang->gitlab->user->linkedin = "Linkedin";
|
||||
$lang->gitlab->user->twitter = "Twitter";
|
||||
$lang->gitlab->user->websiteUrl = "網站地址";
|
||||
$lang->gitlab->user->note = "備註";
|
||||
$lang->gitlab->user->createOn = "創建於";
|
||||
$lang->gitlab->user->lastActivity = "上次活動";
|
||||
$lang->gitlab->user->create = "添加GitLab用戶";
|
||||
$lang->gitlab->user->edit = "編輯GitLab用戶";
|
||||
$lang->gitlab->user->emptyError = "不能為空";
|
||||
$lang->gitlab->user->passwordError = "二次密碼不一致!";
|
||||
$lang->gitlab->user->bindError = "該用戶已經被綁定!";
|
||||
$lang->gitlab->user->confirmDelete = '確認刪除該GitLab用戶嗎?';
|
||||
|
||||
$lang->gitlab->group = new stdclass;
|
||||
$lang->gitlab->group->id = "群組ID";
|
||||
$lang->gitlab->group->name = "群組名稱";
|
||||
$lang->gitlab->group->path = "群組URL";
|
||||
$lang->gitlab->group->pathTip = "更改群組URL可能會有意想不到的副作用。";
|
||||
$lang->gitlab->group->description = "群組描述";
|
||||
$lang->gitlab->group->avatar = "群組頭像";
|
||||
$lang->gitlab->group->avatarTip = '檔案最大支持200k.';
|
||||
$lang->gitlab->group->visibility = "可見性級別";
|
||||
$lang->gitlab->group->visibilityList['private'] = "私有(群組及其項目只能由成員查看)";
|
||||
$lang->gitlab->group->visibilityList['internal'] = "內部(除外部用戶外,任何登錄用戶均可查看該組和任何內部項目)";
|
||||
$lang->gitlab->group->visibilityList['public'] = "公開(群組和任何公共項目可以在沒有任何身份驗證的情況下查看)";
|
||||
$lang->gitlab->group->permission = '許可';
|
||||
$lang->gitlab->group->requestAccessEnabledTip = "允許用戶請求訪問(如果可見性是公開或內部的)";
|
||||
$lang->gitlab->group->lfsEnabled = '大檔案存儲';
|
||||
$lang->gitlab->group->lfsEnabledTip = "允許該組內的項目使用 Git LFS(可以在每個項目中覆蓋此設置)";
|
||||
$lang->gitlab->group->projectCreationLevel = "創建項目權限";
|
||||
$lang->gitlab->group->projectCreationLevelList['noone'] = "禁止";
|
||||
$lang->gitlab->group->projectCreationLevelList['maintainer'] = "維護者";
|
||||
$lang->gitlab->group->projectCreationLevelList['developer'] = "開發者 + 維護者";
|
||||
$lang->gitlab->group->subgroupCreationLevel = "創建子群組權限";
|
||||
$lang->gitlab->group->subgroupCreationLevelList['owner'] = "所有者";
|
||||
$lang->gitlab->group->subgroupCreationLevelList['maintainer'] = "維護者";
|
||||
$lang->gitlab->group->create = "添加群組";
|
||||
$lang->gitlab->group->edit = "編輯群組";
|
||||
$lang->gitlab->group->createOn = "創建於";
|
||||
$lang->gitlab->group->members = "群組成員";
|
||||
$lang->gitlab->group->confirmDelete = '確認刪除該GitLab群組嗎?';
|
||||
$lang->gitlab->group->emptyError = "不能為空";
|
||||
$lang->gitlab->group->manageMembers = '群組成員管理';
|
||||
$lang->gitlab->group->memberName = '賬號';
|
||||
$lang->gitlab->group->memberAccessLevel = '角色權限';
|
||||
$lang->gitlab->group->memberExpiresAt = '過期時間';
|
||||
$lang->gitlab->group->repeatError = "群組成員不能重複添加";
|
||||
|
||||
$lang->gitlab->branch = new stdclass();
|
||||
$lang->gitlab->branch->name = '分支名';
|
||||
$lang->gitlab->branch->from = '創建自';
|
||||
$lang->gitlab->branch->create = '創建';
|
||||
$lang->gitlab->branch->lastCommitter = '最後提交';
|
||||
$lang->gitlab->branch->lastCommittedDate = '最後修改時間';
|
||||
$lang->gitlab->branch->accessLevel = "分支保護列表";
|
||||
$lang->gitlab->branch->mergeAllowed = "允許合併到";
|
||||
$lang->gitlab->branch->pushAllowed = "允許推送到";
|
||||
$lang->gitlab->branch->placeholderSearch = "請輸入分支名稱";
|
||||
$lang->gitlab->branch->placeholderSelect = "請選擇分支";
|
||||
$lang->gitlab->branch->confirmDelete = '確定刪除分支保護?';
|
||||
$lang->gitlab->branch->branchCreationLevelList[40] = "維護者";
|
||||
$lang->gitlab->branch->branchCreationLevelList[30] = "開發者 + 維護者";
|
||||
$lang->gitlab->branch->branchCreationLevelList[0] = "禁止";
|
||||
$lang->gitlab->branch->emptyPrivNameError = "分支不能為空";
|
||||
$lang->gitlab->branch->issetPrivNameError = "已存在該保護分支";
|
||||
|
||||
$lang->gitlab->tag = new stdclass();
|
||||
$lang->gitlab->tag->name = '標籤名';
|
||||
$lang->gitlab->tag->ref = '創建自';
|
||||
$lang->gitlab->tag->lastCommitter = '最後提交';
|
||||
$lang->gitlab->tag->lastCommittedDate = '最後修改時間';
|
||||
$lang->gitlab->tag->placeholderSearch = "請輸入標籤名稱";
|
||||
$lang->gitlab->tag->message = '信息';
|
||||
$lang->gitlab->tag->emptyNameError = "標籤名不能為空";
|
||||
$lang->gitlab->tag->emptyRefError = "創建自不能為空";
|
||||
$lang->gitlab->tag->issetNameError = "已存在該標籤";
|
||||
$lang->gitlab->tag->confirmDelete = '確認刪除該GitLab標籤嗎?';
|
||||
$lang->gitlab->tag->protected = '受保護';
|
||||
$lang->gitlab->tag->accessLevel = '允許創建';
|
||||
$lang->gitlab->tag->emptyPrivNameError = '標簽不能爲空';
|
||||
$lang->gitlab->tag->issetPrivNameError = '已存在該保護標簽';
|
||||
$lang->gitea->server = "服务器列表";
|
||||
$lang->gitea->lblCreate = '添加Gitea服务器';
|
||||
$lang->gitea->emptyError = "不能为空";
|
||||
$lang->gitea->createSuccess = "创建成功";
|
||||
|
||||
Reference in New Issue
Block a user