Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Remove .url. keys to avoid confusing l10n-maven-plugin:validate
Browse files Browse the repository at this point in the history
  • Loading branch information
seanf committed Apr 8, 2015
1 parent d96793c commit 59c5be5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions zanata-war/src/main/resources/messages.properties
Expand Up @@ -981,8 +981,8 @@ jsf.config.PiwikIdSite.placeholder=Id in Piwik
jsf.config.TermsOfUseUrl=Terms of Use URL
jsf.config.HelpUrl=Help URL
jsf.config.TermsOfUseUrltooltip=The URL for terms of use statement
jsf.config.term.url.placeholder=Default URL (if empty): {0}
jsf.config.help.url.placeholder=Default URL (if empty): {0}
jsf.config.TermsOfUseUrl.placeholder=Default URL (if empty): {0}
jsf.config.HelpUrl.placeholder=Default URL (if empty): {0}
jsf.config.HelpUrltooltip=The URL for help page
jsf.config.client=Client
jsf.config.MaxConcurrentRequestsPerApiKey=Max concurrent requests per API key
Expand Down
4 changes: 2 additions & 2 deletions zanata-war/src/main/webapp/admin/server_configuration.xhtml
Expand Up @@ -106,7 +106,7 @@
<s:decorate id="termsOfUseUrlField" template="../WEB-INF/layout/field.xhtml" enclose="true">
<h:inputText id="termsOfUseUrlEml" value="#{serverConfigurationBean.termsOfUseUrl}">
<a4j:ajax event="blur" render="termsOfUseUrlField" execute="@this"/>
<rich:placeholder value="#{msgs.format('jsf.config.term.url.placeholder', serverConfigurationBean.defaultTermOfUseUrl)}"
<rich:placeholder value="#{msgs.format('jsf.config.TermsOfUseUrl.placeholder', serverConfigurationBean.defaultTermOfUseUrl)}"
styleClass="txt--neutral" />
</h:inputText>
</s:decorate>
Expand All @@ -121,7 +121,7 @@
<s:decorate id="helpUrlField" template="../WEB-INF/layout/field.xhtml" enclose="true">
<h:inputText id="helpInput" value="#{serverConfigurationBean.helpUrl}">
<a4j:ajax event="blur" render="helpUrlField" execute="@this"/>
<rich:placeholder value="#{msgs.format('jsf.config.help.url.placeholder', serverConfigurationBean.defaultHelpUrl)}"
<rich:placeholder value="#{msgs.format('jsf.config.HelpUrl.placeholder', serverConfigurationBean.defaultHelpUrl)}"
styleClass="txt--neutral" />
</h:inputText>
</s:decorate>
Expand Down

0 comments on commit 59c5be5

Please sign in to comment.