@@ -43,7 +43,7 @@ const (
4343
4444// Profile render user's profile page
4545func Profile (ctx * context.Context ) {
46- ctx .Data ["Title" ] = ctx .Tr ("settings" )
46+ ctx .Data ["Title" ] = ctx .Tr ("settings.profile " )
4747 ctx .Data ["PageIsSettingsProfile" ] = true
4848 ctx .Data ["AllowedUserVisibilityModes" ] = setting .Service .AllowedUserVisibilityModesSlice .ToVisibleTypeSlice ()
4949
@@ -220,7 +220,7 @@ func DeleteAvatar(ctx *context.Context) {
220220
221221// Organization render all the organization of the user
222222func Organization (ctx * context.Context ) {
223- ctx .Data ["Title" ] = ctx .Tr ("settings" )
223+ ctx .Data ["Title" ] = ctx .Tr ("settings.organization " )
224224 ctx .Data ["PageIsSettingsOrganization" ] = true
225225
226226 opts := organization.FindOrgOptions {
@@ -255,7 +255,7 @@ func Organization(ctx *context.Context) {
255255
256256// Repos display a list of all repositories of the user
257257func Repos (ctx * context.Context ) {
258- ctx .Data ["Title" ] = ctx .Tr ("settings" )
258+ ctx .Data ["Title" ] = ctx .Tr ("settings.repos " )
259259 ctx .Data ["PageIsSettingsRepos" ] = true
260260 ctx .Data ["allowAdopt" ] = ctx .IsUserSiteAdmin () || setting .Repository .AllowAdoptionOfUnadoptedRepositories
261261 ctx .Data ["allowDelete" ] = ctx .IsUserSiteAdmin () || setting .Repository .AllowDeleteOfUnadoptedRepositories
@@ -361,7 +361,7 @@ func Repos(ctx *context.Context) {
361361
362362// Appearance render user's appearance settings
363363func Appearance (ctx * context.Context ) {
364- ctx .Data ["Title" ] = ctx .Tr ("settings" )
364+ ctx .Data ["Title" ] = ctx .Tr ("settings.appearance " )
365365 ctx .Data ["PageIsSettingsAppearance" ] = true
366366
367367 var hiddenCommentTypes * big.Int
0 commit comments