Skip to content

Commit

Permalink
OF-1823 plugin-admin.jsp and available-plugins.jsp: translate README …
Browse files Browse the repository at this point in the history
…and changelog links title
  • Loading branch information
stokito authored and guusdk committed Sep 23, 2024
1 parent 432d2ad commit 4ee0999
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions i18n/src/main/resources/openfire_i18n.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3245,6 +3245,7 @@ plugin.admin.reload_failure=Unable to reload the plugin. Refer to the log files
plugin.admin.monitortask_running=The plugin manager is currently running. It may take a short time for the list of installed plugins to be complete.
plugin.admin.name=Plugins
plugin.admin.description=Description
plugin.admin.documentation=Documentation
plugin.admin.version=Version
plugin.admin.author=Author
plugin.admin.restart=Restart
Expand Down
4 changes: 2 additions & 2 deletions xmppserver/src/main/webapp/available-plugins.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -276,13 +276,13 @@
<td nowrap class="line-bottom-border">
<c:if test="${not empty notInstalledPlugin.readme}">
<a href="${fn:escapeXml(notInstalledPlugin.readme)}"
target="_blank" title="README">
target="_blank" title="<fmt:message key="plugin.admin.documentation" />">
<img src="images/doc-readme-16x16.gif">
</a>
</c:if>
<c:if test="${not empty notInstalledPlugin.changelog}">
<a href="${fn:escapeXml(notInstalledPlugin.changelog)}"
target="_blank" title="changelog">
target="_blank" title="<fmt:message key="plugin.admin.changelog" />">
<img src="images/doc-changelog-16x16.gif">
</a>
</c:if>
Expand Down
4 changes: 2 additions & 2 deletions xmppserver/src/main/webapp/plugin-admin.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -439,13 +439,13 @@ tr.lowerhalf > td:last-child {
<td style="white-space: nowrap; vertical-align: top">
<c:if test="${not empty plugin.readme}">
<a href="plugin-showfile.jsp?plugin=${fn:escapeXml(plugin.canonicalName)}&showReadme=true&decorator=none"
target="_blank" title="README">
target="_blank" title="<fmt:message key="plugin.admin.documentation" />">
<img src="images/doc-readme-16x16.gif">
</a>
</c:if>
<c:if test="${not empty plugin.changelog}">
<a href="plugin-showfile.jsp?plugin=${fn:escapeXml(plugin.canonicalName)}&showChangelog=true&decorator=none"
target="_blank" title="changelog">
target="_blank" title="<fmt:message key="plugin.admin.changelog" />">
<img src="images/doc-changelog-16x16.gif">
</a>
</c:if>
Expand Down

0 comments on commit 4ee0999

Please sign in to comment.