Browse Source

remove repetitive words (#29695)

Signed-off-by: pengqiseven <912170095@qq.com>
tags/v1.22.0-rc0
pengqiseven 3 months ago
parent
commit
7f856d5d74
No account linked to committer's email address

+ 1
- 1
docs/content/administration/mail-templates.en-us.md View File



If the template fails to render, it will be noticed only at the moment the mail is sent. If the template fails to render, it will be noticed only at the moment the mail is sent.
A default subject is used if the subject template fails, and whatever was rendered successfully A default subject is used if the subject template fails, and whatever was rendered successfully
from the the _mail body_ is used, disregarding the rest.
from the _mail body_ is used, disregarding the rest.


Please check [Gitea's logs](administration/logging-config.md) for error messages in case of trouble. Please check [Gitea's logs](administration/logging-config.md) for error messages in case of trouble.



+ 1
- 1
models/issues/issue_search.go View File



func applyReviewedCondition(sess *xorm.Session, reviewedID int64) *xorm.Session { func applyReviewedCondition(sess *xorm.Session, reviewedID int64) *xorm.Session {
// Query for pull requests where you are a reviewer or commenter, excluding // Query for pull requests where you are a reviewer or commenter, excluding
// any pull requests already returned by the the review requested filter.
// any pull requests already returned by the review requested filter.
notPoster := builder.Neq{"issue.poster_id": reviewedID} notPoster := builder.Neq{"issue.poster_id": reviewedID}
reviewed := builder.In("issue.id", builder. reviewed := builder.In("issue.id", builder.
Select("issue_id"). Select("issue_id").

+ 1
- 1
models/user/user.go View File

return u.Name return u.Name
} }


// GetCompleteName returns the the full name and username in the form of
// GetCompleteName returns the full name and username in the form of
// "Full Name (username)" if full name is not empty, otherwise it returns // "Full Name (username)" if full name is not empty, otherwise it returns
// "username". // "username".
func (u *User) GetCompleteName() string { func (u *User) GetCompleteName() string {

+ 1
- 1
modules/git/commit.go View File

return c.repo.GetFilesChangedBetween(pastCommit, c.ID.String()) return c.repo.GetFilesChangedBetween(pastCommit, c.ID.String())
} }


// FileChangedSinceCommit Returns true if the file given has changed since the the past commit
// FileChangedSinceCommit Returns true if the file given has changed since the past commit
// YOU MUST ENSURE THAT pastCommit is a valid commit ID. // YOU MUST ENSURE THAT pastCommit is a valid commit ID.
func (c *Commit) FileChangedSinceCommit(filename, pastCommit string) (bool, error) { func (c *Commit) FileChangedSinceCommit(filename, pastCommit string) (bool, error) {
return c.repo.FileChangedBetweenCommits(filename, pastCommit, c.ID.String()) return c.repo.FileChangedBetweenCommits(filename, pastCommit, c.ID.String())

+ 1
- 1
routers/api/v1/repo/issue.go View File

// required: false // required: false
// - name: created_by // - name: created_by
// in: query // in: query
// description: Only show items which were created by the the given user
// description: Only show items which were created by the given user
// type: string // type: string
// - name: assigned_by // - name: assigned_by
// in: query // in: query

+ 1
- 1
routers/api/v1/repo/pull_review.go View File

return nil, nil, true return nil, nil, true
} }


// validate the the review is for the given PR
// validate the review is for the given PR
if review.IssueID != pr.IssueID { if review.IssueID != pr.IssueID {
ctx.NotFound("ReviewNotInPR") ctx.NotFound("ReviewNotInPR")
return nil, nil, true return nil, nil, true

+ 1
- 1
templates/swagger/v1_json.tmpl View File

}, },
{ {
"type": "string", "type": "string",
"description": "Only show items which were created by the the given user",
"description": "Only show items which were created by the given user",
"name": "created_by", "name": "created_by",
"in": "query" "in": "query"
}, },

Loading…
Cancel
Save