Commit 47e718d2 authored by Matt Tucker's avatar Matt Tucker Committed by matt

Use better presence icons.

git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@3113 b35dd754-fafc-0310-a699-88a17e54d16e
parent 4dbf311e
...@@ -175,33 +175,33 @@ ...@@ -175,33 +175,33 @@
if (show == Presence.Show.away) { if (show == Presence.Show.away) {
%> %>
<img src="images/bullet-yellow-14x14.gif" width="14" height="14" border="0" title="Away"> <img src="images/im_away.gif" width="16" height="16" border="0" title="Away">
<fmt:message key="session.details.away" /> <%= statusTxt %> <fmt:message key="session.details.away" /> <%= statusTxt %>
<% <%
} else if (show == Presence.Show.chat) { } else if (show == Presence.Show.chat) {
%> %>
<img src="images/bullet-green-14x14.gif" width="14" height="14" border="0" title="Available to Chat"> <img src="images/im_free_chat.gif" width="16" height="16" border="0" title="Available to Chat">
<fmt:message key="session.details.chat_available" /> <%= statusTxt %> <fmt:message key="session.details.chat_available" /> <%= statusTxt %>
<% <%
} else if (show == Presence.Show.dnd) { } else if (show == Presence.Show.dnd) {
%> %>
<img src="images/bullet-red-14x14.gif" width="14" height="14" border="0" title="Do not Disturb"> <img src="images/im_dnd.gif" width="16" height="16" border="0" title="Do not Disturb">
<fmt:message key="session.details.not_disturb" /> <%= statusTxt %> <fmt:message key="session.details.not_disturb" /> <%= statusTxt %>
<% <%
} else if (show == null) { } else if (show == null) {
%> %>
<img src="images/bullet-green-14x14.gif" width="14" height="14" border="0" title="Online"> <img src="images/im_available.gif" width="16" height="16" border="0" title="Online">
<fmt:message key="session.details.online" /> <%= statusTxt %> <fmt:message key="session.details.online" /> <%= statusTxt %>
<% <%
} else if (show == Presence.Show.xa) { } else if (show == Presence.Show.xa) {
%> %>
<img src="images/bullet-yellow-14x14.gif" width="14" height="14" border="0" title="Extended Away"> <img src="images/im_away.gif" width="16" height="16" border="0" title="Extended Away">
<fmt:message key="session.details.extended" /> <%= statusTxt %> <fmt:message key="session.details.extended" /> <%= statusTxt %>
<% <%
......
...@@ -74,7 +74,7 @@ ...@@ -74,7 +74,7 @@
if (_show == Presence.Show.away) { if (_show == Presence.Show.away) {
%> %>
<td width="1%" <td width="1%"
><img src="images/bullet-yellow-14x14.gif" width="14" height="14" border="0" title="<fmt:message key="session.details.away" />" ><img src="images/im_away.gif" width="16" height="16" border="0" title="<fmt:message key="session.details.away" />"
></td> ></td>
<td width="46%"> <td width="46%">
<% if (_stat != null) { %> <% if (_stat != null) { %>
...@@ -91,7 +91,7 @@ ...@@ -91,7 +91,7 @@
<% } else if (_show == Presence.Show.chat) { %> <% } else if (_show == Presence.Show.chat) { %>
<td width="1%" <td width="1%"
><img src="images/bullet-green-14x14.gif" width="14" height="14" border="0" title="<fmt:message key="session.details.chat_available" />" ><img src="images/im_free_chat.gif" width="16" height="16" border="0" title="<fmt:message key="session.details.chat_available" />"
></td> ></td>
<td width="46%"> <td width="46%">
<fmt:message key="session.details.chat_available" /> <fmt:message key="session.details.chat_available" />
...@@ -100,7 +100,7 @@ ...@@ -100,7 +100,7 @@
<% } else if (_show == Presence.Show.dnd) { %> <% } else if (_show == Presence.Show.dnd) { %>
<td width="1%" <td width="1%"
><img src="images/bullet-red-14x14.gif" width="14" height="14" border="0" title="<fmt:message key="session.details.not_disturb" />" ><img src="images/im_dnd.gif" width="16" height="16" border="0" title="<fmt:message key="session.details.not_disturb" />"
></td> ></td>
<td width="46%"> <td width="46%">
<% if (_stat != null) { %> <% if (_stat != null) { %>
...@@ -117,7 +117,7 @@ ...@@ -117,7 +117,7 @@
<% } else if (_show == null) { %> <% } else if (_show == null) { %>
<td width="1%" <td width="1%"
><img src="images/bullet-green-14x14.gif" width="14" height="14" border="0" title="<fmt:message key="session.details.online" />" ><img src="images/im_available.gif" width="16" height="16" border="0" title="<fmt:message key="session.details.online" />"
></td> ></td>
<td width="46%"> <td width="46%">
<fmt:message key="session.details.online" /> <fmt:message key="session.details.online" />
...@@ -126,7 +126,7 @@ ...@@ -126,7 +126,7 @@
<% } else if (_show == Presence.Show.xa) { %> <% } else if (_show == Presence.Show.xa) { %>
<td width="1%" <td width="1%"
><img src="images/bullet-yellow-14x14.gif" width="14" height="14" border="0" title="<fmt:message key="session.details.extended" />" ><img src="images/im_away.gif" width="16" height="16" border="0" title="<fmt:message key="session.details.extended" />"
></td> ></td>
<td width="46%"> <td width="46%">
<% if (_stat != null) { %> <% if (_stat != null) { %>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment