Index: trunk/calendar3/deployment/webadmin/webapp/resources/en_US/default/errors.xsl
===================================================================
--- trunk/calendar3/deployment/webadmin/webapp/resources/en_US/default/errors.xsl (revision 2)
+++ trunk/calendar3/deployment/webadmin/webapp/resources/en_US/default/errors.xsl (revision 16)
@@ -9,11 +9,12 @@
Please correct your data input for
-
Not found: there is no contact identified by that id.
-
Not found: there is no location identified by that id.
+
+
+ Not found: there is no user identified by the id .
Index: trunk/calendar3/webadmin/src/org/bedework/webadmin/authuser/PEFetchAuthAction.java
===================================================================
--- trunk/calendar3/webadmin/src/org/bedework/webadmin/authuser/PEFetchAuthAction.java (revision 15)
+++ trunk/calendar3/webadmin/src/org/bedework/webadmin/authuser/PEFetchAuthAction.java (revision 16)
@@ -97,5 +97,5 @@
if (au == null) {
- form.getErr().emit("org.bedework.userid.notfound", userid);
+ form.getErr().emit("org.bedework.client.error.nosuchuserid", userid);
return "notFound";
}
Index: trunk/calendar3/webcommon/src/org/bedework/webcommon/pref/FetchPrefsAction.java
===================================================================
--- trunk/calendar3/webcommon/src/org/bedework/webcommon/pref/FetchPrefsAction.java (revision 15)
+++ trunk/calendar3/webcommon/src/org/bedework/webcommon/pref/FetchPrefsAction.java (revision 16)
@@ -103,5 +103,5 @@
BwUser user = svc.findUser(str);
if (user == null) {
- form.getErr().emit("org.bedework.userid.notfound", str);
+ form.getErr().emit("org.bedework.client.error.nosuchuserid", str);
return "notFound";
}