From e64aa18dc97f2cf25bc642c7d987a4a3bed494ac Mon Sep 17 00:00:00 2001
From: Chri-s <Chri-s@users.noreply.github.com>
Date: Wed, 21 Mar 2018 19:12:49 +0100
Subject: [PATCH] Change protected branch settings title to existing locale
 entry (#3694)

---
 routers/repo/setting_protected_branch.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/routers/repo/setting_protected_branch.go b/routers/repo/setting_protected_branch.go
index b8ff6d6ecd..ac1017b91f 100644
--- a/routers/repo/setting_protected_branch.go
+++ b/routers/repo/setting_protected_branch.go
@@ -98,7 +98,7 @@ func SettingsProtectedBranch(c *context.Context) {
 		return
 	}
 
-	c.Data["Title"] = c.Tr("repo.settings.protected_branches") + " - " + branch
+	c.Data["Title"] = c.Tr("repo.settings.protected_branch") + " - " + branch
 	c.Data["PageIsSettingsBranches"] = true
 
 	protectBranch, err := models.GetProtectedBranchBy(c.Repo.Repository.ID, branch)