From 3605aa7ec39bb7db8c7c7c449b6c102b3c3ccd75 Mon Sep 17 00:00:00 2001
From: brinn <brinn>
Date: Wed, 25 Jul 2012 10:45:50 +0000
Subject: [PATCH] Rename various methods in ICommonClientService related to
 space handing that still referred to spaces as 'groups'.

SVN: 26197
---
 .../web/client/ICommonClientService.java      | 28 +++++++++----------
 .../web/client/ICommonClientServiceAsync.java | 28 +++++++++----------
 .../client/web/client/application/Dict.java   |  6 ++--
 .../framework/ComponentProvider.java          |  2 +-
 ...ddGroupDialog.java => AddSpaceDialog.java} | 10 +++----
 .../application/ui/RoleAssignmentGrid.java    |  2 +-
 .../web/client/application/ui/SpaceGrid.java  |  8 +++---
 .../application/ui/SpaceSelectionWidget.java  |  2 +-
 .../application/ui/amc/AddGroupDialog.java    |  4 +--
 .../ui/amc/AddRoleAssignmentDialog.java       |  2 +-
 .../web/server/CommonClientService.java       | 14 +++++-----
 .../cisd/openbis/public/common-dictionary.js  |  4 +--
 12 files changed, 55 insertions(+), 55 deletions(-)
 rename openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/{AddGroupDialog.java => AddSpaceDialog.java} (87%)

diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/ICommonClientService.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/ICommonClientService.java
index 6c299eb16af..237b4f06d59 100644
--- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/ICommonClientService.java
+++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/ICommonClientService.java
@@ -132,9 +132,9 @@ public interface ICommonClientService extends IClientService
     public Boolean keepSessionAlive() throws UserFailureException;
 
     /**
-     * Returns a list of all groups.
+     * Returns a list of all spaces.
      */
