1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-03 09:07:19 +00:00
Signed-off-by: Gjergji Ramku <gjergjiramku@gmail.com>
This commit is contained in:
Gjergji Ramku
2020-08-20 16:53:06 +02:00
committed by GitHub
parent d15bb17b78
commit 0c9eb468e9
4 changed files with 7 additions and 7 deletions

View File

@ -557,7 +557,7 @@ func SetDefaultBranch(ctx *macaron.Context) {
if !git.IsErrUnsupportedVersion(err) {
gitRepo.Close()
ctx.JSON(http.StatusInternalServerError, map[string]interface{}{
"Err": fmt.Sprintf("Unable to set default branch onrepository: %s/%s Error: %v", ownerName, repoName, err),
"Err": fmt.Sprintf("Unable to set default branch on repository: %s/%s Error: %v", ownerName, repoName, err),
})
return
}
@ -566,7 +566,7 @@ func SetDefaultBranch(ctx *macaron.Context) {
if err := repo.UpdateDefaultBranch(); err != nil {
ctx.JSON(http.StatusInternalServerError, map[string]interface{}{
"Err": fmt.Sprintf("Unable to set default branch onrepository: %s/%s Error: %v", ownerName, repoName, err),
"Err": fmt.Sprintf("Unable to set default branch on repository: %s/%s Error: %v", ownerName, repoName, err),
})
return
}

View File

@ -80,7 +80,7 @@ func ServCommand(ctx *macaron.Context) {
KeyID: keyID,
}
// Now because we're not translating things properly let's just default some Engish strings here
// Now because we're not translating things properly let's just default some English strings here
modeString := "read"
if mode > models.AccessModeRead {
modeString = "write to"