git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1303422 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2012-03-21 15:04:13 +00:00
parent ea76547ec4
commit b0379516f2
2 changed files with 12 additions and 6 deletions

View File

@ -271,6 +271,12 @@ browse.artifact.scm.connection=Connection
browse.artifact.scm.devconnection=Dev. Connection
browse.artifact.scm.viewer=Viewer
browse.artifact.scope=Scope
browse.artifact.mailingList.post=Post
browse.artifact.mailingList.otherArchiveUrl=Archive
browse.artifact.mailingList.mainArchiveUrl=Main archive
browse.artifact.mailingList.otherArchivesUrls=Other Archives
browse.artifact.mailingList.unsubscribe=Unsubscribe
browse.artifact.mailingList.subscribe=Subscribe
#login
login.username.placehoder=Username

View File

@ -625,16 +625,16 @@
<div id="ml_collapse_${i}" class="accordion-body collapse">
{{/if}}
<div class="accordion-inner">
<div>${$.i18n.prop('browse.artifact.mailingList.subscribe')}: <a href="mailto:${mailingList.subscribeAddress}">${mailingList.subscribeAddress}</a></div>
<div>${$.i18n.prop('browse.artifact.mailingList.post')}: <a href="mailto:${mailingList.postAddress}">${mailingList.postAddress}</a></div>
<div>${$.i18n.prop('browse.artifact.mailingList.unsubscribe')}: <a href="mailto:${mailingList.unsubscribeAddress}">${mailingList.unsubscribeAddress}</a></div>
<div>${$.i18n.prop('browse.artifact.mailingList.mainArchiveUrl')}: <a href="${mailingList.mainArchiveUrl}" target="_blank">${mailingList.mainArchiveUrl}</a></div>
<div><b>${$.i18n.prop('browse.artifact.mailingList.subscribe')}</b>: <a href="mailto:${mailingList.subscribeAddress}">${mailingList.subscribeAddress}</a></div>
<div><b>${$.i18n.prop('browse.artifact.mailingList.post')}</b>: <a href="mailto:${mailingList.postAddress}">${mailingList.postAddress}</a></div>
<div><b>${$.i18n.prop('browse.artifact.mailingList.unsubscribe')}</b>: <a href="mailto:${mailingList.unsubscribeAddress}">${mailingList.unsubscribeAddress}</a></div>
<div><b>${$.i18n.prop('browse.artifact.mailingList.mainArchiveUrl')}</b>: <a href="${mailingList.mainArchiveUrl}" target="_blank">${mailingList.mainArchiveUrl}</a></div>
{{if mailingList.otherArchives}}
<div>
${$.i18n.prop('browse.artifact.mailingList.otherArchivesUrls')}:
<b>${$.i18n.prop('browse.artifact.mailingList.otherArchivesUrls')}:</b>
<ul>
{{each(j,otherArchive) mailingList.otherArchives}}
<li>${$.i18n.prop('browse.artifact.mailingList.otherArchiveUrl')}: <a href="${otherArchive}" target="_blank">${otherArchive}</a></li>
<li><b>${$.i18n.prop('browse.artifact.mailingList.otherArchiveUrl')}</b>: <a href="${otherArchive}" target="_blank">${otherArchive}</a></li>
{{/each}}
</ul>
</div>