@@ -42,7 +42,7 @@ const (
4242
4343// Profile render user's profile page
4444func Profile (ctx * context.Context ) {
45- ctx .Data ["Title" ] = ctx .Tr ("settings" )
45+ ctx .Data ["Title" ] = ctx .Tr ("settings.profile " )
4646 ctx .Data ["PageIsSettingsProfile" ] = true
4747 ctx .Data ["AllowedUserVisibilityModes" ] = setting .Service .AllowedUserVisibilityModesSlice .ToVisibleTypeSlice ()
4848
@@ -219,7 +219,7 @@ func DeleteAvatar(ctx *context.Context) {
219219
220220// Organization render all the organization of the user
221221func Organization (ctx * context.Context ) {
222- ctx .Data ["Title" ] = ctx .Tr ("settings" )
222+ ctx .Data ["Title" ] = ctx .Tr ("settings.organization " )
223223 ctx .Data ["PageIsSettingsOrganization" ] = true
224224
225225 opts := organization.FindOrgOptions {
@@ -254,7 +254,7 @@ func Organization(ctx *context.Context) {
254254
255255// Repos display a list of all repositories of the user
256256func Repos (ctx * context.Context ) {
257- ctx .Data ["Title" ] = ctx .Tr ("settings" )
257+ ctx .Data ["Title" ] = ctx .Tr ("settings.repos " )
258258 ctx .Data ["PageIsSettingsRepos" ] = true
259259 ctx .Data ["allowAdopt" ] = ctx .IsUserSiteAdmin () || setting .Repository .AllowAdoptionOfUnadoptedRepositories
260260 ctx .Data ["allowDelete" ] = ctx .IsUserSiteAdmin () || setting .Repository .AllowDeleteOfUnadoptedRepositories
@@ -360,7 +360,7 @@ func Repos(ctx *context.Context) {
360360
361361// Appearance render user's appearance settings
362362func Appearance (ctx * context.Context ) {
363- ctx .Data ["Title" ] = ctx .Tr ("settings" )
363+ ctx .Data ["Title" ] = ctx .Tr ("settings.appearance " )
364364 ctx .Data ["PageIsSettingsAppearance" ] = true
365365
366366 var hiddenCommentTypes * big.Int
0 commit comments