diff options
author | Kerwin Bryant <kerwin612@qq.com> | 2023-07-29 21:34:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-29 21:34:22 +0800 |
commit | 05d0b7ca91893b749f3e70e828f9777690ecf5f1 (patch) | |
tree | 2598d586fe52a075fa0db3d6f83f4e09a7fd04a7 /templates/user/settings | |
parent | 1c89f15f42411e2271d809e0d4c311cc145a4d75 (diff) | |
download | gitea-05d0b7ca91893b749f3e70e828f9777690ecf5f1.tar.gz gitea-05d0b7ca91893b749f3e70e828f9777690ecf5f1.zip |
Fixed incorrect locale references (#26218)
Fixed two incorrect headers for setting the page navigation bar:
* User settings page, should not use the title "`org.settings`"
* Repo settings page, should not use the title "`org.settings`"
Diffstat (limited to 'templates/user/settings')
-rw-r--r-- | templates/user/settings/navbar.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/user/settings/navbar.tmpl b/templates/user/settings/navbar.tmpl index 7612e41ba5..d1038c5b62 100644 --- a/templates/user/settings/navbar.tmpl +++ b/templates/user/settings/navbar.tmpl @@ -1,6 +1,6 @@ <div class="four wide column"> <div class="ui fluid vertical menu"> - <div class="header item">{{.locale.Tr "org.settings"}}</div> + <div class="header item">{{.locale.Tr "settings"}}</div> <a class="{{if .PageIsSettingsProfile}}active {{end}}item" href="{{AppSubUrl}}/user/settings"> {{.locale.Tr "settings.profile"}} </a> |