Commit 99d16618 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gaston

Replaced hardcoded english words with resource bundles. JM-286


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@1324 b35dd754-fafc-0310-a699-88a17e54d16e
parent 4090cb66
...@@ -17,7 +17,8 @@ ...@@ -17,7 +17,8 @@
java.util.HashMap, java.util.HashMap,
java.util.Map, java.util.Map,
org.jivesoftware.admin.*, org.jivesoftware.admin.*,
java.text.DecimalFormat" java.text.DecimalFormat,
java.text.NumberFormat"
errorPage="error.jsp" errorPage="error.jsp"
%> %>
...@@ -74,12 +75,12 @@ ...@@ -74,12 +75,12 @@
if (storeStrategy != ALWAYS_STORE && storeStrategy != STORE_AND_BOUNCE if (storeStrategy != ALWAYS_STORE && storeStrategy != STORE_AND_BOUNCE
&& storeStrategy != STORE_AND_DROP) && storeStrategy != STORE_AND_DROP)
{ {
errors.put("general","Please choose a valid storage policy."); errors.put("general", LocaleUtils.getLocalizedString("offline.messages.choose_policy"));
} }
else { else {
// Validate the store size limit: // Validate the store size limit:
if (quota <= 0) { if (quota <= 0) {
errors.put("quota","Please enter a store size greater than 0 bytes."); errors.put("quota", LocaleUtils.getLocalizedString("offline.messages.enter_store_size"));
} }
} }
} }
...@@ -206,7 +207,7 @@ ...@@ -206,7 +207,7 @@
<%= ((strategy==BOUNCE) ? "checked" : "") %>> <%= ((strategy==BOUNCE) ? "checked" : "") %>>
</td> </td>
<td width="99%"> <td width="99%">
<label for="rb01"><b>Bounce</b></label> - <fmt:message key="offline.messages.never_back" /> <label for="rb01"><b><fmt:message key="offline.messages.bounce_option" /></b></label> - <fmt:message key="offline.messages.never_back" />
</td> </td>
</tr> </tr>
<tr valign="top"> <tr valign="top">
...@@ -215,7 +216,7 @@ ...@@ -215,7 +216,7 @@
<%= ((strategy==DROP) ? "checked" : "") %>> <%= ((strategy==DROP) ? "checked" : "") %>>
</td> </td>
<td width="99%"> <td width="99%">
<label for="rb02"><b>Drop</b></label> - <fmt:message key="offline.messages.never_store" /> <label for="rb02"><b><fmt:message key="offline.messages.drop_option" /></b></label> - <fmt:message key="offline.messages.never_store" />
</td> </td>
</tr> </tr>
<tr valign="top" class=""> <tr valign="top" class="">
...@@ -224,7 +225,7 @@ ...@@ -224,7 +225,7 @@
<%= ((strategy==STORE) ? "checked" : "") %>> <%= ((strategy==STORE) ? "checked" : "") %>>
</td> </td>
<td width="99%"> <td width="99%">
<label for="rb03"><b>Store</b></label> - <fmt:message key="offline.messages.storage_messenger" /> <label for="rb03"><b><fmt:message key="offline.messages.store_option" /></b></label> - <fmt:message key="offline.messages.storage_messenger" />
</td> </td>
</tr> </tr>
<tr valign="top"> <tr valign="top">
......
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