-    public TypedTableResultSet<Space> listGroups(
+    public TypedTableResultSet<Space> listSpaces(
             DefaultResultSetConfig<String, TableModelRowWithObject<Space>> criteria)
             throws UserFailureException;
 
@@ -152,16 +152,16 @@ public interface ICommonClientService extends IClientService
             throws UserFailureException;
 
     /**
-     * Like {@link #prepareExportSamples(TableExportCriteria)}, but for groups.
+     * Like {@link #prepareExportSamples(TableExportCriteria)}, but for spaces.
      */
-    public String prepareExportGroups(
+    public String prepareExportSpaces(
             final TableExportCriteria<TableModelRowWithObject<Space>> criteria)
             throws UserFailureException;
 
     /**
-     * Registers a new group with specified code and optional description.
+     * Registers a new space with specified code and optional description.
      */
-    public void registerGroup(String groupCode, String descriptionOrNull)
+    public void registerSpace(String spaceCode, String descriptionOrNull)
             throws UserFailureException;
 
     /**
@@ -170,9 +170,9 @@ public interface ICommonClientService extends IClientService
     public void updateScript(final IScriptUpdates updates) throws UserFailureException;
 
     /**
-     * Updates group.
+     * Updates space.
      */
-    public void updateGroup(final ISpaceUpdates updates) throws UserFailureException;
+    public void updateSpace(final ISpaceUpdates updates) throws UserFailureException;
 
     /**
      * Returns a list of all persons which belong to the current database instance.
@@ -217,15 +217,15 @@ public interface ICommonClientService extends IClientService
             throws UserFailureException;
 
     /**
-     * Registers a new role from given role set code, group code and grantee.
+     * Registers a new role from given role set code, space code and grantee.
      */
-    public void registerGroupRole(RoleWithHierarchy role, String group, Grantee grantee)
+    public void registerSpaceRole(RoleWithHierarchy role, String spaceCode, Grantee grantee)
             throws UserFailureException;
 
     /**
-     * Deletes the role described by given role set code, group code and grantee.
+     * Deletes the role described by given role set code, space code and grantee.
      */
-    public void deleteGroupRole(RoleWithHierarchy role, String group, Grantee grantee)
+    public void deleteSpaceRole(RoleWithHierarchy role, String spaceCode, Grantee grantee)
             throws UserFailureException;
 
     /**
@@ -698,8 +698,8 @@ public interface ICommonClientService extends IClientService
     /** Deletes the specified projects. */
     public void deleteProjects(List<TechId> projectIds, String reason) throws UserFailureException;
 
-    /** Deletes the specified groups. */
-    public void deleteGroups(List<TechId> groupIds, String reason) throws UserFailureException;
+    /** Deletes the specified spaces. */
+    public void deleteSpaces(List<TechId> spaceIds, String reason) throws UserFailureException;
 
     /** Deletes the specified scripts. */
     public void deleteScripts(List<TechId> scriptIds) throws UserFailureException;
diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/ICommonClientServiceAsync.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/ICommonClientServiceAsync.java
index 9df8de28e2a..164843a659a 100644
--- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/ICommonClientServiceAsync.java
+++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/ICommonClientServiceAsync.java
@@ -124,8 +124,8 @@ public interface ICommonClientServiceAsync extends IClientServiceAsync
     /** @see ICommonClientService#keepSessionAlive() */
     public void keepSessionAlive(final AsyncCallback<Boolean> asyncCallback);
 
-    /** @see ICommonClientService#listGroups(DefaultResultSetConfig) */
-    public void listGroups(DefaultResultSetConfig<String, TableModelRowWithObject<Space>> criteria,
+    /** @see ICommonClientService#listSpaces(DefaultResultSetConfig) */
+    public void listSpaces(DefaultResultSetConfig<String, TableModelRowWithObject<Space>> criteria,
             final AsyncCallback<TypedTableResultSet<Space>> asyncCallback);
 
     /** @see ICommonClientService#listScripts(ListScriptsCriteria) */
@@ -137,13 +137,13 @@ public interface ICommonClientServiceAsync extends IClientServiceAsync
             TableExportCriteria<TableModelRowWithObject<Script>> exportCriteria,
             AsyncCallback<String> callback);
 
-    /** @see ICommonClientService#prepareExportGroups(TableExportCriteria) */
-    public void prepareExportGroups(
+    /** @see ICommonClientService#prepareExportSpaces(TableExportCriteria) */
+    public void prepareExportSpaces(
             TableExportCriteria<TableModelRowWithObject<Space>> exportCriteria,
             AsyncCallback<String> callback);
 
-    /** @see ICommonClientService#registerGroup(String, String) */
-    public void registerGroup(String groupCode, String descriptionOrNull,
+    /** @see ICommonClientService#registerSpace(String, String) */
+    public void registerSpace(String spaceCode, String descriptionOrNull,
             AsyncCallback<Void> callback);
 
     /** @see ICommonClientService#registerScript(Script) */
@@ -152,8 +152,8 @@ public interface ICommonClientServiceAsync extends IClientServiceAsync
     /** @see ICommonClientService#updateScript(IScriptUpdates) */
     public void updateScript(final IScriptUpdates updates, final AsyncCallback<Void> asyncCallback);
 
-    /** @see ICommonClientService#updateGroup(ISpaceUpdates) */
-    public void updateGroup(final ISpaceUpdates updates, final AsyncCallback<Void> asyncCallback);
+    /** @see ICommonClientService#updateSpace(ISpaceUpdates) */
+    public void updateSpace(final ISpaceUpdates updates, final AsyncCallback<Void> asyncCallback);
 
     /** @see ICommonClientService#listPersons(ListPersonsCriteria) */
     public void listPersons(ListPersonsCriteria criteria,
@@ -177,12 +177,12 @@ public interface ICommonClientServiceAsync extends IClientServiceAsync
             TableExportCriteria<TableModelRowWithObject<RoleAssignment>> exportCriteria,
             AsyncCallback<String> callback);
 
-    /** @see ICommonClientService#registerGroupRole(RoleWithHierarchy, String, Grantee) */
-    public void registerGroupRole(RoleWithHierarchy role, String group, Grantee grantee,
+    /** @see ICommonClientService#registerSpaceRole(RoleWithHierarchy, String, Grantee) */
+    public void registerSpaceRole(RoleWithHierarchy role, String spaceCode, Grantee grantee,
             AsyncCallback<Void> asyncCallback);
 
-    /** @see ICommonClientService#deleteGroupRole(RoleWithHierarchy, String, Grantee) */
-    public void deleteGroupRole(RoleWithHierarchy role, String group, Grantee grantee,
+    /** @see ICommonClientService#deleteSpaceRole(RoleWithHierarchy, String, Grantee) */
+    public void deleteSpaceRole(RoleWithHierarchy role, String spaceCode, Grantee grantee,
             AsyncCallback<Void> asyncCallback);
 
     /** @see ICommonClientService#registerInstanceRole(RoleWithHierarchy, Grantee) */
@@ -607,8 +607,8 @@ public interface ICommonClientServiceAsync extends IClientServiceAsync
     public void deleteProjects(List<TechId> projectIds, String reason,
             AsyncCallback<Void> asyncCallback);
 
-    /** @see ICommonClientService#deleteGroups(List, String) */
-    public void deleteGroups(List<TechId> groupIds, String reason, AsyncCallback<Void> asyncCallback);
+    /** @see ICommonClientService#deleteSpaces(List, String) */
+    public void deleteSpaces(List<TechId> spaceIds, String reason, AsyncCallback<Void> asyncCallback);
 
     /** @see ICommonClientService#deleteScripts(List) */
     public void deleteScripts(List<TechId> scriptIds, AsyncCallback<Void> asyncCallback);
diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/Dict.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/Dict.java
index cf67253ddf7..6abbad89508 100644
--- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/Dict.java
+++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/Dict.java
@@ -29,7 +29,7 @@ package ch.systemsx.cisd.openbis.generic.client.web.client.application;
 public abstract class Dict
 {
 
-    public static final String ADD_GROUP_TITLE = "add_group_title";
+    public static final String ADD_SPACE_TITLE = "add_space_title";
 
     public static final String ADD_SCRIPT_TITLE = "add_script_title";
 
@@ -879,9 +879,9 @@ public abstract class Dict
             "make_official_vocabulary_terms_confirmation_message";
 
     //
-    // Group Browser
+    // Space Browser
     //
-    public static final String GROUP_BROWSER = "group_browser";
+    public static final String SPACE_BROWSER = "space_browser";
 
     //
     // Person Browser
diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/framework/ComponentProvider.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/framework/ComponentProvider.java
index 91c402b659c..413a3057c45 100644
--- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/framework/ComponentProvider.java
+++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/framework/ComponentProvider.java
@@ -231,7 +231,7 @@ public final class ComponentProvider
                 @Override
                 public String getTabTitle()
                 {
-                    return getMessage(Dict.GROUP_BROWSER);
+                    return getMessage(Dict.SPACE_BROWSER);
                 }
 
                 @Override
diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/AddGroupDialog.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/AddSpaceDialog.java
similarity index 87%
rename from openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/AddGroupDialog.java
rename to openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/AddSpaceDialog.java
index fb78a6a3978..89f47cd3f5d 100644
--- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/AddGroupDialog.java
+++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/AddSpaceDialog.java
@@ -28,12 +28,12 @@ import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.widget.
 import ch.systemsx.cisd.openbis.generic.client.web.client.application.util.IDelegatedAction;
 
 /**
- * {@link Window} containing group registration form.
+ * {@link Window} containing space registration form.
  * 
  * @author Franz-Josef Elmer
  * @author Izabela Adamczyk
  */
-public class AddGroupDialog extends AbstractRegistrationDialog
+public class AddSpaceDialog extends AbstractRegistrationDialog
 {
     private final IViewContext<ICommonClientServiceAsync> viewContext;
 
@@ -41,10 +41,10 @@ public class AddGroupDialog extends AbstractRegistrationDialog
 
     private final DescriptionField descriptionField;
 
-    public AddGroupDialog(final IViewContext<ICommonClientServiceAsync> viewContext,
+    public AddSpaceDialog(final IViewContext<ICommonClientServiceAsync> viewContext,
             final IDelegatedAction postRegistrationCallback)
     {
-        super(viewContext, viewContext.getMessage(Dict.ADD_GROUP_TITLE),
+        super(viewContext, viewContext.getMessage(Dict.ADD_SPACE_TITLE),
                 postRegistrationCallback);
         this.viewContext = viewContext;
         this.codeField = createCodeField(viewContext);
@@ -57,7 +57,7 @@ public class AddGroupDialog extends AbstractRegistrationDialog
     @Override
     protected void register(AsyncCallback<Void> registrationCallback)
     {
-        viewContext.getService().registerGroup(codeField.getValue(), descriptionField.getValue(),
+        viewContext.getService().registerSpace(codeField.getValue(), descriptionField.getValue(),
                 registrationCallback);
     }
 }
diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/RoleAssignmentGrid.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/RoleAssignmentGrid.java
index 12ee4b8e3b0..36fc7db10be 100644
--- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/RoleAssignmentGrid.java
+++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/RoleAssignmentGrid.java
@@ -150,7 +150,7 @@ public class RoleAssignmentGrid extends TypedTableGrid<RoleAssignment>
                         selectedRoleAssignment.getRoleSetCode(), grantee, roleListRefreshCallback);
             } else
             {
-                viewContext.getService().deleteGroupRole(selectedRoleAssignment.getRoleSetCode(),
+                viewContext.getService().deleteSpaceRole(selectedRoleAssignment.getRoleSetCode(),
                         selectedRoleAssignment.getSpace().getCode(), grantee,
                         roleListRefreshCallback);
             }
diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/SpaceGrid.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/SpaceGrid.java
index daaab4ffe71..20871656012 100644
--- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/SpaceGrid.java
+++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/SpaceGrid.java
@@ -166,7 +166,7 @@ public class SpaceGrid extends TypedTableGrid<Space>
                 {
                     space.setDescription(descriptionField.getValue());
 
-                    viewContext.getService().updateGroup(space, registrationCallback);
+                    viewContext.getService().updateSpace(space, registrationCallback);
                 }
             };
     }
@@ -192,7 +192,7 @@ public class SpaceGrid extends TypedTableGrid<Space>
             DefaultResultSetConfig<String, TableModelRowWithObject<Space>> resultSetConfig,
             AbstractAsyncCallback<TypedTableResultSet<Space>> callback)
     {
-        viewContext.getService().listGroups(resultSetConfig, callback);
+        viewContext.getService().listSpaces(resultSetConfig, callback);
     }
 
     @Override
@@ -200,7 +200,7 @@ public class SpaceGrid extends TypedTableGrid<Space>
             TableExportCriteria<TableModelRowWithObject<Space>> exportCriteria,
             AbstractAsyncCallback<String> callback)
     {
-        viewContext.getService().prepareExportGroups(exportCriteria, callback);
+        viewContext.getService().prepareExportSpaces(exportCriteria, callback);
     }
 
     @Override
@@ -235,7 +235,7 @@ public class SpaceGrid extends TypedTableGrid<Space>
             {
                 list.add(new TechId(tableModelRowWithObject.getObjectOrNull().getId()));
             }
-            viewContext.getCommonService().deleteGroups(list, reason.getValue(), deletionCallback);
+            viewContext.getCommonService().deleteSpaces(list, reason.getValue(), deletionCallback);
         }
 
         @Override
diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/SpaceSelectionWidget.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/SpaceSelectionWidget.java
index 85156baf89b..9ddf2a80b16 100644
--- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/SpaceSelectionWidget.java
+++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/SpaceSelectionWidget.java
@@ -224,7 +224,7 @@ public class SpaceSelectionWidget extends DropDownList<SpaceModel, Space>
     {
         DefaultResultSetConfig<String, TableModelRowWithObject<Space>> config =
                 DefaultResultSetConfig.createFetchAll();
-        viewContext.getCommonService().listGroups(config, new ListSpaceCallback(viewContext));
+        viewContext.getCommonService().listSpaces(config, new ListSpaceCallback(viewContext));
         callback.ignore();
     }
 
diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/amc/AddGroupDialog.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/amc/AddGroupDialog.java
index 731213a6e14..cd1b3aa8b81 100644
--- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/amc/AddGroupDialog.java
+++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/amc/AddGroupDialog.java
@@ -44,7 +44,7 @@ public class AddGroupDialog extends AbstractRegistrationDialog
     public AddGroupDialog(final IViewContext<ICommonClientServiceAsync> viewContext,
             final IDelegatedAction postRegistrationCallback)
     {
-        super(viewContext, viewContext.getMessage(Dict.ADD_GROUP_TITLE), postRegistrationCallback);
+        super(viewContext, viewContext.getMessage(Dict.ADD_SPACE_TITLE), postRegistrationCallback);
         this.viewContext = viewContext;
         this.codeField = createCodeField(viewContext);
         addField(codeField);
@@ -56,7 +56,7 @@ public class AddGroupDialog extends AbstractRegistrationDialog
     @Override
     protected void register(AsyncCallback<Void> registrationCallback)
     {
-        viewContext.getService().registerGroup(codeField.getValue(), descriptionField.getValue(),
+        viewContext.getService().registerSpace(codeField.getValue(), descriptionField.getValue(),
                 registrationCallback);
     }
 }
diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/amc/AddRoleAssignmentDialog.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/amc/AddRoleAssignmentDialog.java
index 750d23cc08e..4333021acae 100644
--- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/amc/AddRoleAssignmentDialog.java
+++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/amc/AddRoleAssignmentDialog.java
@@ -138,7 +138,7 @@ public class AddRoleAssignmentDialog extends AbstractRegistrationDialog
         } else
         {
             Space spaceOrNull = group.tryGetSelectedSpace();
-            viewContext.getService().registerGroupRole(
+            viewContext.getService().registerSpaceRole(
                     ((RoleListBox) roleBox.getWidget()).getValue(), spaceOrNull.getCode(), grantee,
                     registrationCallback);
         }
diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/server/CommonClientService.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/server/CommonClientService.java
index 1f5bc1e53ab..b939fe0a5ca 100644
--- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/server/CommonClientService.java
+++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/server/CommonClientService.java
@@ -310,14 +310,14 @@ public final class CommonClientService extends AbstractClientService implements
     //
 
     @Override
-    public final void registerGroup(final String groupCode, final String descriptionOrNull)
+    public final void registerSpace(final String groupCode, final String descriptionOrNull)
     {
         final String sessionToken = getSessionToken();
         commonServer.registerSpace(sessionToken, groupCode, descriptionOrNull);
     }
 
     @Override
-    public final void updateGroup(final ISpaceUpdates updates)
+    public final void updateSpace(final ISpaceUpdates updates)
     {
         assert updates != null : "Unspecified updates.";
 
@@ -342,7 +342,7 @@ public final class CommonClientService extends AbstractClientService implements
     }
 
     @Override
-    public final void registerGroupRole(final RoleWithHierarchy role, final String group,
+    public final void registerSpaceRole(final RoleWithHierarchy role, final String group,
             final Grantee grantee)
     {
         final String sessionToken = getSessionToken();
@@ -359,7 +359,7 @@ public final class CommonClientService extends AbstractClientService implements
     }
 
     @Override
-    public final void deleteGroupRole(final RoleWithHierarchy role, final String group,
+    public final void deleteSpaceRole(final RoleWithHierarchy role, final String group,
             final Grantee grantee)
     {
         final String sessionToken = getSessionToken();
@@ -503,7 +503,7 @@ public final class CommonClientService extends AbstractClientService implements
     }
 
     @Override
-    public String prepareExportGroups(TableExportCriteria<TableModelRowWithObject<Space>> criteria)
+    public String prepareExportSpaces(TableExportCriteria<TableModelRowWithObject<Space>> criteria)
     {
         return prepareExportEntities(criteria);
     }
@@ -638,7 +638,7 @@ public final class CommonClientService extends AbstractClientService implements
     }
 
     @Override
-    public TypedTableResultSet<Space> listGroups(
+    public TypedTableResultSet<Space> listSpaces(
             DefaultResultSetConfig<String, TableModelRowWithObject<Space>> criteria)
     {
         SpacesProvider spacesProvider = new SpacesProvider(commonServer, getSessionToken());
@@ -1499,7 +1499,7 @@ public final class CommonClientService extends AbstractClientService implements
     }
 
     @Override
-    public void deleteGroups(List<TechId> groupIds, String reason)
+    public void deleteSpaces(List<TechId> groupIds, String reason)
             throws ch.systemsx.cisd.openbis.generic.client.web.client.exception.UserFailureException
     {
         final String sessionToken = getSessionToken();
diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/public/common-dictionary.js b/openbis/source/java/ch/systemsx/cisd/openbis/public/common-dictionary.js
index 74acd04f5eb..c0eccb691bc 100644
--- a/openbis/source/java/ch/systemsx/cisd/openbis/public/common-dictionary.js
+++ b/openbis/source/java/ch/systemsx/cisd/openbis/public/common-dictionary.js
@@ -685,9 +685,9 @@ var common = {
  //
  // Space Browser
  //
- group_browser: "Space Browser",
+ space_browser: "Space Browser",
  leader: "Head",
- add_group_title: "Add a new space",
+ add_space_title: "Add a new space",
 
  //
  // Project Browser
-- 
GitLab