* Remove invalid language items.
This commit is contained in:
@@ -131,128 +131,6 @@ $lang->gitfox->errorLang[11] = 'Missing CI config file';
|
||||
$lang->gitfox->errorResonse['Email has already been taken'] = 'Email has already been taken';
|
||||
$lang->gitfox->errorResonse['Username has already been taken'] = 'Username has already been taken';
|
||||
|
||||
$lang->gitfox->project = new stdclass;
|
||||
$lang->gitfox->project->id = "Project ID";
|
||||
$lang->gitfox->project->name = "Project name";
|
||||
$lang->gitfox->project->create = "Create GitFox project";
|
||||
$lang->gitfox->project->edit = "Edit GitFox project";
|
||||
$lang->gitfox->project->url = "Project URL";
|
||||
$lang->gitfox->project->path = "Project slug";
|
||||
$lang->gitfox->project->description = "Project description";
|
||||
$lang->gitfox->project->visibility = "Visibility Level";
|
||||
$lang->gitfox->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->gitfox->project->visibilityList['internal'] = "Internal(The project can be accessed by any logged in user except external users)";
|
||||
$lang->gitfox->project->visibilityList['public'] = "Public(The project can be accessed without any authentication)";
|
||||
$lang->gitfox->project->star = "Stars";
|
||||
$lang->gitfox->project->fork = "Forks";
|
||||
$lang->gitfox->project->mergeRequests = "Merge Requests";
|
||||
$lang->gitfox->project->issues = "Issues";
|
||||
$lang->gitfox->project->tagList = "Topics";
|
||||
$lang->gitfox->project->tagListTips = "Separate topics with commas.";
|
||||
$lang->gitfox->project->emptyNameError = "Project name cannot be empty.";
|
||||
$lang->gitfox->project->emptyPathError = "Project slug cannot be empty.";
|
||||
$lang->gitfox->project->confirmDelete = 'Do you want to delete this GitFox project?';
|
||||
$lang->gitfox->project->notbindedError = 'GitFox user has not been bound, unable to modify permissions!';
|
||||
$lang->gitfox->project->publicTip = 'The visible status of the current project will be modified to public, and the project can be accessed without any authentication in GitFox. ';
|
||||
|
||||
$lang->gitfox->user = new stdclass;
|
||||
$lang->gitfox->user->id = "User ID";
|
||||
$lang->gitfox->user->name = "Name";
|
||||
$lang->gitfox->user->username = "Username";
|
||||
$lang->gitfox->user->email = "Email";
|
||||
$lang->gitfox->user->password = "Password";
|
||||
$lang->gitfox->user->passwordRepeat = "Repeat Password";
|
||||
$lang->gitfox->user->projectsLimit = "Projects limit";
|
||||
$lang->gitfox->user->canCreateGroup = "Can create group";
|
||||
$lang->gitfox->user->external = "External";
|
||||
$lang->gitfox->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->gitfox->user->bind = "Zentao user";
|
||||
$lang->gitfox->user->avatar = "Avatar";
|
||||
$lang->gitfox->user->skype = "Skype";
|
||||
$lang->gitfox->user->linkedin = "Linkedin";
|
||||
$lang->gitfox->user->twitter = "Twitter";
|
||||
$lang->gitfox->user->websiteUrl = "Website url";
|
||||
$lang->gitfox->user->note = "Note";
|
||||
$lang->gitfox->user->createOn = "Created on";
|
||||
$lang->gitfox->user->lastActivity = "Last activity";
|
||||
$lang->gitfox->user->create = "Create GitFox user";
|
||||
$lang->gitfox->user->edit = "Edit GitFox user";
|
||||
$lang->gitfox->user->emptyError = "cannot be empty";
|
||||
$lang->gitfox->user->passwordError = "The second password is inconsistent!";
|
||||
$lang->gitfox->user->bindError = "The user has been bound!";
|
||||
$lang->gitfox->user->confirmDelete = 'Do you want to delete this GitFox user?';
|
||||
|
||||
$lang->gitfox->group = new stdclass;
|
||||
$lang->gitfox->group->id = "Group ID";
|
||||
$lang->gitfox->group->name = "Group name";
|
||||
$lang->gitfox->group->path = "Group URL";
|
||||
$lang->gitfox->group->pathTip = "Changing group URL can have unintended side effects.";
|
||||
$lang->gitfox->group->description = "Group description";
|
||||
$lang->gitfox->group->avatar = "Group avatar";
|
||||
$lang->gitfox->group->avatarTip = 'Max file size is 200 KB.';
|
||||
$lang->gitfox->group->visibility = "Visibility level";
|
||||
$lang->gitfox->group->visibilityList['private'] = "Private(The group and its projects can only be viewed by members)";
|
||||
$lang->gitfox->group->visibilityList['internal'] = "Internal(The group and any internal projects can be viewed by any logged in user except external users)";
|
||||
$lang->gitfox->group->visibilityList['public'] = "Public(The group and any public projects can be viewed without any authentication.)";
|
||||
$lang->gitfox->group->permission = 'Permission';
|
||||
$lang->gitfox->group->requestAccessEnabledTip = "Allow users to request access (if visibility is public or internal)";
|
||||
$lang->gitfox->group->lfsEnabled = 'Large File Storage';
|
||||
$lang->gitfox->group->lfsEnabledTip = "Allow projects within this group to use Git LFS(This setting can be overridden in each project)";
|
||||
$lang->gitfox->group->projectCreationLevel = "Allowed to create projects";
|
||||
$lang->gitfox->group->projectCreationLevelList['noone'] = "No one";
|
||||
$lang->gitfox->group->projectCreationLevelList['maintainer'] = "Maintainers";
|
||||
$lang->gitfox->group->projectCreationLevelList['developer'] = "Developers + Maintainers";
|
||||
$lang->gitfox->group->subgroupCreationLevel = "Allowed to create projects";
|
||||
$lang->gitfox->group->subgroupCreationLevelList['owner'] = "Owners";
|
||||
$lang->gitfox->group->subgroupCreationLevelList['maintainer'] = "Maintainers";
|
||||
$lang->gitfox->group->create = "Create Group";
|
||||
$lang->gitfox->group->edit = "Edit Group";
|
||||
$lang->gitfox->group->createOn = "Created on";
|
||||
$lang->gitfox->group->members = "Group Members";
|
||||
$lang->gitfox->group->confirmDelete = 'Do you want to delete this GitFox group?';
|
||||
$lang->gitfox->group->emptyError = "cannot be empty";
|
||||
$lang->gitfox->group->manageMembers = 'Manage Group Members';
|
||||
$lang->gitfox->group->memberName = 'Account';
|
||||
$lang->gitfox->group->memberAccessLevel = 'Access Level';
|
||||
$lang->gitfox->group->memberExpiresAt = 'Expiration time';
|
||||
$lang->gitfox->group->repeatError = "Group members cannot be added repeatedly";
|
||||
$lang->gitfox->group->publicTip = 'The visible status of the current group will be modified to public, and the group can be accessed without any authentication in GitFox. ';
|
||||
|
||||
$lang->gitfox->branch = new stdclass();
|
||||
$lang->gitfox->branch->name = 'Branch name';
|
||||
$lang->gitfox->branch->from = 'Create from';
|
||||
$lang->gitfox->branch->create = 'Create';
|
||||
$lang->gitfox->branch->lastCommitter = 'Last Committer';
|
||||
$lang->gitfox->branch->lastCommittedDate = 'Last Committed Date';
|
||||
$lang->gitfox->branch->accessLevel = "Branch protection list";
|
||||
$lang->gitfox->branch->mergeAllowed = "Allowed to merge";
|
||||
$lang->gitfox->branch->pushAllowed = "Allowed to push";
|
||||
$lang->gitfox->branch->placeholderSearch = "Branch name";
|
||||
$lang->gitfox->branch->placeholderSelect = "Branch name";
|
||||
$lang->gitfox->branch->confirmDelete = 'Branch will be writable for developers. Are you sure?';
|
||||
$lang->gitfox->branch->branchCreationLevelList[40] = "Maintainers";
|
||||
$lang->gitfox->branch->branchCreationLevelList[30] = "Developers + Maintainers";
|
||||
$lang->gitfox->branch->branchCreationLevelList[0] = "No one";
|
||||
$lang->gitfox->branch->emptyPrivNameError = "Branch cannot be empty.";
|
||||
$lang->gitfox->branch->issetPrivNameError = "The protection branch already exists";
|
||||
|
||||
$lang->gitfox->tag = new stdclass();
|
||||
$lang->gitfox->tag->name = 'Tag name';
|
||||
$lang->gitfox->tag->ref = 'Create from';
|
||||
$lang->gitfox->tag->lastCommitter = 'Last Committer';
|
||||
$lang->gitfox->tag->lastCommittedDate = 'Last Committed Date';
|
||||
$lang->gitfox->tag->placeholderSearch = "Enter branch tag";
|
||||
$lang->gitfox->tag->message = 'Message';
|
||||
$lang->gitfox->tag->emptyNameError = "Name cannot be empty.";
|
||||
$lang->gitfox->tag->emptyRefError = "Create from cannot be empty.";
|
||||
$lang->gitfox->tag->issetNameError = "The tag already exists";
|
||||
$lang->gitfox->tag->confirmDelete = 'Do you want to delete this GitFox tag?';
|
||||
$lang->gitfox->tag->protected = 'Protected';
|
||||
$lang->gitfox->tag->accessLevel = 'Allow creation';
|
||||
$lang->gitfox->tag->protectConfirmDel = 'Do you want to delete this GitFox tag protected?';
|
||||
$lang->gitfox->tag->emptyPrivNameError = 'Tag cannot be empty.';
|
||||
$lang->gitfox->tag->issetPrivNameError = 'The protection tag already exists.';
|
||||
|
||||
$lang->gitfox->featureBar['binduser']['all'] = $lang->gitfox->all;
|
||||
$lang->gitfox->featureBar['binduser']['notBind'] = $lang->gitfox->notBind;
|
||||
$lang->gitfox->featureBar['binduser']['binded'] = $lang->gitfox->binded;
|
||||
|
||||
@@ -131,128 +131,6 @@ $lang->gitfox->errorLang[11] = 'Missing CI config file';
|
||||
$lang->gitfox->errorResonse['Email has already been taken'] = 'Email has already been taken';
|
||||
$lang->gitfox->errorResonse['Username has already been taken'] = 'Username has already been taken';
|
||||
|
||||
$lang->gitfox->project = new stdclass;
|
||||
$lang->gitfox->project->id = "Project ID";
|
||||
$lang->gitfox->project->name = "Project name";
|
||||
$lang->gitfox->project->create = "Create GitFox project";
|
||||
$lang->gitfox->project->edit = "Edit GitFox project";
|
||||
$lang->gitfox->project->url = "Project URL";
|
||||
$lang->gitfox->project->path = "Project slug";
|
||||
$lang->gitfox->project->description = "Project description";
|
||||
$lang->gitfox->project->visibility = "Visibility Level";
|
||||
$lang->gitfox->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->gitfox->project->visibilityList['internal'] = "Internal(The project can be accessed by any logged in user except external users)";
|
||||
$lang->gitfox->project->visibilityList['public'] = "Public(The project can be accessed without any authentication)";
|
||||
$lang->gitfox->project->star = "Stars";
|
||||
$lang->gitfox->project->fork = "Forks";
|
||||
$lang->gitfox->project->mergeRequests = "Merge Requests";
|
||||
$lang->gitfox->project->issues = "Issues";
|
||||
$lang->gitfox->project->tagList = "Topics";
|
||||
$lang->gitfox->project->tagListTips = "Separate topics with commas.";
|
||||
$lang->gitfox->project->emptyNameError = "Project name cannot be empty.";
|
||||
$lang->gitfox->project->emptyPathError = "Project slug cannot be empty.";
|
||||
$lang->gitfox->project->confirmDelete = 'Do you want to delete this GitFox project?';
|
||||
$lang->gitfox->project->notbindedError = 'GitFox user has not been bound, unable to modify permissions!';
|
||||
$lang->gitfox->project->publicTip = 'The visible status of the current project will be modified to public, and the project can be accessed without any authentication in GitFox. ';
|
||||
|
||||
$lang->gitfox->user = new stdclass;
|
||||
$lang->gitfox->user->id = "User ID";
|
||||
$lang->gitfox->user->name = "Name";
|
||||
$lang->gitfox->user->username = "Username";
|
||||
$lang->gitfox->user->email = "Email";
|
||||
$lang->gitfox->user->password = "Password";
|
||||
$lang->gitfox->user->passwordRepeat = "Repeat Password";
|
||||
$lang->gitfox->user->projectsLimit = "Projects limit";
|
||||
$lang->gitfox->user->canCreateGroup = "Can create group";
|
||||
$lang->gitfox->user->external = "External";
|
||||
$lang->gitfox->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->gitfox->user->bind = "Zentao user";
|
||||
$lang->gitfox->user->avatar = "Avatar";
|
||||
$lang->gitfox->user->skype = "Skype";
|
||||
$lang->gitfox->user->linkedin = "Linkedin";
|
||||
$lang->gitfox->user->twitter = "Twitter";
|
||||
$lang->gitfox->user->websiteUrl = "Website url";
|
||||
$lang->gitfox->user->note = "Note";
|
||||
$lang->gitfox->user->createOn = "Created on";
|
||||
$lang->gitfox->user->lastActivity = "Last activity";
|
||||
$lang->gitfox->user->create = "Create GitFox user";
|
||||
$lang->gitfox->user->edit = "Edit GitFox user";
|
||||
$lang->gitfox->user->emptyError = "cannot be empty";
|
||||
$lang->gitfox->user->passwordError = "The second password is inconsistent!";
|
||||
$lang->gitfox->user->bindError = "The user has been bound!";
|
||||
$lang->gitfox->user->confirmDelete = 'Do you want to delete this GitFox user?';
|
||||
|
||||
$lang->gitfox->group = new stdclass;
|
||||
$lang->gitfox->group->id = "Group ID";
|
||||
$lang->gitfox->group->name = "Group name";
|
||||
$lang->gitfox->group->path = "Group URL";
|
||||
$lang->gitfox->group->pathTip = "Changing group URL can have unintended side effects.";
|
||||
$lang->gitfox->group->description = "Group description";
|
||||
$lang->gitfox->group->avatar = "Group avatar";
|
||||
$lang->gitfox->group->avatarTip = 'Max file size is 200 KB.';
|
||||
$lang->gitfox->group->visibility = "Visibility level";
|
||||
$lang->gitfox->group->visibilityList['private'] = "Private(The group and its projects can only be viewed by members)";
|
||||
$lang->gitfox->group->visibilityList['internal'] = "Internal(The group and any internal projects can be viewed by any logged in user except external users)";
|
||||
$lang->gitfox->group->visibilityList['public'] = "Public(The group and any public projects can be viewed without any authentication.)";
|
||||
$lang->gitfox->group->permission = 'Permission';
|
||||
$lang->gitfox->group->requestAccessEnabledTip = "Allow users to request access (if visibility is public or internal)";
|
||||
$lang->gitfox->group->lfsEnabled = 'Large File Storage';
|
||||
$lang->gitfox->group->lfsEnabledTip = "Allow projects within this group to use Git LFS(This setting can be overridden in each project)";
|
||||
$lang->gitfox->group->projectCreationLevel = "Allowed to create projects";
|
||||
$lang->gitfox->group->projectCreationLevelList['noone'] = "No one";
|
||||
$lang->gitfox->group->projectCreationLevelList['maintainer'] = "Maintainers";
|
||||
$lang->gitfox->group->projectCreationLevelList['developer'] = "Developers + Maintainers";
|
||||
$lang->gitfox->group->subgroupCreationLevel = "Allowed to create projects";
|
||||
$lang->gitfox->group->subgroupCreationLevelList['owner'] = "Owners";
|
||||
$lang->gitfox->group->subgroupCreationLevelList['maintainer'] = "Maintainers";
|
||||
$lang->gitfox->group->create = "Create Group";
|
||||
$lang->gitfox->group->edit = "Edit Group";
|
||||
$lang->gitfox->group->createOn = "Created on";
|
||||
$lang->gitfox->group->members = "Group Members";
|
||||
$lang->gitfox->group->confirmDelete = 'Do you want to delete this GitFox group?';
|
||||
$lang->gitfox->group->emptyError = "cannot be empty";
|
||||
$lang->gitfox->group->manageMembers = 'Manage Group Members';
|
||||
$lang->gitfox->group->memberName = 'Account';
|
||||
$lang->gitfox->group->memberAccessLevel = 'Access Level';
|
||||
$lang->gitfox->group->memberExpiresAt = 'Expiration time';
|
||||
$lang->gitfox->group->repeatError = "Group members cannot be added repeatedly";
|
||||
$lang->gitfox->group->publicTip = 'The visible status of the current group will be modified to public, and the group can be accessed without any authentication in GitFox. ';
|
||||
|
||||
$lang->gitfox->branch = new stdclass();
|
||||
$lang->gitfox->branch->name = 'Branch name';
|
||||
$lang->gitfox->branch->from = 'Create from';
|
||||
$lang->gitfox->branch->create = 'Create';
|
||||
$lang->gitfox->branch->lastCommitter = 'Last Committer';
|
||||
$lang->gitfox->branch->lastCommittedDate = 'Last Committed Date';
|
||||
$lang->gitfox->branch->accessLevel = "Branch protection list";
|
||||
$lang->gitfox->branch->mergeAllowed = "Allowed to merge";
|
||||
$lang->gitfox->branch->pushAllowed = "Allowed to push";
|
||||
$lang->gitfox->branch->placeholderSearch = "Branch name";
|
||||
$lang->gitfox->branch->placeholderSelect = "Branch name";
|
||||
$lang->gitfox->branch->confirmDelete = 'Branch will be writable for developers. Are you sure?';
|
||||
$lang->gitfox->branch->branchCreationLevelList[40] = "Maintainers";
|
||||
$lang->gitfox->branch->branchCreationLevelList[30] = "Developers + Maintainers";
|
||||
$lang->gitfox->branch->branchCreationLevelList[0] = "No one";
|
||||
$lang->gitfox->branch->emptyPrivNameError = "Branch cannot be empty.";
|
||||
$lang->gitfox->branch->issetPrivNameError = "The protection branch already exists";
|
||||
|
||||
$lang->gitfox->tag = new stdclass();
|
||||
$lang->gitfox->tag->name = 'Tag name';
|
||||
$lang->gitfox->tag->ref = 'Create from';
|
||||
$lang->gitfox->tag->lastCommitter = 'Last Committer';
|
||||
$lang->gitfox->tag->lastCommittedDate = 'Last Committed Date';
|
||||
$lang->gitfox->tag->placeholderSearch = "Enter branch tag";
|
||||
$lang->gitfox->tag->message = 'Message';
|
||||
$lang->gitfox->tag->emptyNameError = "Name cannot be empty.";
|
||||
$lang->gitfox->tag->emptyRefError = "Create from cannot be empty.";
|
||||
$lang->gitfox->tag->issetNameError = "The tag already exists";
|
||||
$lang->gitfox->tag->confirmDelete = 'Do you want to delete this GitFox tag?';
|
||||
$lang->gitfox->tag->protected = 'Protected';
|
||||
$lang->gitfox->tag->accessLevel = 'Allow creation';
|
||||
$lang->gitfox->tag->protectConfirmDel = 'Do you want to delete this GitFox tag protected?';
|
||||
$lang->gitfox->tag->emptyPrivNameError = 'Tag cannot be empty.';
|
||||
$lang->gitfox->tag->issetPrivNameError = 'The protection tag already exists.';
|
||||
|
||||
$lang->gitfox->featureBar['binduser']['all'] = $lang->gitfox->all;
|
||||
$lang->gitfox->featureBar['binduser']['notBind'] = $lang->gitfox->notBind;
|
||||
$lang->gitfox->featureBar['binduser']['binded'] = $lang->gitfox->binded;
|
||||
|
||||
@@ -131,128 +131,6 @@ $lang->gitfox->errorLang[11] = 'Missing CI config file';
|
||||
$lang->gitfox->errorResonse['Email has already been taken'] = 'Email has already been taken';
|
||||
$lang->gitfox->errorResonse['Username has already been taken'] = 'Username has already been taken';
|
||||
|
||||
$lang->gitfox->project = new stdclass;
|
||||
$lang->gitfox->project->id = "Project ID";
|
||||
$lang->gitfox->project->name = "Project name";
|
||||
$lang->gitfox->project->create = "Create GitFox project";
|
||||
$lang->gitfox->project->edit = "Edit GitFox project";
|
||||
$lang->gitfox->project->url = "Project URL";
|
||||
$lang->gitfox->project->path = "Project slug";
|
||||
$lang->gitfox->project->description = "Project description";
|
||||
$lang->gitfox->project->visibility = "Visibility Level";
|
||||
$lang->gitfox->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->gitfox->project->visibilityList['internal'] = "Internal(The project can be accessed by any logged in user except external users)";
|
||||
$lang->gitfox->project->visibilityList['public'] = "Public(The project can be accessed without any authentication)";
|
||||
$lang->gitfox->project->star = "Stars";
|
||||
$lang->gitfox->project->fork = "Forks";
|
||||
$lang->gitfox->project->mergeRequests = "Merge Requests";
|
||||
$lang->gitfox->project->issues = "Issues";
|
||||
$lang->gitfox->project->tagList = "Topics";
|
||||
$lang->gitfox->project->tagListTips = "Separate topics with commas.";
|
||||
$lang->gitfox->project->emptyNameError = "Project name cannot be empty.";
|
||||
$lang->gitfox->project->emptyPathError = "Project slug cannot be empty.";
|
||||
$lang->gitfox->project->confirmDelete = 'Do you want to delete this GitFox project?';
|
||||
$lang->gitfox->project->notbindedError = 'GitFox user has not been bound, unable to modify permissions!';
|
||||
$lang->gitfox->project->publicTip = 'The visible status of the current project will be modified to public, and the project can be accessed without any authentication in GitFox. ';
|
||||
|
||||
$lang->gitfox->user = new stdclass;
|
||||
$lang->gitfox->user->id = "User ID";
|
||||
$lang->gitfox->user->name = "Name";
|
||||
$lang->gitfox->user->username = "Username";
|
||||
$lang->gitfox->user->email = "Email";
|
||||
$lang->gitfox->user->password = "Password";
|
||||
$lang->gitfox->user->passwordRepeat = "Repeat Password";
|
||||
$lang->gitfox->user->projectsLimit = "Projects limit";
|
||||
$lang->gitfox->user->canCreateGroup = "Can create group";
|
||||
$lang->gitfox->user->external = "External";
|
||||
$lang->gitfox->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->gitfox->user->bind = "Zentao user";
|
||||
$lang->gitfox->user->avatar = "Avatar";
|
||||
$lang->gitfox->user->skype = "Skype";
|
||||
$lang->gitfox->user->linkedin = "Linkedin";
|
||||
$lang->gitfox->user->twitter = "Twitter";
|
||||
$lang->gitfox->user->websiteUrl = "Website url";
|
||||
$lang->gitfox->user->note = "Note";
|
||||
$lang->gitfox->user->createOn = "Created on";
|
||||
$lang->gitfox->user->lastActivity = "Last activity";
|
||||
$lang->gitfox->user->create = "Create GitFox user";
|
||||
$lang->gitfox->user->edit = "Edit GitFox user";
|
||||
$lang->gitfox->user->emptyError = "cannot be empty";
|
||||
$lang->gitfox->user->passwordError = "The second password is inconsistent!";
|
||||
$lang->gitfox->user->bindError = "The user has been bound!";
|
||||
$lang->gitfox->user->confirmDelete = 'Do you want to delete this GitFox user?';
|
||||
|
||||
$lang->gitfox->group = new stdclass;
|
||||
$lang->gitfox->group->id = "Group ID";
|
||||
$lang->gitfox->group->name = "Group name";
|
||||
$lang->gitfox->group->path = "Group URL";
|
||||
$lang->gitfox->group->pathTip = "Changing group URL can have unintended side effects.";
|
||||
$lang->gitfox->group->description = "Group description";
|
||||
$lang->gitfox->group->avatar = "Group avatar";
|
||||
$lang->gitfox->group->avatarTip = 'Max file size is 200 KB.';
|
||||
$lang->gitfox->group->visibility = "Visibility level";
|
||||
$lang->gitfox->group->visibilityList['private'] = "Private(The group and its projects can only be viewed by members)";
|
||||
$lang->gitfox->group->visibilityList['internal'] = "Internal(The group and any internal projects can be viewed by any logged in user except external users)";
|
||||
$lang->gitfox->group->visibilityList['public'] = "Public(The group and any public projects can be viewed without any authentication.)";
|
||||
$lang->gitfox->group->permission = 'Permission';
|
||||
$lang->gitfox->group->requestAccessEnabledTip = "Allow users to request access (if visibility is public or internal)";
|
||||
$lang->gitfox->group->lfsEnabled = 'Large File Storage';
|
||||
$lang->gitfox->group->lfsEnabledTip = "Allow projects within this group to use Git LFS(This setting can be overridden in each project)";
|
||||
$lang->gitfox->group->projectCreationLevel = "Allowed to create projects";
|
||||
$lang->gitfox->group->projectCreationLevelList['noone'] = "No one";
|
||||
$lang->gitfox->group->projectCreationLevelList['maintainer'] = "Maintainers";
|
||||
$lang->gitfox->group->projectCreationLevelList['developer'] = "Developers + Maintainers";
|
||||
$lang->gitfox->group->subgroupCreationLevel = "Allowed to create projects";
|
||||
$lang->gitfox->group->subgroupCreationLevelList['owner'] = "Owners";
|
||||
$lang->gitfox->group->subgroupCreationLevelList['maintainer'] = "Maintainers";
|
||||
$lang->gitfox->group->create = "Create Group";
|
||||
$lang->gitfox->group->edit = "Edit Group";
|
||||
$lang->gitfox->group->createOn = "Created on";
|
||||
$lang->gitfox->group->members = "Group Members";
|
||||
$lang->gitfox->group->confirmDelete = 'Do you want to delete this GitFox group?';
|
||||
$lang->gitfox->group->emptyError = "cannot be empty";
|
||||
$lang->gitfox->group->manageMembers = 'Manage Group Members';
|
||||
$lang->gitfox->group->memberName = 'Account';
|
||||
$lang->gitfox->group->memberAccessLevel = 'Access Level';
|
||||
$lang->gitfox->group->memberExpiresAt = 'Expiration time';
|
||||
$lang->gitfox->group->repeatError = "Group members cannot be added repeatedly";
|
||||
$lang->gitfox->group->publicTip = 'The visible status of the current group will be modified to public, and the group can be accessed without any authentication in GitFox. ';
|
||||
|
||||
$lang->gitfox->branch = new stdclass();
|
||||
$lang->gitfox->branch->name = 'Branch name';
|
||||
$lang->gitfox->branch->from = 'Create from';
|
||||
$lang->gitfox->branch->create = 'Create';
|
||||
$lang->gitfox->branch->lastCommitter = 'Last Committer';
|
||||
$lang->gitfox->branch->lastCommittedDate = 'Last Committed Date';
|
||||
$lang->gitfox->branch->accessLevel = "Branch protection list";
|
||||
$lang->gitfox->branch->mergeAllowed = "Allowed to merge";
|
||||
$lang->gitfox->branch->pushAllowed = "Allowed to push";
|
||||
$lang->gitfox->branch->placeholderSearch = "Branch name";
|
||||
$lang->gitfox->branch->placeholderSelect = "Branch name";
|
||||
$lang->gitfox->branch->confirmDelete = 'Branch will be writable for developers. Are you sure?';
|
||||
$lang->gitfox->branch->branchCreationLevelList[40] = "Maintainers";
|
||||
$lang->gitfox->branch->branchCreationLevelList[30] = "Developers + Maintainers";
|
||||
$lang->gitfox->branch->branchCreationLevelList[0] = "No one";
|
||||
$lang->gitfox->branch->emptyPrivNameError = "Branch cannot be empty.";
|
||||
$lang->gitfox->branch->issetPrivNameError = "The protection branch already exists";
|
||||
|
||||
$lang->gitfox->tag = new stdclass();
|
||||
$lang->gitfox->tag->name = 'Tag name';
|
||||
$lang->gitfox->tag->ref = 'Create from';
|
||||
$lang->gitfox->tag->lastCommitter = 'Last Committer';
|
||||
$lang->gitfox->tag->lastCommittedDate = 'Last Committed Date';
|
||||
$lang->gitfox->tag->placeholderSearch = "Enter branch tag";
|
||||
$lang->gitfox->tag->message = 'Message';
|
||||
$lang->gitfox->tag->emptyNameError = "Name cannot be empty.";
|
||||
$lang->gitfox->tag->emptyRefError = "Create from cannot be empty.";
|
||||
$lang->gitfox->tag->issetNameError = "The tag already exists";
|
||||
$lang->gitfox->tag->confirmDelete = 'Do you want to delete this GitFox tag?';
|
||||
$lang->gitfox->tag->protected = 'Protected';
|
||||
$lang->gitfox->tag->accessLevel = 'Allow creation';
|
||||
$lang->gitfox->tag->protectConfirmDel = 'Do you want to delete this GitFox tag protected?';
|
||||
$lang->gitfox->tag->emptyPrivNameError = 'Tag cannot be empty.';
|
||||
$lang->gitfox->tag->issetPrivNameError = 'The protection tag already exists.';
|
||||
|
||||
$lang->gitfox->featureBar['binduser']['all'] = $lang->gitfox->all;
|
||||
$lang->gitfox->featureBar['binduser']['notBind'] = $lang->gitfox->notBind;
|
||||
$lang->gitfox->featureBar['binduser']['binded'] = $lang->gitfox->binded;
|
||||
|
||||
@@ -131,128 +131,6 @@ $lang->gitfox->errorLang[11] = '缺少CI配置文件';
|
||||
$lang->gitfox->errorResonse['Email has already been taken'] = '邮箱已存在';
|
||||
$lang->gitfox->errorResonse['Username has already been taken'] = '用户名已存在';
|
||||
|
||||
$lang->gitfox->project = new stdclass;
|
||||
$lang->gitfox->project->id = "项目ID";
|
||||
$lang->gitfox->project->name = "项目名称";
|
||||
$lang->gitfox->project->create = "添加GitFox项目";
|
||||
$lang->gitfox->project->edit = "编辑GitFox项目";
|
||||
$lang->gitfox->project->url = "项目 URL";
|
||||
$lang->gitfox->project->path = "项目标识串";
|
||||
$lang->gitfox->project->description = "项目描述";
|
||||
$lang->gitfox->project->visibility = "可见性级别";
|
||||
$lang->gitfox->project->visibilityList['private'] = "私有(项目访问必须明确授予每个用户。 如果此项目是在一个群组中,群组成员将会获得访问权限)";
|
||||
$lang->gitfox->project->visibilityList['internal'] = "内部(除外部用户外,任何登录用户均可访问该项目)";
|
||||
$lang->gitfox->project->visibilityList['public'] = "公开(该项目允许任何人访问)";
|
||||
$lang->gitfox->project->star = "星标";
|
||||
$lang->gitfox->project->fork = "派生";
|
||||
$lang->gitfox->project->mergeRequests = "合并请求";
|
||||
$lang->gitfox->project->issues = "议题";
|
||||
$lang->gitfox->project->tagList = "主题";
|
||||
$lang->gitfox->project->tagListTips = "用逗号分隔主题。";
|
||||
$lang->gitfox->project->emptyNameError = "项目名称不能为空";
|
||||
$lang->gitfox->project->emptyPathError = "项目标识串不能为空";
|
||||
$lang->gitfox->project->confirmDelete = '确认删除该GitFox项目吗?';
|
||||
$lang->gitfox->project->notbindedError = '还没绑定GitFox用户,无法修改权限!';
|
||||
$lang->gitfox->project->publicTip = '当前项目的可见性级别将修改为公开,该项目可以在GitFox中没有任何身份验证的情况下被访问';
|
||||
|
||||
$lang->gitfox->user = new stdclass;
|
||||
$lang->gitfox->user->id = "用户ID";
|
||||
$lang->gitfox->user->name = "名称";
|
||||
$lang->gitfox->user->username = "用户名";
|
||||
$lang->gitfox->user->email = "邮箱";
|
||||
$lang->gitfox->user->password = "密码";
|
||||
$lang->gitfox->user->passwordRepeat = "请重复密码";
|
||||
$lang->gitfox->user->projectsLimit = "限制项目";
|
||||
$lang->gitfox->user->canCreateGroup = "可创建组";
|
||||
$lang->gitfox->user->external = "外部人员";
|
||||
$lang->gitfox->user->externalTip = "除非明确授予访问权限,否则外部用户无法查看内部或私有项目。另外,外部用户无法创建项目,群组或个人代码片段。";
|
||||
$lang->gitfox->user->bind = "禅道用户";
|
||||
$lang->gitfox->user->avatar = "头像";
|
||||
$lang->gitfox->user->skype = "Skype";
|
||||
$lang->gitfox->user->linkedin = "Linkedin";
|
||||
$lang->gitfox->user->twitter = "Twitter";
|
||||
$lang->gitfox->user->websiteUrl = "网站地址";
|
||||
$lang->gitfox->user->note = "备注";
|
||||
$lang->gitfox->user->createOn = "创建于";
|
||||
$lang->gitfox->user->lastActivity = "上次活动";
|
||||
$lang->gitfox->user->create = "添加GitFox用户";
|
||||
$lang->gitfox->user->edit = "编辑GitFox用户";
|
||||
$lang->gitfox->user->emptyError = "不能为空";
|
||||
$lang->gitfox->user->passwordError = "二次密码不一致!";
|
||||
$lang->gitfox->user->bindError = "该用户已经被绑定!";
|
||||
$lang->gitfox->user->confirmDelete = '确认删除该GitFox用户吗?';
|
||||
|
||||
$lang->gitfox->group = new stdclass;
|
||||
$lang->gitfox->group->id = "群组ID";
|
||||
$lang->gitfox->group->name = "群组名称";
|
||||
$lang->gitfox->group->path = "群组URL";
|
||||
$lang->gitfox->group->pathTip = "更改群组URL可能会有意想不到的副作用。";
|
||||
$lang->gitfox->group->description = "群组描述";
|
||||
$lang->gitfox->group->avatar = "群组头像";
|
||||
$lang->gitfox->group->avatarTip = '文件最大支持200k.';
|
||||
$lang->gitfox->group->visibility = "可见性级别";
|
||||
$lang->gitfox->group->visibilityList['private'] = "私有(群组及其项目只能由成员查看)";
|
||||
$lang->gitfox->group->visibilityList['internal'] = "内部(除外部用户外,任何登录用户均可查看该组和任何内部项目)";
|
||||
$lang->gitfox->group->visibilityList['public'] = "公开(群组和任何公共项目可以在没有任何身份验证的情况下查看)";
|
||||
$lang->gitfox->group->permission = '许可';
|
||||
$lang->gitfox->group->requestAccessEnabledTip = "允许用户请求访问(如果可见性是公开或内部的)";
|
||||
$lang->gitfox->group->lfsEnabled = '大文件存储';
|
||||
$lang->gitfox->group->lfsEnabledTip = "允许该组内的项目使用 Git LFS(可以在每个项目中覆盖此设置)";
|
||||
$lang->gitfox->group->projectCreationLevel = "创建项目权限";
|
||||
$lang->gitfox->group->projectCreationLevelList['noone'] = "禁止";
|
||||
$lang->gitfox->group->projectCreationLevelList['maintainer'] = "维护者";
|
||||
$lang->gitfox->group->projectCreationLevelList['developer'] = "开发者 + 维护者";
|
||||
$lang->gitfox->group->subgroupCreationLevel = "创建子群组权限";
|
||||
$lang->gitfox->group->subgroupCreationLevelList['owner'] = "所有者";
|
||||
$lang->gitfox->group->subgroupCreationLevelList['maintainer'] = "维护者";
|
||||
$lang->gitfox->group->create = "添加群组";
|
||||
$lang->gitfox->group->edit = "编辑群组";
|
||||
$lang->gitfox->group->createOn = "创建于";
|
||||
$lang->gitfox->group->members = "群组成员";
|
||||
$lang->gitfox->group->confirmDelete = '确认删除该GitFox群组吗?';
|
||||
$lang->gitfox->group->emptyError = "不能为空";
|
||||
$lang->gitfox->group->manageMembers = '群组成员管理';
|
||||
$lang->gitfox->group->memberName = '账号';
|
||||
$lang->gitfox->group->memberAccessLevel = '角色权限';
|
||||
$lang->gitfox->group->memberExpiresAt = '过期时间';
|
||||
$lang->gitfox->group->repeatError = "群组成员不能重复添加";
|
||||
$lang->gitfox->group->publicTip = '当前群组的可见性级别将修改为公开,该群组可以在GitFox中没有任何身份验证的情况下被访问';
|
||||
|
||||
$lang->gitfox->branch = new stdclass();
|
||||
$lang->gitfox->branch->name = '分支名';
|
||||
$lang->gitfox->branch->from = '创建自';
|
||||
$lang->gitfox->branch->create = '创建';
|
||||
$lang->gitfox->branch->lastCommitter = '最后提交';
|
||||
$lang->gitfox->branch->lastCommittedDate = '最后修改时间';
|
||||
$lang->gitfox->branch->accessLevel = "分支保护列表";
|
||||
$lang->gitfox->branch->mergeAllowed = "允许合并";
|
||||
$lang->gitfox->branch->pushAllowed = "允许推送";
|
||||
$lang->gitfox->branch->placeholderSearch = "请输入分支名称";
|
||||
$lang->gitfox->branch->placeholderSelect = "请选择分支";
|
||||
$lang->gitfox->branch->confirmDelete = '确定删除分支保护?';
|
||||
$lang->gitfox->branch->branchCreationLevelList[40] = "维护者";
|
||||
$lang->gitfox->branch->branchCreationLevelList[30] = "开发者 + 维护者";
|
||||
$lang->gitfox->branch->branchCreationLevelList[0] = "禁止";
|
||||
$lang->gitfox->branch->emptyPrivNameError = "分支不能为空";
|
||||
$lang->gitfox->branch->issetPrivNameError = "已存在该保护分支";
|
||||
|
||||
$lang->gitfox->tag = new stdclass();
|
||||
$lang->gitfox->tag->name = '标签名';
|
||||
$lang->gitfox->tag->ref = '创建自';
|
||||
$lang->gitfox->tag->lastCommitter = '最后提交';
|
||||
$lang->gitfox->tag->lastCommittedDate = '最后修改时间';
|
||||
$lang->gitfox->tag->placeholderSearch = "请输入标签名称";
|
||||
$lang->gitfox->tag->message = '信息';
|
||||
$lang->gitfox->tag->emptyNameError = "标签名不能为空";
|
||||
$lang->gitfox->tag->emptyRefError = "创建自不能为空";
|
||||
$lang->gitfox->tag->issetNameError = "已存在该标签";
|
||||
$lang->gitfox->tag->confirmDelete = '确认删除该GitFox标签吗?';
|
||||
$lang->gitfox->tag->protected = '受保护';
|
||||
$lang->gitfox->tag->accessLevel = '允许创建';
|
||||
$lang->gitfox->tag->protectConfirmDel = '确认删除该GitFox标签保护吗?';
|
||||
$lang->gitfox->tag->emptyPrivNameError = "标签不能为空";
|
||||
$lang->gitfox->tag->issetPrivNameError = "已存在该保护标签";
|
||||
|
||||
$lang->gitfox->featureBar['binduser']['all'] = $lang->gitfox->all;
|
||||
$lang->gitfox->featureBar['binduser']['notBind'] = $lang->gitfox->notBind;
|
||||
$lang->gitfox->featureBar['binduser']['binded'] = $lang->gitfox->binded;
|
||||
|
||||
Reference in New Issue
Block a user