Hi,
We have installed confluence version 3.5.6 and german language pack v 1.19.1. Everything seems fine - except when I creat e new space - default page title of homepage is set to Home instead of Startseite.
I have already tried to modify default.page.title in ConfluenceActionSupport.properties File - but nothing fixed my problem. Can anybody help me ? I would like to modify default.page.title. Is this possible ?
Kind regards,
Gabriele
Hi Gabriele,
The default homepage title can be modified via the source:
In
com.atlassian.confluence.spaces.listeners.InitialSpaceContentListener
package com.atlassian.confluence.spaces.listeners; ... public class InitialSpaceContentListener implements EventListener { private static final Logger log = LoggerFactory.getLogger(InitialSpaceContentListener.class); public static final String DEFAULT_HOMEPAGE_TITLE = "Home"; <---- This is the place to change the
You can also recompile the: com.atlassian.confluence.setup.settings.Setting.java
private String defaultSpaceHomepageTitle = "Home"; and change this.
Hope this helps.
Regards
Vincent
This will work, but it seems a bit sucky that we have an i18n definition for default.page.title and then ignore it and hard-code to "Home".
I will see if there is a bug report in Confluence for this - we should be able to fix it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This sounds like the same problem: https://jira.atlassian.com/browse/CONF-23054 please vote and/or comment if you are interested :-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.